<?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; ip addresses</title>
	<atom:link href="http://zedomax.com/blog/tag/ip-addresses/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>Mon, 22 Mar 2010 14:00:29 +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>Web Server Hack &#8211; How to Use DDoS Deflate to Protect Against DoS Flooding!</title>
		<link>http://zedomax.com/blog/2009/08/17/web-server-hack-how-to-use-ddos-deflate-to-protect-against-dos-flooding/</link>
		<comments>http://zedomax.com/blog/2009/08/17/web-server-hack-how-to-use-ddos-deflate-to-protect-against-dos-flooding/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 02:58:30 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[Educational]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[Hack]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[amount of time]]></category>
		<category><![CDATA[chmod]]></category>
		<category><![CDATA[configuration files]]></category>
		<category><![CDATA[default domain name]]></category>
		<category><![CDATA[default settings]]></category>
		<category><![CDATA[dos attacks]]></category>
		<category><![CDATA[e mail]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[hackers]]></category>
		<category><![CDATA[ip addresses]]></category>
		<category><![CDATA[ips]]></category>
		<category><![CDATA[linux server]]></category>
		<category><![CDATA[maximum number]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[server company]]></category>
		<category><![CDATA[ssh command]]></category>
		<category><![CDATA[tcp connections]]></category>

		<guid isPermaLink="false">http://zedomax.com/blog/?p=20840</guid>
		<description><![CDATA[I have been using DDoS Deflate, which is a simple script that will automatically help you against DoS attacks on your server.  Basically it works by killing any HTTPD processes/banning IPs that reach more than set number of TCP connections.
It&#8217;s a great script since it&#8217;s free, simple, and works well against DoS attacks.  Yes, forget [...]]]></description>
			<content:encoded><![CDATA[<p>I have been using <a target="_blank" href="http://deflate.medialayer.com/old//" >DDoS Deflate</a>, which is a simple script that will automatically help you against DoS attacks on your server.  Basically it works by killing any HTTPD processes/banning IPs that reach more than set number of TCP connections.</p>
<p>It&#8217;s a great script since it&#8217;s free, simple, and works well against DoS attacks.  Yes, forget paying that extra hundred dollars to your server company, who&#8217;s going to probably install this script anyways.</p>
<p>The real gem of the DDoS Deflate script lies in configuration.  Depending on how you configure the DDoS script, you can protect yourself in number of different ways.</p>
<p>To install, simply follow these directions on your SSH command prompt in the linux server:</p>
<pre>wget http://www.inetbase.com/scripts/ddos/install.sh
chmod 0700 install.sh
./install.sh</pre>
<p>After installing, go to the directory <strong>/usr/local/ddos</strong>, where the configuration files are.</p>
<p>If you open up <strong>ddos.conf</strong> file using your favorite editor, you can edit the following settings for getting the most out of the script:</p>
<p><strong>NO_OF_CONNECTIONS=150</strong></p>
<p>This is the number of connections before your server kills/bans that IP address for a set amount of time.  I think 150 works well but if you are suddenly getting attacked from smart hackers with many, many IPs, you could probably adjust this to a very low number.</p>
<p><strong>BAN_PERIOD=600</strong></p>
<p>You can adjust the BAN_PERIOD setting to set amount of time to ban that IP since you don&#8217;t want to ban the IP permanently, there could be other innocent visitors sharing the same IP.</p>
<p>You can first use the default settings in the beginning and play around a bit.</p>
<p>The script will also e-mail you under the default domain name root@mysite.com whenever an IP reaches beyond the maximum number of allowed connections.  Make sure you set the e-mail correctly so you receive those alerts if you want them by editing the <strong>EMAIL_TO</strong> variable in the <strong>ddos.conf</strong>.</p>
<p><strong>Using More than 1 server?</strong></p>
<p>For example, you can also &#8220;whitelist&#8221; IP addresses that might be connected to your server such as your MySQL server by editing the file <strong>ignore.ip.list</strong> file under the same directory.  By the way, I&#8217;ve accidently forgot to whitelist my MySQL server before and my website started showing &#8220;Database Connection Error&#8221;, don&#8217;t let that happen to you.</p>
<p>Well, that&#8217;s about it, this script is pretty good against DoS flooding so you don&#8217;t have to be manually messing with your iptables or whatnot.  I install this script on everyone of my VPS/dedicated servers and you should too just in case some hacker decided to flood you with garbage.</p>
<p>Brought to you by: <a href="http://zedomax.com/blog" >Zedomax.com</a></p>
<p><a href="http://zedomax.com/blog/2009/08/17/web-server-hack-how-to-use-ddos-deflate-to-protect-against-dos-flooding/" >Web Server Hack &#8211; How to Use DDoS Deflate to Protect Against DoS Flooding!</a></p>

	<span style="display:none"><a href="http://zedomax.com/blog/tag/amount-of-time/" title="amount of time" rel="tag">amount of time</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/chmod/" title="chmod" rel="tag">chmod</a>, <a href="http://zedomax.com/blog/category/computer/" title="Computer" rel="tag">Computer</a>, <a href="http://zedomax.com/blog/tag/configuration-files/" title="configuration files" rel="tag">configuration files</a>, <a href="http://zedomax.com/blog/tag/default-domain-name/" title="default domain name" rel="tag">default domain name</a>, <a href="http://zedomax.com/blog/tag/default-settings/" title="default settings" rel="tag">default settings</a>, <a href="http://zedomax.com/blog/category/diy/" title="DIY" rel="tag">DIY</a>, <a href="http://zedomax.com/blog/tag/dos-attacks/" title="dos attacks" rel="tag">dos attacks</a>, <a href="http://zedomax.com/blog/tag/e-mail/" title="e mail" rel="tag">e mail</a>, <a href="http://zedomax.com/blog/category/technology/educational/" title="Educational" rel="tag">Educational</a>, <a href="http://zedomax.com/blog/tag/email/" title="email" rel="tag">email</a>, <a href="http://zedomax.com/blog/category/computer/linux-technology/fedora-linux-technology-computer/" title="Fedora" rel="tag">Fedora</a>, <a href="http://zedomax.com/blog/category/diy/hack/" title="Hack" rel="tag">Hack</a>, <a href="http://zedomax.com/blog/tag/hackers/" title="hackers" rel="tag">hackers</a>, <a href="http://zedomax.com/blog/category/diy/howto/" title="HOWTO" rel="tag">HOWTO</a>, <a href="http://zedomax.com/blog/tag/ip-addresses/" title="ip addresses" rel="tag">ip addresses</a>, <a href="http://zedomax.com/blog/tag/ips/" title="ips" rel="tag">ips</a>, <a href="http://zedomax.com/blog/category/computer/linux-technology/" title="Linux" rel="tag">Linux</a>, <a href="http://zedomax.com/blog/tag/linux/" title="Linux" rel="tag">Linux</a>, <a href="http://zedomax.com/blog/tag/linux-server/" title="linux server" rel="tag">linux server</a>, <a href="http://zedomax.com/blog/tag/maximum-number/" title="maximum number" rel="tag">maximum number</a>, <a href="http://zedomax.com/blog/category/diy/projects/" title="Projects" rel="tag">Projects</a>, <a href="http://zedomax.com/blog/tag/scripts/" title="scripts" rel="tag">scripts</a>, <a href="http://zedomax.com/blog/tag/server-company/" title="server company" rel="tag">server company</a>, <a href="http://zedomax.com/blog/tag/ssh-command/" title="ssh command" rel="tag">ssh command</a>, <a href="http://zedomax.com/blog/tag/tcp-connections/" title="tcp connections" rel="tag">tcp connections</a>, <a href="http://zedomax.com/blog/category/technology/" title="technology" rel="tag">technology</a>, <a href="http://zedomax.com/blog/category/computer/linux-technology/ubuntu/" title="Ubuntu" rel="tag">Ubuntu</a>, <a href="http://zedomax.com/blog/category/technology/web-technology/" title="Web" rel="tag">Web</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/03/25/note-to-spammers-and-hackers/" title="Note to Spammers and Hackers (March 25, 2009)">Note to Spammers and Hackers</a> </li>
	<li><a href="http://zedomax.com/blog/2006/11/02/zikiwiki-technology-wiki-for-hackers-diyers-mcu-users-plc-users-etc/" title="ZikiWiki &#8211; Technology wiki for hackers, diyers, mcu users, plc users, etc&#8230; (November 2, 2006)">ZikiWiki &#8211; Technology wiki for hackers, diyers, mcu users, plc users, etc&#8230;</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/2007/04/06/the-cool-robot-links-of-the-day/" title="The Cool Robot Links of the Day (April 6, 2007)">The Cool Robot Links of the Day</a> </li>
	<li><a href="http://zedomax.com/blog/2008/09/11/peek-email-only-cellphone-like-device/" title="Peek &#8211; Email-only Cellphone-like Device! (September 11, 2008)">Peek &#8211; Email-only Cellphone-like Device!</a> </li>
	<li><a href="http://zedomax.com/blog/2008/07/28/linux-server-hack-how-to-setup-a-shell-script-to-auto-restart-apache-httpd-server/" title="Linux Server Hack &#8211; How to setup a Shell Script to Auto Restart Apache Httpd Server! (July 28, 2008)">Linux Server Hack &#8211; How to setup a Shell Script to Auto Restart Apache Httpd Server!</a> </li>
	<li><a href="http://zedomax.com/blog/2009/02/23/linux-boot-hack-how-to-password-protect-grub/" title="Linux Boot Hack &#8211; How to Password Protect GRUB! (February 23, 2009)">Linux Boot Hack &#8211; How to Password Protect GRUB!</a> </li>
	<li><a href="http://zedomax.com/blog/2006/11/27/hack-hacking-the-ps3/" title="HACK &#8211; Hacking the PS3 (November 27, 2006)">HACK &#8211; Hacking the PS3</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/2007/05/11/diy-usb-hack-unlocking-usb-disk-drives/" title="DIY USB HACK &#8211; Unlocking USB Disk Drives (May 11, 2007)">DIY USB HACK &#8211; Unlocking USB Disk Drives</a> </li>
	<li><a href="http://zedomax.com/blog/2007/12/03/diy-linux-dos-hack-howto-limit-your-the-max-number-of-tcp-connections-to-your-web-server/" title="DIY Linux DoS HACK &#8211; HOWTO Limit your the max number of TCP connections to your Web Server! (December 3, 2007)">DIY Linux DoS HACK &#8211; HOWTO Limit your the max number of TCP connections to your Web Server!</a> </li>
	<li><a href="http://zedomax.com/blog/2006/11/11/diy-hack-wireless-keyboard-range-boost-hack/" title="DIY Hack &#8211; Wireless Keyboard Range Boost Hack (November 11, 2006)">DIY Hack &#8211; Wireless Keyboard Range Boost Hack</a> </li>
	<li><a href="http://zedomax.com/blog/2006/11/26/diy-hack-more-wii-web-browser-hacking-exposed/" title="DIY HACK &#8211; More wii web browser hacking exposed! (November 26, 2006)">DIY HACK &#8211; More wii web browser hacking exposed!</a> </li>
	<li><a href="http://zedomax.com/blog/2009/03/17/blog-diy-how-to-make-a-lightbox-newsletter-sign-up-form-and-increase-your-feedburner-rss/" title="Blog DIY &#8211; How to Make a Lightbox Newsletter Sign Up Form and Increase your Feedburner RSS! (March 17, 2009)">Blog DIY &#8211; How to Make a Lightbox Newsletter Sign Up Form and Increase your Feedburner RSS!</a> </li>
	<li><a href="http://zedomax.com/blog/2007/12/08/zedomaxnet-web-traffic-services-buy-300-to-500-visitors-of-web-traffic-from-us/" title="Zedomax.Net Web Traffic Services &#8211; Buy 300 to 500 visitors of Web Traffic from Us! (December 8, 2007)">Zedomax.Net Web Traffic Services &#8211; Buy 300 to 500 visitors of Web Traffic from Us!</a> </li>
	<li><a href="http://zedomax.com/blog/2008/10/23/zedomaxcom-updated-with-a-new-dual-quad-core-xeon-harpertown-server-from-carinet/" title="Zedomax.com Updated with a New Dual Quad-Core Xeon Harpertown Server from Cari.Net! (October 23, 2008)">Zedomax.com Updated with a New Dual Quad-Core Xeon Harpertown Server from Cari.Net!</a> </li>
	<li><a href="http://zedomax.com/blog/2006/09/30/zedomax-weekend-thoughts-spam-email/" title="Zedomax Weekend Thoughts &#8211; Spam email (September 30, 2006)">Zedomax Weekend Thoughts &#8211; Spam email</a> </li>
	<li><a href="http://zedomax.com/blog/zedomax-network-of-blogs/" title="Zedomax Network of blogs (April 30, 2007)">Zedomax Network of blogs</a> </li>
	<li><a href="http://zedomax.com/blog/2006/10/17/zedomax-diy-114-halloween-howto-make-a-picketfork-led/" title="Zedomax DIY 114- Halloween HOWTO make a Pitchfork LED! (October 17, 2006)">Zedomax DIY 114- Halloween HOWTO make a Pitchfork LED!</a> </li>
	<li><a href="http://zedomax.com/blog/2008/06/06/xbox-hack-how-to-run-xbox-media-center-from-a-usb-drive/" title="Xbox HACK &#8211; How to Run Xbox Media Center from a USB Drive! (June 6, 2008)">Xbox HACK &#8211; How to Run Xbox Media Center from a USB Drive!</a> </li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://zedomax.com/blog/2009/08/17/web-server-hack-how-to-use-ddos-deflate-to-protect-against-dos-flooding/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Note to Spammers and Hackers</title>
		<link>http://zedomax.com/blog/2009/03/25/note-to-spammers-and-hackers/</link>
		<comments>http://zedomax.com/blog/2009/03/25/note-to-spammers-and-hackers/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 04:16:42 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[NEVER GIVE UP!]]></category>
		<category><![CDATA[buds]]></category>
		<category><![CDATA[dos attacks]]></category>
		<category><![CDATA[elite]]></category>
		<category><![CDATA[fbi]]></category>
		<category><![CDATA[feds]]></category>
		<category><![CDATA[hacker]]></category>
		<category><![CDATA[hackers]]></category>
		<category><![CDATA[interuption]]></category>
		<category><![CDATA[ip addresses]]></category>
		<category><![CDATA[lamo]]></category>
		<category><![CDATA[nasty comments]]></category>
		<category><![CDATA[proxies]]></category>
		<category><![CDATA[spammer]]></category>
		<category><![CDATA[spammers]]></category>
		<category><![CDATA[spamming]]></category>

		<guid isPermaLink="false">http://zedomax.com/blog/?p=14947</guid>
		<description><![CDATA[Dear Spammer and Hacker who&#8217;s trying to spam this site,
STOP! Your IP addresses are being reported to FBI for interuption/spamming act.
LAMO, and stop trying to leave nasty comments, that will only get you IP-banned, this is my site, not yours.
Take your nasty comments elsewhere, spammers and hackers (without class) are not for Zedomax.com.
If you are [...]]]></description>
			<content:encoded><![CDATA[<p>Dear Spammer and Hacker who&#8217;s trying to spam this site,</p>
<p>STOP! Your IP addresses are being reported to FBI for interuption/spamming act.</p>
<p>LAMO, and stop trying to leave nasty comments, that will only get you IP-banned, this is my site, not yours.</p>
<p>Take your nasty comments elsewhere, spammers and hackers (without class) are not for Zedomax.com.</p>
<p><em><strong>If you are going to leave a nasty comment, you will receive a nasty comment back. </strong></em></p>
<p>For everyone else, sorry if the site has been down, there&#8217;s been a lot of DoS attacks we have been receiving but fighting very hard.</p>
<p>We are working on reverse-hacking the spammers/hackers and they have all been reported to FBI so things should be resolved.  (Have a great time packing up your bag and going somewhere else to hide while the feds are coming after you.)</p>
<p>Btw, your elite proxies aren&#8217;t good enough buds, try harder, I am a hacker too.</p>
<p>Best regards,</p>
<p>Max :p</p>
<p>Brought to you by: <a href="http://zedomax.com/blog" >Zedomax.com</a></p>
<p><a href="http://zedomax.com/blog/2009/03/25/note-to-spammers-and-hackers/" >Note to Spammers and Hackers</a></p>

	<span style="display:none"><a href="http://zedomax.com/blog/tag/buds/" title="buds" rel="tag">buds</a>, <a href="http://zedomax.com/blog/tag/dos-attacks/" title="dos attacks" rel="tag">dos attacks</a>, <a href="http://zedomax.com/blog/tag/elite/" title="elite" rel="tag">elite</a>, <a href="http://zedomax.com/blog/tag/fbi/" title="fbi" rel="tag">fbi</a>, <a href="http://zedomax.com/blog/tag/feds/" title="feds" rel="tag">feds</a>, <a href="http://zedomax.com/blog/tag/hacker/" title="hacker" rel="tag">hacker</a>, <a href="http://zedomax.com/blog/tag/hackers/" title="hackers" rel="tag">hackers</a>, <a href="http://zedomax.com/blog/tag/interuption/" title="interuption" rel="tag">interuption</a>, <a href="http://zedomax.com/blog/tag/ip-addresses/" title="ip addresses" rel="tag">ip addresses</a>, <a href="http://zedomax.com/blog/tag/lamo/" title="lamo" rel="tag">lamo</a>, <a href="http://zedomax.com/blog/tag/nasty-comments/" title="nasty comments" rel="tag">nasty comments</a>, <a href="http://zedomax.com/blog/category/misc/never-give-up/" title="NEVER GIVE UP!" rel="tag">NEVER GIVE UP!</a>, <a href="http://zedomax.com/blog/tag/proxies/" title="proxies" rel="tag">proxies</a>, <a href="http://zedomax.com/blog/tag/spammer/" title="spammer" rel="tag">spammer</a>, <a href="http://zedomax.com/blog/tag/spammers/" title="spammers" rel="tag">spammers</a>, <a href="http://zedomax.com/blog/tag/spamming/" title="spamming" rel="tag">spamming</a></span>

	<h3>Related posts</h3>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.com/blog/2009/08/17/web-server-hack-how-to-use-ddos-deflate-to-protect-against-dos-flooding/" title="Web Server Hack &#8211; How to Use DDoS Deflate to Protect Against DoS Flooding! (August 17, 2009)">Web Server Hack &#8211; How to Use DDoS Deflate to Protect Against DoS Flooding!</a> </li>
	<li><a href="http://zedomax.com/blog/2006/11/02/zikiwiki-technology-wiki-for-hackers-diyers-mcu-users-plc-users-etc/" title="ZikiWiki &#8211; Technology wiki for hackers, diyers, mcu users, plc users, etc&#8230; (November 2, 2006)">ZikiWiki &#8211; Technology wiki for hackers, diyers, mcu users, plc users, etc&#8230;</a> </li>
	<li><a href="http://zedomax.com/blog/2008/10/23/zedomaxcom-updated-with-a-new-dual-quad-core-xeon-harpertown-server-from-carinet/" title="Zedomax.com Updated with a New Dual Quad-Core Xeon Harpertown Server from Cari.Net! (October 23, 2008)">Zedomax.com Updated with a New Dual Quad-Core Xeon Harpertown Server from Cari.Net!</a> </li>
	<li><a href="http://zedomax.com/blog/zedomax-network-of-blogs/" title="Zedomax Network of blogs (April 30, 2007)">Zedomax Network of blogs</a> </li>
	<li><a href="http://zedomax.com/blog/2006/10/17/zedomax-diy-114-halloween-howto-make-a-picketfork-led/" title="Zedomax DIY 114- Halloween HOWTO make a Pitchfork LED! (October 17, 2006)">Zedomax DIY 114- Halloween HOWTO make a Pitchfork LED!</a> </li>
	<li><a href="http://zedomax.com/blog/2007/04/06/worlds-smallest-mp3-player/" title="World&#8217;s smallest MP3 Player! (April 6, 2007)">World&#8217;s smallest MP3 Player!</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/12/10/wordpress-anti-spam-plugin-math-comments-plugin/" title="Wordpress Anti-SPAM Plugin &#8211; Math Comments Plugin (December 10, 2007)">Wordpress Anti-SPAM Plugin &#8211; Math Comments Plugin</a> </li>
	<li><a href="http://zedomax.com/blog/2009/07/20/wordpress-2-8-2-download/" title="Wordpress 2.8.2 Download! (July 20, 2009)">Wordpress 2.8.2 Download!</a> </li>
	<li><a href="http://zedomax.com/blog/2006/11/25/wii-opera-browser-hack-first-wii-hack/" title="Wii Opera Browser Hack! FIRST WII HACK (November 25, 2006)">Wii Opera Browser Hack! FIRST WII HACK</a> </li>
	<li><a href="http://zedomax.com/blog/2007/02/23/wii-hack-wiimote-controlled-robot/" title="Wii HACK &#8211; Wiimote Controlled Robot (February 23, 2007)">Wii HACK &#8211; Wiimote Controlled Robot</a> </li>
	<li><a href="http://zedomax.com/blog/2007/03/05/wii-hack-wii-on-ipod/" title="Wii HACK &#8211; Wii on iPod! (March 5, 2007)">Wii HACK &#8211; Wii on iPod!</a> </li>
	<li><a href="http://zedomax.com/blog/2009/02/04/wii-hack-how-to-make-wii-remote-work-in-ubuntu/" title="Wii Hack &#8211; How to Make Wii Remote work in Ubuntu! (February 4, 2009)">Wii Hack &#8211; How to Make Wii Remote work in Ubuntu!</a> </li>
	<li><a href="http://zedomax.com/blog/2008/12/12/wii-hack-how-to-make-a-wiimote-jogging-board/" title="Wii Hack &#8211; How to Make a Wiimote Jogging Board! (December 12, 2008)">Wii Hack &#8211; How to Make a Wiimote Jogging Board!</a> </li>
	<li><a href="http://zedomax.com/blog/2006/11/25/wii-hack-streaming-roms-from-pc-to-wii/" title="Wii Hack (Streaming Roms from PC to WII) (November 25, 2006)">Wii Hack (Streaming Roms from PC to WII)</a> </li>
	<li><a href="http://zedomax.com/blog/2009/02/12/weird-stuff-you-can-appreciate/" title="Weird Stuff You can Appreciate! (February 12, 2009)">Weird Stuff You can Appreciate!</a> </li>
	<li><a href="http://zedomax.com/blog/2007/04/07/weightlifting-champion-robot/" title="Weightlifting Champion Robot (April 7, 2007)">Weightlifting Champion Robot</a> </li>
	<li><a href="http://zedomax.com/blog/2007/04/06/weekend-evil-humor-furby-in-microwave/" title="Weekend Evil Humor &#8211; Furby in Microwave (April 6, 2007)">Weekend Evil Humor &#8211; Furby in Microwave</a> </li>
	<li><a href="http://zedomax.com/blog/2009/05/12/web-design-hack-how-to-make-an-awesome-css-web-calendar-with-iphone-like-graphics/" title="Web Design Hack &#8211; How To Make An Awesome CSS Web Calendar with iPhone-like Graphics! (May 12, 2009)">Web Design Hack &#8211; How To Make An Awesome CSS Web Calendar with iPhone-like Graphics!</a> </li>
	<li><a href="http://zedomax.com/blog/2007/07/02/water-jet-clock/" title="Water Jet Clock (July 2, 2007)">Water Jet Clock</a> </li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://zedomax.com/blog/2009/03/25/note-to-spammers-and-hackers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL DIY &#8211; How to Apply IP Geo-Location Using MySQL!</title>
		<link>http://zedomax.com/blog/2009/03/25/mysql-diy-how-to-apply-ip-geo-location-using-mysql/</link>
		<comments>http://zedomax.com/blog/2009/03/25/mysql-diy-how-to-apply-ip-geo-location-using-mysql/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 17:03:39 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Consumer]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[Educational]]></category>
		<category><![CDATA[Featured DIYs]]></category>
		<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[Hack]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[WebApp]]></category>
		<category><![CDATA[c 255]]></category>
		<category><![CDATA[desc]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[ip addresses]]></category>
		<category><![CDATA[ip-address]]></category>
		<category><![CDATA[mysql table]]></category>

		<guid isPermaLink="false">http://zedomax.com/blog/?p=14862</guid>
		<description><![CDATA[Here&#8217;s a great resource for IP geo-location, there&#8217;s a guy who&#8217;s made a MySQL table for it, so all you need to do is check the IP address against the database.  I have personally been thinking of making such a site and this is going to help me do that, awesome!  I hope it helps [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a great resource for IP geo-location, there&#8217;s a <a target="_blank" href="http://blogama.org/node/58" >guy who&#8217;s made a MySQL table for it</a>, so all you need to do is check the IP address against the database.  I have personally been thinking of making such a site and this is going to help me do that, awesome!  I hope it helps you too.</p>
<blockquote><p>The IP addresses are listed in table ip_group_city. The data is not in the 1.1.1.1 format since it would need to be stored as text and we dont want that for obvious reasons.<br />
Let say for ip A.B.C.D, the formula is<br />
<strong>ip = (A*256+B)*256+C</strong><br />
(I assume A.B.C.0 is at the same location than A.B.C.255)</p>
<p>For example, if you have an ip of 74.125.45.100 (google.com)</p>
<p>The formula would give a result of :<br />
<strong>ip = (74*256+125)*256+45 = 4881709</strong></p>
<p>You would search for the IP address using MySQL by doing :<br />
<strong>SELECT * FROM `ip_group_city` where `ip_start` &lt;= 4881709 order by ip_start desc limit 1;</strong></p></blockquote>
<p><a target="_blank" href="http://blog.makezine.com/archive/2009/03/free_unlimited_ip_address_geolocati.html?CMP=OTC-0D6B48984890" >via make</a></p>
<p>Brought to you by: <a href="http://zedomax.com/blog" >Zedomax.com</a></p>
<p><a href="http://zedomax.com/blog/2009/03/25/mysql-diy-how-to-apply-ip-geo-location-using-mysql/" >MySQL DIY &#8211; How to Apply IP Geo-Location Using MySQL!</a></p>

	<span style="display:none"><a href="http://zedomax.com/blog/tag/c-255/" title="c 255" rel="tag">c 255</a>, <a href="http://zedomax.com/blog/category/computer/" title="Computer" rel="tag">Computer</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/category/diy/" title="DIY" rel="tag">DIY</a>, <a href="http://zedomax.com/blog/tag/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/tag/google/" title="Google" rel="tag">Google</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/ip-addresses/" title="ip addresses" rel="tag">ip addresses</a>, <a href="http://zedomax.com/blog/tag/ip-address/" title="ip-address" rel="tag">ip-address</a>, <a href="http://zedomax.com/blog/category/misc/" title="Misc" rel="tag">Misc</a>, <a href="http://zedomax.com/blog/tag/mysql-table/" title="mysql table" rel="tag">mysql table</a>, <a href="http://zedomax.com/blog/category/diy/projects/" title="Projects" rel="tag">Projects</a>, <a href="http://zedomax.com/blog/category/technology/web-technology/" title="Web" rel="tag">Web</a>, <a href="http://zedomax.com/blog/category/technology/web-technology/webapp/" title="WebApp" rel="tag">WebApp</a></span>

	<h3>Related posts</h3>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.com/blog/2007/02/22/zedomax-reaches-over-500000-unique-visitors-thanks-to-youall/" title="Zedomax reaches over 500,000 Unique Visitors thanks to you&#8217;all (February 22, 2007)">Zedomax reaches over 500,000 Unique Visitors thanks to you&#8217;all</a> </li>
	<li><a href="http://zedomax.com/blog/2007/03/17/onearthtravelcom-and-our-other-blogs-and-social-networking-sites/" title="OnEarthTravel.com and our &#8220;other&#8221; blogs and social networking sites. (March 17, 2007)">OnEarthTravel.com and our &#8220;other&#8221; blogs and social networking sites.</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/google-voice-local-search/" title="Google Voice Local Search (April 6, 2007)">Google Voice Local Search</a> </li>
	<li><a href="http://zedomax.com/blog/2007/03/20/google-phone-contest-what-will-it-look-like-contest-for-100-bucks/" title="Google Phone CONTEST &#8211; &#8220;What will it look like?&#8221; contest for 100 bucks! (March 20, 2007)">Google Phone CONTEST &#8211; &#8220;What will it look like?&#8221; contest for 100 bucks!</a> </li>
	<li><a href="http://zedomax.com/blog/2006/12/14/google-patent-search/" title="Google Patent Search (December 14, 2006)">Google Patent Search</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/03/20/get-paid-4500-by-google-to-work-on-open-source-projects/" title="Get paid $4,500 by Google to work on open-source projects! (March 20, 2007)">Get paid $4,500 by Google to work on open-source projects!</a> </li>
	<li><a href="http://zedomax.com/blog/2008/03/26/funny-googledoc-or-is-it-googledocs/" title="Funny Googledoc or is it GoogleDocs? (March 26, 2008)">Funny Googledoc or is it GoogleDocs?</a> </li>
	<li><a href="http://zedomax.com/blog/2007/10/15/fixyacom-for-diyers-and-ethically-honest-at-heart-hackers/" title="FixYa.com &#8211; For DIYers and ethically honest at heart HACKers! (October 15, 2007)">FixYa.com &#8211; For DIYers and ethically honest at heart HACKers!</a> </li>
	<li><a href="http://zedomax.com/blog/2009/04/20/diy-wireless-solar-powered-google-calendar/" title="DIY Wireless Solar Powered Google Calendar! (April 20, 2009)">DIY Wireless Solar Powered Google Calendar!</a> </li>
	<li><a href="http://zedomax.com/blog/2008/04/24/diy-stinger-spud-gun/" title="DIY Stinger Spud Gun! (April 24, 2008)">DIY Stinger Spud Gun!</a> </li>
	<li><a href="http://zedomax.com/blog/2007/04/04/diy-photoshop-howto-create-water-ripple-effect/" title="DIY PHOTOSHOP &#8211; HOWTO create Water Ripple Effect (April 4, 2007)">DIY PHOTOSHOP &#8211; HOWTO create Water Ripple Effect</a> </li>
	<li><a href="http://zedomax.com/blog/2007/04/11/diy-mp3-hack-how-to-make-your-own-mp3-player/" title="DIY MP3 HACK &#8211; How to make your own MP3 Player! (April 11, 2007)">DIY MP3 HACK &#8211; How to make your own MP3 Player!</a> </li>
	<li><a href="http://zedomax.com/blog/2006/12/15/diy-molding-how-to-mold-an-orb-or-a-round-thingee/" title="DIY Molding &#8211; How to mold an Orb or a round thingee (December 15, 2006)">DIY Molding &#8211; How to mold an Orb or a round thingee</a> </li>
	<li><a href="http://zedomax.com/blog/2008/05/05/diy-iphone-hack-how-to-make-an-iphone-lojack-and-chart-your-location-using-google-maps/" title="DIY iPhone HACK &#8211; How to make an iPhone LoJack and chart your location using Google Maps! (May 5, 2008)">DIY iPhone HACK &#8211; How to make an iPhone LoJack and chart your location using Google Maps!</a> </li>
	<li><a href="http://zedomax.com/blog/2008/08/26/diy-homebrewed-wii-app-wii-physics/" title="DIY Homebrewed Wii App &#8211; Wii Physics! (August 26, 2008)">DIY Homebrewed Wii App &#8211; Wii Physics!</a> </li>
	<li><a href="http://zedomax.com/blog/2008/05/23/diy-hack-how-to-make-a-wii-whiteboard/" title="DIY HACK &#8211; How to Make a Wii Whiteboard! (May 23, 2008)">DIY HACK &#8211; How to Make a Wii Whiteboard!</a> </li>
	<li><a href="http://zedomax.com/blog/2007/03/29/diy-hack-120000-volt-van-de-graaff-generator/" title="DIY HACK &#8211; 120,000 Volt Van De Graaff Generator! (March 29, 2007)">DIY HACK &#8211; 120,000 Volt Van De Graaff Generator!</a> </li>
	<li><a href="http://zedomax.com/blog/2009/01/24/diy-and-howtos-from-guerilla-internet-marketing-blog/" title="DIY and HOWTOs from Guerilla Internet Marketing Blog (January 24, 2009)">DIY and HOWTOs from Guerilla Internet Marketing Blog</a> </li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://zedomax.com/blog/2009/03/25/mysql-diy-how-to-apply-ip-geo-location-using-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DIY Phone Dial Web Browser!</title>
		<link>http://zedomax.com/blog/2008/10/07/diy-phone-dial-web-browser/</link>
		<comments>http://zedomax.com/blog/2008/10/07/diy-phone-dial-web-browser/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 10:11:46 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[Computer Keyboard]]></category>
		<category><![CDATA[Consumer]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Educational]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Featured DIYs]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[Hack]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[convenience]]></category>
		<category><![CDATA[cool project]]></category>
		<category><![CDATA[elegance]]></category>
		<category><![CDATA[fast food restaurant]]></category>
		<category><![CDATA[fast food restaurant chain]]></category>
		<category><![CDATA[information technology]]></category>
		<category><![CDATA[interaction]]></category>
		<category><![CDATA[ip addresses]]></category>
		<category><![CDATA[mcdonalds]]></category>
		<category><![CDATA[phone dial]]></category>
		<category><![CDATA[relationship]]></category>
		<category><![CDATA[web browser]]></category>

		<guid isPermaLink="false">http://zedomax.com/blog/?p=10004</guid>
		<description><![CDATA[

This has to be the most wackiest DIY ever, a phone dial that let&#8217;s you browser the web via IP addresses.
Well, technically, you won&#8217;t be able to surf the web with this phone dial unless you can remember IP addresses of every website you visit but still is a cool project.
Let&#8217;s just say this DIY [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-10005 aligncenter" title="web1" src="http://zedomax.com/blog/wp-content/uploads/2008/10/web1.jpg" alt="" width="500" height="235" /></p>
<p style="text-align: center;"><img class="size-full wp-image-10006 aligncenter" title="web2" src="http://zedomax.com/blog/wp-content/uploads/2008/10/web2.jpg" alt="" width="500" height="235" /></p>
<p>This has to be the most wackiest DIY ever, a phone dial that let&#8217;s you browser the web via IP addresses.</p>
<p>Well, technically, you won&#8217;t be able to surf the web with this phone dial unless you can remember IP addresses of every website you visit but still is a cool project.</p>
<p>Let&#8217;s just say this DIY is more of an artwork than it is a practical thing to make.</p>
<blockquote><p>Our relationship with technology is quickly becoming analogous to our relationship with fast food. Like the fast food restaurant chain McDonalds, information technology (e.g. the internet) seems to be everywhere. We expect it to be fast, and collectively value convenience and eﬃciency over elegance and craft. In the Phone Dial Web Browser, I ask how we might bring beauty and appreciation for craft back into our interaction with the now commonplace, pervasive web browser.</p></blockquote>
<p>via <a target="_blank" href="http://blog.makezine.com/archive/2008/10/browse_the_web_from_your.html?CMP=OTC-0D6B48984890" >make</a>, <a target="_blank" href="http://velluminous.org/portfolio/detail/?7" >DIY Page</a></p>
<p>Brought to you by: <a href="http://zedomax.com/blog" >Zedomax.com</a></p>
<p><a href="http://zedomax.com/blog/2008/10/07/diy-phone-dial-web-browser/" >DIY Phone Dial Web Browser!</a></p>

	<span style="display:none"><a href="http://zedomax.com/blog/category/design/art/" title="Art" rel="tag">Art</a>, <a href="http://zedomax.com/blog/category/computer/" title="Computer" rel="tag">Computer</a>, <a href="http://zedomax.com/blog/category/computer/computer-keyboard/" title="Computer Keyboard" rel="tag">Computer Keyboard</a>, <a href="http://zedomax.com/blog/category/misc/consumer-misc/" title="Consumer" rel="tag">Consumer</a>, <a href="http://zedomax.com/blog/tag/convenience/" title="convenience" rel="tag">convenience</a>, <a href="http://zedomax.com/blog/tag/cool-project/" title="cool project" rel="tag">cool project</a>, <a href="http://zedomax.com/blog/category/design/" title="Design" rel="tag">Design</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/tag/elegance/" title="elegance" rel="tag">elegance</a>, <a href="http://zedomax.com/blog/category/entertainment/" title="Entertainment" rel="tag">Entertainment</a>, <a href="http://zedomax.com/blog/tag/fast-food-restaurant/" title="fast food restaurant" rel="tag">fast food restaurant</a>, <a href="http://zedomax.com/blog/tag/fast-food-restaurant-chain/" title="fast food restaurant chain" rel="tag">fast food restaurant chain</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/gadgets/" title="Gadgets" rel="tag">Gadgets</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/information-technology/" title="information technology" rel="tag">information technology</a>, <a href="http://zedomax.com/blog/tag/interaction/" title="interaction" rel="tag">interaction</a>, <a href="http://zedomax.com/blog/tag/ip-addresses/" title="ip addresses" rel="tag">ip addresses</a>, <a href="http://zedomax.com/blog/tag/mcdonalds/" title="mcdonalds" rel="tag">mcdonalds</a>, <a href="http://zedomax.com/blog/category/misc/" title="Misc" rel="tag">Misc</a>, <a href="http://zedomax.com/blog/tag/phone-dial/" title="phone dial" rel="tag">phone dial</a>, <a href="http://zedomax.com/blog/category/diy/projects/" title="Projects" rel="tag">Projects</a>, <a href="http://zedomax.com/blog/tag/relationship/" title="relationship" rel="tag">relationship</a>, <a href="http://zedomax.com/blog/tag/web-browser/" title="web browser" rel="tag">web browser</a></span>

	<h3>Related posts</h3>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.com/blog/2010/02/16/what-is-inside-mcdonalds-avatar-toy/" title="What is Inside McDonald&#8217;s Avatar Toy? (February 16, 2010)">What is Inside McDonald&#8217;s Avatar Toy?</a> </li>
	<li><a href="http://zedomax.com/blog/2009/08/17/web-server-hack-how-to-use-ddos-deflate-to-protect-against-dos-flooding/" title="Web Server Hack &#8211; How to Use DDoS Deflate to Protect Against DoS Flooding! (August 17, 2009)">Web Server Hack &#8211; How to Use DDoS Deflate to Protect Against DoS Flooding!</a> </li>
	<li><a href="http://zedomax.com/blog/2009/10/18/ubuntu-diy-how-to-install-opera-web-browser-in-ubuntu/" title="Ubuntu DIY &#8211; How to Install Opera Web Browser in Ubuntu! (October 18, 2009)">Ubuntu DIY &#8211; How to Install Opera Web Browser in Ubuntu!</a> </li>
	<li><a href="http://zedomax.com/blog/2008/07/30/stewart-f1-electric-pull-cart-for-your-next-golfing-decade/" title="Stewart F1 Electric Pull-Cart for your next Golfing Decade! (July 30, 2008)">Stewart F1 Electric Pull-Cart for your next Golfing Decade!</a> </li>
	<li><a href="http://zedomax.com/blog/2009/05/06/solar-diy-how-to-make-a-solar-powered-roof-gutter-water-barrel/" title="Solar DIY &#8211; How to Make a Solar Powered Roof Gutter Water Barrel! (May 6, 2009)">Solar DIY &#8211; How to Make a Solar Powered Roof Gutter Water Barrel!</a> </li>
	<li><a href="http://zedomax.com/blog/2009/03/08/solar-diy-how-to-make-a-solar-photovoltaic-tracker/" title="Solar DIY &#8211; How to Make a Solar Photovoltaic Tracker! (March 8, 2009)">Solar DIY &#8211; How to Make a Solar Photovoltaic Tracker!</a> </li>
	<li><a href="http://zedomax.com/blog/2008/05/19/schlage-brings-z-wave-web-enabled-door-locks/" title="Schlage brings Z-Wave Web-Enabled Door Locks! (May 19, 2008)">Schlage brings Z-Wave Web-Enabled Door Locks!</a> </li>
	<li><a href="http://zedomax.com/blog/2009/02/12/roll-up-earplugs-from-macks/" title="Roll-Up Earplugs From Mack&#8217;s! (February 12, 2009)">Roll-Up Earplugs From Mack&#8217;s!</a> </li>
	<li><a href="http://zedomax.com/blog/2009/03/25/note-to-spammers-and-hackers/" title="Note to Spammers and Hackers (March 25, 2009)">Note to Spammers and Hackers</a> </li>
	<li><a href="http://zedomax.com/blog/2009/03/25/mysql-diy-how-to-apply-ip-geo-location-using-mysql/" title="MySQL DIY &#8211; How to Apply IP Geo-Location Using MySQL! (March 25, 2009)">MySQL DIY &#8211; How to Apply IP Geo-Location Using MySQL!</a> </li>
	<li><a href="http://zedomax.com/blog/2007/08/05/mouse-and-keypad-in-one/" title="Mouse and keypad in one (August 5, 2007)">Mouse and keypad in one</a> </li>
	<li><a href="http://zedomax.com/blog/2008/09/26/mcdonalds-burgers-have-enough-preservatives-to-last-12-years/" title="McDonalds Burgers have enough preservatives to last 12+ years! (September 26, 2008)">McDonalds Burgers have enough preservatives to last 12+ years!</a> </li>
	<li><a href="http://zedomax.com/blog/2008/05/10/keyboard-pants-always-carry-a-functional-keyboard-with-you/" title="Keyboard Pants, Always Carry a Functional Keyboard with You! (May 10, 2008)">Keyboard Pants, Always Carry a Functional Keyboard with You!</a> </li>
	<li><a href="http://zedomax.com/blog/2008/05/20/holographic-appearance-by-bill-gates-in-malaysia/" title="Holographic Appearance by Bill Gates in Malaysia! (May 20, 2008)">Holographic Appearance by Bill Gates in Malaysia!</a> </li>
	<li><a href="http://zedomax.com/blog/2009/05/04/gold-mcdonalds-coffee-spoons/" title="Gold McDonalds coffee spoons (May 4, 2009)">Gold McDonalds coffee spoons</a> </li>
	<li><a href="http://zedomax.com/blog/2008/06/19/garmins-nuvifone-will-be-manufactured-by-asus/" title="Garmin&#8217;s Nuvifone will be manufactured by ASUS! (June 19, 2008)">Garmin&#8217;s Nuvifone will be manufactured by ASUS!</a> </li>
	<li><a href="http://zedomax.com/blog/2009/02/08/future-computers-will-be-organic/" title="Future Computers will be Organic! (February 8, 2009)">Future Computers will be Organic!</a> </li>
	<li><a href="http://zedomax.com/blog/2009/12/17/free-wifi-coming-to-mcdonalds/" title="Free WiFi coming to McDonald&#8217;s! (December 17, 2009)">Free WiFi coming to McDonald&#8217;s!</a> </li>
	<li><a href="http://zedomax.com/blog/2008/05/25/ethernet-ring/" title="Ethernet Ring? (May 25, 2008)">Ethernet Ring?</a> </li>
	<li><a href="http://zedomax.com/blog/2008/07/15/electric-shoe-polisher/" title="Electric Shoe Polisher! (July 15, 2008)">Electric Shoe Polisher!</a> </li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://zedomax.com/blog/2008/10/07/diy-phone-dial-web-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
