<?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>zedomax.com &#187; root directory</title>
	<atom:link href="http://zedomax.com/blog/tag/root-directory/feed/" rel="self" type="application/rss+xml" />
	<link>http://zedomax.com/blog</link>
	<description>Zedomax - The DIY, HOWTO, Mod, Hacks, Gadgets, and Tech Blog!</description>
	<lastBuildDate>Sun, 21 Mar 2010 06:29:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>PHP DIY &#8211; How to Add RSS Feeds to Any Website/Blog using Magpie RSS Parser!</title>
		<link>http://zedomax.com/blog/2009/01/04/php-diy-how-to-add-rss-feeds-to-any-websiteblog-using-magpie-rss-parser/</link>
		<comments>http://zedomax.com/blog/2009/01/04/php-diy-how-to-add-rss-feeds-to-any-websiteblog-using-magpie-rss-parser/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 16:31:47 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Consumer]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[Educational]]></category>
		<category><![CDATA[Featured DIYs]]></category>
		<category><![CDATA[Featured Hacks]]></category>
		<category><![CDATA[Featured Web]]></category>
		<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[Hack]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[change values]]></category>
		<category><![CDATA[desc]]></category>
		<category><![CDATA[directory path]]></category>
		<category><![CDATA[foreach]]></category>
		<category><![CDATA[item description]]></category>
		<category><![CDATA[magpie]]></category>
		<category><![CDATA[magpie rss]]></category>
		<category><![CDATA[myurl]]></category>
		<category><![CDATA[php code]]></category>
		<category><![CDATA[root directory]]></category>
		<category><![CDATA[rss parser]]></category>
		<category><![CDATA[traffic]]></category>
		<category><![CDATA[unzip]]></category>
		<category><![CDATA[url title]]></category>
		<category><![CDATA[web2-0]]></category>
		<category><![CDATA[wordpress rss]]></category>
		<category><![CDATA[Zedomax]]></category>

		<guid isPermaLink="false">http://zedomax.com/blog/?p=11746</guid>
		<description><![CDATA[One of the most common things we do in today&#8217;s Web2.0 programming are RSS feeds.  Now there&#8217;s a bunch of ways you can add RSS feeds to your website but let me tell you the BEST way using PHP.
1) Download and unzip Magpie RSS in your website root directory somewhere.
2) Anywhere in your PHP code, [...]]]></description>
			<content:encoded><![CDATA[<p>One of the most common things we do in today&#8217;s Web2.0 programming are RSS feeds.  Now there&#8217;s a bunch of ways you can add RSS feeds to your website but let me tell you the BEST way using PHP.</p>
<p>1) Download and unzip <a target="_blank" href="http://sourceforge.net/project/showfiles.php?group_id=55691" >Magpie RSS</a> in your website root directory somewhere.</p>
<p>2) Anywhere in your PHP code, add the following line, while making sure the full directory path is specified.  (I usually like to put it in directory such as &#8220;magpie&#8221;)</p>
<pre>require('rss_fetch.inc');
$myurl="http://zedomax.com/blog/feed";
$rss = fetch_rss($myurl);
        $ct=0;
foreach ($rss-&gt;items as $item ) {
           $title = $item[title];
           $desc = $item[description];
           $url   = $item[link];
           echo '&lt;li&gt;&lt;a href="'.$url.'" title="'.$desc.'"&gt;'.$title.'&lt;/a&gt;&lt;/li&gt;';
           if($ct==9) break;
           $ct++;
}</pre>
<p>This will output the latest 10 RSS items.  You can of course, change values and also do much more with more configuration.  <a target="_blank" href="http://magpierss.sourceforge.net/" >Refer to Magpie RSS Documents here.</a></p>
<p>There, you can probably do this in 5 minutes.  I find it better to use this over any other Wordpress RSS plugin because it&#8217;s simple and it works.  I used to use a plugin that kept dying on me or was simply too slow.</p>
<p>Using straight Magpie RSS is really fast and great for making some <a target="_blank" href="http://stattt.com" >custom RSS sites</a>.</p>
<p>Of course, <a href="http://zedomax.com/blog/2009/01/04/php-diy-how-to-add-caching-to-any-website/" >couple it with PHP caching</a> and you already got a website that can handle a LOT of traffic. <img src='http://zedomax.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Brought to you by: <a href="http://zedomax.com/blog" >Zedomax.com</a></p>
<p><a href="http://zedomax.com/blog/2009/01/04/php-diy-how-to-add-rss-feeds-to-any-websiteblog-using-magpie-rss-parser/" >PHP DIY &#8211; How to Add RSS Feeds to Any Website/Blog using Magpie RSS Parser!</a></p>

	<span style="display:none"><a href="http://zedomax.com/blog/category/technology/web-technology/blog/" title="Blog" rel="tag">Blog</a>, <a href="http://zedomax.com/blog/tag/change-values/" title="change values" rel="tag">change values</a>, <a href="http://zedomax.com/blog/category/misc/consumer-misc/" title="Consumer" rel="tag">Consumer</a>, <a href="http://zedomax.com/blog/tag/desc/" title="desc" rel="tag">desc</a>, <a href="http://zedomax.com/blog/tag/directory-path/" title="directory path" rel="tag">directory path</a>, <a href="http://zedomax.com/blog/category/diy/" title="DIY" rel="tag">DIY</a>, <a href="http://zedomax.com/blog/category/technology/educational/" title="Educational" rel="tag">Educational</a>, <a href="http://zedomax.com/blog/category/featured/featured-diys/" title="Featured DIYs" rel="tag">Featured DIYs</a>, <a href="http://zedomax.com/blog/category/featured/featured-hacks/" title="Featured Hacks" rel="tag">Featured Hacks</a>, <a href="http://zedomax.com/blog/category/featured/featured-web/" title="Featured Web" rel="tag">Featured Web</a>, <a href="http://zedomax.com/blog/tag/foreach/" title="foreach" rel="tag">foreach</a>, <a href="http://zedomax.com/blog/category/diy/hack/" title="Hack" rel="tag">Hack</a>, <a href="http://zedomax.com/blog/category/diy/howto/" title="HOWTO" rel="tag">HOWTO</a>, <a href="http://zedomax.com/blog/tag/item-description/" title="item description" rel="tag">item description</a>, <a href="http://zedomax.com/blog/tag/magpie/" title="magpie" rel="tag">magpie</a>, <a href="http://zedomax.com/blog/tag/magpie-rss/" title="magpie rss" rel="tag">magpie rss</a>, <a href="http://zedomax.com/blog/category/misc/" title="Misc" rel="tag">Misc</a>, <a href="http://zedomax.com/blog/tag/myurl/" title="myurl" rel="tag">myurl</a>, <a href="http://zedomax.com/blog/category/technology/web-technology/php-wt/" title="PHP" rel="tag">PHP</a>, <a href="http://zedomax.com/blog/tag/php-code/" title="php code" rel="tag">php code</a>, <a href="http://zedomax.com/blog/category/diy/projects/" title="Projects" rel="tag">Projects</a>, <a href="http://zedomax.com/blog/tag/root-directory/" title="root directory" rel="tag">root directory</a>, <a href="http://zedomax.com/blog/tag/rss-parser/" title="rss parser" rel="tag">rss parser</a>, <a href="http://zedomax.com/blog/tag/traffic/" title="traffic" rel="tag">traffic</a>, <a href="http://zedomax.com/blog/tag/unzip/" title="unzip" rel="tag">unzip</a>, <a href="http://zedomax.com/blog/tag/url-title/" title="url title" rel="tag">url title</a>, <a href="http://zedomax.com/blog/category/technology/web-technology/" title="Web" rel="tag">Web</a>, <a href="http://zedomax.com/blog/tag/web2-0/" title="web2-0" rel="tag">web2-0</a>, <a href="http://zedomax.com/blog/category/technology/web-technology/blog/wordpress/" title="Wordpress" rel="tag">Wordpress</a>, <a href="http://zedomax.com/blog/tag/wordpress-rss/" title="wordpress rss" rel="tag">wordpress rss</a>, <a href="http://zedomax.com/blog/tag/zedomax/" title="Zedomax" rel="tag">Zedomax</a></span>

	<h3>Related posts</h3>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.com/blog/2008/01/06/zedomax-traffic-overview-2008/" title="Zedomax Traffic Overview 2008 (January 6, 2008)">Zedomax Traffic Overview 2008</a> </li>
	<li><a href="http://zedomax.com/blog/2008/05/06/zedomax-new-direction-net-and-biz/" title="Zedomax New Direction &#8211; .Net and .Biz (May 6, 2008)">Zedomax New Direction &#8211; .Net and .Biz</a> </li>
	<li><a href="http://zedomax.com/blog/2007/04/05/worlds-fastest-rail-train-tgv-5748-kph-inside-footage/" title="World&#8217;s Fastest Rail Train TGV 574,8 KPH Inside Footage (April 5, 2007)">World&#8217;s Fastest Rail Train TGV 574,8 KPH Inside Footage</a> </li>
	<li><a href="http://zedomax.com/blog/2006/11/03/utube-suing-youtube/" title="utube suing youtube (November 3, 2006)">utube suing youtube</a> </li>
	<li><a href="http://zedomax.com/blog/2007/04/23/usb-prank-mouse-jiggler/" title="USB Prank &#8211; Mouse jiggler (April 23, 2007)">USB Prank &#8211; Mouse jiggler</a> </li>
	<li><a href="http://zedomax.com/blog/2007/04/10/tofu-robot-from-japan/" title="Tofu Robot from Japan! (April 10, 2007)">Tofu Robot from Japan!</a> </li>
	<li><a href="http://zedomax.com/blog/2007/04/16/the-penny-pyramid/" title="The Penny Pyramid (April 16, 2007)">The Penny Pyramid</a> </li>
	<li><a href="http://zedomax.com/blog/2008/01/11/sitehoppin-10k-baby/" title="SiteHoppin&#8217; 10K Baby! (January 11, 2008)">SiteHoppin&#8217; 10K Baby!</a> </li>
	<li><a href="http://zedomax.com/blog/2007/02/10/round-up-howto-links-for-the-day/" title="Round-up HOWTO Links for the day (February 10, 2007)">Round-up HOWTO Links for the day</a> </li>
	<li><a href="http://zedomax.com/blog/2007/04/08/robot-chicken-from-japan/" title="Robot Chicken from Japan! (April 8, 2007)">Robot Chicken from Japan!</a> </li>
	<li><a href="http://zedomax.com/blog/2009/01/04/php-diy-how-to-add-caching-to-any-website/" title="PHP DIY &#8211; How to Add Caching to ANY website! (January 4, 2009)">PHP DIY &#8211; How to Add Caching to ANY website!</a> </li>
	<li><a href="http://zedomax.com/blog/2007/04/03/motorcycle-made-out-of-wood-for-2200/" title="Motorcycle made out of WOOD for $2200! (April 3, 2007)">Motorcycle made out of WOOD for $2200!</a> </li>
	<li><a href="http://zedomax.com/blog/2007/04/25/mini-cooper-billboard-in-san-francisco/" title="Mini Cooper Billboard in San Francisco (April 25, 2007)">Mini Cooper Billboard in San Francisco</a> </li>
	<li><a href="http://zedomax.com/blog/2007/04/15/mac-tv-hack-how-to-run-mac-osx-on-mac-tv/" title="MAC TV Hack &#8211; How to run Mac OSX on MAC TV! (April 15, 2007)">MAC TV Hack &#8211; How to run Mac OSX on MAC TV!</a> </li>
	<li><a href="http://zedomax.com/blog/2007/04/06/knight-rider-for-sale/" title="Knight Rider for Sale! (April 6, 2007)">Knight Rider for Sale!</a> </li>
	<li><a href="http://zedomax.com/blog/2006/09/12/hacks-janus-the-industrial-network-hacking-computer/" title="Hacks &#8211; Janus, the industrial network hacking computer (September 12, 2006)">Hacks &#8211; Janus, the industrial network hacking computer</a> </li>
	<li><a href="http://zedomax.com/blog/2007/04/09/google-bought-the-whole-country/" title="Google bought the WHOLE country! (April 9, 2007)">Google bought the WHOLE country!</a> </li>
	<li><a href="http://zedomax.com/blog/2007/04/08/funny-roomba-comic-strip/" title="Funny Roomba Comic Strip (April 8, 2007)">Funny Roomba Comic Strip</a> </li>
	<li><a href="http://zedomax.com/blog/2007/04/08/funny-robot-video/" title="Funny Robot Video (April 8, 2007)">Funny Robot Video</a> </li>
	<li><a href="http://zedomax.com/blog/2007/04/05/funny-alarm-system-for-you-car/" title="Funny Alarm System for you car (April 5, 2007)">Funny Alarm System for you car</a> </li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://zedomax.com/blog/2009/01/04/php-diy-how-to-add-rss-feeds-to-any-websiteblog-using-magpie-rss-parser/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>PHP DIY &#8211; How to Add Caching to ANY website!</title>
		<link>http://zedomax.com/blog/2009/01/04/php-diy-how-to-add-caching-to-any-website/</link>
		<comments>http://zedomax.com/blog/2009/01/04/php-diy-how-to-add-caching-to-any-website/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 16:16:23 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Consumer]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[Educational]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Featured DIYs]]></category>
		<category><![CDATA[Featured Hacks]]></category>
		<category><![CDATA[Featured Web]]></category>
		<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[Hack]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[cache directory]]></category>
		<category><![CDATA[cache files]]></category>
		<category><![CDATA[cached files]]></category>
		<category><![CDATA[copy and paste]]></category>
		<category><![CDATA[fopen]]></category>
		<category><![CDATA[host server]]></category>
		<category><![CDATA[menus]]></category>
		<category><![CDATA[output buffer]]></category>
		<category><![CDATA[php cache]]></category>
		<category><![CDATA[php code]]></category>
		<category><![CDATA[readfile]]></category>
		<category><![CDATA[root directory]]></category>
		<category><![CDATA[search script]]></category>
		<category><![CDATA[server request]]></category>
		<category><![CDATA[web root]]></category>

		<guid isPermaLink="false">http://zedomax.com/blog/?p=11744</guid>
		<description><![CDATA[In my recent ventures, I have resorted to finding great PHP code to cache my website.
Even if you are not using Wordpress, you can still make a simple PHP caching mechanism without the use of Wordpress Super Cache.  (Well, all Wordpress Super Cache is a PHP cache with user-friendly menus.)
Here&#8217;s how to add caching to [...]]]></description>
			<content:encoded><![CDATA[<p>In my recent ventures, I have resorted to finding great PHP code to cache my website.</p>
<p>Even if you are not using Wordpress, you can still make a simple PHP caching mechanism without the use of Wordpress Super Cache.  (Well, all Wordpress Super Cache is a PHP cache with user-friendly menus.)</p>
<p>Here&#8217;s how to add caching to your website:</p>
<p>Copy and paste the following code and save as &#8220;<strong>cache.php</strong>&#8221; in your website root directory:</p>
<blockquote><p>&lt;?php<br />
// Settings<br />
$cachedir = &#8216;cache/&#8217;; // Directory to cache files in (keep outside web root)<br />
$cachetime = 600; // Seconds to cache files for<br />
$cacheext = &#8216;cache&#8217;; // Extension to give cached files (usually cache, htm, txt)</p>
<p>// Ignore List<br />
$ignore_list = array(<br />
&#8216;addedbytes.com/rss.php&#8217;,<br />
&#8216;addedbytes.com/search/&#8217;<br />
);</p>
<p>// Script<br />
$page = &#8216;http://&#8217; . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; // Requested page<br />
$cachefile = $cachedir . md5($page) . &#8216;.&#8217; . $cacheext; // Cache file to either load or create</p>
<p>$ignore_page = false;<br />
for ($i = 0; $i &lt; count($ignore_list); $i++) {<br />
$ignore_page = (strpos($page, $ignore_list[$i]) !== false) ? true : $ignore_page;<br />
}</p>
<p>$cachefile_created = ((@file_exists($cachefile)) and ($ignore_page === false)) ? @filemtime($cachefile) : 0;<br />
@clearstatcache();</p>
<p>// Show file from cache if still valid<br />
if (time() &#8211; $cachetime &lt; $cachefile_created) {</p>
<p>//ob_start(&#8216;ob_gzhandler&#8217;);<br />
@readfile($cachefile);<br />
//ob_end_flush();<br />
exit();</p>
<p>}</p>
<p>// If we&#8217;re still here, we need to generate a cache file</p>
<p>ob_start();</p>
<p>?&gt;</p></blockquote>
<p>Then copy and paste the following and save as &#8220;<strong>endcache.php</strong>&#8220;:</p>
<blockquote><p>&lt;?php</p>
<p>// Now the script has run, generate a new cache file<br />
$fp = @fopen($cachefile, &#8216;w&#8217;);</p>
<p>// save the contents of output buffer to the file<br />
@fwrite($fp, ob_get_contents());<br />
@fclose($fp);</p>
<p>ob_end_flush();</p>
<p>?&gt;</p></blockquote>
<p>In you .htaccess file, add:</p>
<blockquote><p>php_value auto_prepend_file  /home/httpd/vhosts/stattt.com/httpdocs/cache.php<br />
php_value auto_append_file  /home/httpd/vhosts/stattt.com/httpdocs/endcache.php</p></blockquote>
<p>You can always comment these lines out if you want to turn off caching.</p>
<p>For deleting cache, you can copy and paste the following as save as &#8220;<strong>clear.php</strong>&#8220;:</p>
<blockquote><p>&lt;?php</p>
<p>// Settings<br />
$cachedir = &#8216;cache/&#8217;; // Directory to cache files in (keep outside web root)</p>
<p>if ($handle = @opendir($cachedir)) {<br />
while (false !== ($file = @readdir($handle))) {<br />
if ($file != &#8216;.&#8217; and $file != &#8216;..&#8217;) {<br />
echo $file . &#8216; deleted.&lt;br&gt;&#8217;;<br />
@unlink($cachedir . &#8216;/&#8217; . $file);<br />
}<br />
}<br />
@closedir($handle);<br />
}</p>
<p>?&gt;</p></blockquote>
<p>Now, make sure your cache directory is CHMODded to 777 and you should start caching your website. <img src='http://zedomax.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Also, you can schedule a CRON job for the <strong>clear.php</strong> to clear cache once a day or how often you&#8217;d like to.</p>
<p>This caching worked like a charm for <a target="_blank" href="http://stattt.com" >Stattt.com</a>, a stats website coded from scratch.</p>
<p><a target="_blank" href="http://www.addedbytes.com/php/caching-output-in-php/" >I did find this from Addedbytes.com</a>, thanks to the author!</p>
<p>Brought to you by: <a href="http://zedomax.com/blog" >Zedomax.com</a></p>
<p><a href="http://zedomax.com/blog/2009/01/04/php-diy-how-to-add-caching-to-any-website/" >PHP DIY &#8211; How to Add Caching to ANY website!</a></p>

	<span style="display:none"><a href="http://zedomax.com/blog/tag/array/" title="array" rel="tag">array</a>, <a href="http://zedomax.com/blog/category/technology/web-technology/blog/" title="Blog" rel="tag">Blog</a>, <a href="http://zedomax.com/blog/tag/cache-directory/" title="cache directory" rel="tag">cache directory</a>, <a href="http://zedomax.com/blog/tag/cache-files/" title="cache files" rel="tag">cache files</a>, <a href="http://zedomax.com/blog/tag/cached-files/" title="cached files" rel="tag">cached files</a>, <a href="http://zedomax.com/blog/category/misc/consumer-misc/" title="Consumer" rel="tag">Consumer</a>, <a href="http://zedomax.com/blog/tag/copy-and-paste/" title="copy and paste" rel="tag">copy and paste</a>, <a href="http://zedomax.com/blog/category/diy/" title="DIY" rel="tag">DIY</a>, <a href="http://zedomax.com/blog/category/technology/educational/" title="Educational" rel="tag">Educational</a>, <a href="http://zedomax.com/blog/category/featured/" title="Featured" rel="tag">Featured</a>, <a href="http://zedomax.com/blog/category/featured/featured-diys/" title="Featured DIYs" rel="tag">Featured DIYs</a>, <a href="http://zedomax.com/blog/category/featured/featured-hacks/" title="Featured Hacks" rel="tag">Featured Hacks</a>, <a href="http://zedomax.com/blog/category/featured/featured-web/" title="Featured Web" rel="tag">Featured Web</a>, <a href="http://zedomax.com/blog/tag/fopen/" title="fopen" rel="tag">fopen</a>, <a href="http://zedomax.com/blog/category/diy/hack/" title="Hack" rel="tag">Hack</a>, <a href="http://zedomax.com/blog/tag/host-server/" title="host server" rel="tag">host server</a>, <a href="http://zedomax.com/blog/category/diy/howto/" title="HOWTO" rel="tag">HOWTO</a>, <a href="http://zedomax.com/blog/tag/menus/" title="menus" rel="tag">menus</a>, <a href="http://zedomax.com/blog/category/misc/" title="Misc" rel="tag">Misc</a>, <a href="http://zedomax.com/blog/tag/output-buffer/" title="output buffer" rel="tag">output buffer</a>, <a href="http://zedomax.com/blog/tag/php-cache/" title="php cache" rel="tag">php cache</a>, <a href="http://zedomax.com/blog/tag/php-code/" title="php code" rel="tag">php code</a>, <a href="http://zedomax.com/blog/category/diy/projects/" title="Projects" rel="tag">Projects</a>, <a href="http://zedomax.com/blog/tag/readfile/" title="readfile" rel="tag">readfile</a>, <a href="http://zedomax.com/blog/tag/root-directory/" title="root directory" rel="tag">root directory</a>, <a href="http://zedomax.com/blog/tag/search-script/" title="search script" rel="tag">search script</a>, <a href="http://zedomax.com/blog/tag/server-request/" title="server request" rel="tag">server request</a>, <a href="http://zedomax.com/blog/category/technology/web-technology/" title="Web" rel="tag">Web</a>, <a href="http://zedomax.com/blog/tag/web-root/" title="web root" rel="tag">web root</a>, <a href="http://zedomax.com/blog/category/technology/web-technology/blog/wordpress/" title="Wordpress" rel="tag">Wordpress</a></span>

	<h3>Related posts</h3>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.com/blog/2009/05/08/quick-twitter-diy-how-to-make-a-retweetthis-button-for-your-wordpress-blog-from-scratch/" title="Quick Twitter DIY &#8211; How to Make a ReTweetThis button for your Wordpress Blog from Scratch! (May 8, 2009)">Quick Twitter DIY &#8211; How to Make a ReTweetThis button for your Wordpress Blog from Scratch!</a> </li>
	<li><a href="http://zedomax.com/blog/2009/01/04/php-diy-how-to-add-rss-feeds-to-any-websiteblog-using-magpie-rss-parser/" title="PHP DIY &#8211; How to Add RSS Feeds to Any Website/Blog using Magpie RSS Parser! (January 4, 2009)">PHP DIY &#8211; How to Add RSS Feeds to Any Website/Blog using Magpie RSS Parser!</a> </li>
	<li><a href="http://zedomax.com/blog/2008/04/26/wordpress-hack-how-to-widgetize-your-theme/" title="Wordpress HACK &#8211; How to widgetize your theme! (April 26, 2008)">Wordpress HACK &#8211; How to widgetize your theme!</a> </li>
	<li><a href="http://zedomax.com/blog/2009/09/06/wordpress-diy-how-to-check-for-spam-links-after-being-attacked-by-hackers/" title="Wordpress DIY &#8211; How To Check For Spam Links After Being Attacked by Hackers! (September 6, 2009)">Wordpress DIY &#8211; How To Check For Spam Links After Being Attacked by Hackers!</a> </li>
	<li><a href="http://zedomax.com/blog/2007/04/19/wheel-style-robot-parking-system/" title="Wheel Style Robot Parking System (April 19, 2007)">Wheel Style Robot Parking System</a> </li>
	<li><a href="http://zedomax.com/blog/2009/08/17/web-server-hack-how-to-auto-restart-httpd-service-script/" title="Web Server Hack &#8211; How To Auto Restart HTTPD service script! (August 17, 2009)">Web Server Hack &#8211; How To Auto Restart HTTPD service script!</a> </li>
	<li><a href="http://zedomax.com/blog/2008/07/03/recycled-plastic-bottle-art-sea-creatures/" title="Recycled Plastic Bottle Art &#8211; Sea Creatures! (July 3, 2008)">Recycled Plastic Bottle Art &#8211; Sea Creatures!</a> </li>
	<li><a href="http://zedomax.com/blog/2007/05/07/newest-navy-aircraft-unveiled-by-northrop-grumman/" title="Newest Navy Aircraft Unveiled by Northrop Grumman (May 7, 2007)">Newest Navy Aircraft Unveiled by Northrop Grumman</a> </li>
	<li><a href="http://zedomax.com/blog/2008/08/08/new-sub-zero-refrigerator-filters-bacteria-and-more/" title="New Sub Zero Refrigerator Filters Bacteria and more! (August 8, 2008)">New Sub Zero Refrigerator Filters Bacteria and more!</a> </li>
	<li><a href="http://zedomax.com/blog/2009/05/28/new-samsung-hd-camcorder-smx-c14/" title="New Samsung HD Camcorder SMX-C14! (May 28, 2009)">New Samsung HD Camcorder SMX-C14!</a> </li>
	<li><a href="http://zedomax.com/blog/2008/07/17/japanese-researchers-fit-42gb-on-a-single-dvd/" title="Japanese Researchers Fit 42GB on a Single DVD! (July 17, 2008)">Japanese Researchers Fit 42GB on a Single DVD!</a> </li>
	<li><a href="http://zedomax.com/blog/2008/10/24/italian-police-lamborghini/" title="Italian Police Lamborghini! (October 24, 2008)">Italian Police Lamborghini!</a> </li>
	<li><a href="http://zedomax.com/blog/2008/09/07/how-apple-solved-copy-and-paste-15-years-ago/" title="How Apple Solved Copy and Paste 15 Years Ago! (September 7, 2008)">How Apple Solved Copy and Paste 15 Years Ago!</a> </li>
	<li><a href="http://zedomax.com/blog/2009/03/18/google-hack-how-to-search-google-without-copy-and-paste/" title="Google Hack &#8211; How to Search Google Without Copy And Paste! (March 18, 2009)">Google Hack &#8211; How to Search Google Without Copy And Paste!</a> </li>
	<li><a href="http://zedomax.com/blog/free-zedomax-electronic-diy-howto-projects-e-book-download/" title="FREE Zedomax Electronic DIY HOWTO Projects E-Book Download! (October 19, 2008)">FREE Zedomax Electronic DIY HOWTO Projects E-Book Download!</a> </li>
	<li><a href="http://zedomax.com/blog/2008/06/25/diy-recycled-newspaper-bench/" title="DIY Recycled Newspaper Bench! (June 25, 2008)">DIY Recycled Newspaper Bench!</a> </li>
	<li><a href="http://zedomax.com/blog/2008/05/23/diy-hack-how-to-make-a-dtmf-phone-dialer/" title="DIY HACK &#8211; How to Make a DTMF Phone Dialer! (May 23, 2008)">DIY HACK &#8211; How to Make a DTMF Phone Dialer!</a> </li>
	<li><a href="http://zedomax.com/blog/2008/05/11/concept-touchscreen-universal-remote-looks-awfullysome/" title="Concept Touchscreen Universal Remote looks Aw(fully)some! (May 11, 2008)">Concept Touchscreen Universal Remote looks Aw(fully)some!</a> </li>
	<li><a href="http://zedomax.com/blog/2008/06/22/comcast-10-million-pixel-hdtv/" title="Comcast 10 Million Pixel HDTV! (June 22, 2008)">Comcast 10 Million Pixel HDTV!</a> </li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://zedomax.com/blog/2009/01/04/php-diy-how-to-add-caching-to-any-website/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
