<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Excuse My Punctuation!</title>
	<atom:link href="http://germ.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://germ.wordpress.com</link>
	<description>Ehh?!</description>
	<lastBuildDate>Sun, 23 Nov 2008 15:32:25 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='germ.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/714574b1e980fb6bc78d98231c54e84f?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Excuse My Punctuation!</title>
		<link>http://germ.wordpress.com</link>
	</image>
			<item>
		<title>RabbitMQ &#8211; Basic Queue Maintenance Notes</title>
		<link>http://germ.wordpress.com/2008/11/22/rabbitmq-basic-queue-maintenance-notes/</link>
		<comments>http://germ.wordpress.com/2008/11/22/rabbitmq-basic-queue-maintenance-notes/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 05:15:20 +0000</pubDate>
		<dc:creator>germ</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[rabbitmq amqp erlang]]></category>

		<guid isPermaLink="false">http://germ.wordpress.com/?p=99</guid>
		<description><![CDATA[Here are some notes I have for maintaining RabbitMQ&#8217;s AMQP queues using the Erlang shell.
I am using (for demoing purposes) the RabbitMQ installation that came packaged with the On-Demand Elastic Server generated by CohesiveFT.  It couldn&#8217;t have been any simpler.
To connect to the RabbitMQ Erlang node, you can pull it up through an SSH [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=germ.wordpress.com&blog=30810&post=99&subd=germ&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Here are some notes I have for maintaining RabbitMQ&#8217;s AMQP queues using the Erlang shell.</p>
<p>I am using (for demoing purposes) the RabbitMQ installation that came packaged with the On-Demand Elastic Server generated by CohesiveFT.  It couldn&#8217;t have been any simpler.</p>
<p>To connect to the RabbitMQ Erlang node, you can pull it up through an SSH session into the Elastic Server (ES) itself or you can remotely connect to the Erlang node from your Erlang node.  I will describe how to do both.</p>
<p><strong>Connecting to Erlang from within the server:</strong><br />
<code>sudo su - rabbitmq -s /bin/sh -c 'erl -sname foo -remsh rabbit@srabbitmq'</code></p>
<p><strong>Connecting remotely to the RabbitMQ Erlang node:</strong><br />
There are a few ways to do this.  Since this is just for minor maintenance work on my demo, I do not care about security (if I did, I would prefer setting up ~/.erlang.cookie); therefore, I will connect using the node&#8217;s cookie in the following manner:<br />
<code>erl -sname foo -setcookie SOMECOOKIE -remsh rabbit@srabbitmq</code></p>
<p>The cookie (SOMECOOKIE) is obtained by logging into the ES and running:<br />
<code>cat /var/lib/rabbitmq/.erlang.cookie</code></p>
<p>For connecting remotely from your Windows workstation, use werl instead of erl so that the -remsh option will work.</p>
<p>When connecting remotely, make sure that port 4369 is open on your ES&#8217;s firewall and that the port for the current Erlang session is open (an easy way to determine the port on the ES is by reading the firewall error messages in /var/log/messages for the denied port).</p>
<p><strong>Queue Maintenance</strong></p>
<p><code><br />
%% "At the erlang prompt, type "rabbit_amqqueue:stat_all().", which will<br />
%% produce a brief report on the status of the queues in the system. This<br />
%% tells you how many there are, how many consumers are listening on each,<br />
%% and how many messages are backlogged on each. There is no indication of<br />
%% how many messages have been through the queues yet." - tonyg</code></p>
<p><code><br />
%% This example shows one queue, "my_topic_queue", with a single consumer<br />
%% attached without any messages waiting to be consumed.</code></p>
<p><code><br />
(rabbit@srabbitmq)1&gt; rabbit_amqqueue:stat_all().<br />
[{ok,{resource,&lt;&lt;"/"&gt;&gt;,queue,&lt;&lt;"my_mytopic_queue"&gt;&gt;},0,1}]<br />
</code></p>
<p><code>%% Specify the queue you want, and bind MyTopicQueue to it.</code></p>
<p><code>(rabbit@srabbitmq)2&gt; {ok, MyTopicQueue, _, _ } = lists:nth(1, rabbit_amqqueue:stat_all()).<br />
{ok,{resource,&lt;&lt;"/"&gt;&gt;,queue,&lt;&lt;"my_mytopic_queue"&gt;&gt;},0,1}</code></p>
<p><code>%% Lookup the queue and bind it to AMQ.  We will purge this queue later.<br />
(rabbit@srabbitmq)3&gt; {ok, AMQ} = rabbit_amqqueue:lookup(MyTopicQueue).<br />
{ok,{amqqueue,{resource,&lt;&lt;"/"&gt;&gt;,queue,&lt;&lt;"my_mytopic_queue"&gt;&gt;},<br />
&nbsp;&nbsp;&nbsp;&nbsp;false,<br />
&nbsp;&nbsp;&nbsp;&nbsp;true,<br />
&nbsp;&nbsp;&nbsp;&nbsp;[],<br />
&nbsp;&nbsp;&nbsp;&nbsp;[{binding_spec,{resource,&lt;&lt;"/"&gt;&gt;,exchange,&lt;&lt;"my_topic_exch"...&gt;&gt;},<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;&lt;"US.#"&gt;&gt;,<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[]}],<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;0.317.0&gt;}}</code></p>
<p><code>%% Purge the queue<br />
(rabbit@srabbitmq)4&gt; rabbit_amqqueue:purge(AMQ).<br />
{ok,0}</code></p>
<p>It&#8217;s been a while since I took these notes, so things may have changed since then.  I just wanted to share my notes with anyone else starting out with RabbitMQ and also to record them on a public medium for when I may need to access them remotely.  Please comment with any necessary corrections.</p>
<p>It&#8217;s also been a while (2 years) since my last post.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/germ.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/germ.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/germ.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/germ.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/germ.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/germ.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/germ.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/germ.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/germ.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/germ.wordpress.com/99/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=germ.wordpress.com&blog=30810&post=99&subd=germ&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://germ.wordpress.com/2008/11/22/rabbitmq-basic-queue-maintenance-notes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8db5e6f66f9b521fe24d2b5fd3eddfc7?s=96&#38;d=identicon" medium="image">
			<media:title type="html">germ</media:title>
		</media:content>
	</item>
		<item>
		<title>Page Title:  A bookmark friendly format</title>
		<link>http://germ.wordpress.com/2006/12/06/page-title-a-bookmark-friendly-format/</link>
		<comments>http://germ.wordpress.com/2006/12/06/page-title-a-bookmark-friendly-format/#comments</comments>
		<pubDate>Wed, 06 Dec 2006 20:48:56 +0000</pubDate>
		<dc:creator>germ</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://germ.wordpress.com/2006/12/06/page-title-a-bookmark-friendly-format/</guid>
		<description><![CDATA[Page titles are used as descriptors in (social) bookmarking.  Consequently, a well formatted page title can speed up the process of finding a bookmark.
Here is the page title format that I find most effective to my bookmarking:
1.  Page Name &#8211; Domain Name &#8211; Date
2.  Page Name &#8211; Site Name &#8211; Date
I prefer [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=germ.wordpress.com&blog=30810&post=86&subd=germ&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Page titles are used as descriptors in (social) bookmarking.  Consequently, a well formatted page title can speed up the process of finding a bookmark.</p>
<p>Here is the page title format that I find most effective to my bookmarking:<br />
1.  Page Name &#8211; Domain Name &#8211; Date<br />
2.  Page Name &#8211; Site Name &#8211; Date</p>
<p>I prefer domain name over site name, often because it&#8217;s usually shorter.<br />
Date is only used when appropriate (blog, news, &#8230;).  Ex:  Dec 6, 2006</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/germ.wordpress.com/86/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/germ.wordpress.com/86/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/germ.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/germ.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/germ.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/germ.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/germ.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/germ.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/germ.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/germ.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/germ.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/germ.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=germ.wordpress.com&blog=30810&post=86&subd=germ&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://germ.wordpress.com/2006/12/06/page-title-a-bookmark-friendly-format/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8db5e6f66f9b521fe24d2b5fd3eddfc7?s=96&#38;d=identicon" medium="image">
			<media:title type="html">germ</media:title>
		</media:content>
	</item>
		<item>
		<title>Another use for Google Docs</title>
		<link>http://germ.wordpress.com/2006/10/20/another-use-for-google-docs/</link>
		<comments>http://germ.wordpress.com/2006/10/20/another-use-for-google-docs/#comments</comments>
		<pubDate>Sat, 21 Oct 2006 00:46:41 +0000</pubDate>
		<dc:creator>germ</dc:creator>
				<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://germ.wordpress.com/2006/10/20/another-use-for-google-docs/</guid>
		<description><![CDATA[I have found Google Docs to be very useful for maintaining a private cheat sheet of some of my favorite, but less memorable vim commands.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=germ.wordpress.com&blog=30810&post=84&subd=germ&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I have found Google Docs to be very useful for maintaining a private cheat sheet of some of my favorite, but less memorable vim commands.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/germ.wordpress.com/84/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/germ.wordpress.com/84/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/germ.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/germ.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/germ.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/germ.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/germ.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/germ.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/germ.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/germ.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/germ.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/germ.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=germ.wordpress.com&blog=30810&post=84&subd=germ&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://germ.wordpress.com/2006/10/20/another-use-for-google-docs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8db5e6f66f9b521fe24d2b5fd3eddfc7?s=96&#38;d=identicon" medium="image">
			<media:title type="html">germ</media:title>
		</media:content>
	</item>
		<item>
		<title>Technorati Supports OpenID</title>
		<link>http://germ.wordpress.com/2006/10/20/technorati-supports-openid/</link>
		<comments>http://germ.wordpress.com/2006/10/20/technorati-supports-openid/#comments</comments>
		<pubDate>Fri, 20 Oct 2006 17:52:38 +0000</pubDate>
		<dc:creator>germ</dc:creator>
				<category><![CDATA[openid]]></category>

		<guid isPermaLink="false">http://germ.wordpress.com/2006/10/20/technorati-supports-openid/</guid>
		<description><![CDATA[Technorati will now support OpenID so that it can provide yet another way to claim your blog.  And this method does appear to be its quickest.
Now only if the OpenID team can finalize its 2.0 specifications can I start using my i-name in OpenID without having to tack on the xri.net, http proxy.
  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=germ.wordpress.com&blog=30810&post=83&subd=germ&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Technorati will now support OpenID so that it can provide yet another way to claim your blog.  And this method does appear to be its quickest.</p>
<p>Now only if the OpenID team can finalize its 2.0 specifications can I start using my i-name in OpenID without having to tack on the xri.net, http proxy.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/germ.wordpress.com/83/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/germ.wordpress.com/83/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/germ.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/germ.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/germ.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/germ.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/germ.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/germ.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/germ.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/germ.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/germ.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/germ.wordpress.com/83/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=germ.wordpress.com&blog=30810&post=83&subd=germ&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://germ.wordpress.com/2006/10/20/technorati-supports-openid/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8db5e6f66f9b521fe24d2b5fd3eddfc7?s=96&#38;d=identicon" medium="image">
			<media:title type="html">germ</media:title>
		</media:content>
	</item>
		<item>
		<title>Dirty Car Art</title>
		<link>http://germ.wordpress.com/2006/10/18/dirty-car-art/</link>
		<comments>http://germ.wordpress.com/2006/10/18/dirty-car-art/#comments</comments>
		<pubDate>Wed, 18 Oct 2006 22:12:43 +0000</pubDate>
		<dc:creator>germ</dc:creator>
				<category><![CDATA[art]]></category>

		<guid isPermaLink="false">http://germ.wordpress.com/2006/10/18/dirty-car-art/</guid>
		<description><![CDATA[Scott Wade&#8217;s Dirty Cart Art Gallery
This sure beats having someone finger &#8220;wash me&#8221; into the dirt of your car.    Pretty neat stuff.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=germ.wordpress.com&blog=30810&post=82&subd=germ&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://www.dirtycarart.com/gallery/index.htm">Scott Wade&#8217;s Dirty Cart Art Gallery</a></p>
<p>This sure beats having someone finger &#8220;wash me&#8221; into the dirt of your car.    Pretty neat stuff.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/germ.wordpress.com/82/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/germ.wordpress.com/82/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/germ.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/germ.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/germ.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/germ.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/germ.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/germ.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/germ.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/germ.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/germ.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/germ.wordpress.com/82/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=germ.wordpress.com&blog=30810&post=82&subd=germ&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://germ.wordpress.com/2006/10/18/dirty-car-art/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8db5e6f66f9b521fe24d2b5fd3eddfc7?s=96&#38;d=identicon" medium="image">
			<media:title type="html">germ</media:title>
		</media:content>
	</item>
		<item>
		<title>In or Out?</title>
		<link>http://germ.wordpress.com/2006/10/16/in-or-out/</link>
		<comments>http://germ.wordpress.com/2006/10/16/in-or-out/#comments</comments>
		<pubDate>Mon, 16 Oct 2006 18:25:16 +0000</pubDate>
		<dc:creator>germ</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://germ.wordpress.com/2006/10/16/in-or-out/</guid>
		<description><![CDATA[Is Eating Out Cheaper Than Eating In?  I often revisit this question on a monthly basis (and its usually whenever the bills are due).  I have always preferred eating out, because it&#8217;s quick.  Other reasons include the fact that I do not enjoy left-overs and that I only cook for one person. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=germ.wordpress.com&blog=30810&post=81&subd=germ&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://www.getrichslowly.org/blog/2006/10/13/is-eating-out-cheaper-than-eating-in/">Is Eating Out Cheaper Than Eating In?</a>  I often revisit this question on a monthly basis (and its usually whenever the bills are due).  I have always preferred eating out, because it&#8217;s quick.  Other reasons include the fact that I do not enjoy left-overs and that I only cook for one person.  So, I usually spend about $7-10 a meal when eating out.  That&#8217;s almost $20 a day.</p>
<p>I found my most cost and time effective solution to be eating out for dinner and eating in (paper-bagging) for lunch.  The reason being is that lunch requires very few ingredients that last for about a week.  Specifically, breads and deli meats.</p>
<p>Though, I tend to do the opposite.  I usually eat out for both lunch and dinner, but occasionally will cook dinner (such as pastas and some frozen meals).  The reason I eat out for lunch is because I prefer social meals.   Also, I can never remember to make my lunch the night before.</p>
<p>I wonder if frozen meals are healthier than eating out?  They taste great and can be lighter on the wallet.</p>
<p>p.s.  Eating out for me does not include any place that offers &#8220;super-sized&#8221; or &#8220;value menu&#8221; meals.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/germ.wordpress.com/81/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/germ.wordpress.com/81/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/germ.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/germ.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/germ.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/germ.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/germ.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/germ.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/germ.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/germ.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/germ.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/germ.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=germ.wordpress.com&blog=30810&post=81&subd=germ&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://germ.wordpress.com/2006/10/16/in-or-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8db5e6f66f9b521fe24d2b5fd3eddfc7?s=96&#38;d=identicon" medium="image">
			<media:title type="html">germ</media:title>
		</media:content>
	</item>
		<item>
		<title>Threatening the President Online = Bad Idea</title>
		<link>http://germ.wordpress.com/2006/10/15/threatening-the-president-online-bad-idea/</link>
		<comments>http://germ.wordpress.com/2006/10/15/threatening-the-president-online-bad-idea/#comments</comments>
		<pubDate>Sun, 15 Oct 2006 21:05:46 +0000</pubDate>
		<dc:creator>germ</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://germ.wordpress.com/2006/10/15/threatening-the-president-online-bad-idea/</guid>
		<description><![CDATA[Teen questioned for online Bush threat.
I&#8217;m glad.  Isn&#8217;t it terrorists who want to undermine the US Government and destroy American citizens?
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=germ.wordpress.com&blog=30810&post=80&subd=germ&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://www.gg2.net/viewnews.asp?nid=3747&amp;tid=countryNews&amp;catid=UK%20News">Teen questioned for online Bush threat</a>.</p>
<p>I&#8217;m glad.  Isn&#8217;t it terrorists who want to undermine the US Government and destroy American citizens?</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/germ.wordpress.com/80/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/germ.wordpress.com/80/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/germ.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/germ.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/germ.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/germ.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/germ.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/germ.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/germ.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/germ.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/germ.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/germ.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=germ.wordpress.com&blog=30810&post=80&subd=germ&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://germ.wordpress.com/2006/10/15/threatening-the-president-online-bad-idea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8db5e6f66f9b521fe24d2b5fd3eddfc7?s=96&#38;d=identicon" medium="image">
			<media:title type="html">germ</media:title>
		</media:content>
	</item>
		<item>
		<title>Code Search</title>
		<link>http://germ.wordpress.com/2006/10/05/code-search/</link>
		<comments>http://germ.wordpress.com/2006/10/05/code-search/#comments</comments>
		<pubDate>Thu, 05 Oct 2006 20:04:34 +0000</pubDate>
		<dc:creator>germ</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://germ.wordpress.com/2006/10/05/code-search/</guid>
		<description><![CDATA[I&#8217;m not sure how long this has been out, but I just found Google&#8217;s Code Search today.  Anyways, I found this search to be particularly entertaining (and scary).
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=germ.wordpress.com&blog=30810&post=79&subd=germ&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;m not sure how long this has been out, but I just found Google&#8217;s Code Search today.  Anyways, I found <a href="http://www.google.com/codesearch?hl=en&amp;lr=&amp;q=%22i+hope+this+is+correct%22&amp;btnG=Search">this search</a> to be particularly entertaining (and scary).</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/germ.wordpress.com/79/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/germ.wordpress.com/79/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/germ.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/germ.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/germ.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/germ.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/germ.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/germ.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/germ.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/germ.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/germ.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/germ.wordpress.com/79/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=germ.wordpress.com&blog=30810&post=79&subd=germ&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://germ.wordpress.com/2006/10/05/code-search/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8db5e6f66f9b521fe24d2b5fd3eddfc7?s=96&#38;d=identicon" medium="image">
			<media:title type="html">germ</media:title>
		</media:content>
	</item>
		<item>
		<title>Cursor Icon Confusion</title>
		<link>http://germ.wordpress.com/2006/10/04/cursor-icon-confusion/</link>
		<comments>http://germ.wordpress.com/2006/10/04/cursor-icon-confusion/#comments</comments>
		<pubDate>Wed, 04 Oct 2006 19:21:10 +0000</pubDate>
		<dc:creator>germ</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://germ.wordpress.com/2006/10/04/cursor-icon-confusion/</guid>
		<description><![CDATA[I just visited Lefsetz Letter, where I noticed that they use the cross hair cursor for text selection instead of the I-bar cursor.  This seems more logical to me, especially since the I-bar represents editable text and cross represents selection.  So how did the I-bar become the standard.  So, check out that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=germ.wordpress.com&blog=30810&post=78&subd=germ&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I just visited <a href="http://lefsetz.com/wordpress/">Lefsetz Letter</a>, where I noticed that they use the cross hair cursor for text selection instead of the I-bar cursor.  This seems more logical to me, especially since the I-bar represents editable text and cross represents selection.  So how did the I-bar become the standard.  So, check out that website and let me know what you think of the cross hairs.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/germ.wordpress.com/78/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/germ.wordpress.com/78/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/germ.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/germ.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/germ.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/germ.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/germ.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/germ.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/germ.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/germ.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/germ.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/germ.wordpress.com/78/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=germ.wordpress.com&blog=30810&post=78&subd=germ&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://germ.wordpress.com/2006/10/04/cursor-icon-confusion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8db5e6f66f9b521fe24d2b5fd3eddfc7?s=96&#38;d=identicon" medium="image">
			<media:title type="html">germ</media:title>
		</media:content>
	</item>
		<item>
		<title>Is Mark Cuban Correct on YouTube</title>
		<link>http://germ.wordpress.com/2006/09/29/is-mark-cuban-correct-on-youtube/</link>
		<comments>http://germ.wordpress.com/2006/09/29/is-mark-cuban-correct-on-youtube/#comments</comments>
		<pubDate>Fri, 29 Sep 2006 22:09:58 +0000</pubDate>
		<dc:creator>germ</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://germ.wordpress.com/2006/09/29/is-mark-cuban-correct-on-youtube/</guid>
		<description><![CDATA[Read this:
The Coming Dramatic Decline of Youtube
Then this:
Watch Full Length Cartoons Online (Massive List)
Then this:
Napster shut down
And more interestingly:
Mark Cuban/YouTube
Update:  It looks like Mark Cuban was wrong.  Google is a powerhouse.  
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=germ.wordpress.com&blog=30810&post=76&subd=germ&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Read this:</p>
<p><a href="http://www.blogmaverick.com/2006/09/17/the-coming-dramatic-decline-of-youtube/">The Coming Dramatic Decline of Youtube</a></p>
<p>Then this:</p>
<p><a href="http://duggmirror.com/videos_animation/Huge_List_of_Full_Length_Cartoons/">Watch Full Length Cartoons Online (Massive List)</a></p>
<p>Then this:</p>
<p><a href="http://news.bbc.co.uk/1/hi/entertainment/852283.stm">Napster shut down</a></p>
<p>And more interestingly:</p>
<p><a href="http://lefsetz.com/wordpress/index.php/archives/2006/09/29/mark-cubanyoutube/">Mark Cuban/YouTube</a></p>
<p>Update:  It looks like Mark Cuban was wrong.  Google is a powerhouse.  </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/germ.wordpress.com/76/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/germ.wordpress.com/76/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/germ.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/germ.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/germ.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/germ.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/germ.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/germ.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/germ.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/germ.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/germ.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/germ.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=germ.wordpress.com&blog=30810&post=76&subd=germ&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://germ.wordpress.com/2006/09/29/is-mark-cuban-correct-on-youtube/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8db5e6f66f9b521fe24d2b5fd3eddfc7?s=96&#38;d=identicon" medium="image">
			<media:title type="html">germ</media:title>
		</media:content>
	</item>
	</channel>
</rss>