<br />
<b>Deprecated</b>:  Assigning the return value of new by reference is deprecated in <b>/nfs/c04/h03/mnt/59838/domains/ryboe.com/html/wp-settings.php</b> on line <b>468</b><br />
<br />
<b>Deprecated</b>:  Assigning the return value of new by reference is deprecated in <b>/nfs/c04/h03/mnt/59838/domains/ryboe.com/html/wp-settings.php</b> on line <b>483</b><br />
<br />
<b>Deprecated</b>:  Assigning the return value of new by reference is deprecated in <b>/nfs/c04/h03/mnt/59838/domains/ryboe.com/html/wp-settings.php</b> on line <b>490</b><br />
<br />
<b>Deprecated</b>:  Assigning the return value of new by reference is deprecated in <b>/nfs/c04/h03/mnt/59838/domains/ryboe.com/html/wp-settings.php</b> on line <b>526</b><br />
<br />
<b>Deprecated</b>:  Assigning the return value of new by reference is deprecated in <b>/nfs/c04/h03/mnt/59838/domains/ryboe.com/html/wp-includes/cache.php</b> on line <b>103</b><br />
<br />
<b>Deprecated</b>:  Assigning the return value of new by reference is deprecated in <b>/nfs/c04/h03/mnt/59838/domains/ryboe.com/html/wp-includes/query.php</b> on line <b>21</b><br />
<br />
<b>Deprecated</b>:  Assigning the return value of new by reference is deprecated in <b>/nfs/c04/h03/mnt/59838/domains/ryboe.com/html/wp-includes/theme.php</b> on line <b>618</b><br />
<br />
<b>Deprecated</b>:  Assigning the return value of new by reference is deprecated in <b>/nfs/c04/h03/mnt/59838/domains/ryboe.com/html/wp-content/plugins/sem-unfancy-quote.php</b> on line <b>59</b><br />
<br />
<b>Warning</b>:  Cannot modify header information - headers already sent by (output started at /nfs/c04/h03/mnt/59838/domains/ryboe.com/html/wp-settings.php:468) in <b>/nfs/c04/h03/mnt/59838/domains/ryboe.com/html/wp-includes/feed-rss2.php</b> on line <b>8</b><br />
<?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"
	>

<channel>
	<title>Ryboe.com</title>
	<atom:link href="http://www.ryboe.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ryboe.com</link>
	<description>adventures in the world of web development</description>
	<pubDate>Tue, 07 Oct 2008 15:15:13 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>New Tutorial &#8212; Create an AJAX Calendar with PHP</title>
		<link>http://www.ryboe.com/2008/07/26/new-tutorial-create-an-ajax-calendar-with-php.html</link>
		<comments>http://www.ryboe.com/2008/07/26/new-tutorial-create-an-ajax-calendar-with-php.html#comments</comments>
		<pubDate>Sat, 26 Jul 2008 05:45:03 +0000</pubDate>
		<dc:creator>Sean Sullivan</dc:creator>
		
		<category><![CDATA[AJAX]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Prototype]]></category>

		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://www.ryboe.com/?p=57</guid>
		<description><![CDATA[In my newest tutorial, you learn how to quickly render a calendar using PHP&#039;s date() and mktime() functions.  Then provide some AJAX functionality to move between months without having to reload the page.  This tutorial walks you through a great way to build the foundation in PHP for any calendar needs you might [...]]]></description>
		<wfw:commentRss>http://www.ryboe.com/2008/07/26/new-tutorial-create-an-ajax-calendar-with-php.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Increasing appendChild Performance with DOM Tricks</title>
		<link>http://www.ryboe.com/2008/07/22/increasing-appendchild-performance-with-dom-tricks.html</link>
		<comments>http://www.ryboe.com/2008/07/22/increasing-appendchild-performance-with-dom-tricks.html#comments</comments>
		<pubDate>Tue, 22 Jul 2008 19:52:21 +0000</pubDate>
		<dc:creator>Sean Sullivan</dc:creator>
		
		<category><![CDATA[DHTML]]></category>

		<category><![CDATA[Firefox]]></category>

		<category><![CDATA[IE7]]></category>

		<category><![CDATA[JavaScript]]></category>

		<category><![CDATA[Optimization]]></category>

		<category><![CDATA[Performance]]></category>

		<guid isPermaLink="false">http://www.ryboe.com/?p=36</guid>
		<description><![CDATA[A recent blog post by John Resig has outlined a performance sensitive method of appending many elements to your document.  His suggestion, using DocumentFragment as the container object to which to append all child nodes, is backed by some pretty impressive benchmarks.  The most drastic performance improvements by using this method of appending [...]]]></description>
		<wfw:commentRss>http://www.ryboe.com/2008/07/22/increasing-appendchild-performance-with-dom-tricks.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>PHP Remove Item from an Array</title>
		<link>http://www.ryboe.com/2008/07/17/php-remove-item-from-an-array.html</link>
		<comments>http://www.ryboe.com/2008/07/17/php-remove-item-from-an-array.html#comments</comments>
		<pubDate>Thu, 17 Jul 2008 16:16:54 +0000</pubDate>
		<dc:creator>Sean Sullivan</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.ryboe.com/2008/07/17/php-remove-item-from-an-array.html</guid>
		<description><![CDATA[When working with arrays in PHP, you will encounter times when you need to easily remove known values from that array.  There are a couple of quick techniques I use to accomplish this.
The first, uses the PHP function array_diff().  When using array_diff to remove an item from an array, you pass your current [...]]]></description>
		<wfw:commentRss>http://www.ryboe.com/2008/07/17/php-remove-item-from-an-array.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Select All Checkboxes with Prototype JS</title>
		<link>http://www.ryboe.com/2008/07/10/select-all-checkboxes-with-prototype-js.html</link>
		<comments>http://www.ryboe.com/2008/07/10/select-all-checkboxes-with-prototype-js.html#comments</comments>
		<pubDate>Thu, 10 Jul 2008 20:13:50 +0000</pubDate>
		<dc:creator>Sean Sullivan</dc:creator>
		
		<category><![CDATA[DHTML]]></category>

		<category><![CDATA[Forms]]></category>

		<category><![CDATA[JavaScript]]></category>

		<category><![CDATA[Prototype]]></category>

		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://www.ryboe.com/2008/07/10/select-all-checkboxes-with-prototype-js.html</guid>
		<description><![CDATA[If you are a looking for an easy way to select all checkboxes on a page, there are a number of ways you can quickly accomplish this with the Prototype JS library.
Let&#039;s say your HTML looks like this:

&#160;&#160;&#60;form id="options"&#62;
&#160;&#160;&#160;&#160;&#60;fieldset&#62;&#60;input type="text" value="test">&#60;/fieldset>
&#160;&#160;&#160;&#160;&#60;fieldset&#62;&#60;input type="checkbox" value=0&#62; 0&#60;/fieldset>
&#160;&#160;&#160;&#160;&#60;fieldset&#62;&#60;input type="checkbox" value=1&#62; 1&#60;/fieldset>
&#160;&#160;&#160;&#160;&#60;fieldset&#62;&#60;input type="checkbox" value=2&#62; 2&#60;/fieldset>
&#160;&#160;&#160;&#160;&#60;fieldset&#62;&#60;input type="checkbox" value=3&#62; 3&#60;/fieldset>
&#160;&#160;&#60;/form&#62;

It&#039;s fairly straight [...]]]></description>
		<wfw:commentRss>http://www.ryboe.com/2008/07/10/select-all-checkboxes-with-prototype-js.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Using PHP Dynamic Variables</title>
		<link>http://www.ryboe.com/2008/07/09/using-php-dynamic-variables.html</link>
		<comments>http://www.ryboe.com/2008/07/09/using-php-dynamic-variables.html#comments</comments>
		<pubDate>Wed, 09 Jul 2008 16:08:30 +0000</pubDate>
		<dc:creator>Sean Sullivan</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.ryboe.com/2008/07/09/using-php-dynamic-variables.html</guid>
		<description><![CDATA[PHP dynamic variables have a lot of usefulness.  As you&#039;re programming for the web, you&#039;ll come across many cases where you have a block of code that you will want to use for a number of different cases.  This is very common when you have output or validation helpers.
In this quick howto, I [...]]]></description>
		<wfw:commentRss>http://www.ryboe.com/2008/07/09/using-php-dynamic-variables.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>New Tutorial - Protect Downloadable Files</title>
		<link>http://www.ryboe.com/2008/07/08/new-tutorial-protect-downloadable-files.html</link>
		<comments>http://www.ryboe.com/2008/07/08/new-tutorial-protect-downloadable-files.html#comments</comments>
		<pubDate>Tue, 08 Jul 2008 15:46:07 +0000</pubDate>
		<dc:creator>Sean Sullivan</dc:creator>
		
		<category><![CDATA[Apache]]></category>

		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.ryboe.com/2008/07/08/new-tutorial-protect-downloadable-files.html</guid>
		<description><![CDATA[When providing digital downloads, such as ebooks or mp3s, a common issue is protecting those files from direct downloads and hot linking.  If your downloads require purchase, a license to be obtained, or you just want to keep tabs, you can restrict access to these files using Apache&#039;s .htaccess configuration files.  The control [...]]]></description>
		<wfw:commentRss>http://www.ryboe.com/2008/07/08/new-tutorial-protect-downloadable-files.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>First Letter of a String in JavaScript: test.CharAt() vs test[]</title>
		<link>http://www.ryboe.com/2008/04/24/first-letter-of-a-string-in-javascript-testcharat-vs-test.html</link>
		<comments>http://www.ryboe.com/2008/04/24/first-letter-of-a-string-in-javascript-testcharat-vs-test.html#comments</comments>
		<pubDate>Thu, 24 Apr 2008 17:25:48 +0000</pubDate>
		<dc:creator>Sean Sullivan</dc:creator>
		
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.ryboe.com/2008/04/24/first-letter-of-a-string-in-javascript-testcharat-vs-test.html</guid>
		<description><![CDATA[When we use a programming language everyday, now and then we find ourselves stumbling upon intricacies of that language that need some clarification.  Today I encountered this as I was using JavaScript to convert an object to an XML string.  While working through the object, there was a particular piece of the code [...]]]></description>
		<wfw:commentRss>http://www.ryboe.com/2008/04/24/first-letter-of-a-string-in-javascript-testcharat-vs-test.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Ryboe Tag Cloud 1.02 Released</title>
		<link>http://www.ryboe.com/2008/02/26/ryboe-tag-cloud-v102-released.html</link>
		<comments>http://www.ryboe.com/2008/02/26/ryboe-tag-cloud-v102-released.html#comments</comments>
		<pubDate>Tue, 26 Feb 2008 05:36:49 +0000</pubDate>
		<dc:creator>Sean Sullivan</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Plugin]]></category>

		<category><![CDATA[Widget]]></category>

		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.ryboe.com/2008/02/26/ryboe-tag-cloud-v102-released.html</guid>
		<description><![CDATA[With the release of WordPress v 2.3, there were some structural changes to post categories that broke functionality of version 1.01 of the Ryboe Tag Cloud.  I have finally had a chance to sit down and make the couple of quick changes necessary to restore functionality.  In this newest version of the Ryboe [...]]]></description>
		<wfw:commentRss>http://www.ryboe.com/2008/02/26/ryboe-tag-cloud-v102-released.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Saving your Server with WordPress Internal Cache</title>
		<link>http://www.ryboe.com/2007/07/15/wordpress-internal-cache.html</link>
		<comments>http://www.ryboe.com/2007/07/15/wordpress-internal-cache.html#comments</comments>
		<pubDate>Sun, 15 Jul 2007 17:47:46 +0000</pubDate>
		<dc:creator>Sean Sullivan</dc:creator>
		
		<category><![CDATA[Caching]]></category>

		<category><![CDATA[Optimization]]></category>

		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.ryboe.com/2007/07/15/wordpress-internal-cache.html</guid>
		<description><![CDATA[Caching is a very important skill for you to obtain when building websites that may receive a lot of traffic at any given time.  When using WordPress, you have a very good opportunity to get into some heavy duty caching action so that you can save your server a little bit of work.
The Why.
Just [...]]]></description>
		<wfw:commentRss>http://www.ryboe.com/2007/07/15/wordpress-internal-cache.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>WordPress 2.2 Released!</title>
		<link>http://www.ryboe.com/2007/05/20/wordpress-22-released.html</link>
		<comments>http://www.ryboe.com/2007/05/20/wordpress-22-released.html#comments</comments>
		<pubDate>Mon, 21 May 2007 02:52:42 +0000</pubDate>
		<dc:creator>Sean Sullivan</dc:creator>
		
		<category><![CDATA[Widget]]></category>

		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.ryboe.com/2007/06/26/wordpress-22-released.html</guid>
		<description><![CDATA[The crew over at WordPress has announced the release of version 2.2.&#160; This has been a widely anticipated release, as it is the first to include the ever popular WordPress Widgets pluging built right into the release.&#160; This means no more customizing your themes to allow for the plugin!
Also included in the release is full [...]]]></description>
		<wfw:commentRss>http://www.ryboe.com/2007/05/20/wordpress-22-released.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
