<?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>buzzco.org</title>
	<atom:link href="http://buzzco.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://buzzco.org</link>
	<description>Drunk and Famous</description>
	<lastBuildDate>Tue, 27 Apr 2010 15:07:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Ubuntu OpenLDAP SSL</title>
		<link>http://buzzco.org/2010/04/27/ubuntu-openldap-ssl/</link>
		<comments>http://buzzco.org/2010/04/27/ubuntu-openldap-ssl/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 15:07:06 +0000</pubDate>
		<dc:creator>jimby</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[gnutls]]></category>
		<category><![CDATA[ITDS]]></category>
		<category><![CDATA[LDAP]]></category>
		<category><![CDATA[libssl]]></category>
		<category><![CDATA[openldap]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://buzzco.org/?p=186</guid>
		<description><![CDATA[The setup:
I have an Ubuntu Karmic machine hosting an Apache webserver. Being security minded, I decided to set up SSL to protect user logins. Works fine. I am using an external IBM Tivoli Directory Server (ITDS) for authentication. It is an LDAP server so everything works out of the box. That is until I tried [...]]]></description>
			<content:encoded><![CDATA[<p><strong>The setup:</strong><br />
I have an Ubuntu Karmic machine hosting an Apache webserver. Being security minded, I decided to set up SSL to protect user logins. Works fine. I am using an external IBM Tivoli Directory Server (ITDS) for authentication. It is an LDAP server so everything works out of the box. That is until I tried to do LDAPS. See, when you log into apache, it sends a request of to LDAP. If you don&#8217;t use LDAPS, it is in clear text. That is a big no no.</p>
<p>Here is my rough config:</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 96px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">LDAPTrustedGlobalCert CA_DER /etc/ssl/example.com.pem</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 96px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">&lt;VirtualHost *:443&gt;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 96px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>ServerName wingfont</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 96px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>AddDefaultCharset utf-8</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 96px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>SSLEngine on</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 96px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>SSLOptions +StrictRequire</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 96px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>SSLCertificateFile /etc/ssl/certs/wingfont.crt</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 96px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>SSLCertificateKeyFile /etc/ssl/private/wingfont.key</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 96px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>ErrorLog /var/log/apache2/error.log</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 96px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span># Possible values include: debug, info, notice, warn, error, crit,</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 96px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span># alert, emerg.</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 96px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>LogLevel debug</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 96px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>CustomLog /var/log/apache2/access.log combined</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 96px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">LDAPTrustedClientCert CERT_BASE64 /etc/ssl/example.com.pem</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 96px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">&lt;Location /svn&gt;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 96px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">DAV svn</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 96px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">SVNPath /srv/svn/wwptsng</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 96px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">AuthBasicProvider ldap</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 96px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">AuthType Basic</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 96px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">AuthName &#8220;BluePages&#8221;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 96px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">AuthzLDAPAuthoritative on</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 96px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">AuthLDAPURL ldaps://example.com/,o=example.com?mail?sub?(objectClass=ePerson)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 96px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">require valid-user</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 96px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">&lt;/Location&gt;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 96px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">&lt;/VirtualHost&gt;</div>
<p>LDAPTrustedGlobalCert CA_DER /etc/ssl/example.com.pem</p>
<p>&lt;VirtualHost *:443&gt;</p>
<p><span style="white-space: pre;"> </span>ServerName wingfont</p>
<p><span style="white-space: pre;"> </span>AddDefaultCharset utf-8</p>
<p><span style="white-space: pre;"> </span>SSLEngine on</p>
<p><span style="white-space: pre;"> </span>SSLOptions +StrictRequire</p>
<p><span style="white-space: pre;"> </span>SSLCertificateFile /etc/ssl/certs/wingfont.crt</p>
<p><span style="white-space: pre;"> </span>SSLCertificateKeyFile /etc/ssl/private/wingfont.key</p>
<p><span style="white-space: pre;"> </span>ErrorLog /var/log/apache2/error.log</p>
<p><span style="white-space: pre;"> </span>LogLevel debug</p>
<p><span style="white-space: pre;"> </span>CustomLog /var/log/apache2/access.log combined</p>
<p>LDAPTrustedClientCert CERT_BASE64 /etc/ssl/example.com.pem</p>
<p>&lt;Location /svn&gt;</p>
<p>DAV svn</p>
<p>SVNPath /srv/svn/wwptsng</p>
<p>AuthBasicProvider ldap</p>
<p>AuthType Basic</p>
<p>AuthName &#8220;Example.com&#8221;</p>
<p>AuthzLDAPAuthoritative on</p>
<p>AuthLDAPURL ldaps://example.com/,o=example.com?mail?sub?(objectClass=ePerson)</p>
<p>require valid-user</p>
<p>&lt;/Location&gt;</p>
<p>&lt;/VirtualHost&gt;</p>
<p><strong>The issue:</strong></p>
<p><strong> </strong><br />
Apache&#8217;s error log has this.</p>
<blockquote><p>[Thu Apr 15 12:26:10 2010] [debug] ssl_engine_io.c(1892): OpenSSL: I/O error, 5 bytes expected to read on BIO#21604778 [mem: 216250c0]<br />
[Thu Apr 15 12:26:10 2010] [info] [client 9.56.181.54] (70007)The timeout specified has expired: SSL input filter read failed.</p></blockquote>
<p>So I tired to do a search with ldapsearch.</p>
<p>ldapsearch -x   -H ldaps://host:636 -b &#8220;o=example.com&#8221;  &#8220;(mail=mike@example.com)&#8221;  -d-1</p>
<blockquote><p>TLS: peer cert untrusted or revoked (0&#215;42)<br />
TLS: can&#8217;t connect: (unknown error code).<br />
ldap_err2string<br />
ldap_sasl_bind(SIMPLE): Can&#8217;t contact LDAP server (-1)</p></blockquote>
<p><strong>The story:</strong></p>
<p><strong> </strong><br />
Google was very little help, hence this blog post.<br />
Way back in the ancient time, Debian was king. Ubuntu is a step child, and has inherited lots Debian&#8217;s awesomeness. Debian folks will tell you that they adhere to open source licenses in the strictest sense of the word. LIBSSL has a non GPL compatible license. Debian and Ubuntu normally do not compile and link against it. The use GNU LTS instead. Which is fine. But for some reason there is a bug with GNU TLS and certain SSL cert chains. I have tested this against a number of ITDS servers and they all fail.</p>
<p><strong>The fix:</strong></p>
<p>Replace GNU TLS with libssl for the openldap libraries.</p>
<blockquote><p>sudo apt-get install build-essential fakeroot dpkg-dev<br />
sudo apt-get build-dep libldap-2.4-2<br />
cd ~/<br />
mkdir libldap<br />
cd libldap/</p>
<p>sudo apt-get source libldap-2.4-2<br />
sudo dpkg-source -x openldap_2.4.21-0ubuntu4.dsc</p>
<p>cd openldap-2.4.21/</p>
<p>cp debian/configure.options debian/configure.options.orig</p>
<p>sed &#8217;s/tls=gnutls/tls=openssl/g&#8217; debian/configure.options.orig &gt; debian/configure.options</p>
<p>DEB_BUILD_OPTIONS=&#8221;&#8211;with-tls=openssl&#8221; fakeroot debian/rules binary</p></blockquote>
<p>Go grab a nice glass of Blanton&#8217;s whiskey, this might be a while.</p>
<p>Once the compile and tests are all done, install the new debs.</p>
<blockquote><p>dpkg &#8211; i ldap-utils_2.4.21-0ubuntu4_i386.deb libldap-2.4-2_2.4.21-0ubuntu4_i386.deb  slapd_2.4.21-0ubuntu4_i386.deb</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://buzzco.org/2010/04/27/ubuntu-openldap-ssl/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Digest for 09/24/09</title>
		<link>http://buzzco.org/2009/09/24/digest-for-092409/</link>
		<comments>http://buzzco.org/2009/09/24/digest-for-092409/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 05:07:13 +0000</pubDate>
		<dc:creator>jimby</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://buzzco.org/2009/09/24/digest-for-092409/</guid>
		<description><![CDATA[

Love Will Tear Us Apart by Calexicooriginally by Joy&#8230;Copy Cats
206 – You pulling my lego?Luke Surl Comics
I was shown this awesome old video today when learning about networking in IT class. [VID]Reddit: Technology
Season 4 preview of The Venture Bros.reddit.com: what&#39;s new online!
Day 278.Songs You Used To Love
The best TI-83 RPGs everreddit.com: what&#39;s new online!
Hotel California [...]]]></description>
			<content:encoded><![CDATA[<div>
<ul>
<li><a href="http://copycats.tumblr.com/post/185956119http://copycats.tumblr.com/">Love Will Tear Us Apart by Calexicooriginally by Joy&#8230;Copy Cats</a></li>
<li><a href="http://feedproxy.google.com/~r/LukeSurl/~3/_ZNO4teSOdA/1037http://www.lukesurl.com">206 – You pulling my lego?Luke Surl Comics</a></li>
<li><a href="http://www.reddit.com/r/technology/comments/9eo6s/i_was_shown_this_awesome_old_video_today_when/http://www.reddit.com/r/technology/">I was shown this awesome old video today when learning about networking in IT class. [VID]Reddit: Technology</a></li>
<li><a href="http://www.reddit.com/r/videos/comments/9cfxa/season_4_preview_of_the_venture_bros/http://www.reddit.com/">Season 4 preview of The Venture Bros.reddit.com: what&#39;s new online!</a></li>
<li><a href="http://songsyouusedtolove.tumblr.com/post/165416847http://songsyouusedtolove.tumblr.com/">Day 278.Songs You Used To Love</a></li>
<li><a href="http://www.reddit.com/r/gaming/comments/9adi8/the_best_ti83_rpgs_ever/http://www.reddit.com/">The best TI-83 RPGs everreddit.com: what&#39;s new online!</a></li>
<li><a href="http://copycats.tumblr.com/post/160723214http://copycats.tumblr.com/">Hotel California by Gipsy Kingsoriginally by The Eagles(posted&#8230;Copy Cats</a></li>
<li><a href="http://questionablecontent.net/view.php?comic=1469http://www.questionablecontent.net">I Science TheeQC RSS</a></li>
<li><a href="http://www.smbc-comics.com/index.php?db=comics&amp;id=1606http://www.smbc-comics.com">August 12, 2009Saturday Morning Breakfast Cereal (updated daily)</a></li>
<li><a href="http://feeds.gawker.com/~r/lifehacker/full/~3/ZyelHaP5Gyg/make-homemade-dog-treatshttp://lifehacker.com">Make Homemade Dog Treats [Pets]Lifehacker</a></li>
<li><a href="http://www.tinymixtapes.com/We-Were-Promised-Jetpackshttp://www.tinymixtapes.com/">We Were Promised JetpacksTiny Mix Tapes</a></li>
<li><a href="http://xkcd.com/616/http://xkcd.com/">Leasexkcd.com</a></li>
<li><a href="http://www.absolutepunk.net/showthread.php?t=1222192http://www.absolutepunk.net">Therefore I Examine BreastsAbsolutePunk.net &#8211; News</a></li>
<li><a href="http://www.reddit.com/r/programming/comments/91q75/why_do_we_write_a_batch_job_what_is_jcl_what_is/http://www.reddit.com/r/programming/">Why do we write a Batch Job ? What is JCL? What is the basic JCL Format? Are there any JCL Coding guidelines ?programming</a></li>
<li><a href="http://www.reddit.com/r/technology/comments/91gy1/energy_generating_bike_rental_system_pays_users/http://www.reddit.com/r/technology/">Energy Generating Bike Rental System Pays Users to RideReddit: Technology</a></li>
<li><a href="http://www.reddit.com/r/funny/comments/91fpa/i_dont_think_shes_coming_back_pic/http://www.reddit.com/">I don&#8217;t think she&#8217;s coming back.. [pic]reddit.com: what&#39;s new online!</a></li>
<li><a href="http://www.asofterworld.com/index.php?id=458http://www.asofterworld.com">A Softer World: 458A Softer World</a></li>
<li><a href="http://www.reddit.com/r/technology/comments/8zd27/the_reprap_is_the_most_awesome_machine_ever_built/http://www.reddit.com/">The RepRap is the most awesome machine ever built. We can only guess how these machines will change society when they will be ready.reddit.com: what&#39;s new online!</a></li>
<li><a href="http://www.dieselsweeties.com/archive/2321http://dieselsweeties.com">DS Web: Moebius Whoop (Totally Eighties Edition)Diesel Sweeties webcomic by rstevens</a></li>
<li><a href="http://www.presentationzen.com/presentationzen/2009/06/dsklhjkdjlksjdlsa-----------------sakjaskldjalkdja.htmlhttp://www.presentationzen.com/presentationzen/">Who says technical presentations can&#39;t be engaging?Presentation Zen</a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://buzzco.org/2009/09/24/digest-for-092409/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Digest for 09/21/09</title>
		<link>http://buzzco.org/2009/09/21/digest-for-092109/</link>
		<comments>http://buzzco.org/2009/09/21/digest-for-092109/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 05:07:14 +0000</pubDate>
		<dc:creator>jimby</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://buzzco.org/2009/09/21/digest-for-092109/</guid>
		<description><![CDATA[

Love Will Tear Us Apart by Calexicooriginally by Joy&#8230;Copy Cats
206 – You pulling my lego?Luke Surl Comics
I was shown this awesome old video today when learning about networking in IT class. [VID]Reddit: Technology
Season 4 preview of The Venture Bros.reddit.com: what&#39;s new online!
Day 278.Songs You Used To Love
The best TI-83 RPGs everreddit.com: what&#39;s new online!
Hotel California [...]]]></description>
			<content:encoded><![CDATA[<div>
<ul>
<li><a href="http://copycats.tumblr.com/post/185956119http://copycats.tumblr.com/">Love Will Tear Us Apart by Calexicooriginally by Joy&#8230;Copy Cats</a></li>
<li><a href="http://feedproxy.google.com/~r/LukeSurl/~3/_ZNO4teSOdA/1037http://www.lukesurl.com">206 – You pulling my lego?Luke Surl Comics</a></li>
<li><a href="http://www.reddit.com/r/technology/comments/9eo6s/i_was_shown_this_awesome_old_video_today_when/http://www.reddit.com/r/technology/">I was shown this awesome old video today when learning about networking in IT class. [VID]Reddit: Technology</a></li>
<li><a href="http://www.reddit.com/r/videos/comments/9cfxa/season_4_preview_of_the_venture_bros/http://www.reddit.com/">Season 4 preview of The Venture Bros.reddit.com: what&#39;s new online!</a></li>
<li><a href="http://songsyouusedtolove.tumblr.com/post/165416847http://songsyouusedtolove.tumblr.com/">Day 278.Songs You Used To Love</a></li>
<li><a href="http://www.reddit.com/r/gaming/comments/9adi8/the_best_ti83_rpgs_ever/http://www.reddit.com/">The best TI-83 RPGs everreddit.com: what&#39;s new online!</a></li>
<li><a href="http://copycats.tumblr.com/post/160723214http://copycats.tumblr.com/">Hotel California by Gipsy Kingsoriginally by The Eagles(posted&#8230;Copy Cats</a></li>
<li><a href="http://questionablecontent.net/view.php?comic=1469http://www.questionablecontent.net">I Science TheeQC RSS</a></li>
<li><a href="http://www.smbc-comics.com/index.php?db=comics&amp;id=1606http://www.smbc-comics.com">August 12, 2009Saturday Morning Breakfast Cereal (updated daily)</a></li>
<li><a href="http://feeds.gawker.com/~r/lifehacker/full/~3/ZyelHaP5Gyg/make-homemade-dog-treatshttp://lifehacker.com">Make Homemade Dog Treats [Pets]Lifehacker</a></li>
<li><a href="http://www.tinymixtapes.com/We-Were-Promised-Jetpackshttp://www.tinymixtapes.com/">We Were Promised JetpacksTiny Mix Tapes</a></li>
<li><a href="http://xkcd.com/616/http://xkcd.com/">Leasexkcd.com</a></li>
<li><a href="http://www.absolutepunk.net/showthread.php?t=1222192http://www.absolutepunk.net">Therefore I Examine BreastsAbsolutePunk.net &#8211; News</a></li>
<li><a href="http://www.reddit.com/r/programming/comments/91q75/why_do_we_write_a_batch_job_what_is_jcl_what_is/http://www.reddit.com/r/programming/">Why do we write a Batch Job ? What is JCL? What is the basic JCL Format? Are there any JCL Coding guidelines ?programming</a></li>
<li><a href="http://www.reddit.com/r/technology/comments/91gy1/energy_generating_bike_rental_system_pays_users/http://www.reddit.com/r/technology/">Energy Generating Bike Rental System Pays Users to RideReddit: Technology</a></li>
<li><a href="http://www.reddit.com/r/funny/comments/91fpa/i_dont_think_shes_coming_back_pic/http://www.reddit.com/">I don&#8217;t think she&#8217;s coming back.. [pic]reddit.com: what&#39;s new online!</a></li>
<li><a href="http://www.asofterworld.com/index.php?id=458http://www.asofterworld.com">A Softer World: 458A Softer World</a></li>
<li><a href="http://www.reddit.com/r/technology/comments/8zd27/the_reprap_is_the_most_awesome_machine_ever_built/http://www.reddit.com/">The RepRap is the most awesome machine ever built. We can only guess how these machines will change society when they will be ready.reddit.com: what&#39;s new online!</a></li>
<li><a href="http://www.dieselsweeties.com/archive/2321http://dieselsweeties.com">DS Web: Moebius Whoop (Totally Eighties Edition)Diesel Sweeties webcomic by rstevens</a></li>
<li><a href="http://www.presentationzen.com/presentationzen/2009/06/dsklhjkdjlksjdlsa-----------------sakjaskldjalkdja.htmlhttp://www.presentationzen.com/presentationzen/">Who says technical presentations can&#39;t be engaging?Presentation Zen</a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://buzzco.org/2009/09/21/digest-for-092109/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Digest for 09/18/09</title>
		<link>http://buzzco.org/2009/09/18/digest-for-091809/</link>
		<comments>http://buzzco.org/2009/09/18/digest-for-091809/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 05:07:17 +0000</pubDate>
		<dc:creator>jimby</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://buzzco.org/2009/09/18/digest-for-091809/</guid>
		<description><![CDATA[

Love Will Tear Us Apart by Calexicooriginally by Joy&#8230;Copy Cats
206 – You pulling my lego?Luke Surl Comics
I was shown this awesome old video today when learning about networking in IT class. [VID]Reddit: Technology
Season 4 preview of The Venture Bros.reddit.com: what&#39;s new online!
Day 278.Songs You Used To Love
The best TI-83 RPGs everreddit.com: what&#39;s new online!
Hotel California [...]]]></description>
			<content:encoded><![CDATA[<div>
<ul>
<li><a href="http://copycats.tumblr.com/post/185956119http://copycats.tumblr.com/">Love Will Tear Us Apart by Calexicooriginally by Joy&#8230;Copy Cats</a></li>
<li><a href="http://feedproxy.google.com/~r/LukeSurl/~3/_ZNO4teSOdA/1037http://www.lukesurl.com">206 – You pulling my lego?Luke Surl Comics</a></li>
<li><a href="http://www.reddit.com/r/technology/comments/9eo6s/i_was_shown_this_awesome_old_video_today_when/http://www.reddit.com/r/technology/">I was shown this awesome old video today when learning about networking in IT class. [VID]Reddit: Technology</a></li>
<li><a href="http://www.reddit.com/r/videos/comments/9cfxa/season_4_preview_of_the_venture_bros/http://www.reddit.com/">Season 4 preview of The Venture Bros.reddit.com: what&#39;s new online!</a></li>
<li><a href="http://songsyouusedtolove.tumblr.com/post/165416847http://songsyouusedtolove.tumblr.com/">Day 278.Songs You Used To Love</a></li>
<li><a href="http://www.reddit.com/r/gaming/comments/9adi8/the_best_ti83_rpgs_ever/http://www.reddit.com/">The best TI-83 RPGs everreddit.com: what&#39;s new online!</a></li>
<li><a href="http://copycats.tumblr.com/post/160723214http://copycats.tumblr.com/">Hotel California by Gipsy Kingsoriginally by The Eagles(posted&#8230;Copy Cats</a></li>
<li><a href="http://questionablecontent.net/view.php?comic=1469http://www.questionablecontent.net">I Science TheeQC RSS</a></li>
<li><a href="http://www.smbc-comics.com/index.php?db=comics&amp;id=1606http://www.smbc-comics.com">August 12, 2009Saturday Morning Breakfast Cereal (updated daily)</a></li>
<li><a href="http://feeds.gawker.com/~r/lifehacker/full/~3/ZyelHaP5Gyg/make-homemade-dog-treatshttp://lifehacker.com">Make Homemade Dog Treats [Pets]Lifehacker</a></li>
<li><a href="http://www.tinymixtapes.com/We-Were-Promised-Jetpackshttp://www.tinymixtapes.com/">We Were Promised JetpacksTiny Mix Tapes</a></li>
<li><a href="http://xkcd.com/616/http://xkcd.com/">Leasexkcd.com</a></li>
<li><a href="http://www.absolutepunk.net/showthread.php?t=1222192http://www.absolutepunk.net">Therefore I Examine BreastsAbsolutePunk.net &#8211; News</a></li>
<li><a href="http://www.reddit.com/r/programming/comments/91q75/why_do_we_write_a_batch_job_what_is_jcl_what_is/http://www.reddit.com/r/programming/">Why do we write a Batch Job ? What is JCL? What is the basic JCL Format? Are there any JCL Coding guidelines ?programming</a></li>
<li><a href="http://www.reddit.com/r/technology/comments/91gy1/energy_generating_bike_rental_system_pays_users/http://www.reddit.com/r/technology/">Energy Generating Bike Rental System Pays Users to RideReddit: Technology</a></li>
<li><a href="http://www.reddit.com/r/funny/comments/91fpa/i_dont_think_shes_coming_back_pic/http://www.reddit.com/">I don&#8217;t think she&#8217;s coming back.. [pic]reddit.com: what&#39;s new online!</a></li>
<li><a href="http://www.asofterworld.com/index.php?id=458http://www.asofterworld.com">A Softer World: 458A Softer World</a></li>
<li><a href="http://www.reddit.com/r/technology/comments/8zd27/the_reprap_is_the_most_awesome_machine_ever_built/http://www.reddit.com/">The RepRap is the most awesome machine ever built. We can only guess how these machines will change society when they will be ready.reddit.com: what&#39;s new online!</a></li>
<li><a href="http://www.dieselsweeties.com/archive/2321http://dieselsweeties.com">DS Web: Moebius Whoop (Totally Eighties Edition)Diesel Sweeties webcomic by rstevens</a></li>
<li><a href="http://www.presentationzen.com/presentationzen/2009/06/dsklhjkdjlksjdlsa-----------------sakjaskldjalkdja.htmlhttp://www.presentationzen.com/presentationzen/">Who says technical presentations can&#39;t be engaging?Presentation Zen</a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://buzzco.org/2009/09/18/digest-for-091809/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Digest for 09/14/09</title>
		<link>http://buzzco.org/2009/09/14/digest-for-091409/</link>
		<comments>http://buzzco.org/2009/09/14/digest-for-091409/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 05:07:13 +0000</pubDate>
		<dc:creator>jimby</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://buzzco.org/2009/09/14/digest-for-091409/</guid>
		<description><![CDATA[

Love Will Tear Us Apart by Calexicooriginally by Joy&#8230;Copy Cats
206 – You pulling my lego?Luke Surl Comics
I was shown this awesome old video today when learning about networking in IT class. [VID]Reddit: Technology
Season 4 preview of The Venture Bros.reddit.com: what&#39;s new online!
Day 278.Songs You Used To Love
The best TI-83 RPGs everreddit.com: what&#39;s new online!
Hotel California [...]]]></description>
			<content:encoded><![CDATA[<div>
<ul>
<li><a href="http://copycats.tumblr.com/post/185956119http://copycats.tumblr.com/">Love Will Tear Us Apart by Calexicooriginally by Joy&#8230;Copy Cats</a></li>
<li><a href="http://feedproxy.google.com/~r/LukeSurl/~3/_ZNO4teSOdA/1037http://www.lukesurl.com">206 – You pulling my lego?Luke Surl Comics</a></li>
<li><a href="http://www.reddit.com/r/technology/comments/9eo6s/i_was_shown_this_awesome_old_video_today_when/http://www.reddit.com/r/technology/">I was shown this awesome old video today when learning about networking in IT class. [VID]Reddit: Technology</a></li>
<li><a href="http://www.reddit.com/r/videos/comments/9cfxa/season_4_preview_of_the_venture_bros/http://www.reddit.com/">Season 4 preview of The Venture Bros.reddit.com: what&#39;s new online!</a></li>
<li><a href="http://songsyouusedtolove.tumblr.com/post/165416847http://songsyouusedtolove.tumblr.com/">Day 278.Songs You Used To Love</a></li>
<li><a href="http://www.reddit.com/r/gaming/comments/9adi8/the_best_ti83_rpgs_ever/http://www.reddit.com/">The best TI-83 RPGs everreddit.com: what&#39;s new online!</a></li>
<li><a href="http://copycats.tumblr.com/post/160723214http://copycats.tumblr.com/">Hotel California by Gipsy Kingsoriginally by The Eagles(posted&#8230;Copy Cats</a></li>
<li><a href="http://questionablecontent.net/view.php?comic=1469http://www.questionablecontent.net">I Science TheeQC RSS</a></li>
<li><a href="http://www.smbc-comics.com/index.php?db=comics&amp;id=1606http://www.smbc-comics.com">August 12, 2009Saturday Morning Breakfast Cereal (updated daily)</a></li>
<li><a href="http://feeds.gawker.com/~r/lifehacker/full/~3/ZyelHaP5Gyg/make-homemade-dog-treatshttp://lifehacker.com">Make Homemade Dog Treats [Pets]Lifehacker</a></li>
<li><a href="http://www.tinymixtapes.com/We-Were-Promised-Jetpackshttp://www.tinymixtapes.com/">We Were Promised JetpacksTiny Mix Tapes</a></li>
<li><a href="http://xkcd.com/616/http://xkcd.com/">Leasexkcd.com</a></li>
<li><a href="http://www.absolutepunk.net/showthread.php?t=1222192http://www.absolutepunk.net">Therefore I Examine BreastsAbsolutePunk.net &#8211; News</a></li>
<li><a href="http://www.reddit.com/r/programming/comments/91q75/why_do_we_write_a_batch_job_what_is_jcl_what_is/http://www.reddit.com/r/programming/">Why do we write a Batch Job ? What is JCL? What is the basic JCL Format? Are there any JCL Coding guidelines ?programming</a></li>
<li><a href="http://www.reddit.com/r/technology/comments/91gy1/energy_generating_bike_rental_system_pays_users/http://www.reddit.com/r/technology/">Energy Generating Bike Rental System Pays Users to RideReddit: Technology</a></li>
<li><a href="http://www.reddit.com/r/funny/comments/91fpa/i_dont_think_shes_coming_back_pic/http://www.reddit.com/">I don&#8217;t think she&#8217;s coming back.. [pic]reddit.com: what&#39;s new online!</a></li>
<li><a href="http://www.asofterworld.com/index.php?id=458http://www.asofterworld.com">A Softer World: 458A Softer World</a></li>
<li><a href="http://www.reddit.com/r/technology/comments/8zd27/the_reprap_is_the_most_awesome_machine_ever_built/http://www.reddit.com/">The RepRap is the most awesome machine ever built. We can only guess how these machines will change society when they will be ready.reddit.com: what&#39;s new online!</a></li>
<li><a href="http://www.dieselsweeties.com/archive/2321http://dieselsweeties.com">DS Web: Moebius Whoop (Totally Eighties Edition)Diesel Sweeties webcomic by rstevens</a></li>
<li><a href="http://www.presentationzen.com/presentationzen/2009/06/dsklhjkdjlksjdlsa-----------------sakjaskldjalkdja.htmlhttp://www.presentationzen.com/presentationzen/">Who says technical presentations can&#39;t be engaging?Presentation Zen</a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://buzzco.org/2009/09/14/digest-for-091409/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>biosinfo_linux (Xen and the art of going crazy)</title>
		<link>http://buzzco.org/2009/03/17/biosinfo_linux-xen-and-the-art-of-going-crazy/</link>
		<comments>http://buzzco.org/2009/03/17/biosinfo_linux-xen-and-the-art-of-going-crazy/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 18:03:16 +0000</pubDate>
		<dc:creator>jimby</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://buzzco.org/2009/03/17/biosinfo_linux-xen-and-the-art-of-going-crazy/</guid>
		<description><![CDATA[Back in January I got a new HPC system for all my Xen guest. It is a pretty sweet box.

2 TB of disk, 8 cores, 16 GB of  memory

I installed RHEL 5.2 with the Virtualization packaged. 

So dom0 is running a few things, like IBM Director 6.1, DNS/DHCP, OpenVPN, and an Apache server. 

I [...]]]></description>
			<content:encoded><![CDATA[<p>Back in January I got a new HPC system for all my Xen guest. It is a pretty sweet box.</p>
<p>
2 TB of disk, 8 cores, 16 GB of  memory</p>
<p>
I installed RHEL 5.2 with the Virtualization packaged. </p>
<p>
So dom0 is running a few things, like IBM Director 6.1, DNS/DHCP, OpenVPN, and an Apache server. </p>
<p>
I have a few domU guests for various projects/people. I normally only have 2 booted at a given time. </p>
<p>
Well I noticed that the machine was at nearly 100% CPU. Looking at the domU&#8217;s top information, I saw that there was a number of processes that looked like the following:</p>
<p>
root       464   368  7 10:53 ?        00:24:10 /tmp/BIOS1236869588427/biosinfo_linux</p>
<p>
root       876   778  7 12:01 ?        00:18:34 /tmp/BIOS1236873707992/biosinfo_linux</p>
</p>
<p>
30 or 40 of those per guest. Google returned nothing about this process. The binary did not exist. </p>
<p>
I started shutting down services to find out who was spawning this thing. I assumed from the name, that it was trying to get info about the bios. (Strange, there isn&#8217;t a real one under Xen)</p>
<p>
I contacted the <a href="http://cosi.clarkson.edu/">COSI Gang</a> to see of they had seen anything like it. They had not. </p>
<p>
Today when I came in, I ran find on the dom0 and sure enough there was a biosinfo_linux on it. </p>
<p>
/opt/ibm/director/agent/runtime/agent/subagents/eclipse/plugins/com.ibm.sysmgmt.uim.provider.cit.sw_1.0.0/bin/biosinfo_linux</p>
<p>
Director pushes this out and tries to get information even though there is no agent on the guest. </p>
<p>
It took me 3 months to figure this out. So if anyone out there finds the same problem, I am working with the IBM Director team to get it fixed. </p>
</p></p>
]]></content:encoded>
			<wfw:commentRss>http://buzzco.org/2009/03/17/biosinfo_linux-xen-and-the-art-of-going-crazy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Information overload</title>
		<link>http://buzzco.org/2009/02/16/information-overload/</link>
		<comments>http://buzzco.org/2009/02/16/information-overload/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 17:55:49 +0000</pubDate>
		<dc:creator>jimby</dc:creator>
				<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://buzzco.org/2009/02/16/information-overload/</guid>
		<description><![CDATA[I have been dealing with the Internet for so many years, it has become boring. I have beaten the Internet. The end guy was pretty hard.
I was reading an interview the other day located at this fine url.
This was an interview of Clay Shirky. I find Clay&#8217;s view on the current state of social entanglement [...]]]></description>
			<content:encoded><![CDATA[<p>I have been dealing with the Internet for so many years, it has become boring. I have beaten the Internet. The end guy was pretty hard.</p>
<p>I was reading an interview the other day located at this fine <a href="http://www.cjr.org/overload/interview_with_clay_shirky_par.php">url</a>.</p>
<p>This was an interview of Clay Shirky. I find Clay&#8217;s view on the current state of social entanglement fascinating. In this interview one of the topics that came up was that of information overload. I feel this every single day. There is so much. For instance, I am currently preparing a set of presentations for the mainframe based conference <a href="www.share.org">SHARE</a>. I have three sessions. One I have done before, called Comparing and Contrasting Virtualization technologies. The other two are new. SOA Security, which I got tricked into doing, already has the presentation done. I am also putting together a session that deals with running the IBM HTTP Server which is based on Apache on z/OS and how that compares to the older DWG/IHS/ICSS HTTP server that IBM has shipped with z/OS since 1995.</p>
<p>For each of those topics, I have found about 10 billion pieces of work. There is just so much information out there. Like I stated before, I have beaten the Internet. I used my skills as a professional web user to cull this information. I need to vet certain things.</p>
<p>I needed to filter.</p>
<p>And that is what Clay hinted at in this interview. There is now information overload, there is filter failure. He spoke of <a href="http://en.wikipedia.org/wiki/Library_of_Alexandria">Library of Alexandria</a> and said that pretty much since the, when there was more information than any person could ingest in a life time in once place, information overload was created.</p>
<p>I have my ways of filtering things. Google Reader is a big one. When I am searching for something in particular, I tend to use Google&#8217;s image search or something like &#8220;site:share.org ext:ppt Apache&#8221; on Google to fine presentations of Apache on the SHARE site.</p>
<p>By the time I got to the end of the interview I had already reached for my copy of &#8220;Here Comes Everyone&#8221;, Clay&#8217;s latest book. I read this on a plane to France last October. It started out really interesting, and the interview made me recall some of the tidbits hidden between those pages. The information filtering topic kinda fits in with this expansion of the social web. We are seeing vast amounts of data being thrown up to that series of tubes in the sky and there are just tremendous results. Sites like Flickr, Delicious, and Reddit are giving everyone the ability to quickly, personally, and publicly categorize seemingly random data. We can tag pictures, people and places. Everyone makes everything more accessible. And now with Facebook, Myspace and what ever the next big friend site we can share this information to a network of friends and friends of friends.</p>
<p>For example, finding music I might like used to involved a lot of failed attempts. I used to have to stay up really late to watch Subterranean on MTV. Now I have Last.fm. I have collected a ton of information about the music I like and don&#8217;t like just by passively listening to music. Last.fm takes this information and similar information about what your friends listen to and makes suggestions.</p>
<p>I feel that the social web, or semantic web or Web 2.0 or whatever people are calling it is about context. Building a context that is important you each person. This massive amount of unfiltered Internet needs to have context wrapped around it. We are still trying to figure out what we are doing with it. The web is still building itself. We are adding context. Things like locations aware applications on the iPhone and Android are bridging the gap between the real world and the virtual world while at the same time giving new context to information that is already out there.</p>
<p>The last thing I want to touch on about this interview was the act of unlearning. Clay talks to this point at the end of the interview and it is something that I have never really thought about before. I still call people. My friends 16 year old daughter rarely talks on the phone. Now I send text messages just like the rest of the twenty somethings with a cell phone. (Unlike <a href="http://people.clarkson.edu/~dowem/cgi-bin/">Dr. Eli MD</a> who lives in the dark ages with a land line.) I just don&#8217;t use text messages and the wall on Facebook as my primary mode of communication. I feel that like my parents have to unlearn the Dewey decimal system, I may have to unlearn talking to people on the phone. At the same token, I do all my banking on the the Internet. I pay my rent by a monthly scheduled account to account transfer. My pay it direct deposited. My bills are paid online automatically. <a href="www.mint.com">Mint</a> manages my budget. My Dad would have none of this. Not that he hates computers. He doesn&#8217;t go to a travel agent to book flights. But he would not dare trust a computer, or the Internet, with his financial data. That is something he might have to unlearn.</p>
<p>I leave you folks with this video: <a href="http://www.ted.com/index.php/talks/clay_shirky_on_institutions_versus_collaboration.html">Institutions vs. collaboration</a></p>
]]></content:encoded>
			<wfw:commentRss>http://buzzco.org/2009/02/16/information-overload/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Replacing an old xbox</title>
		<link>http://buzzco.org/2008/12/27/replacing-an-old-xbox/</link>
		<comments>http://buzzco.org/2008/12/27/replacing-an-old-xbox/#comments</comments>
		<pubDate>Sat, 27 Dec 2008 21:01:19 +0000</pubDate>
		<dc:creator>jimby</dc:creator>
				<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://buzzco.org/2008/12/27/replacing-an-old-xbox/</guid>
		<description><![CDATA[As many of you know, I have a first generation xbox as my main media box. I have Avalaunch and Xbox Media Center installed on it. It is getting pretty old and I want to upgraded it. I can&#8217;t play anything HD on my 47 inch plasma TV and that bothers me. 

I want to [...]]]></description>
			<content:encoded><![CDATA[<p>As many of you know, I have a first generation xbox as my main media box. I have Avalaunch and Xbox Media Center installed on it. It is getting pretty old and I want to upgraded it. I can&#8217;t play anything HD on my 47 inch plasma TV and that bothers me. </p>
<p>
I want to upgrade to something that will play movie files from either a CIFS share. I don&#8217;t really want the thing to have a local hard drive, and if it does, I would like it to be solid state. Like a SD card or something similar. I don&#8217;t want to build it myself, mostly cause I am lazy and don&#8217;t want to have to fiddle with it. </p>
<p>
I was thinking about canceling my cable, so I don&#8217;t really care about DVR/PVR. </p>
<p>
I was looking at the <a href="http://www.roku.com/">Roku</a> but I don&#8217;t know anyone out there that has played with one. Also, I don&#8217;t currently have netflix. </p>
<p>
Any body have any ideas for me ?</p>
]]></content:encoded>
			<wfw:commentRss>http://buzzco.org/2008/12/27/replacing-an-old-xbox/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Pidgin key bindings for emoticon</title>
		<link>http://buzzco.org/2008/11/04/pidgin-key-bindings-for-emoticon/</link>
		<comments>http://buzzco.org/2008/11/04/pidgin-key-bindings-for-emoticon/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 16:47:39 +0000</pubDate>
		<dc:creator>jimby</dc:creator>
				<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://buzzco.org/2008/11/04/pidgin-key-bindings-for-emoticon/</guid>
		<description><![CDATA[A long time ago, when I was but a wee lad, I used a program called GAIM. It was good enough for me. One of my favorite features was hitting 1 for a smiley. Some time ago they took that out.

To get it back, create a file in your ~/.purple directory called gtkrc-2.0

I put in [...]]]></description>
			<content:encoded><![CDATA[<p>A long time ago, when I was but a wee lad, I used a program called GAIM. It was good enough for me. One of my favorite features was hitting <ctrl>1 for a smiley. Some time ago they took that out.</ctrl></p>
<p>
To get it back, create a file in your ~/.purple directory called gtkrc-2.0</p>
<p>
I put in the following:</p>
</p>
<p>
binding &#8220;my-bindings&#8221;</p>
<p>
{</p>
<p>
bind &#8220;1&#8243; { &#8220;insert-at-cursor&#8221; (&#8221;:-)&#8221;) }</p>
<p>
bind &#8220;2&#8243; { &#8220;insert-at-cursor&#8221; (&#8221;:-(&#8221;) }</p>
<p>
bind &#8220;3&#8243; { &#8220;insert-at-cursor&#8221; (&#8221;;-)&#8221;) }</p>
<p>
bind &#8220;4&#8243; { &#8220;insert-at-cursor&#8221; (&#8221;:-P&#8221;) }</p>
<p>
bind &#8220;5&#8243; { &#8220;insert-at-cursor&#8221; (&#8221;=-O&#8221;) }</p>
<p>
bind &#8220;6&#8243; { &#8220;insert-at-cursor&#8221; (&#8221;:-*&#8221;) }</p>
<p>
bind &#8220;7&#8243; { &#8220;insert-at-cursor&#8221; (&#8221;>:o&#8221;) }</p>
<p>
bind &#8220;8&#8243; { &#8220;insert-at-cursor&#8221; (&#8221;8-)&#8221;) }</p>
<p>
} </p>
<p>
widget &#8220;*pidgin_conv_entry&#8221; binding &#8220;my-bindings&#8221;</p></p>
]]></content:encoded>
			<wfw:commentRss>http://buzzco.org/2008/11/04/pidgin-key-bindings-for-emoticon/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I watch a lot of movies</title>
		<link>http://buzzco.org/2008/10/27/i-watch-a-lot-of-movies/</link>
		<comments>http://buzzco.org/2008/10/27/i-watch-a-lot-of-movies/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 18:23:37 +0000</pubDate>
		<dc:creator>jimby</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://buzzco.org/2008/10/27/i-watch-a-lot-of-movies/</guid>
		<description><![CDATA[It almost Halloween. Which means lots of really bad horror movies. 

I watched ( all or part of )the following this weekend:

Night of the Living Dead

Halloween 

Halloween 2

Halloween 4

Halloween 5

Halloween 6

Salem&#8217;s Lot ( the one with Rob Lowe )

Carrie 

Christine

A Nightmare on Elm Street

28 days later

American Werewolf in London

Constantine

Pet Sematary


Notice Halloween 3 wasn&#8217;t on there. [...]]]></description>
			<content:encoded><![CDATA[<p>It almost Halloween. Which means lots of really bad horror movies. </p>
<p>
I watched ( all or part of )the following this weekend:</p>
<p>
Night of the Living Dead</p>
<p>
Halloween </p>
<p>
Halloween 2</p>
<p>
Halloween 4</p>
<p>
Halloween 5</p>
<p>
Halloween 6</p>
<p>
Salem&#8217;s Lot ( the one with Rob Lowe )</p>
<p>
Carrie </p>
<p>
Christine</p>
<p>
A Nightmare on Elm Street</p>
<p>
28 days later</p>
<p>
American Werewolf in London</p>
<p>
Constantine</p>
<p>
Pet Sematary</p>
</p>
<p>
Notice Halloween 3 wasn&#8217;t on there. Cause that one was junk. What is a Halloween movie with out Michael Myers ? </p>
]]></content:encoded>
			<wfw:commentRss>http://buzzco.org/2008/10/27/i-watch-a-lot-of-movies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
