<?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>Scary Reasoner</title>
	<atom:link href="http://scaryreasoner.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://scaryreasoner.wordpress.com</link>
	<description>linux, art, music, anti-religious screeds, and rants.  Oh yes, there will be rants.</description>
	<lastBuildDate>Thu, 26 Jan 2012 16:12:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='scaryreasoner.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Scary Reasoner</title>
		<link>http://scaryreasoner.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://scaryreasoner.wordpress.com/osd.xml" title="Scary Reasoner" />
	<atom:link rel='hub' href='http://scaryreasoner.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Messing around with linux PCI hotplug</title>
		<link>http://scaryreasoner.wordpress.com/2012/01/26/messing-around-with-linux-pci-hotplug/</link>
		<comments>http://scaryreasoner.wordpress.com/2012/01/26/messing-around-with-linux-pci-hotplug/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 03:44:54 +0000</pubDate>
		<dc:creator>scaryreasoner</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fakephp]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[pci hotplug]]></category>

		<guid isPermaLink="false">http://scaryreasoner.wordpress.com/?p=2102</guid>
		<description><![CDATA[Jan 25, 2012 Been playing around with PCI hotplug on linux (3.2.1 kernel from kernel.org), or rather, with the fakephp driver (fake PCI hot plug driver). The way it works is you load the fakephp driver, and this creates a bunch of directories in /sys/bus/pci/, one per PCI device (ok, per domain/bus/device/function ) and inside [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scaryreasoner.wordpress.com&amp;blog=1854601&amp;post=2102&amp;subd=scaryreasoner&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Jan 25, 2012</p>
<p>Been playing around with PCI hotplug on linux (3.2.1 kernel from kernel.org), or rather, with the fakephp driver (fake PCI hot plug driver).  The way it works is you load the fakephp driver, and this creates a bunch of directories in /sys/bus/pci/, one per PCI device (ok, per domain/bus/device/function ) and inside each directory is a &#8220;power&#8221; file.  If you write 0 to the power file, that device is &#8220;hot unplugged&#8221;.  Well, not really, but the driver entry points get called as if it were hot unplugged.  It&#8217;s surprisingly difficult to find the documenation for this as most searches related to linux and pci hotplug return old stuff.</p>
<p>You can &#8220;re-hot-plug&#8221; the device back in by echoing a 1 into /sys/bus/pci/rescan.</p>
<p>Anyway, here&#8217;s an example of using the fakephp driver to simulate hot unpl</p>
<p><pre class="brush: plain;">
root@hermes:/sys/bus/pci# uname -r
3.2.1
root@hermes:/sys/bus/pci# pwd
/sys/bus/pci
root@hermes:/sys/bus/pci# ls
devices  drivers  drivers_autoprobe  drivers_probe  rescan  resource_alignment  slots  uevent
root@hermes:/sys/bus/pci# ls slots
root@hermes:/sys/bus/pci# modprobe fakephp
root@hermes:/sys/bus/pci# ls slots
0000:00:00.0  0000:00:1b.0  0000:00:1d.2  0000:00:1e.0  0000:01:03.0  0000:01:03.3  0000:01:05.0
0000:00:02.0  0000:00:1d.0  0000:00:1d.3  0000:00:1f.0  0000:01:03.1  0000:01:03.4
0000:00:02.1  0000:00:1d.1  0000:00:1d.7  0000:00:1f.1  0000:01:03.2  0000:01:04.0
</pre></p>
<p>Above you see after loading the fakephp driver, the /sys/bus/pci/slots directory<br />
is populated with device directories.</p>
<p>Now I go poking around looking for a network device (because I know the wired<br />
network on my laptop isn&#8217;t currently plugged in, so if this doesn&#8217;t work, no<br />
harm done so long as it doesn&#8217;t crash.)</p>
<p><pre class="brush: plain;">
root@hermes:/sys/bus/pci# lspci | grep -i net
01:04.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ (rev 10)
01:05.0 Network controller: Intel Corporation PRO/Wireless 2200BG [Calexico2] Network Connection (rev 05)
</pre></p>
<p>So I see I have my Ethernet controller at 01:04.0.  Now I start tailing<br />
/var/log/messages so I can see the kernel&#8217;s response to my various pokings,<br />
and I kick the unused ethernet adapter out of the system:</p>
<p><pre class="brush: plain;">
root@hermes:/sys/bus/pci# tail -n 0 -f /var/log/messages &amp;
[1] 4294
root@hermes:/sys/bus/pci# echo 0 &gt; slots/0000\:01\:04.0/power 
root@hermes:/sys/bus/pci# Jan 25 21:28:05 hermes kernel: [13781.192061] 8139too 0000:01:04.0: PCI INT A disabled

root@hermes:/sys/bus/pci# lspci | grep -i net
01:05.0 Network controller: Intel Corporation PRO/Wireless 2200BG [Calexico2] Network Connection (rev 05)
</pre></p>
<p>Yep, it&#8217;s gone.  Now add it back in:</p>
<p><pre class="brush: plain;">
root@hermes:/sys/bus/pci# echo 1 &gt; rescan
root@hermes:/sys/bus/pci# Jan 25 21:28:23 hermes kernel: [13799.587819] i915 0000:00:02.0: BAR 6: [??? 0x00000000 flags 0x2] has bogus alignment
Jan 25 21:28:23 hermes kernel: [13799.587841] pci 0000:01:04.0: BAR 0: assigned [io  0xd000-0xd0ff]
Jan 25 21:28:23 hermes kernel: [13799.587855] pci 0000:01:04.0: BAR 0: set to [io  0xd000-0xd0ff] (PCI address [0xd000-0xd0ff])
Jan 25 21:28:23 hermes kernel: [13799.587865] pci 0000:01:04.0: BAR 1: assigned [mem 0xfe801000-0xfe8010ff]
Jan 25 21:28:23 hermes kernel: [13799.587878] pci 0000:01:04.0: BAR 1: set to [mem 0xfe801000-0xfe8010ff] (PCI address [0xfe801000-0xfe8010ff])
Jan 25 21:28:23 hermes kernel: [13799.587888] yenta_cardbus 0000:01:03.0: CardBus bridge to [bus 02-01]
Jan 25 21:28:23 hermes kernel: [13799.587896] yenta_cardbus 0000:01:03.0:   bridge window [io  0x0001-0x0000]
Jan 25 21:28:23 hermes kernel: [13799.587907] yenta_cardbus 0000:01:03.0:   bridge window [io  0x0001-0x0000]
Jan 25 21:28:23 hermes kernel: [13799.587919] yenta_cardbus 0000:01:03.0:   bridge window [mem 0x00000001-0x00000000 pref]
Jan 25 21:28:23 hermes kernel: [13799.587930] yenta_cardbus 0000:01:03.0:   bridge window [mem 0x00000001-0x00000000]
Jan 25 21:28:23 hermes kernel: [13799.594036] 8139cp 0000:01:04.0: This (id 10ec:8139 rev 10) is not an 8139C+ compatible chip, use 8139too
Jan 25 21:28:23 hermes kernel: [13799.594093] 8139too 0000:01:04.0: PCI INT A -&gt; GSI 20 (level, low) -&gt; IRQ 20
Jan 25 21:28:23 hermes kernel: [13799.599565] 8139too 0000:01:04.0: eth0: RealTek RTL8139 at 0xd000, 00:11:d8:23:c2:86, IRQ 20
Jan 25 21:28:24 hermes kernel: [13799.639799] 8139too 0000:01:04.0: eth0: link down
Jan 25 21:28:24 hermes kernel: [13799.644372] ADDRCONF(NETDEV_UP): eth0: link is not ready

root@hermes:/sys/bus/pci# lspci | grep -i net
01:04.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ (rev 10)
01:05.0 Network controller: Intel Corporation PRO/Wireless 2200BG [Calexico2] Network Connection (rev 05)
root@hermes:/sys/bus/pci#
</pre></p>
<p>And now it&#8217;s back.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/scaryreasoner.wordpress.com/2102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/scaryreasoner.wordpress.com/2102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/scaryreasoner.wordpress.com/2102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/scaryreasoner.wordpress.com/2102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/scaryreasoner.wordpress.com/2102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/scaryreasoner.wordpress.com/2102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/scaryreasoner.wordpress.com/2102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/scaryreasoner.wordpress.com/2102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/scaryreasoner.wordpress.com/2102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/scaryreasoner.wordpress.com/2102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/scaryreasoner.wordpress.com/2102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/scaryreasoner.wordpress.com/2102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/scaryreasoner.wordpress.com/2102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/scaryreasoner.wordpress.com/2102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scaryreasoner.wordpress.com&amp;blog=1854601&amp;post=2102&amp;subd=scaryreasoner&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://scaryreasoner.wordpress.com/2012/01/26/messing-around-with-linux-pci-hotplug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7b38f700e2103ebb94ddd3725c69016d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">scaryreasoner</media:title>
		</media:content>
	</item>
		<item>
		<title>Word War vi on iPad</title>
		<link>http://scaryreasoner.wordpress.com/2012/01/16/word-war-vi-on-ipad/</link>
		<comments>http://scaryreasoner.wordpress.com/2012/01/16/word-war-vi-on-ipad/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 15:02:51 +0000</pubDate>
		<dc:creator>scaryreasoner</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[gpl]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[word war vi]]></category>
		<category><![CDATA[wordwarvi]]></category>

		<guid isPermaLink="false">http://scaryreasoner.wordpress.com/?p=2090</guid>
		<description><![CDATA[January 16, 2012 &#8212; Some random internet person, Piecuch Pawel, has apparently ported my game, Word War vi to the iPad. That&#8217;s pretty cool. It&#8217;s nice when someone likes your software enough to port it to a new platform. And judging by the video, he has also made a few changes (obviously the controls on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scaryreasoner.wordpress.com&amp;blog=1854601&amp;post=2090&amp;subd=scaryreasoner&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>January 16, 2012 &#8212; Some random internet person, Piecuch Pawel, has apparently ported <a href="http://wordwarvi.sf.net">my game, Word War vi</a> to the iPad.</p>
<span style="text-align:center; display: block;"><a href="http://scaryreasoner.wordpress.com/2012/01/16/word-war-vi-on-ipad/"><img src="http://img.youtube.com/vi/llzNbgtEIBI/2.jpg" alt="" /></a></span>
<p>That&#8217;s pretty cool.  It&#8217;s nice when someone likes your software enough to port it to a new platform.  And judging by the video, he has also made a few changes (obviously the controls on the ipad are very different, and I noticed the radar and other instruments are moved to the top of the screen in the ipad version.)  It looks like a nice port.   It does seem to be missing audio, which audio is quite an important component of the game, so this is slightly disappointing, but maybe it&#8217;s only missing from the video?</p>
<p>And Word War vi is apparently on <a href="http://itunes.apple.com/at/app/word-war-vi/id491357046">iTunes</a>.</p>
<p><a href="http://scaryreasoner.files.wordpress.com/2012/01/wordwarvi-on-itunes.png"><img src="http://scaryreasoner.files.wordpress.com/2012/01/wordwarvi-on-itunes.png?w=497" alt="" title="wordwarvi-on-itunes"   class="aligncenter size-full wp-image-2094" /></a></p>
<p>What is not yet available, which is a little disconcerting, is the source code.  (<em>Update Jan 17, 2012:  Source is here: <a href="http://code.google.com/p/ppiecuch-projects/downloads/list">http://code.google.com/p/ppiecuch-projects/downloads/list</a> &#8212; Ed.)</em>  I have very deliberately licensed Word War vi under the GNU GPL, so providing the source code is a hard mandatory requirement for distribution of any port.  I&#8217;ve been assured via youtube comment that the source will be forthcoming in a few days.  Alright, so far so good, I have no real reason to think this is not the case.  That source had better be available in a few days though. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   It&#8217;s also not clear to me whether or not iTunes terms of service are compatible with the GPL.</p>
<p>I&#8217;d be interested to know from any iPad owners how the port plays on the iPad.  I know on the <a href="http://repo.openpandora.org/?page=detail&amp;app=wordwar-wordwarvi-14086">Open Pandora</a> Word War vi runs slightly slower than is ideal.</p>
<p>Interesting times.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/scaryreasoner.wordpress.com/2090/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/scaryreasoner.wordpress.com/2090/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/scaryreasoner.wordpress.com/2090/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/scaryreasoner.wordpress.com/2090/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/scaryreasoner.wordpress.com/2090/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/scaryreasoner.wordpress.com/2090/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/scaryreasoner.wordpress.com/2090/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/scaryreasoner.wordpress.com/2090/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/scaryreasoner.wordpress.com/2090/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/scaryreasoner.wordpress.com/2090/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/scaryreasoner.wordpress.com/2090/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/scaryreasoner.wordpress.com/2090/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/scaryreasoner.wordpress.com/2090/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/scaryreasoner.wordpress.com/2090/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scaryreasoner.wordpress.com&amp;blog=1854601&amp;post=2090&amp;subd=scaryreasoner&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://scaryreasoner.wordpress.com/2012/01/16/word-war-vi-on-ipad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7b38f700e2103ebb94ddd3725c69016d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">scaryreasoner</media:title>
		</media:content>

		<media:content url="http://scaryreasoner.files.wordpress.com/2012/01/wordwarvi-on-itunes.png" medium="image">
			<media:title type="html">wordwarvi-on-itunes</media:title>
		</media:content>
	</item>
		<item>
		<title>More art from the 80s</title>
		<link>http://scaryreasoner.wordpress.com/2012/01/02/more-art-from-the-80s/</link>
		<comments>http://scaryreasoner.wordpress.com/2012/01/02/more-art-from-the-80s/#comments</comments>
		<pubDate>Mon, 02 Jan 2012 17:25:02 +0000</pubDate>
		<dc:creator>scaryreasoner</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[CARToons]]></category>
		<category><![CDATA[hotrod]]></category>
		<category><![CDATA[pen and ink]]></category>

		<guid isPermaLink="false">http://scaryreasoner.wordpress.com/?p=2063</guid>
		<description><![CDATA[Jan 2, 2011 &#8212; My parents were cleaning out a closet in their house and came across some art I made when I was about 15 years old. Mostly, pen and ink pictures of hotrods in the style of CARToons magazine. Pretty sure the dragon one is more or less a copy of something I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scaryreasoner.wordpress.com&amp;blog=1854601&amp;post=2063&amp;subd=scaryreasoner&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Jan 2, 2011 &#8212; My parents were cleaning out a closet in their house and came across some art I made when I was about 15 years old.</p>
<p>Mostly, pen and ink pictures of hotrods in the style of CARToons magazine.</p>
<p>Pretty sure the dragon one is more or less a copy of something I saw in a magazine or book or something.</p>
<p><a href="http://scaryreasoner.wordpress.com/2007/12/21/drawings-from-the-1980s/">Previously</a>.</p>
<p><a href="http://scaryreasoner.files.wordpress.com/2012/01/trans-am.jpg"><img src="http://scaryreasoner.files.wordpress.com/2012/01/trans-am.jpg?w=497&#038;h=233" alt="" title="trans-am" width="497" height="233" class="aligncenter size-full wp-image-2078" /></a></p>
<p><a href="http://scaryreasoner.files.wordpress.com/2012/01/t-bucket.jpg"><img src="http://scaryreasoner.files.wordpress.com/2012/01/t-bucket.jpg?w=497&#038;h=341" alt="" title="t-bucket" width="497" height="341" class="aligncenter size-full wp-image-2077" /></a></p>
<p><a href="http://scaryreasoner.files.wordpress.com/2012/01/porsche-1.jpg"><img src="http://scaryreasoner.files.wordpress.com/2012/01/porsche-1.jpg?w=497&#038;h=267" alt="" title="porsche-1" width="497" height="267" class="aligncenter size-full wp-image-2076" /></a></p>
<p><a href="http://scaryreasoner.files.wordpress.com/2012/01/hotrod-5.jpg"><img src="http://scaryreasoner.files.wordpress.com/2012/01/hotrod-5.jpg?w=497&#038;h=372" alt="" title="hotrod-5" width="497" height="372" class="aligncenter size-full wp-image-2074" /></a></p>
<p><a href="http://scaryreasoner.files.wordpress.com/2012/01/hotrod-4.jpg"><img src="http://scaryreasoner.files.wordpress.com/2012/01/hotrod-4.jpg?w=497&#038;h=398" alt="" title="hotrod-4" width="497" height="398" class="aligncenter size-full wp-image-2073" /></a></p>
<p><a href="http://scaryreasoner.files.wordpress.com/2012/01/hotrod-3.jpg"><img src="http://scaryreasoner.files.wordpress.com/2012/01/hotrod-3.jpg?w=497&#038;h=372" alt="" title="hotrod-3" width="497" height="372" class="aligncenter size-full wp-image-2072" /></a></p>
<p><a href="http://scaryreasoner.files.wordpress.com/2012/01/hotrod-2.jpg"><img src="http://scaryreasoner.files.wordpress.com/2012/01/hotrod-2.jpg?w=497&#038;h=359" alt="" title="hotrod-2" width="497" height="359" class="aligncenter size-full wp-image-2071" /></a></p>
<p><a href="http://scaryreasoner.files.wordpress.com/2012/01/hotrod-1.jpg"><img src="http://scaryreasoner.files.wordpress.com/2012/01/hotrod-1.jpg?w=497&#038;h=643" alt="" title="hotrod-1" width="497" height="643" class="aligncenter size-full wp-image-2070" /></a></p>
<p><a href="http://scaryreasoner.files.wordpress.com/2012/01/egg.jpg"><img src="http://scaryreasoner.files.wordpress.com/2012/01/egg.jpg?w=497&#038;h=662" alt="" title="egg" width="497" height="662" class="aligncenter size-full wp-image-2069" /></a></p>
<p><a href="http://scaryreasoner.files.wordpress.com/2012/01/dragon.jpg"><img src="http://scaryreasoner.files.wordpress.com/2012/01/dragon.jpg?w=497&#038;h=662" alt="" title="dragon" width="497" height="662" class="aligncenter size-full wp-image-2068" /></a><br />
<a href="http://scaryreasoner.files.wordpress.com/2012/01/corvette-3.jpg"><img src="http://scaryreasoner.files.wordpress.com/2012/01/corvette-3.jpg?w=497&#038;h=285" alt="" title="corvette-3" width="497" height="285" class="aligncenter size-full wp-image-2067" /></a></p>
<p><a href="http://scaryreasoner.files.wordpress.com/2012/01/corvette-2.jpg"><img src="http://scaryreasoner.files.wordpress.com/2012/01/corvette-2.jpg?w=497&#038;h=231" alt="" title="corvette-2" width="497" height="231" class="aligncenter size-full wp-image-2066" /></a></p>
<p><a href="http://scaryreasoner.files.wordpress.com/2012/01/corvette-1.jpg"><img src="http://scaryreasoner.files.wordpress.com/2012/01/corvette-1.jpg?w=497&#038;h=294" alt="" title="corvette-1" width="497" height="294" class="aligncenter size-full wp-image-2065" /></a></p>
<p><a href="http://scaryreasoner.files.wordpress.com/2012/01/camaro.jpg"><img src="http://scaryreasoner.files.wordpress.com/2012/01/camaro.jpg?w=497&#038;h=295" alt="" title="camaro" width="497" height="295" class="aligncenter size-full wp-image-2064" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/scaryreasoner.wordpress.com/2063/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/scaryreasoner.wordpress.com/2063/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/scaryreasoner.wordpress.com/2063/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/scaryreasoner.wordpress.com/2063/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/scaryreasoner.wordpress.com/2063/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/scaryreasoner.wordpress.com/2063/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/scaryreasoner.wordpress.com/2063/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/scaryreasoner.wordpress.com/2063/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/scaryreasoner.wordpress.com/2063/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/scaryreasoner.wordpress.com/2063/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/scaryreasoner.wordpress.com/2063/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/scaryreasoner.wordpress.com/2063/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/scaryreasoner.wordpress.com/2063/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/scaryreasoner.wordpress.com/2063/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scaryreasoner.wordpress.com&amp;blog=1854601&amp;post=2063&amp;subd=scaryreasoner&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://scaryreasoner.wordpress.com/2012/01/02/more-art-from-the-80s/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7b38f700e2103ebb94ddd3725c69016d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">scaryreasoner</media:title>
		</media:content>

		<media:content url="http://scaryreasoner.files.wordpress.com/2012/01/trans-am.jpg" medium="image">
			<media:title type="html">trans-am</media:title>
		</media:content>

		<media:content url="http://scaryreasoner.files.wordpress.com/2012/01/t-bucket.jpg" medium="image">
			<media:title type="html">t-bucket</media:title>
		</media:content>

		<media:content url="http://scaryreasoner.files.wordpress.com/2012/01/porsche-1.jpg" medium="image">
			<media:title type="html">porsche-1</media:title>
		</media:content>

		<media:content url="http://scaryreasoner.files.wordpress.com/2012/01/hotrod-5.jpg" medium="image">
			<media:title type="html">hotrod-5</media:title>
		</media:content>

		<media:content url="http://scaryreasoner.files.wordpress.com/2012/01/hotrod-4.jpg" medium="image">
			<media:title type="html">hotrod-4</media:title>
		</media:content>

		<media:content url="http://scaryreasoner.files.wordpress.com/2012/01/hotrod-3.jpg" medium="image">
			<media:title type="html">hotrod-3</media:title>
		</media:content>

		<media:content url="http://scaryreasoner.files.wordpress.com/2012/01/hotrod-2.jpg" medium="image">
			<media:title type="html">hotrod-2</media:title>
		</media:content>

		<media:content url="http://scaryreasoner.files.wordpress.com/2012/01/hotrod-1.jpg" medium="image">
			<media:title type="html">hotrod-1</media:title>
		</media:content>

		<media:content url="http://scaryreasoner.files.wordpress.com/2012/01/egg.jpg" medium="image">
			<media:title type="html">egg</media:title>
		</media:content>

		<media:content url="http://scaryreasoner.files.wordpress.com/2012/01/dragon.jpg" medium="image">
			<media:title type="html">dragon</media:title>
		</media:content>

		<media:content url="http://scaryreasoner.files.wordpress.com/2012/01/corvette-3.jpg" medium="image">
			<media:title type="html">corvette-3</media:title>
		</media:content>

		<media:content url="http://scaryreasoner.files.wordpress.com/2012/01/corvette-2.jpg" medium="image">
			<media:title type="html">corvette-2</media:title>
		</media:content>

		<media:content url="http://scaryreasoner.files.wordpress.com/2012/01/corvette-1.jpg" medium="image">
			<media:title type="html">corvette-1</media:title>
		</media:content>

		<media:content url="http://scaryreasoner.files.wordpress.com/2012/01/camaro.jpg" medium="image">
			<media:title type="html">camaro</media:title>
		</media:content>
	</item>
		<item>
		<title>2011 in review</title>
		<link>http://scaryreasoner.wordpress.com/2012/01/01/2011-in-review/</link>
		<comments>http://scaryreasoner.wordpress.com/2012/01/01/2011-in-review/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 03:54:18 +0000</pubDate>
		<dc:creator>scaryreasoner</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://scaryreasoner.wordpress.com/?p=2055</guid>
		<description><![CDATA[The WordPress.com stats helper monkeys prepared a 2011 annual report for this blog. Here&#8217;s an excerpt: The Louvre Museum has 8.5 million visitors per year. This blog was viewed about 72,000 times in 2011. If it were an exhibit at the Louvre Museum, it would take about 3 days for that many people to see [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scaryreasoner.wordpress.com&amp;blog=1854601&amp;post=2055&amp;subd=scaryreasoner&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The WordPress.com stats helper monkeys prepared a 2011 annual report for this blog.</p>
<div style="background:url('/wp-content/mu-plugins/annual-reports/img/emailteaser.jpg') no-repeat center center;height:300px;"></div>
<p>Here&#8217;s an excerpt:</p>
</p>
<blockquote><p>The Louvre Museum has 8.5 million visitors per year.  This blog was viewed about <strong>72,000</strong> times in 2011. If it were an exhibit at the Louvre Museum, it would take about 3 days for that many people to see it.</p></blockquote>
<p><a href="/2011/annual-report/">Click here to see the complete report.</a></p>
<p><em>Note:  You probably don&#8217;t want to click that link.  You see, the wordpress programmers aren&#8217;t idiots, but they <em>are</em> complete dickhead douchebag assholes and they&#8217;ve managed to cobble together a &#8220;report&#8221; which contains a miniscule amount of information presented in a way which maximizes CPU consumption.  You&#8217;re looking at several CPU-years of processing here to get about a kilobyte &#8212; that&#8217;s right, a kilobyte &#8212; of actual information.   WordPress programmers, you&#8217;re fucking ASSHOLES.   And I should know, because I&#8217;m an asshole.   Alright, I do realize that it&#8217;s probably not the programmers, it&#8217;s probably management insisting that the programmers produce asshole software.   In any case it is pretty goddamned annoying.  Knock it the fuck off, you idiot-assholes.  Are you trying to drive me away?</em></p>
<p>Using the Readability plugin, I was able to scrape some of the info from the asshole report:</p>
<blockquote>
<p>Where did they come from?</p>
<p>    * North America88.0% The United States<br />
    * 9.4% Canada<br />
    * 1.9% Mexico<br />
    * 0.1% Puerto Rico<br />
    * 0.1% Costa Rica</p>
<p>    * Europe<br />
    * 23.8% The United Kingdom<br />
    * 10.1% France<br />
    * 9.2% Germany<br />
    * 5.4% Netherlands<br />
    * 5.3% Italy</p>
<p>    * Oceania<br />
    * 75.2% Australia<br />
    * 23.7% New Zealand<br />
    * 0.5% Fiji<br />
    * 0.3% Solomon Islands<br />
    * 0.2% Northern Mariana Islands</p>
<p>    * Asia<br />
    * 25.0% India<br />
    * 13.4% Malaysia<br />
    * 11.9% Philippines<br />
    * 7.3% Singapore<br />
    * 6.0% Indonesia</p>
<p>    * South America<br />
    * 48.8% Brazil<br />
    * 34.1% Argentina<br />
    * 7.6% Colombia<br />
    * 4.5% Chile<br />
    * 1.5% Venezuela</p>
<p>    * Africa53.7% South Africa<br />
    * 12.9% Egypt<br />
    * 5.5% Mauritius<br />
    * 4.5% Kenya<br />
    * 4.0% Tunisia</p>
<p>Most visitors came from The United States. The United Kingdom &amp; Canada were not far behind.</p>
</blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/scaryreasoner.wordpress.com/2055/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/scaryreasoner.wordpress.com/2055/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/scaryreasoner.wordpress.com/2055/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/scaryreasoner.wordpress.com/2055/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/scaryreasoner.wordpress.com/2055/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/scaryreasoner.wordpress.com/2055/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/scaryreasoner.wordpress.com/2055/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/scaryreasoner.wordpress.com/2055/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/scaryreasoner.wordpress.com/2055/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/scaryreasoner.wordpress.com/2055/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/scaryreasoner.wordpress.com/2055/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/scaryreasoner.wordpress.com/2055/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/scaryreasoner.wordpress.com/2055/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/scaryreasoner.wordpress.com/2055/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scaryreasoner.wordpress.com&amp;blog=1854601&amp;post=2055&amp;subd=scaryreasoner&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://scaryreasoner.wordpress.com/2012/01/01/2011-in-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7b38f700e2103ebb94ddd3725c69016d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">scaryreasoner</media:title>
		</media:content>
	</item>
		<item>
		<title>Impossible triangles</title>
		<link>http://scaryreasoner.wordpress.com/2011/12/19/impossible-triangles/</link>
		<comments>http://scaryreasoner.wordpress.com/2011/12/19/impossible-triangles/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 03:03:40 +0000</pubDate>
		<dc:creator>scaryreasoner</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[impossible triangle]]></category>

		<guid isPermaLink="false">http://scaryreasoner.wordpress.com/?p=2049</guid>
		<description><![CDATA[December 18, 2011 &#8212; Impossible triangles. Here are some photos I took of an actual physical object printed by a 3-d printer at TX/RX labs, in Houston Tx. There&#8217;s no photoshopping involved (I did scale the images down, but otherwise, this is how they came out of the camera).<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scaryreasoner.wordpress.com&amp;blog=1854601&amp;post=2049&amp;subd=scaryreasoner&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>December 18, 2011 &#8212; Impossible triangles.  Here are some photos I took of an actual physical object printed by a 3-d printer at <a href="http://txrxlabs.org">TX/RX labs</a>, in Houston Tx.  There&#8217;s no photoshopping involved (I did scale the images down, but otherwise, this is how they came out of the camera).</p>
<p><a href="http://scaryreasoner.files.wordpress.com/2011/12/impossible-triangle-3.jpg"><img src="http://scaryreasoner.files.wordpress.com/2011/12/impossible-triangle-3.jpg?w=497&#038;h=331" alt="" title="impossible-triangle-3" width="497" height="331" class="aligncenter size-full wp-image-2050" /></a></p>
<p><a href="http://scaryreasoner.files.wordpress.com/2011/12/impossible-triangle-2.jpg"><img src="http://scaryreasoner.files.wordpress.com/2011/12/impossible-triangle-2.jpg?w=497&#038;h=331" alt="" title="impossible-triangle-2" width="497" height="331" class="aligncenter size-full wp-image-2051" /></a></p>
<p><a href="http://scaryreasoner.files.wordpress.com/2011/12/impossible-triangle-1.jpg"><img src="http://scaryreasoner.files.wordpress.com/2011/12/impossible-triangle-1.jpg?w=497&#038;h=331" alt="" title="impossible-triangle-1" width="497" height="331" class="aligncenter size-full wp-image-2052" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/scaryreasoner.wordpress.com/2049/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/scaryreasoner.wordpress.com/2049/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/scaryreasoner.wordpress.com/2049/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/scaryreasoner.wordpress.com/2049/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/scaryreasoner.wordpress.com/2049/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/scaryreasoner.wordpress.com/2049/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/scaryreasoner.wordpress.com/2049/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/scaryreasoner.wordpress.com/2049/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/scaryreasoner.wordpress.com/2049/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/scaryreasoner.wordpress.com/2049/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/scaryreasoner.wordpress.com/2049/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/scaryreasoner.wordpress.com/2049/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/scaryreasoner.wordpress.com/2049/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/scaryreasoner.wordpress.com/2049/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scaryreasoner.wordpress.com&amp;blog=1854601&amp;post=2049&amp;subd=scaryreasoner&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://scaryreasoner.wordpress.com/2011/12/19/impossible-triangles/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7b38f700e2103ebb94ddd3725c69016d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">scaryreasoner</media:title>
		</media:content>

		<media:content url="http://scaryreasoner.files.wordpress.com/2011/12/impossible-triangle-3.jpg" medium="image">
			<media:title type="html">impossible-triangle-3</media:title>
		</media:content>

		<media:content url="http://scaryreasoner.files.wordpress.com/2011/12/impossible-triangle-2.jpg" medium="image">
			<media:title type="html">impossible-triangle-2</media:title>
		</media:content>

		<media:content url="http://scaryreasoner.files.wordpress.com/2011/12/impossible-triangle-1.jpg" medium="image">
			<media:title type="html">impossible-triangle-1</media:title>
		</media:content>
	</item>
		<item>
		<title>Christopher Hitchens is gone</title>
		<link>http://scaryreasoner.wordpress.com/2011/12/16/christopher-hitchens-is-gone/</link>
		<comments>http://scaryreasoner.wordpress.com/2011/12/16/christopher-hitchens-is-gone/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 05:55:49 +0000</pubDate>
		<dc:creator>scaryreasoner</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://scaryreasoner.wordpress.com/?p=2045</guid>
		<description><![CDATA[December 16, 2011 &#8212; Christopher Hitchens has died. The influential writer and cultural critic Christopher Hitchens died on Thursday at the age of 62 from complications of cancer of the esophagus. Hitchens confronted his disease in part by writing, bringing the same unsparing insight to his mortality that he had directed at so many other [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scaryreasoner.wordpress.com&amp;blog=1854601&amp;post=2045&amp;subd=scaryreasoner&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>December 16, 2011 &#8212; Christopher Hitchens has died.<br />
<blockquote>The influential writer and cultural critic Christopher Hitchens died on Thursday at the age of 62 from complications of cancer of the esophagus. Hitchens confronted his disease in part by writing, bringing the same unsparing insight to his mortality that he had directed at so many other subjects.</p></blockquote>
<p><a href="http://www.npr.org/2011/12/16/143595854/writer-christopher-hitchens-dies">npr.org</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/scaryreasoner.wordpress.com/2045/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/scaryreasoner.wordpress.com/2045/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/scaryreasoner.wordpress.com/2045/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/scaryreasoner.wordpress.com/2045/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/scaryreasoner.wordpress.com/2045/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/scaryreasoner.wordpress.com/2045/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/scaryreasoner.wordpress.com/2045/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/scaryreasoner.wordpress.com/2045/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/scaryreasoner.wordpress.com/2045/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/scaryreasoner.wordpress.com/2045/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/scaryreasoner.wordpress.com/2045/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/scaryreasoner.wordpress.com/2045/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/scaryreasoner.wordpress.com/2045/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/scaryreasoner.wordpress.com/2045/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scaryreasoner.wordpress.com&amp;blog=1854601&amp;post=2045&amp;subd=scaryreasoner&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://scaryreasoner.wordpress.com/2011/12/16/christopher-hitchens-is-gone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7b38f700e2103ebb94ddd3725c69016d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">scaryreasoner</media:title>
		</media:content>
	</item>
		<item>
		<title>Cyclekart progress, Dec 10, 2011 &#8212; more foaming madness</title>
		<link>http://scaryreasoner.wordpress.com/2011/12/10/cyclekart-progress-dec-10-2011-more-foaming-madness/</link>
		<comments>http://scaryreasoner.wordpress.com/2011/12/10/cyclekart-progress-dec-10-2011-more-foaming-madness/#comments</comments>
		<pubDate>Sat, 10 Dec 2011 20:42:45 +0000</pubDate>
		<dc:creator>scaryreasoner</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cyclekart]]></category>
		<category><![CDATA[fiberglass]]></category>
		<category><![CDATA[polystyrene]]></category>
		<category><![CDATA[sculpture]]></category>
		<category><![CDATA[styrofoam]]></category>

		<guid isPermaLink="false">http://scaryreasoner.wordpress.com/?p=2042</guid>
		<description><![CDATA[Dec 10, 2011 &#8212; Shaped the hood foam today.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scaryreasoner.wordpress.com&amp;blog=1854601&amp;post=2042&amp;subd=scaryreasoner&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Dec 10, 2011 &#8212; Shaped the hood foam today.<br />
<span style="text-align:center; display: block;"><a href="http://scaryreasoner.wordpress.com/2011/12/10/cyclekart-progress-dec-10-2011-more-foaming-madness/"><img src="http://img.youtube.com/vi/nKHhzinWtxI/2.jpg" alt="" /></a></span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/scaryreasoner.wordpress.com/2042/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/scaryreasoner.wordpress.com/2042/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/scaryreasoner.wordpress.com/2042/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/scaryreasoner.wordpress.com/2042/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/scaryreasoner.wordpress.com/2042/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/scaryreasoner.wordpress.com/2042/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/scaryreasoner.wordpress.com/2042/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/scaryreasoner.wordpress.com/2042/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/scaryreasoner.wordpress.com/2042/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/scaryreasoner.wordpress.com/2042/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/scaryreasoner.wordpress.com/2042/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/scaryreasoner.wordpress.com/2042/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/scaryreasoner.wordpress.com/2042/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/scaryreasoner.wordpress.com/2042/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scaryreasoner.wordpress.com&amp;blog=1854601&amp;post=2042&amp;subd=scaryreasoner&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://scaryreasoner.wordpress.com/2011/12/10/cyclekart-progress-dec-10-2011-more-foaming-madness/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7b38f700e2103ebb94ddd3725c69016d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">scaryreasoner</media:title>
		</media:content>
	</item>
		<item>
		<title>My cyclekart featured on Tx/Rx labs website</title>
		<link>http://scaryreasoner.wordpress.com/2011/12/06/my-cyclekart-featured-on-txrx-labs-website/</link>
		<comments>http://scaryreasoner.wordpress.com/2011/12/06/my-cyclekart-featured-on-txrx-labs-website/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 00:23:52 +0000</pubDate>
		<dc:creator>scaryreasoner</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cyclekart]]></category>
		<category><![CDATA[hackerspace]]></category>
		<category><![CDATA[txrx labs]]></category>

		<guid isPermaLink="false">http://scaryreasoner.wordpress.com/?p=2036</guid>
		<description><![CDATA[Dec 5, 2011 &#8211; My cyclekart is featured on the website of Houston&#8217;s hackerspace, Tx/Rx labs. And here I am trying to convince you to build a cyclekart: If you live in Houston, and want to build a cyclekart, or just talk about cyclekarts, come find me at TX/RX labs most any Friday night.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scaryreasoner.wordpress.com&amp;blog=1854601&amp;post=2036&amp;subd=scaryreasoner&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Dec 5, 2011 &#8211; <a href="http://www.txrxlabs.org/2011/12/05/project-spotlight-cyclekart/">My cyclekart is featured on the website of Houston&#8217;s hackerspace, Tx/Rx labs.</a></p>
<p>And here I am trying to convince you to build a cyclekart:</p>
<span style="text-align:center; display: block;"><a href="http://scaryreasoner.wordpress.com/2011/12/06/my-cyclekart-featured-on-txrx-labs-website/"><img src="http://img.youtube.com/vi/7ocrvACdmN8/2.jpg" alt="" /></a></span>
<p>If you live in Houston, and want to build a cyclekart, or just talk about cyclekarts, come find me at <a href="http://www.txrxlabs.org/about-3/">TX/RX labs</a> most any Friday night.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/scaryreasoner.wordpress.com/2036/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/scaryreasoner.wordpress.com/2036/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/scaryreasoner.wordpress.com/2036/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/scaryreasoner.wordpress.com/2036/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/scaryreasoner.wordpress.com/2036/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/scaryreasoner.wordpress.com/2036/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/scaryreasoner.wordpress.com/2036/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/scaryreasoner.wordpress.com/2036/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/scaryreasoner.wordpress.com/2036/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/scaryreasoner.wordpress.com/2036/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/scaryreasoner.wordpress.com/2036/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/scaryreasoner.wordpress.com/2036/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/scaryreasoner.wordpress.com/2036/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/scaryreasoner.wordpress.com/2036/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scaryreasoner.wordpress.com&amp;blog=1854601&amp;post=2036&amp;subd=scaryreasoner&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://scaryreasoner.wordpress.com/2011/12/06/my-cyclekart-featured-on-txrx-labs-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7b38f700e2103ebb94ddd3725c69016d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">scaryreasoner</media:title>
		</media:content>
	</item>
		<item>
		<title>Pork South Texas Ribeye</title>
		<link>http://scaryreasoner.wordpress.com/2011/12/05/pork-south-texas-ribeye/</link>
		<comments>http://scaryreasoner.wordpress.com/2011/12/05/pork-south-texas-ribeye/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 02:31:19 +0000</pubDate>
		<dc:creator>scaryreasoner</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[barbecue]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[gas grill]]></category>
		<category><![CDATA[grilling]]></category>
		<category><![CDATA[heb]]></category>
		<category><![CDATA[pork]]></category>
		<category><![CDATA[pork south texas ribeye]]></category>
		<category><![CDATA[south texas ribeye]]></category>

		<guid isPermaLink="false">http://scaryreasoner.wordpress.com/?p=2028</guid>
		<description><![CDATA[Dec 4, 2011. HEB, a grocery store chain that&#8217;s around where I live, is selling what they are calling &#8220;Pork South Texas Ribeyes&#8221; for US $1.94 / lb., which is pretty cheap. I&#8217;ve grilled pork chops before, and they&#8217;re alright, but they seem to very often come out a little dry and bland. This so-called [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scaryreasoner.wordpress.com&amp;blog=1854601&amp;post=2028&amp;subd=scaryreasoner&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Dec 4, 2011.  HEB, a grocery store chain that&#8217;s around where I live, is selling what they are calling &#8220;Pork South Texas Ribeyes&#8221; for US $1.94 / lb., which is pretty cheap.  I&#8217;ve grilled pork chops before, and they&#8217;re alright, but they seem to very often come out a little dry and bland.   This so-called &#8220;South Texas Ribeye&#8221; was a very pleasant surprise.  I bought a pack of six of these things not really knowing what I was getting into.<br />
<a href="http://scaryreasoner.files.wordpress.com/2011/12/pork-south-texas-ribeye-raw1.jpg"><img src="http://scaryreasoner.files.wordpress.com/2011/12/pork-south-texas-ribeye-raw1.jpg?w=497&#038;h=301" alt="" title="pork-south-texas-ribeye-raw" width="497" height="301" class="aligncenter size-full wp-image-2030" /></a></p>
<p>I smeared it in olive oil and a little salt, and then grilled it 6 minutes on each side, then put it onto a piece of aluminum foil on the grill to keep it from charring too much and put a little bit of K.C. Masterpiece barbecue sauce on it, and let it go for another 4 or 5 minutes.  I thought about adding a touch of sriracha as well, but decided against it for now.  Maybe next time. </p>
<p>I also cooked a combo of sliced onions, squash and potatoes in a foil packet on the grill (total about 40 mins, flipping every once in awhile) and warmed up some Bush&#8217;s &#8220;grillin&#8217; beans&#8221;.</p>
<p>This &#8220;south texas ribeye&#8221; turned out <em>way</em> better than I expected it to.  Imagine the best pork chop of your life, and that&#8217;s pretty much how this turned out for me.</p>
<p><a href="http://scaryreasoner.files.wordpress.com/2011/12/pork-south-texas-ribeye-cooked.jpg"><img src="http://scaryreasoner.files.wordpress.com/2011/12/pork-south-texas-ribeye-cooked.jpg?w=497&#038;h=612" alt="" title="pork-south-texas-ribeye-cooked" width="497" height="612" class="aligncenter size-full wp-image-2031" /></a></p>
<p>Awesome meal.  There will definitely be more South Texas Ribeyes in my future.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/scaryreasoner.wordpress.com/2028/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/scaryreasoner.wordpress.com/2028/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/scaryreasoner.wordpress.com/2028/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/scaryreasoner.wordpress.com/2028/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/scaryreasoner.wordpress.com/2028/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/scaryreasoner.wordpress.com/2028/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/scaryreasoner.wordpress.com/2028/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/scaryreasoner.wordpress.com/2028/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/scaryreasoner.wordpress.com/2028/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/scaryreasoner.wordpress.com/2028/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/scaryreasoner.wordpress.com/2028/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/scaryreasoner.wordpress.com/2028/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/scaryreasoner.wordpress.com/2028/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/scaryreasoner.wordpress.com/2028/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scaryreasoner.wordpress.com&amp;blog=1854601&amp;post=2028&amp;subd=scaryreasoner&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://scaryreasoner.wordpress.com/2011/12/05/pork-south-texas-ribeye/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7b38f700e2103ebb94ddd3725c69016d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">scaryreasoner</media:title>
		</media:content>

		<media:content url="http://scaryreasoner.files.wordpress.com/2011/12/pork-south-texas-ribeye-raw1.jpg" medium="image">
			<media:title type="html">pork-south-texas-ribeye-raw</media:title>
		</media:content>

		<media:content url="http://scaryreasoner.files.wordpress.com/2011/12/pork-south-texas-ribeye-cooked.jpg" medium="image">
			<media:title type="html">pork-south-texas-ribeye-cooked</media:title>
		</media:content>
	</item>
		<item>
		<title>Cyclekart progress, Dec 4, 2011 &#8211; more foam</title>
		<link>http://scaryreasoner.wordpress.com/2011/12/04/cyclekart-progress-dec-4-2011-more-foam/</link>
		<comments>http://scaryreasoner.wordpress.com/2011/12/04/cyclekart-progress-dec-4-2011-more-foam/#comments</comments>
		<pubDate>Sun, 04 Dec 2011 22:11:55 +0000</pubDate>
		<dc:creator>scaryreasoner</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cyclekart]]></category>
		<category><![CDATA[fiberglass]]></category>
		<category><![CDATA[polystyrene]]></category>
		<category><![CDATA[sculpture]]></category>
		<category><![CDATA[styrofoam]]></category>

		<guid isPermaLink="false">http://scaryreasoner.wordpress.com/?p=2024</guid>
		<description><![CDATA[Dec 4, 2011 &#8212; more foam work on the hood. Kind of reminds me of minecraft.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scaryreasoner.wordpress.com&amp;blog=1854601&amp;post=2024&amp;subd=scaryreasoner&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Dec 4, 2011 &#8212; more foam work on the hood.  Kind of reminds me of minecraft.<br />
<a href="http://scaryreasoner.files.wordpress.com/2011/12/minecraft-cyclekart.jpg"><img src="http://scaryreasoner.files.wordpress.com/2011/12/minecraft-cyclekart.jpg?w=497&#038;h=745" alt="" title="minecraft-cyclekart" width="497" height="745" class="aligncenter size-full wp-image-2025" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/scaryreasoner.wordpress.com/2024/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/scaryreasoner.wordpress.com/2024/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/scaryreasoner.wordpress.com/2024/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/scaryreasoner.wordpress.com/2024/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/scaryreasoner.wordpress.com/2024/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/scaryreasoner.wordpress.com/2024/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/scaryreasoner.wordpress.com/2024/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/scaryreasoner.wordpress.com/2024/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/scaryreasoner.wordpress.com/2024/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/scaryreasoner.wordpress.com/2024/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/scaryreasoner.wordpress.com/2024/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/scaryreasoner.wordpress.com/2024/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/scaryreasoner.wordpress.com/2024/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/scaryreasoner.wordpress.com/2024/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=scaryreasoner.wordpress.com&amp;blog=1854601&amp;post=2024&amp;subd=scaryreasoner&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://scaryreasoner.wordpress.com/2011/12/04/cyclekart-progress-dec-4-2011-more-foam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7b38f700e2103ebb94ddd3725c69016d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">scaryreasoner</media:title>
		</media:content>

		<media:content url="http://scaryreasoner.files.wordpress.com/2011/12/minecraft-cyclekart.jpg" medium="image">
			<media:title type="html">minecraft-cyclekart</media:title>
		</media:content>
	</item>
	</channel>
</rss>
