<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Bobobobo's Weblog &#187; internets</title>
	<atom:link href="http://bobobobo.wordpress.com/category/internets/feed/" rel="self" type="application/rss+xml" />
	<link>http://bobobobo.wordpress.com</link>
	<description>technology and the internets</description>
	<lastBuildDate>Sun, 20 Dec 2009 18:22:10 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='bobobobo.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/0e8d17c68f90a18a1e89a776717e00e2?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Bobobobo's Weblog &#187; internets</title>
		<link>http://bobobobo.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://bobobobo.wordpress.com/osd.xml" title="Bobobobo&#8217;s Weblog" />
		<item>
		<title>How do I design a simple &#8220;front-controller&#8221;?</title>
		<link>http://bobobobo.wordpress.com/2008/05/04/how-do-i-design-a-simple-front-controller/</link>
		<comments>http://bobobobo.wordpress.com/2008/05/04/how-do-i-design-a-simple-front-controller/#comments</comments>
		<pubDate>Sun, 04 May 2008 15:05:50 +0000</pubDate>
		<dc:creator>bobobobo</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[internets]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://bobobobo.wordpress.com/?p=211</guid>
		<description><![CDATA[In any modern web app, you probably want to have really cool and simple URLs like how WordPress does for your permalinks.  E.g., the permalink for this posting is 
http://bobobobo.wordpress.com/2008/05/04/how-do-i-design-a-simple-front-controller/
MUCH better than the typical MSDN type urls:

http://msdn.microsoft.com/en-us/library/52cs05fz.aspx
http://msdn.microsoft.com/en-us/library/d06h2&#215;6e.aspx
http://msdn.microsoft.com/en-us/library/bb385954.aspx

Do you think when I complete this posting and publish it, WordPress will ACTUALLY PUT A FILE at [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bobobobo.wordpress.com&blog=2331964&post=211&subd=bobobobo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>In any modern web app, you probably want to have really cool and simple URLs like how WordPress does for your permalinks.  E.g., the permalink for this posting is </p>
<p><a href="http://bobobobo.wordpress.com/2008/05/04/how-do-i-design-a-simple-front-controller/">http://bobobobo.wordpress.com/2008/05/04/how-do-i-design-a-simple-front-controller/</a></p>
<p>MUCH better than the typical MSDN type urls:</p>
<blockquote>
<p>http://msdn.microsoft.com/en-us/library/52cs05fz.aspx</p>
<p>http://msdn.microsoft.com/en-us/library/d06h2&#215;6e.aspx</p>
<p>http://msdn.microsoft.com/en-us/library/bb385954.aspx</p>
</blockquote>
<p>Do you think when I complete this posting and publish it, WordPress will ACTUALLY PUT A FILE at <b>http://bobobobo.wordpress.com/2008/05/04/how-do-i-design-a-simple-front-controller/</b>?</p>
<p>NO you dummy!!</p>
<p>Anytime you see REALLY simple urls like http://www.website.com/PersonsUsername/ most likely what is happening there is the web application is using something called REQUEST MAPPING.  You do REQUEST MAPPING using what is called a FRONT CONTROLLER.</p>
<p>The FRONT CONTROLLER works to INTERPRET requests for specific URI&#8217;s AS requests to OTHER pages, engines, and so on.</p>
<p>Give <a href="http://cakephp.org/screencasts/view/3">this a watch</a>.</p>
<p>First, NOTICE how simple that uri is?  In case you didn&#8217;t follow the link through, its http://cakephp.org/screencasts/view/3.</p>
<p>So CakePHP a front controller to do &#8220;request mapping!&#8221;  WATCH THE VIDEO to get an idea, dude.</p>
<p>ANYWAY, how do you create a really simple front-controller and do request mapping from a Java servlet?</p>
<p>Just create a regular servlet, then make the web.xml entry for it something like this:</p>
<blockquote>
<pre>
&lt;servlet&gt;
  &lt;servlet-name&gt;member&lt;/servlet-name&gt;
  &lt;servlet-class&gt;member&lt;/servlet-class&gt;
&lt;/servlet&gt;

&lt;servlet-mapping&gt;
  &lt;servlet-name&gt;member&lt;/servlet-name&gt;
  &lt;url-pattern&gt;/member/*&lt;/url-pattern&gt;
&lt;/servlet-mapping&gt;
</pre>
</blockquote>
<p>NOTICE the /member/* for the &lt;url-pattern&gt;?  THAT means that ANY requests that come in with the pattern http://www.my.server.com/member/WHATEVER will AUTOMATICALLY be mapped down into the &#8220;member&#8221; servlet.</p>
<p>So the &#8220;member&#8221; servlet class might look something like this:</p>
<blockquote>
<pre>
public class member extends HttpServlet
{
  protected void doGet( HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
  {
    String requestURI = request.getRequestURI();  // if the user hit
    // http://www.my.site.com/member/BOB then the REQUEST URI looks like
    // /member/BOB
    // All I'm going to do now is get everything after the last slash,
    // and that is what will tell me which member profile is desired:
    String desiredUserProfile = requestURI.substring( requestURI.lastIndexOf("/") + 1 );

    // work with desiredUserProfile to produce page output, whatever.
  }
}
</pre>
</blockquote>
<p>Get the idea?</p>
<p>See also:</p>
<p>Java:<br />
<a href="http://java.sun.com/blueprints/corej2eepatterns/Patterns/FrontController.html">http://java.sun.com/blueprints/corej2eepatterns/Patterns/FrontController.html</a></p>
<p>PHP:<br />
<a href="http://www.phpwact.org/pattern/front_controller">http://www.phpwact.org/pattern/front_controller</a></p>
<p>Apache Server:</p>
<h1><a href="http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html">mod_rewrite</a></h1>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bobobobo.wordpress.com/211/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bobobobo.wordpress.com/211/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bobobobo.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bobobobo.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bobobobo.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bobobobo.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bobobobo.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bobobobo.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bobobobo.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bobobobo.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bobobobo.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bobobobo.wordpress.com/211/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bobobobo.wordpress.com&blog=2331964&post=211&subd=bobobobo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bobobobo.wordpress.com/2008/05/04/how-do-i-design-a-simple-front-controller/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a4ec51727310397c9e592dd84ae74dc2?s=96&#38;d=http%3A%2F%2Fa.wordpress.com%2Fi%2Fmu.gif" medium="image">
			<media:title type="html">bobobobo</media:title>
		</media:content>
	</item>
		<item>
		<title>IIS ftp 5.1:  426 Connection closed; transfer aborted.</title>
		<link>http://bobobobo.wordpress.com/2008/04/30/iis-ftp-51-426-connection-closed-transfer-aborted/</link>
		<comments>http://bobobobo.wordpress.com/2008/04/30/iis-ftp-51-426-connection-closed-transfer-aborted/#comments</comments>
		<pubDate>Wed, 30 Apr 2008 10:10:17 +0000</pubDate>
		<dc:creator>bobobobo</dc:creator>
				<category><![CDATA[internets]]></category>

		<guid isPermaLink="false">http://bobobobo.wordpress.com/?p=210</guid>
		<description><![CDATA[What the. . . ?
I&#8217;m trying to set up and ftp server on my machine here.
This machine reaches the internet through a router, so I configured the router to talk to dyndns.  the router forwards ports of my choosing.
I set up IIS, change the port to 2001 for extra security, and try to connect [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bobobobo.wordpress.com&blog=2331964&post=210&subd=bobobobo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>What the. . . ?</p>
<p>I&#8217;m trying to set up and ftp server on my machine here.</p>
<p>This machine reaches the internet through a router, so I configured the router to talk to dyndns.  the router forwards ports of my choosing.</p>
<p>I set up IIS, change the port to 2001 for extra security, and try to connect to it via a simple, reliable ftp program like <a href="http://www.oldapps.com/download.php?oldappsid=wsftp6.exe">WS_FTP 6.0</a> <sup><a href="http://oldversion.com/program.php?n=wsftp">1</a></sup> (before they tried to make it all weird and heavy and snazzy.  No snazz for me, thank you.)</p>
<p>I get the following response from the IIS server:</p>
<blockquote>
<pre>

WINSOCK.DLL: WinSock 2.0
Ipswitch WS_FTP LE 6.0 2003.11.04, Copyright © 1992-2003 Ipswitch, Inc.
- -
connecting to 25.11.22.33:574
Connected to 25.11.22.33 port 574
220 Microsoft FTP Service
USER bobobobo
331 Password required for bobobobo.
PASS (hidden)
230 User bobobobo logged in.
CWD /Ipswitch/Product_Downloads
550 /Ipswitch/Product_Downloads: The system cannot find the path specified.
PWD
257 "/" is current directory.
SYST
215 Windows_NT
Host type (S): Microsoft NT
PASV
227 Entering Passive Mode (192,168,1,103,5,113).
connecting to 192.168.1.103:1393
- -
connecting to 192.168.1.103:1393
Connected to 192.168.1.103 port 1393
LIST
426 Connection closed; transfer aborted.
! Retrieve of folder listing failed (4)
</pre>
</blockquote>
<p>Connection CLOSED????  WHY?? </p>
<p>It turns out the answer is that I&#8217;m trying to use a port other than the default port 21.</p>
<p>It turns out that IIS 5.1 ONLY works if you set the port to 21.  Isn&#8217;t that weird?</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bobobobo.wordpress.com/210/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bobobobo.wordpress.com/210/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bobobobo.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bobobobo.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bobobobo.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bobobobo.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bobobobo.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bobobobo.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bobobobo.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bobobobo.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bobobobo.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bobobobo.wordpress.com/210/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bobobobo.wordpress.com&blog=2331964&post=210&subd=bobobobo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bobobobo.wordpress.com/2008/04/30/iis-ftp-51-426-connection-closed-transfer-aborted/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a4ec51727310397c9e592dd84ae74dc2?s=96&#38;d=http%3A%2F%2Fa.wordpress.com%2Fi%2Fmu.gif" medium="image">
			<media:title type="html">bobobobo</media:title>
		</media:content>
	</item>
		<item>
		<title>BLOCK ADS with Opera browser</title>
		<link>http://bobobobo.wordpress.com/2008/02/17/block-ads-with-opera-browser/</link>
		<comments>http://bobobobo.wordpress.com/2008/02/17/block-ads-with-opera-browser/#comments</comments>
		<pubDate>Sun, 17 Feb 2008 01:12:26 +0000</pubDate>
		<dc:creator>bobobobo</dc:creator>
				<category><![CDATA[internets]]></category>

		<guid isPermaLink="false">http://bobobobo.wordpress.com/?p=186</guid>
		<description><![CDATA[HOW AM I SUPPOSED TO READ WITH THIS MOVING STUFF IN THE WAY???  ITS TOO DISTRACTING!!


Hello .. what&#8217;s this&#8230;?


Sweet


THANKS OPERA! I CAN GET BACK TO READING NOW


Opera browser
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bobobobo.wordpress.com&blog=2331964&post=186&subd=bobobobo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h1>HOW AM I SUPPOSED TO READ WITH THIS MOVING STUFF IN THE WAY???  ITS TOO DISTRACTING!!</h1>
<p><img src='http://bobobobo.files.wordpress.com/2008/02/adblock1.png' alt='adblock1.png' /></p>
<hr />
<h1>Hello .. what&#8217;s this&#8230;?</h1>
<p><img src='http://bobobobo.files.wordpress.com/2008/02/adblock2.png' alt='adblock2.png' /></p>
<hr />
<h1>Sweet</h1>
<p><img src='http://bobobobo.files.wordpress.com/2008/02/adblock3.png' alt='adblock3.png' /></p>
<hr />
<h1>THANKS OPERA! I CAN GET BACK TO READING NOW</h1>
<p><img src='http://bobobobo.files.wordpress.com/2008/02/adblock4.png' alt='adblock4.png' /></p>
<hr />
<h2><a href="http://www.opera.com/download/">Opera browser</a></h2>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bobobobo.wordpress.com/186/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bobobobo.wordpress.com/186/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bobobobo.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bobobobo.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bobobobo.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bobobobo.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bobobobo.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bobobobo.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bobobobo.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bobobobo.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bobobobo.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bobobobo.wordpress.com/186/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bobobobo.wordpress.com&blog=2331964&post=186&subd=bobobobo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bobobobo.wordpress.com/2008/02/17/block-ads-with-opera-browser/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a4ec51727310397c9e592dd84ae74dc2?s=96&#38;d=http%3A%2F%2Fa.wordpress.com%2Fi%2Fmu.gif" medium="image">
			<media:title type="html">bobobobo</media:title>
		</media:content>

		<media:content url="http://bobobobo.files.wordpress.com/2008/02/adblock1.png" medium="image">
			<media:title type="html">adblock1.png</media:title>
		</media:content>

		<media:content url="http://bobobobo.files.wordpress.com/2008/02/adblock2.png" medium="image">
			<media:title type="html">adblock2.png</media:title>
		</media:content>

		<media:content url="http://bobobobo.files.wordpress.com/2008/02/adblock3.png" medium="image">
			<media:title type="html">adblock3.png</media:title>
		</media:content>

		<media:content url="http://bobobobo.files.wordpress.com/2008/02/adblock4.png" medium="image">
			<media:title type="html">adblock4.png</media:title>
		</media:content>
	</item>
		<item>
		<title>Camstudio is FREE!</title>
		<link>http://bobobobo.wordpress.com/2008/02/15/camstudio-is-free/</link>
		<comments>http://bobobobo.wordpress.com/2008/02/15/camstudio-is-free/#comments</comments>
		<pubDate>Fri, 15 Feb 2008 04:56:21 +0000</pubDate>
		<dc:creator>bobobobo</dc:creator>
				<category><![CDATA[interesting]]></category>
		<category><![CDATA[internets]]></category>

		<guid isPermaLink="false">http://bobobobo.wordpress.com/2008/02/15/camstudio-is-free/</guid>
		<description><![CDATA[here it is
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bobobobo.wordpress.com&blog=2331964&post=183&subd=bobobobo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://camstudio.org/">here it is</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bobobobo.wordpress.com/183/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bobobobo.wordpress.com/183/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bobobobo.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bobobobo.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bobobobo.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bobobobo.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bobobobo.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bobobobo.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bobobobo.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bobobobo.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bobobobo.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bobobobo.wordpress.com/183/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bobobobo.wordpress.com&blog=2331964&post=183&subd=bobobobo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bobobobo.wordpress.com/2008/02/15/camstudio-is-free/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a4ec51727310397c9e592dd84ae74dc2?s=96&#38;d=http%3A%2F%2Fa.wordpress.com%2Fi%2Fmu.gif" medium="image">
			<media:title type="html">bobobobo</media:title>
		</media:content>
	</item>
		<item>
		<title>So.  Canada&#8217;s amazon is stupid with the prices.</title>
		<link>http://bobobobo.wordpress.com/2008/01/28/book-prices-and-amazoncom/</link>
		<comments>http://bobobobo.wordpress.com/2008/01/28/book-prices-and-amazoncom/#comments</comments>
		<pubDate>Mon, 28 Jan 2008 02:37:31 +0000</pubDate>
		<dc:creator>bobobobo</dc:creator>
				<category><![CDATA[books]]></category>
		<category><![CDATA[internets]]></category>

		<guid isPermaLink="false">http://bobobobo.wordpress.com/?p=124</guid>
		<description><![CDATA[Jan 27
 @ 9:18pm, google says in response to the question

1 Canadian dollar = 0.994233 U.S. dollars


Yet, amazon.com and amazon.ca continue to have wildly different prices when it comes to the same exact books.
Compare:


C in a Nutshell on amazon.CA &#8211; $35.25
C in a Nutshell on amazon.COM &#8211; $26.37
Canadians pay $8.88 more.


Practical English Usage &#8211; $36.51 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bobobobo.wordpress.com&blog=2331964&post=124&subd=bobobobo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h3>Jan 27</h3>
<p> @ 9:18pm, google says in response to the question</p>
<blockquote><p>
1 Canadian dollar = 0.994233 U.S. dollars
</p></blockquote>
<p><img src='http://bobobobo.files.wordpress.com/2008/01/canadiandollar.gif' alt='Value of Canadian dollar in US dollars, Jan 27/08' /></p>
<p>Yet, amazon.com and amazon.ca continue to have wildly different prices when it comes to the same exact books.</p>
<h2>Compare:</h2>
<ul>
<li>
<a href="http://www.amazon.ca/C-Nutshell-Peter-Prinz/dp/0596006977/">C in a Nutshell on amazon.CA &#8211; $35.25</a><br />
<a href="http://www.amazon.com/C-Nutshell-OReilly-Peter-Prinz/dp/0596006977/">C in a Nutshell on amazon.COM &#8211; $26.37</a></p>
<p>Canadians pay $8.88 more.
</li>
<li>
<a href="http://www.amazon.ca/Practical-English-Usage-Third-Paperback/dp/0194420981/">Practical English Usage &#8211; $36.51 AFTER discount from $57.95 on amazon.CA</a><br />
<a href="http://www.amazon.com/Practical-English-Usage-Michael-Swan/dp/0194420981/">Practical English Usage &#8211; $25.50 with NO discount on amazon.COM</a></p>
<p>Canadians pay $11.01 more.
</li>
<li>
<a href="http://www.amazon.ca/Introduction-Game-Programming-Direct-9-0c/dp/1598220160/">Frank luna&#8217;s directX book, $44.07 on amazon.ca &#8212; discounted from $69.95</a><br />
<a href="http://www.amazon.com/Introduction-Game-Programming-Direct-9-0c/dp/1598220160/">Frank luna&#8217;s directX book, $32.97 on amazon.com &#8212; discounted from $49.95</a></p>
<p>Canadians pay $11.10 more.
</li>
</ul>
<p>I&#8217;m sure there are quite a few more factors in determining prices than I am aware, but come on.  $10 more to buy the exact same book, with the same isbn, when the difference between the Canadian and US dollars differ by LESS THAN A CENT??</p>
<p>It seems these prices are appropriate for a couple of years ago, not today.</p>
<h2>Why are we paying so much more?</h2>
<p><img src='http://bobobobo.files.wordpress.com/2008/01/canadian_flag.thumbnail.gif' alt='Canadian flag' /></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bobobobo.wordpress.com/124/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bobobobo.wordpress.com/124/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bobobobo.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bobobobo.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bobobobo.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bobobobo.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bobobobo.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bobobobo.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bobobobo.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bobobobo.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bobobobo.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bobobobo.wordpress.com/124/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bobobobo.wordpress.com&blog=2331964&post=124&subd=bobobobo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bobobobo.wordpress.com/2008/01/28/book-prices-and-amazoncom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a4ec51727310397c9e592dd84ae74dc2?s=96&#38;d=http%3A%2F%2Fa.wordpress.com%2Fi%2Fmu.gif" medium="image">
			<media:title type="html">bobobobo</media:title>
		</media:content>

		<media:content url="http://bobobobo.files.wordpress.com/2008/01/canadiandollar.gif" medium="image">
			<media:title type="html">Value of Canadian dollar in US dollars, Jan 27/08</media:title>
		</media:content>

		<media:content url="http://bobobobo.files.wordpress.com/2008/01/canadian_flag.thumbnail.gif" medium="image">
			<media:title type="html">Canadian flag</media:title>
		</media:content>
	</item>
		<item>
		<title>Try meaningful URLs, microsoft</title>
		<link>http://bobobobo.wordpress.com/2008/01/27/try-meaningful-urls-microsoft/</link>
		<comments>http://bobobobo.wordpress.com/2008/01/27/try-meaningful-urls-microsoft/#comments</comments>
		<pubDate>Sun, 27 Jan 2008 16:51:50 +0000</pubDate>
		<dc:creator>bobobobo</dc:creator>
				<category><![CDATA[internets]]></category>

		<guid isPermaLink="false">http://bobobobo.wordpress.com/2008/01/27/try-meaningful-urls-microsoft/</guid>
		<description><![CDATA[You know what&#8217;s annoying?
URLs like http://msdn2.microsoft.com/en-us/library/bb509638.aspx.
&#8220;bb509638.aspx&#8221; is completely meaningless to me as a page name.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bobobobo.wordpress.com&blog=2331964&post=119&subd=bobobobo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>You know what&#8217;s annoying?</p>
<p>URLs like <a href="http://msdn2.microsoft.com/en-us/library/bb509638.aspx">http://msdn2.microsoft.com/en-us/library/bb509638.aspx</a>.</p>
<p>&#8220;bb509638.aspx&#8221; is completely meaningless to me as a page name.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bobobobo.wordpress.com/119/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bobobobo.wordpress.com/119/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bobobobo.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bobobobo.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bobobobo.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bobobobo.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bobobobo.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bobobobo.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bobobobo.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bobobobo.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bobobobo.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bobobobo.wordpress.com/119/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bobobobo.wordpress.com&blog=2331964&post=119&subd=bobobobo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bobobobo.wordpress.com/2008/01/27/try-meaningful-urls-microsoft/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a4ec51727310397c9e592dd84ae74dc2?s=96&#38;d=http%3A%2F%2Fa.wordpress.com%2Fi%2Fmu.gif" medium="image">
			<media:title type="html">bobobobo</media:title>
		</media:content>
	</item>
		<item>
		<title>Free file upload hosting roundup</title>
		<link>http://bobobobo.wordpress.com/2008/01/25/filehosts/</link>
		<comments>http://bobobobo.wordpress.com/2008/01/25/filehosts/#comments</comments>
		<pubDate>Fri, 25 Jan 2008 05:15:20 +0000</pubDate>
		<dc:creator>bobobobo</dc:creator>
				<category><![CDATA[internets]]></category>
		<category><![CDATA[misc]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://bobobobo.wordpress.com/2008/01/25/test/</guid>
		<description><![CDATA[I heard that wordpress was giving members 3 gb of space. . . however, i didn&#8217;t realize we&#8217;re still limited to just image files and ms-word docs.
Hmm.  We need to serve up other file types.  For instance, I&#8217;m wanting to serve up a few .zip packages that contain MS Visual Studio projects.  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bobobobo.wordpress.com&blog=2331964&post=112&subd=bobobobo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I heard that wordpress was giving members 3 gb of space. . . however, i didn&#8217;t realize we&#8217;re still limited to just image files and ms-word docs.</p>
<p>Hmm.  We need to serve up other file types.  For instance, I&#8217;m wanting to serve up a few .zip packages that contain MS Visual Studio projects.  These packages are in the KB, and if .doc files can be served up from the blog, shouldn&#8217;t code packages be too?</p>
<h1>There are a number of options though</h1>
<h3><a href="http://www.esnips.com/">esnips.com</a></h3>
<p>  <b><del>!!! My pick</del></b> (I am moving to mediafire.com, Jan 1/09.  I&#8217;ll still use esnips, but mediafire looks really neat.)<br />
links like <a href="http://www.esnips.com/nsdoc/0d4d8479-818e-4f6c-a8e9-c8a5521ecb6c">CLICK HERE TO DOWNLOAD!</a></p>
<h3>ugh.. <a href="http://skydrive.live.com/">microsoft skydrive</a>.  I really DO NOT like how it downloads through a script request.  its annoying!!</h3>
<h3><a href="http://www.4shared.com/">4shared.com</a></h3>
<p>links like <a href="http://www.4shared.com/file/35910795/33c58b0a/testfile.html">http://www.4shared.com/file/35910795/33c58b0a/testfile.html</a></p>
<p>I like 4shared.</p>
<h1>Other fileupload hosts</h1>
<h3><a href="http://www.wikifortio.com/">wikifortio</a></h3>
<p>Download links like <a href="http://www.wikifortio.com/799208/testfile.txt">http://www.wikifortio.com/799208/testfile.txt</a><br />
1 &#8211; 99 day storage period<br />
Upload seems to be a tad slow, but I only uploaded a small testfile</p>
<h3><a href="http://senduit.com">senduit</a></h3>
<p>Links like <a href="http://senduit.com/b36ba8">http://senduit.com/b36ba8</a><br />
- Longevity:  30 <b>minute</b> expiry<br />
- Comments:  Doesn&#8217;t meet my needs here, but i can see how this would be useful for distributing a smaller file quickly among 5 or 6 friends quickly and easily.</p>
<h3><a href="http://rapidshare.de">rapidshare.de</a></h3>
<p>links like <a href="http://rapidshare.de/files/38405006/testfile.txt.html">http://rapidshare.de/files/38405006/testfile.txt.html</a><br />
Too many &#8220;hoops&#8221; to jump through to get to final download.  Limited unless you have premium.</p>
<h3><a href="http://mihd.net">mihd.net</a></h3>
<p>links like <a href="http://mihd.net/f0e2zv">http://mihd.net/f0e2zv</a><br />
pretty good</p>
<h3><a href="http://www.badongo.com/">badongo.com</a></h3>
<p>links like <a href="http://www.badongo.com/file/7479445">http://www.badongo.com/file/7479445</a></p>
<h3>files.to</h3>
<p><a href="http://files.to">files.to is stupid because it requires a captcha</a></p>
<h3><a href="http://mediafire.com/">mediafire.com</a></h3>
<p>WOW.  This one is really glossy.  Links like <a href="http://download403.mediafire.com/5ijhrll7m5pg/x0zajn0dkmt/test.txt">CLICK TO DOWNLOAD!</a>.  NO LOGIN REQUIRED TO UPLOAD!  Really neat!  (Tested Thurs Jan 1 / 09)  !!! NEW PICK Jan 1 /09</p>
<h3>STILL SEARCHING</h3>
<p>I&#8217;m still looking for a file host that will give me a direct link that I can just post to my blog, without requiring redirection.</p>
<p>The closest thing to this that i&#8217;ve found is <a href="http://www.rejetto.com/hfs/">hfs</a>, which allows you to easily set a folder to see the public internet.</p>
<p>It also does a good job of getting around routers, you just have to port forward.</p>
<h3>The best thing would be . . . </h3>
<p>Of course, the best thing would be if wordpress actually allowed users to upload other types of files.  Although there&#8217;s potential for abuse, I want/need to upload code packages (.zip files that contain .cpp files).</p>
<p>WordPress COULD allow .zip archives up to a maximum of say, 8MB or so.  Code packages will be something in the KB, so they won&#8217;t cause traffic problems.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bobobobo.wordpress.com/112/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bobobobo.wordpress.com/112/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bobobobo.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bobobobo.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bobobobo.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bobobobo.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bobobobo.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bobobobo.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bobobobo.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bobobobo.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bobobobo.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bobobobo.wordpress.com/112/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bobobobo.wordpress.com&blog=2331964&post=112&subd=bobobobo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bobobobo.wordpress.com/2008/01/25/filehosts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a4ec51727310397c9e592dd84ae74dc2?s=96&#38;d=http%3A%2F%2Fa.wordpress.com%2Fi%2Fmu.gif" medium="image">
			<media:title type="html">bobobobo</media:title>
		</media:content>
	</item>
		<item>
		<title>HTML Entities:  Raggett&#8217;s html page</title>
		<link>http://bobobobo.wordpress.com/2008/01/21/raggetts-html-page/</link>
		<comments>http://bobobobo.wordpress.com/2008/01/21/raggetts-html-page/#comments</comments>
		<pubDate>Mon, 21 Jan 2008 18:03:50 +0000</pubDate>
		<dc:creator>bobobobo</dc:creator>
				<category><![CDATA[internets]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://bobobobo.wordpress.com/2008/01/21/raggetts-html-page/</guid>
		<description><![CDATA[Lots of people know you have to use &#38;gt; in your HTML to get the &#62; sign.
However, it appears that lots of people don&#8217;t know you can get superscripts and subscripts by using the &#60;sup&#62; and &#60;sub&#62; tags.
You can also get the &#8804; sign by using &#38;le; in your HTML.
I love this page.
more HTML entities [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bobobobo.wordpress.com&blog=2331964&post=85&subd=bobobobo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Lots of people know you have to use &amp;gt; in your HTML to get the &gt; sign.</p>
<p>However, it appears that lots of people don&#8217;t know you can get <sup>superscripts</sup> and <sub>subscripts</sub> by using the &lt;sup&gt; and &lt;sub&gt; tags.</p>
<p>You can also get the &le; sign <a href="http://www.fileformat.info/info/unicode/char/2264/index.htm">by using &amp;le; in your HTML</a>.</p>
<p>I love <a href="http://www.w3.org/MarkUp/Guide/Advanced.html">this page</a>.</p>
<p><a href="http://www.fileformat.info/info/unicode/char/a.htm">more HTML entities than you thought existed</a>.</p>
<p>And a <a href="http://perishablepress.com/press/2007/07/29/unicode-character-reference-for-bloggers/">unicode character reference for bloggers</a>.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bobobobo.wordpress.com/85/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bobobobo.wordpress.com/85/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bobobobo.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bobobobo.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bobobobo.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bobobobo.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bobobobo.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bobobobo.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bobobobo.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bobobobo.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bobobobo.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bobobobo.wordpress.com/85/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bobobobo.wordpress.com&blog=2331964&post=85&subd=bobobobo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bobobobo.wordpress.com/2008/01/21/raggetts-html-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a4ec51727310397c9e592dd84ae74dc2?s=96&#38;d=http%3A%2F%2Fa.wordpress.com%2Fi%2Fmu.gif" medium="image">
			<media:title type="html">bobobobo</media:title>
		</media:content>
	</item>
		<item>
		<title>somebody&#8217;s phd thesis</title>
		<link>http://bobobobo.wordpress.com/2008/01/13/somebodys-phd-thesis/</link>
		<comments>http://bobobobo.wordpress.com/2008/01/13/somebodys-phd-thesis/#comments</comments>
		<pubDate>Sun, 13 Jan 2008 15:16:39 +0000</pubDate>
		<dc:creator>bobobobo</dc:creator>
				<category><![CDATA[internets]]></category>

		<guid isPermaLink="false">http://bobobobo.wordpress.com/2008/01/13/somebodys-phd-thesis/</guid>
		<description><![CDATA[thought this was cool.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bobobobo.wordpress.com&blog=2331964&post=53&subd=bobobobo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>thought <a href="http://www.sics.se/~ali/thesis/">this was cool</a>.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bobobobo.wordpress.com/53/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bobobobo.wordpress.com/53/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bobobobo.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bobobobo.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bobobobo.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bobobobo.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bobobobo.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bobobobo.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bobobobo.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bobobobo.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bobobobo.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bobobobo.wordpress.com/53/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bobobobo.wordpress.com&blog=2331964&post=53&subd=bobobobo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bobobobo.wordpress.com/2008/01/13/somebodys-phd-thesis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a4ec51727310397c9e592dd84ae74dc2?s=96&#38;d=http%3A%2F%2Fa.wordpress.com%2Fi%2Fmu.gif" medium="image">
			<media:title type="html">bobobobo</media:title>
		</media:content>
	</item>
		<item>
		<title>__more cool stuff</title>
		<link>http://bobobobo.wordpress.com/2008/01/07/__more-cool-stuff/</link>
		<comments>http://bobobobo.wordpress.com/2008/01/07/__more-cool-stuff/#comments</comments>
		<pubDate>Mon, 07 Jan 2008 17:16:22 +0000</pubDate>
		<dc:creator>bobobobo</dc:creator>
				<category><![CDATA[interesting]]></category>
		<category><![CDATA[internets]]></category>

		<guid isPermaLink="false">http://bobobobo.wordpress.com/2008/01/07/__more-cool-stuff/</guid>
		<description><![CDATA[man.  The net is just . . . 
EXCELLENT list of Open source software and other really cool stuff
interesting article about Terman
sweet php math formula printer
just another reason to use Smarty
matrix cookbook
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bobobobo.wordpress.com&blog=2331964&post=34&subd=bobobobo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>man.  The net is just . . . </p>
<p><a href="http://www.ebswift.com/OpenSource/">EXCELLENT list of Open source software and other really cool stuff</a></p>
<p><a href="http://www.stanfordalumni.org/news/magazine/2000/julaug/articles/terman.html">interesting article about Terman</a></p>
<p><a href="http://www.xm1math.net/phpmathpublisher/">sweet php math formula printer</a></p>
<p><a href="http://www.phpfreaks.com/smarty_manual/page/language.function.math.html">just another reason to use Smarty</a></p>
<p><a href="http://matrixcookbook.com/">matrix cookbook</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bobobobo.wordpress.com/34/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bobobobo.wordpress.com/34/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bobobobo.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bobobobo.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bobobobo.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bobobobo.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bobobobo.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bobobobo.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bobobobo.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bobobobo.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bobobobo.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bobobobo.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bobobobo.wordpress.com&blog=2331964&post=34&subd=bobobobo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bobobobo.wordpress.com/2008/01/07/__more-cool-stuff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a4ec51727310397c9e592dd84ae74dc2?s=96&#38;d=http%3A%2F%2Fa.wordpress.com%2Fi%2Fmu.gif" medium="image">
			<media:title type="html">bobobobo</media:title>
		</media:content>
	</item>
	</channel>
</rss>