<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>∞ Infinite ∞ Resolution &#187; Web Programming</title>
	<atom:link href="http://blog.stupidpoodles.com/category/technology/web-programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.stupidpoodles.com</link>
	<description>How big is that?</description>
	<lastBuildDate>Tue, 26 Jul 2011 02:16:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>MyBB Guest2Account</title>
		<link>http://blog.stupidpoodles.com/2010/12/mybb-guest2account/</link>
		<comments>http://blog.stupidpoodles.com/2010/12/mybb-guest2account/#comments</comments>
		<pubDate>Tue, 28 Dec 2010 04:00:22 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web Programming]]></category>

		<guid isPermaLink="false">http://blog.stupidpoodles.com/?p=773</guid>
		<description><![CDATA[{EAV_BLOG_VER:1b6e462b6de60c05} Long time no post! A few days ago, I had a problem where a member registered on our MyBB powered forum and requested that all of her posts made as a guest under her name be pushed into her new, registered account. I checked the MyBB ACP, but alas, there was no such functionality. Consequently, I [...]]]></description>
			<content:encoded><![CDATA[<p>{EAV_BLOG_VER:1b6e462b6de60c05}<br />
Long time no post! A few days ago, I had a problem where a member registered on our MyBB powered forum and requested that all of her posts made as a guest under her name be pushed into her new, registered account. I checked the MyBB ACP, but alas, there was no such functionality.</p>
<p>Consequently, I decided to make a little PHP script that takes all of the threads and posts posted by a guest and pushes/merges them into a registered account of your choosing. This isn&#8217;t a MyBB plugin or anything, just a standalone script that connects to your MyBB database. You can access its functionality via the web/HTTP or the command line (if you kept that enabled that in the config).</p>
<p>The code itself is fairly self-explanatory and well-commented. Enjoy. And lemme know what you think!</p>
<p>Download: <a class="downloadlink" href="http://blog.stupidpoodles.com/downloads/guest2account.zip" title="Version1.0.0 downloaded 20 times" >Guest2Account (20)</a></p>
<p>PS: I&#8217;m not sure what I&#8217;ll do with this blog. I&#8217;ll probably get a new domain, and a new name and keep these old posts around for archival purposes.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.stupidpoodles.com/2010/12/mybb-guest2account/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Never Ending JavaScript Alerts</title>
		<link>http://blog.stupidpoodles.com/2009/09/never-ending-javascript-alerts/</link>
		<comments>http://blog.stupidpoodles.com/2009/09/never-ending-javascript-alerts/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 03:35:26 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web Programming]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://blog.stupidpoodles.com/?p=705</guid>
		<description><![CDATA[It really is that simple. Perfect for your *-Roll sites.]]></description>
			<content:encoded><![CDATA[<pre class="brush: jscript; title: ; notranslate">
while(true) {
alert(&quot;Ohai!&quot;);
}
</pre>
<p>It really is that simple. Perfect for your *-Roll sites.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.stupidpoodles.com/2009/09/never-ending-javascript-alerts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP OOP</title>
		<link>http://blog.stupidpoodles.com/2009/09/php-oop/</link>
		<comments>http://blog.stupidpoodles.com/2009/09/php-oop/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 21:40:58 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web Programming]]></category>
		<category><![CDATA[Object Oriented Programming]]></category>
		<category><![CDATA[OOP]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://blog.stupidpoodles.com/?p=674</guid>
		<description><![CDATA[Object-oriented programming (OOP) is a programming paradigm that uses &#8220;objects&#8221; – data structures consisting of datafields and methods – and their interactions to design applications and computer programs. Programming techniques may include features such as information hiding, data abstraction, encapsulation, modularity, polymorphism, and inheritance. It was not commonly used in mainstream software application development until [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Object-oriented programming (OOP) is a programming paradigm that uses &#8220;objects&#8221; – data structures consisting of datafields and methods – and their interactions to design applications and computer programs. Programming techniques may include features such as information hiding, data abstraction, encapsulation, modularity, polymorphism, and inheritance. It was not commonly used in mainstream software application development until the early 1990s. Many modern programming languages now support OOP.<br />
(<a title="External link" rel="nofollow external" href="http://en.wikipedia.org/w/index.php?title=Object-oriented_programming&amp;oldid=306067316">Source</a>)</p></blockquote>
<p>Today I&#8217;m going to show you the very basic of programming OOP style in PHP5.</p>
<p>Let&#8217;s create two files. One named &#8220;index.php&#8221;, and the other named &#8220;class.php&#8221;, which is where our php class will go.</p>
<p>Object Oriented Programming&#8217;s world orbits around PHP classes. These define and help layout it&#8217;s child objects.</p>
<p>Go ahead and open up your favorite code editor and put the following code into your class.php file. Copy &amp; Paste will do, but you might get a better feel for the code if you type it by hand.</p>
<pre class="brush: php; title: ; notranslate">&lt;?php
class Text {
   var $savedText;
   function setText($someText) {
      $this-&gt;savedText = $someText;
   }
   function getText() {
      return $this-&gt;savedText;
   }
}
?&gt;</pre>
<p>Let&#8217;s walk through what just happened there. On line 2 we opened a new class definition named Text. Line 3 made a new internal variable. These variables can be accessed from anywhere inside the class. Lines 4-6 creates a new method called setText. This method gives the $savedText variable the value of $someText. Lines 7-9 create a new method called getText and it returns back whatever the value of $savedText is.</p>
<p>You may be wondering what the <code>$this-&gt;</code> thing is. When used within a class it let&#8217;s you access variables and methods from within itself.</p>
<p>Go ahead and open up index.php and paste this into it.</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
include('class.php');
$TextClass = new Text();
$TextClass-&gt;setText('Hello there!');
echo $TextClass-&gt;getText();
?&gt;
</pre>
<p>Go ahead and run that. You should get &#8220;Hello there!&#8221; printed to the screen. On line 2 we included the class file so we can use it. On line 3 we created a new instance of the class and assigned it to a variable called $TextClass. On line 4 we set the internal $savedText variable to &#8216;Hello there!&#8217; via the setText method. On line 5 we printed the result of getText to the screen.</p>
<p>Hopefully you&#8217;ve learned the very basics of OOP in PHP. I might write another one of these if I have the time. <img src='http://blog.stupidpoodles.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.stupidpoodles.com/2009/09/php-oop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magic Quotes: Finally Deprecated</title>
		<link>http://blog.stupidpoodles.com/2009/08/magic-quotes-finally-deprecated/</link>
		<comments>http://blog.stupidpoodles.com/2009/08/magic-quotes-finally-deprecated/#comments</comments>
		<pubDate>Sun, 02 Aug 2009 19:00:55 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web Programming]]></category>
		<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP 5.3.0]]></category>
		<category><![CDATA[PHP 6.0.0]]></category>

		<guid isPermaLink="false">http://blog.stupidpoodles.com/?p=660</guid>
		<description><![CDATA[As of PHP 5.3.0 Magic Quotes have been deprecated. Thank gosh. And they will be totally removed in PHP 6.0.0. That&#8217;s just one of the many things that have been deprecated in PHP 5.3.0 Register Globals will suffer the same fate as Magic Quotes. PHP Safe Mode was also deprecated. That&#8217;s just a few, you should [...]]]></description>
			<content:encoded><![CDATA[<p>As of PHP 5.3.0 Magic Quotes have been deprecated. Thank gosh. And they will be totally removed in PHP 6.0.0. That&#8217;s just one of the many things that have been deprecated in PHP 5.3.0 Register Globals will suffer the same fate as Magic Quotes. PHP Safe Mode was also deprecated. That&#8217;s just a few, you should take a look at the <a title="Deprecated features in PHP 5.3.x" href="http://us.php.net/manual/en/migration53.deprecated.php" target="_blank">deprecated features list</a>.</p>
<p><a href="http://blog.stupidpoodles.com/wp-content/uploads/2009/08/3771227894_19a5bd5cd9_o.jpg" rel="lightbox[660]"><img class="alignleft size-thumbnail wp-image-665" title="CakePHP on PHP 5.3.0" src="http://blog.stupidpoodles.com/wp-content/uploads/2009/08/3771227894_19a5bd5cd9_o-150x150.jpg" alt="CakePHP on PHP 5.3.0" width="150" height="150" /></a>CakePHP, unfortunatly, just doesn&#8217;t wanna get along with the new PHP release. Right now there are two solutions. The first is to revert back to PHP 5.2.9-2. The second is to change <code>error_reporting(E_ALL);</code> on line 295 of cake/libs/configure.php to <code>error_reporting(E_ALL ^ E_DEPRECATED);</code> After that, then add <code>error_reporting(E_ALL ^ E_DEPRECATED);</code> to the beginning of app/webroot/index.php. As far as I know, these are the only two solutions for CakePHP users, at the moment. If you know of either a better solution or more information, please comment!</p>
<p>Hopefully I covered some of the basics of the fairly new PHP 5.3.0 with CakePHP.</p>
<p>PS: Thanks to <a href="http://www.flickr.com/photos/dryan/">danielryan</a> on Flickr for the <a href="http://www.flickr.com/photos/dryan/3771227894/" target="_blank">screenshot</a>. <img src='http://blog.stupidpoodles.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.stupidpoodles.com/2009/08/magic-quotes-finally-deprecated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sessions vs. Cookies</title>
		<link>http://blog.stupidpoodles.com/2009/03/sessions-vs-cookies/</link>
		<comments>http://blog.stupidpoodles.com/2009/03/sessions-vs-cookies/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 21:00:19 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web Programming]]></category>
		<category><![CDATA[Cookies]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Sessions]]></category>

		<guid isPermaLink="false">http://blog.stupidpoodles.com/?p=544</guid>
		<description><![CDATA[Today, I&#8217;ll be writing about when to use Sessions and when to use Cookies when developing your own  PHP Web Applications. First off, I&#8217;ll talk a little about the pros and cons of Sessions. Sessions are stored on the server Clients won&#8217;t have any direct access to Session data Accessing Session data is faster than [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-553" title="Sessions vs. Cookies" src="http://blog.stupidpoodles.com/wp-content/uploads/2009/03/sessions-vs-cookies.png" alt="Sessions vs. Cookies" width="150" height="150" />Today, I&#8217;ll be writing about when to use Sessions and when to use Cookies when developing your own  PHP Web Applications.</p>
<p>First off, I&#8217;ll talk a little about the pros and cons of Sessions.</p>
<ul>
<li>Sessions are stored on the server</li>
<li>Clients won&#8217;t have any direct access to Session data</li>
<li>Accessing Session data is faster than retrieving a Cookie</li>
<li>Sessions can be  (theoretically) of unlimited size</li>
<li>Easier to use</li>
</ul>
<p>Now on to Cookies.</p>
<ul>
<li>Cookies can be set to last for a very long time</li>
<li>Cookie data is stored on the client computer</li>
<li>File size can be limited, but this depends on the client&#8217;s browser</li>
<li>Cookies are NOT dangerous. They really can&#8217;t do much of anything (harmful) without the help of some other malicious program.</li>
</ul>
<p>Now that you know the basics of both Sessions and Cookies, you can now make an educated decision on which will work best in your project. To help, I&#8217;ll provide a few examples on what kind of projects you might use Sessions or Cookies on.</p>
<p><strong>Sessions<br />
</strong></p>
<ul>
<li>Shopping carts/baskets</li>
<li>Anything that needs to hold sensitive information (passwords, etc.)</li>
<li>Where you don&#8217;t want the user to be able to directly see or edit the contents</li>
</ul>
<p><strong>Cookies<br />
</strong></p>
<ul>
<li>Login scripts that include a &#8220;Remember Me&#8221; function</li>
<li>Running on a cluster server environment. (If you have multiple servers that need to access the data)</li>
<li>If you need to have the data accessible for long periods of time</li>
</ul>
<p>Happy developing! <img src='http://blog.stupidpoodles.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.stupidpoodles.com/2009/03/sessions-vs-cookies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wildflower, and some more</title>
		<link>http://blog.stupidpoodles.com/2009/02/wildflower-and-some-more/</link>
		<comments>http://blog.stupidpoodles.com/2009/02/wildflower-and-some-more/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 05:50:54 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tyreus]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Programming]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[DreamLinux]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[iPod Touch]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[OOP]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Play Station Portable]]></category>
		<category><![CDATA[PSP]]></category>
		<category><![CDATA[Samba]]></category>
		<category><![CDATA[Science Fair]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ubuntu Christian Edition]]></category>
		<category><![CDATA[Visual C# .NET]]></category>
		<category><![CDATA[Vlexo]]></category>
		<category><![CDATA[VM]]></category>
		<category><![CDATA[Wildflower]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://blog.stupidpoodles.com/?p=497</guid>
		<description><![CDATA[You probably wanna know what&#8217;s been going on. First, the Science Fair went very well. Second, rumor has it that a new theme is in the works for Tyreus. Maybe Vlexo too. The Vlexo server almost went down. Permanently. Luckily, everything went O.K. and the server continued its service to us. Now, about Wildflower. It&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>You probably wanna know what&#8217;s been going on. First, the Science Fair went very well. Second, rumor has it that a new theme is in the works for Tyreus. <img src='http://blog.stupidpoodles.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Maybe Vlexo too.</p>
<p>The Vlexo server almost went down. Permanently. Luckily, everything went O.K. and the server continued its service to us.</p>
<p>Now, about Wildflower. It&#8217;s a CMS (Content Management System) using the CakePHP Framework. It&#8217;s great for smaller, simple sites. Some PHP, OOP, and CakePHP experience is required though.</p>
<p>Next, my current Windows XP powered home printer server, messed itself up again. I decided to try Ubuntu as a replacement. After installation, one command did the trick to give File/Printer sharing functionality. “sudo apt-get install samba” After that it worked. Perfectly. I still have yet to see if it&#8217;ll continue to work correctly as the days pass. However, Linux has a pretty good reputation for that. <img src='http://blog.stupidpoodles.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>I&#8217;ve also just been fooling around with Linux Distros. on my VM. Such as Ubuntu Christian Edition and DreamLinux.</p>
<p>Shall I tell you about my new found interest in Microsoft Visual C# .NET? Why not? <img src='http://blog.stupidpoodles.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  I&#8217;ve developed quite a few little applications from a book on this. It&#8217;s been really helpful. And guess what? My first app didn&#8217;t say “Hello, World!” <img src='http://blog.stupidpoodles.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Finally, I&#8217;ve started to delve into developing web applications for the iPhone and iPod Touch. And maybe try to do something with the Play Station Portable, too.</p>
<p>Hope this got you guys up to date! <img src='http://blog.stupidpoodles.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.stupidpoodles.com/2009/02/wildflower-and-some-more/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Science Fair `09 + Positive Feedback</title>
		<link>http://blog.stupidpoodles.com/2009/02/science-fair-09-positive-feedback/</link>
		<comments>http://blog.stupidpoodles.com/2009/02/science-fair-09-positive-feedback/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 23:35:39 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Programming]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[Science Fair]]></category>

		<guid isPermaLink="false">http://blog.stupidpoodles.com/?p=487</guid>
		<description><![CDATA[This Friday is the Science Fair. Yeah, that&#8217;s one day from now. Seriously though. I should be working on that and not tying this up. It&#8217;s gonna be some geek/ajaxy/php/coding thing. I also recieved some great feedback on both, &#8220;Hooked&#8221; on XP and Infinite Blue Thanks for all your comments and suggestions. I&#8217;m happy that [...]]]></description>
			<content:encoded><![CDATA[<p>This Friday is the Science Fair. Yeah, that&#8217;s one day from now. Seriously though. I should be working on that and not tying this up. It&#8217;s gonna be some geek/ajaxy/php/coding thing. <img src='http://blog.stupidpoodles.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>I also recieved some great feedback on both, <a title="&quot;Hooked&quot; on XP" href="http://blog.stupidpoodles.com/2009/01/hooked-on-xp/"><em>&#8220;Hooked&#8221; on XP</em></a> and <em><a title="Infinite Blue" href="http://blog.stupidpoodles.com/2009/02/infinite-blue/">Infinite Blue</a></em> Thanks for all your comments and suggestions. I&#8217;m happy that in, the XP post that I was able to show a few of you that we need to stop blaming everybody else on our problems. The release of my <em>Infinite Blue</em> theme was a complete success and was the first custom theme for my blog. I&#8217;ll probably push a new theme out sometime in May 2009. Yay! <img src='http://blog.stupidpoodles.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.stupidpoodles.com/2009/02/science-fair-09-positive-feedback/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetBeans</title>
		<link>http://blog.stupidpoodles.com/2009/01/netbeans/</link>
		<comments>http://blog.stupidpoodles.com/2009/01/netbeans/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 16:50:58 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web Programming]]></category>
		<category><![CDATA[Aptana]]></category>
		<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[NetBeans]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[QuickPress]]></category>

		<guid isPermaLink="false">http://blog.stupidpoodles.com/?p=451</guid>
		<description><![CDATA[www.NetBeans.org I&#8217;ve just recently found a new PHP IDE for a replacement to Aptana. I wasn&#8217;t exactly looking for one, but I just sort of &#8220;found it&#8221;. &#8216;Ya know? For one, it doesn&#8217;t looks cluttered. Everything is pretty well balanced. With my new found inspiration in a new PHP editor, although it does support other [...]]]></description>
			<content:encoded><![CDATA[<p><a title="NetBeans" href="http://www.netbeans.org/" target="_blank"><strong>www.NetBeans.org</strong></a></p>
<p>I&#8217;ve just recently found a new PHP IDE for a replacement to Aptana. I wasn&#8217;t exactly looking for one, but I just sort of &#8220;found it&#8221;. &#8216;Ya know? For one, it doesn&#8217;t looks cluttered. Everything is pretty well balanced.</p>
<p>With my new found inspiration in a new PHP editor, although it does support other web programming languages such as Ruby on Rails, or Java, I started back on my &#8220;CakePHP Adventure&#8221;.</p>
<p>PS: Look forward to an awesome new theme, probably coming tomorrow!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.stupidpoodles.com/2009/01/netbeans/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CakePHP</title>
		<link>http://blog.stupidpoodles.com/2009/01/cakephp/</link>
		<comments>http://blog.stupidpoodles.com/2009/01/cakephp/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 07:05:18 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Web Programming]]></category>
		<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://blog.stupidpoodles.com/?p=410</guid>
		<description><![CDATA[Over my travels across the interwebs, I&#8217;ve found many wounderous and exciting things. However, my most recent discovery is CakePHP. It&#8217;s a PHP framework. It definatly looks intimidating at first, but once you figure out what everything does it&#8217;s a breeze. I&#8217;m trying to make some basic “Hello World” type scripts. So far, it looks [...]]]></description>
			<content:encoded><![CDATA[<p>Over my travels across the interwebs, I&#8217;ve found many wounderous and exciting things. However, my most recent discovery is CakePHP. It&#8217;s a PHP framework. It definatly looks intimidating at first, but once you figure out what everything does it&#8217;s a breeze.</p>
<p>I&#8217;m trying to make some basic “Hello World” type scripts. So far, it looks pretty decent. Whoa it&#8217;s 3:38 AM here! Better get some kind of sleep. <img src='http://blog.stupidpoodles.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>http://cakephp.org/</p>
<p>PS: Another thanks to my iPod to make this post possible! <img src='http://blog.stupidpoodles.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://blog.stupidpoodles.com/wp-content/uploads/2009/01/p-480-320-0ca59fd9-b3de-4312-be20-06970485c3eb.jpeg" rel="lightbox[410]"><img src="http://blog.stupidpoodles.com/wp-content/uploads/2009/01/p-480-320-0ca59fd9-b3de-4312-be20-06970485c3eb.jpeg" alt="" width="200" height="300" class="alignnone size-full wp-image-364" /></a></p>
<p><a href="http://blog.stupidpoodles.com/wp-content/uploads/2009/01/p-480-320-d654b6bb-af65-41df-a5d0-16e29fb8a74b.jpeg" rel="lightbox[410]"><img src="http://blog.stupidpoodles.com/wp-content/uploads/2009/01/p-480-320-d654b6bb-af65-41df-a5d0-16e29fb8a74b.jpeg" alt="" width="200" height="300" class="alignnone size-full wp-image-364" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.stupidpoodles.com/2009/01/cakephp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>THT Resurrected</title>
		<link>http://blog.stupidpoodles.com/2008/12/tht-resurrected/</link>
		<comments>http://blog.stupidpoodles.com/2008/12/tht-resurrected/#comments</comments>
		<pubDate>Tue, 30 Dec 2008 01:15:42 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tyreus]]></category>
		<category><![CDATA[Web Programming]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Object Oriented Programming]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[TheHostingTool]]></category>

		<guid isPermaLink="false">http://blog.stupidpoodles.com/?p=389</guid>
		<description><![CDATA[After some tedious debugging, we finally managed to get everything working. I ended up deleting the MySQL database, and then reSQLing everything back except for the staff section. So now, it works. I better make a backup (again) in case this happens again. @Dalton: Be jellus]]></description>
			<content:encoded><![CDATA[<p>After some tedious debugging, we finally managed to get everything working. I ended up deleting the MySQL database, and then reSQLing everything back except for the staff section. So now, it works. I better make a backup (again) in case this happens again. <img src='http://blog.stupidpoodles.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>@Dalton: Be jellus <img src='http://blog.stupidpoodles.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.stupidpoodles.com/2008/12/tht-resurrected/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

