<?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>interfacing the cyberspaces</title>
	<atom:link href="http://alexthegraham.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://alexthegraham.wordpress.com</link>
	<description></description>
	<lastBuildDate>Fri, 29 Jul 2011 00:31:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='alexthegraham.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>interfacing the cyberspaces</title>
		<link>http://alexthegraham.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://alexthegraham.wordpress.com/osd.xml" title="interfacing the cyberspaces" />
	<atom:link rel='hub' href='http://alexthegraham.wordpress.com/?pushpress=hub'/>
		<item>
		<title>List of New Files Shell Script</title>
		<link>http://alexthegraham.wordpress.com/2011/06/24/list-of-new-files-shell-script/</link>
		<comments>http://alexthegraham.wordpress.com/2011/06/24/list-of-new-files-shell-script/#comments</comments>
		<pubDate>Fri, 24 Jun 2011 21:20:27 +0000</pubDate>
		<dc:creator>alexthegraham</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[*nix]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[WebSphere]]></category>

		<guid isPermaLink="false">http://alexthegraham.wordpress.com/?p=413</guid>
		<description><![CDATA[This one goes out to the nerds. This is a pretty sweet bash script that I wrote today&#8230; One of our Windows machines needed a to-do list of files to be processed based on files that had been created on several Linux boxes. The solution was to write a script on the Linux boxes that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexthegraham.wordpress.com&amp;blog=3490817&amp;post=413&amp;subd=alexthegraham&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This one goes out to the nerds.</p>
<p>This is a pretty sweet bash script that I wrote today&#8230;</p>
<p>One of our Windows machines needed a to-do list of files to be processed based on files that had been created on several Linux boxes. The solution was to write a script on the Linux boxes that did the following:</p>
<ol>
<li>Get the current to-do list from the Windows box,</li>
<li>Get a list of any files that had changed in the last few minutes,</li>
<li>Strip the path and extension</li>
<li>Append any new items to the to-do list,</li>
<li>Copy the list back to the Windows box.</li>
</ol>
<p>We&#8217;d be using this script to do some verification on new containers created in WebSphere, but you can use the basic idea for whatever you may need.</p>
<p>A couple of great things about this:</p>
<ul>
<li>it will continue compiling the list even if the connection between the two machines is lost</li>
<li>each item appears on the list only once, so if a file is changed multiple times before the list is processed, the item will only be processed once</li>
<li>multiple machines can run the same script and keep appending to the same to-do list on a remote system</li>
</ul>
<p>So here&#8217;s the script:<br />
<code></code></p>
<pre>#Copy remaining "to_process" from Windows
cat /mnt/282787svnsrv/to_process.txt &gt; /home/wasadmin/scripts/newContainers/to_process.txt
cat /mnt/282787svnsrv/to_process.txt &gt; /home/wasadmin/scripts/newContainers/todo.txt

#Get any new containers
/usr/bin/find /opt/ibm/loganalysis/tmp -type f -cmin -5 -name *.ear | /bin/sed 's/.*\///' | /bin/sed 's/\(...*\)\..*/\1/' &gt; /home/wasadmin/scripts/newContainers/newCont.txt

#Append "new Containers" not in "todo" to end of "todo"

#/usr/bin/comm -23 /home/wasadmin/scripts/newContainers/newCont.txt /home/wasadmin/scripts/newContainers/todo.txt &gt;&gt; /home/wasadmin/scripts/newContainers/todo.txt
cat /home/wasadmin/scripts/newContainers/to_process.txt &gt; /home/wasadmin/scripts/newContainers/todo.txt
cat /home/wasadmin/scripts/newContainers/newCont.txt &gt;&gt; /home/wasadmin/scripts/newContainers/todo.txt
sort -u /home/wasadmin/scripts/newContainers/todo.txt &gt; /home/wasadmin/scripts/newContainers/to_process.txt

#Copy "to_process" back
cat /home/wasadmin/scripts/newContainers/to_process.txt &gt; /mnt/282787svnsrv/to_process.txt</pre>
<p>And this is the cron entry to have this process every 20 minutes:<br />
<code></code></p>
<pre>*/20 * * * * /home/wasadmin/scripts/newContainers/newContainers.sh 2&gt;&amp;1 &gt; /dev/null</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alexthegraham.wordpress.com/413/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alexthegraham.wordpress.com/413/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alexthegraham.wordpress.com/413/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alexthegraham.wordpress.com/413/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alexthegraham.wordpress.com/413/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alexthegraham.wordpress.com/413/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alexthegraham.wordpress.com/413/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alexthegraham.wordpress.com/413/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alexthegraham.wordpress.com/413/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alexthegraham.wordpress.com/413/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alexthegraham.wordpress.com/413/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alexthegraham.wordpress.com/413/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alexthegraham.wordpress.com/413/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alexthegraham.wordpress.com/413/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexthegraham.wordpress.com&amp;blog=3490817&amp;post=413&amp;subd=alexthegraham&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alexthegraham.wordpress.com/2011/06/24/list-of-new-files-shell-script/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b2906a9b039c2ae8a851adc855fd8efd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alexthegraham</media:title>
		</media:content>
	</item>
		<item>
		<title>SNMP OID for Disk Usage on a Mac</title>
		<link>http://alexthegraham.wordpress.com/2011/03/30/snmp-oid-for-disk-usage-on-a-mac/</link>
		<comments>http://alexthegraham.wordpress.com/2011/03/30/snmp-oid-for-disk-usage-on-a-mac/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 21:52:05 +0000</pubDate>
		<dc:creator>alexthegraham</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://alexthegraham.wordpress.com/?p=402</guid>
		<description><![CDATA[.1.3.6.1.2.1.25.2.3.1.6.31 It took me a really long time to find that, but that&#8217;s the OID for this MIB: .iso.org.dod.internet.mgmt.mib-2.host.hrStorage.hrStorageTable.hrStorageEntry.hrStorageUsed.31 Which, when divided by 262144 gives you the total GB used on a Mac HD. I know you don&#8217;t care. But I do. I got it by running this command to get the MIB descriptions and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexthegraham.wordpress.com&amp;blog=3490817&amp;post=402&amp;subd=alexthegraham&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>.1.3.6.1.2.1.25.2.3.1.6.31</p>
<p>It took me a really long time to find that, but that&#8217;s the OID for this MIB:</p>
<p>.iso.org.dod.internet.mgmt.mib-2.host.hrStorage.hrStorageTable.hrStorageEntry.hrStorageUsed.31</p>
<p>Which, when divided by 262144 gives you the total GB used on a Mac HD.</p>
<p>I know you don&#8217;t care. But I do.</p>
<p>I got it by running this command to get the MIB descriptions and finding the value I needed (4096/1024^3 = 1/262144):</p>
<pre>snmpwalk -c whp localhost</pre>
<p>Then I ran this to get the MIBs for everything:</p>
<pre>snmpwalk -Os -c whp -v localhost</pre>
<p>Then I searched the output of that command for the same value as was returned by the first command, and Bob&#8217;s your uncle.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alexthegraham.wordpress.com/402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alexthegraham.wordpress.com/402/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alexthegraham.wordpress.com/402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alexthegraham.wordpress.com/402/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alexthegraham.wordpress.com/402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alexthegraham.wordpress.com/402/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alexthegraham.wordpress.com/402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alexthegraham.wordpress.com/402/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alexthegraham.wordpress.com/402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alexthegraham.wordpress.com/402/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alexthegraham.wordpress.com/402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alexthegraham.wordpress.com/402/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alexthegraham.wordpress.com/402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alexthegraham.wordpress.com/402/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexthegraham.wordpress.com&amp;blog=3490817&amp;post=402&amp;subd=alexthegraham&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alexthegraham.wordpress.com/2011/03/30/snmp-oid-for-disk-usage-on-a-mac/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b2906a9b039c2ae8a851adc855fd8efd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alexthegraham</media:title>
		</media:content>
	</item>
		<item>
		<title>Thank you</title>
		<link>http://alexthegraham.wordpress.com/2010/09/19/thank-you/</link>
		<comments>http://alexthegraham.wordpress.com/2010/09/19/thank-you/#comments</comments>
		<pubDate>Sun, 19 Sep 2010 15:16:57 +0000</pubDate>
		<dc:creator>alexthegraham</dc:creator>
				<category><![CDATA[Share]]></category>

		<guid isPermaLink="false">https://alexthegraham.wordpress.com/2010/09/19/thank-you/</guid>
		<description><![CDATA[I am in awe. I have the most amazing friends of all time. My mind is blown.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexthegraham.wordpress.com&amp;blog=3490817&amp;post=401&amp;subd=alexthegraham&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am in awe.<br />
I have the most amazing friends of all time.<br />
My mind is blown.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alexthegraham.wordpress.com/401/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alexthegraham.wordpress.com/401/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alexthegraham.wordpress.com/401/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alexthegraham.wordpress.com/401/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alexthegraham.wordpress.com/401/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alexthegraham.wordpress.com/401/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alexthegraham.wordpress.com/401/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alexthegraham.wordpress.com/401/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alexthegraham.wordpress.com/401/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alexthegraham.wordpress.com/401/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alexthegraham.wordpress.com/401/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alexthegraham.wordpress.com/401/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alexthegraham.wordpress.com/401/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alexthegraham.wordpress.com/401/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexthegraham.wordpress.com&amp;blog=3490817&amp;post=401&amp;subd=alexthegraham&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alexthegraham.wordpress.com/2010/09/19/thank-you/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b2906a9b039c2ae8a851adc855fd8efd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alexthegraham</media:title>
		</media:content>
	</item>
		<item>
		<title>New York City</title>
		<link>http://alexthegraham.wordpress.com/2010/05/02/new-york-city/</link>
		<comments>http://alexthegraham.wordpress.com/2010/05/02/new-york-city/#comments</comments>
		<pubDate>Sun, 02 May 2010 14:32:24 +0000</pubDate>
		<dc:creator>alexthegraham</dc:creator>
				<category><![CDATA[Play]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">https://alexthegraham.wordpress.com/2010/05/02/new-york-city/</guid>
		<description><![CDATA[I&#8217;m in NYC on a business trip and though I worked an 11 hour day yesterday, have spent all my free time wandering SoHo. I could definitely live here, though it is hipster central. The picture is hundreds of them crowding the opening of Shepard Fairey&#8217;s opening last night. We got lunch yesterday at this [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexthegraham.wordpress.com&amp;blog=3490817&amp;post=386&amp;subd=alexthegraham&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m in NYC on a business trip and though I worked an 11 hour day yesterday, have spent all my free time wandering SoHo.</p>
<p>I could definitely live here, though it is hipster central. The picture is hundreds of them crowding the opening of Shepard Fairey&#8217;s opening last night.</p>
<p>We got lunch yesterday at this little Italian sandwich shop called Alidoro and it was awesome. Highly recommended and apparently little-known.</p>
<p>Last night I went to this bar called &#8220;The Room&#8221; because they specialize in beer. I talked to the bar tender (Rob) a little and he gave me some recommendations for other places that have good beer lists. So after I finished a couple of beers there (I&#8217;d had almost their entire draft and bottle menu) I went to one of them.</p>
<p>Blind Tiger (7th &amp; Bleeker) was awesome. They&#8217;d just had an event with Bear Republic from CA and their menu was almost all BR and lots I&#8217;d never had or seen before. Including an imperial IPA on cask. I told the bartender Rob had sent me and he hooked me up.</p>
<p>The others he recommended:<br />
DBA (1st? 4th? Near there.)<br />
Union Pool (hipster alert)<br />
Trophy (on Broadway, tell &#8216;em Rob sent you)<br />
Hot Bird (Clinton &amp; Atlantic, Rob&#8217;s other job)</p>
<p>This is mostly for my future reference since I&#8217;ll likely be back here soon, but thought anyone reading this might like to know where to get beers in NYC.</p>
<p><a href="http://alexthegraham.files.wordpress.com/2010/05/l_1600_1200_1d6ca81d-487f-403d-80eb-427da7e93475.jpeg"><img class="alignnone size-full" src="http://alexthegraham.files.wordpress.com/2010/05/l_1600_1200_1d6ca81d-487f-403d-80eb-427da7e93475.jpeg?w=450" alt="" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alexthegraham.wordpress.com/386/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alexthegraham.wordpress.com/386/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alexthegraham.wordpress.com/386/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alexthegraham.wordpress.com/386/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alexthegraham.wordpress.com/386/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alexthegraham.wordpress.com/386/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alexthegraham.wordpress.com/386/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alexthegraham.wordpress.com/386/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alexthegraham.wordpress.com/386/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alexthegraham.wordpress.com/386/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alexthegraham.wordpress.com/386/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alexthegraham.wordpress.com/386/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alexthegraham.wordpress.com/386/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alexthegraham.wordpress.com/386/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexthegraham.wordpress.com&amp;blog=3490817&amp;post=386&amp;subd=alexthegraham&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alexthegraham.wordpress.com/2010/05/02/new-york-city/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b2906a9b039c2ae8a851adc855fd8efd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alexthegraham</media:title>
		</media:content>

		<media:content url="http://alexthegraham.files.wordpress.com/2010/05/l_1600_1200_1d6ca81d-487f-403d-80eb-427da7e93475.jpeg" medium="image" />
	</item>
		<item>
		<title>OS X Command to return last successful backup</title>
		<link>http://alexthegraham.wordpress.com/2010/01/14/os-x-command-to-return-last-successful-backup/</link>
		<comments>http://alexthegraham.wordpress.com/2010/01/14/os-x-command-to-return-last-successful-backup/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 21:09:52 +0000</pubDate>
		<dc:creator>alexthegraham</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://alexthegraham.wordpress.com/?p=373</guid>
		<description><![CDATA[This is the UNIX command to return the last 5 successful backups for OS X.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexthegraham.wordpress.com&amp;blog=3490817&amp;post=373&amp;subd=alexthegraham&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This may not be useful to everyone, but it&#8217;s useful to me, so I&#8217;m documenting it here.</p>
<p>At my work we have a number of systems that use Time Machine to back up locally or to remote, networked storage.</p>
<p>Part of my job is to make sure that this is working properly for all users. Until I figured this out, I would have to walk around to each computer, or call up each user, and manually check using the Time Machine preferences. This can take hours (or days if they&#8217;re not available), and is a major hassle for everyone involved.</p>
<p>This is much better.</p>
<p>This is the UNIX command to return the last 5 successful backups for OS X:</p>
<blockquote><p>grep &#8220;Backup completed successfully.&#8221; /var/log/system.log | sed s_/System/Library/CoreServices/__g | tail -n 5</p></blockquote>
<p>By issuing this command via Apple Remote Desktop, I get a quick report breaking down each computer and the last 5 times it was backed up.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alexthegraham.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alexthegraham.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alexthegraham.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alexthegraham.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alexthegraham.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alexthegraham.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alexthegraham.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alexthegraham.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alexthegraham.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alexthegraham.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alexthegraham.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alexthegraham.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alexthegraham.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alexthegraham.wordpress.com/373/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexthegraham.wordpress.com&amp;blog=3490817&amp;post=373&amp;subd=alexthegraham&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alexthegraham.wordpress.com/2010/01/14/os-x-command-to-return-last-successful-backup/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b2906a9b039c2ae8a851adc855fd8efd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alexthegraham</media:title>
		</media:content>
	</item>
		<item>
		<title>&#8230;and I quote&#8230;</title>
		<link>http://alexthegraham.wordpress.com/2009/12/30/and-i-quote/</link>
		<comments>http://alexthegraham.wordpress.com/2009/12/30/and-i-quote/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 20:57:50 +0000</pubDate>
		<dc:creator>alexthegraham</dc:creator>
				<category><![CDATA[Share]]></category>
		<category><![CDATA[quote]]></category>

		<guid isPermaLink="false">http://alexthegraham.wordpress.com/2009/12/30/and-i-quote/</guid>
		<description><![CDATA[&#8220;And so these parties divided upon the midnight plain, each passing back the way the other had come, pursuing as all travelers must inversions without end upon other men&#8217;s journeys.&#8221; -Cormac McCarthy in Blood Meridian<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexthegraham.wordpress.com&amp;blog=3490817&amp;post=371&amp;subd=alexthegraham&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&#8220;And so these parties divided upon the midnight plain, each passing back the way the other had come, pursuing as all travelers must inversions without end upon other men&#8217;s journeys.&#8221;</p>
<p>-Cormac McCarthy in<br />
Blood Meridian</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alexthegraham.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alexthegraham.wordpress.com/371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alexthegraham.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alexthegraham.wordpress.com/371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alexthegraham.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alexthegraham.wordpress.com/371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alexthegraham.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alexthegraham.wordpress.com/371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alexthegraham.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alexthegraham.wordpress.com/371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alexthegraham.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alexthegraham.wordpress.com/371/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alexthegraham.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alexthegraham.wordpress.com/371/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexthegraham.wordpress.com&amp;blog=3490817&amp;post=371&amp;subd=alexthegraham&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alexthegraham.wordpress.com/2009/12/30/and-i-quote/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b2906a9b039c2ae8a851adc855fd8efd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alexthegraham</media:title>
		</media:content>
	</item>
		<item>
		<title>Thanksgiving</title>
		<link>http://alexthegraham.wordpress.com/2009/11/25/thanksgiving/</link>
		<comments>http://alexthegraham.wordpress.com/2009/11/25/thanksgiving/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 01:51:27 +0000</pubDate>
		<dc:creator>alexthegraham</dc:creator>
				<category><![CDATA[Share]]></category>

		<guid isPermaLink="false">http://alexthegraham.wordpress.com/?p=367</guid>
		<description><![CDATA["Home is anywhere that you know all your friends and all your enemies."
— Orson Scott Card<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexthegraham.wordpress.com&amp;blog=3490817&amp;post=367&amp;subd=alexthegraham&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>At what age do &#8220;the holidays&#8221; quit being something you look forward to and become something that you dread?</p>
<p>Maybe &#8220;dread&#8221; isn&#8217;t the right word, but you know what I mean.</p>
<p>Particularly when the people that you&#8217;ve spent the holidays with for years and years (and years) are no longer in your life. Regardless of why they&#8217;re not in your life, when the holidays roll around you spend a lot of time reminiscing about history, family, life, etc. Good or bad, you always have this idea about the holidays that they&#8217;re supposed to be this magical time of snow and happiness and hot chocolate and family and new socks.</p>
<p>And part of me is afraid that this year won&#8217;t measure up. That this year will be a disappointment &#8217;cause of the horribleness that&#8217;s preceded it. That it will be a long, gross, cold, freezing rain of re-telling the story of how things fell apart, and saying that you&#8217;re &#8220;good&#8221; when no one believes you possibly could be, even if you did.</p>
<p>I started this post hoping that it&#8217;d be a good, positive one that reassured all of us that things are going well.</p>
<p>The thing is, things <em>are</em> going well. They are. I have a great apartment, great dog, great friends, and I&#8217;m doing a pretty damn good job of holding shit together and rebuilding my life. But there&#8217;s still this&#8230;I don&#8217;t know&#8230;</p>
<p>You know that swirly black swirling mess that appears over your head when you lose at Wii tennis? It feels like that. More on that later&#8230;maybe.</p>
<p>Despite everything that&#8217;s happened this year, I do have things that I am thankful for:</p>
<ul>
<li>I&#8217;m thankful for the friends and family that I have who&#8217;ve helped me through this.</li>
<li>I&#8217;m thankful for the opportunity to start my life over again. Not everyone gets that chance.</li>
<li>I&#8217;m thankful for what I&#8217;ve learned about myself, and the way that I think and feel.</li>
<li>I&#8217;m thankful for the things that didn&#8217;t kill me, but made me stronger.</li>
<li>I&#8217;m thankful for what I learned about trust and loyalty, and the people that I thought were trustworthy and loyal, and the people that I know are.</li>
<li>I&#8217;m thankful that every day is easier than the one before it.</li>
</ul>
<p>In truth, <a title="Wikipedia - Countries without Extradition treaties with the US" href="http://en.wikipedia.org/wiki/Extradition_law_in_the_United_States#Countries_without_treaties_or_diplomatic_relations" target="_blank">things could be WAY different</a> than they are now, and I am truly thankful for the people in my life who&#8217;ve helped me through it all.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alexthegraham.wordpress.com/367/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alexthegraham.wordpress.com/367/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alexthegraham.wordpress.com/367/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alexthegraham.wordpress.com/367/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alexthegraham.wordpress.com/367/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alexthegraham.wordpress.com/367/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alexthegraham.wordpress.com/367/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alexthegraham.wordpress.com/367/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alexthegraham.wordpress.com/367/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alexthegraham.wordpress.com/367/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alexthegraham.wordpress.com/367/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alexthegraham.wordpress.com/367/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alexthegraham.wordpress.com/367/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alexthegraham.wordpress.com/367/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexthegraham.wordpress.com&amp;blog=3490817&amp;post=367&amp;subd=alexthegraham&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alexthegraham.wordpress.com/2009/11/25/thanksgiving/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b2906a9b039c2ae8a851adc855fd8efd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alexthegraham</media:title>
		</media:content>
	</item>
		<item>
		<title>Sorry, everyone</title>
		<link>http://alexthegraham.wordpress.com/2009/11/10/sorry-everyone/</link>
		<comments>http://alexthegraham.wordpress.com/2009/11/10/sorry-everyone/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 23:17:47 +0000</pubDate>
		<dc:creator>alexthegraham</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[reeling]]></category>

		<guid isPermaLink="false">http://alexthegraham.wordpress.com/2009/11/10/sorry-everyone/</guid>
		<description><![CDATA[I know that a lot of people are eager to know what&#8217;s going on with me, how I&#8217;m doing, etc. and this would be an excellent place to tell everyone the same thing all at once. I&#8217;m not doing that, though. Mostly, I am still trying to deal with this in my own head, and, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexthegraham.wordpress.com&amp;blog=3490817&amp;post=366&amp;subd=alexthegraham&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I know that a lot of people are eager to know what&#8217;s going on with me, how I&#8217;m doing, etc. and this would be an excellent place to tell everyone the same thing all at once.<br />
I&#8217;m not doing that, though.<br />
Mostly, I am still trying to deal with this in my own head, and, though writing can be a good way to deal with things, I don&#8217;t think that I would be writing anything that I would want anyone but my closest of close friends to know, and this is the Internet. Not appropriate.<br />
I promise that I will get back to this once I feel like I have something good to say.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alexthegraham.wordpress.com/366/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alexthegraham.wordpress.com/366/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alexthegraham.wordpress.com/366/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alexthegraham.wordpress.com/366/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alexthegraham.wordpress.com/366/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alexthegraham.wordpress.com/366/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alexthegraham.wordpress.com/366/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alexthegraham.wordpress.com/366/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alexthegraham.wordpress.com/366/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alexthegraham.wordpress.com/366/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alexthegraham.wordpress.com/366/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alexthegraham.wordpress.com/366/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alexthegraham.wordpress.com/366/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alexthegraham.wordpress.com/366/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexthegraham.wordpress.com&amp;blog=3490817&amp;post=366&amp;subd=alexthegraham&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alexthegraham.wordpress.com/2009/11/10/sorry-everyone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b2906a9b039c2ae8a851adc855fd8efd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alexthegraham</media:title>
		</media:content>
	</item>
		<item>
		<title>Whats the opposite of &#8220;triumphal&#8221;?</title>
		<link>http://alexthegraham.wordpress.com/2009/10/17/whats-the-opposite-of-triumphal/</link>
		<comments>http://alexthegraham.wordpress.com/2009/10/17/whats-the-opposite-of-triumphal/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 06:18:58 +0000</pubDate>
		<dc:creator>alexthegraham</dc:creator>
				<category><![CDATA[Share]]></category>
		<category><![CDATA[vacation]]></category>

		<guid isPermaLink="false">http://alexthegraham.wordpress.com/2009/10/17/whats-the-opposite-of-triumphal/</guid>
		<description><![CDATA[Tomorrow I will return to Chicago from an extended vacation in Utah, mountain biking with my family. Normally, I would be looking forward to returning to see my girlfriend, see my friends, and find out what had happened in my absence. Not this time. This time is different. This time I kinda want to vomit. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexthegraham.wordpress.com&amp;blog=3490817&amp;post=361&amp;subd=alexthegraham&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Tomorrow I will return to Chicago from an extended vacation in Utah, mountain biking with my family.<br />
Normally, I would be looking forward to returning to see my girlfriend, see my friends, and find out what had happened in my absence.<br />
Not this time.<br />
This time is different.<br />
This time I kinda want to vomit.</p>
<p>In case you hadn&#8217;t yet heard, right before this trip my five and a half year relationship with Talia ended.</p>
<p>I am returning to Chicago to start trying to find an apartment, sell furniture, and divide up our posessions.</p>
<p>It feels like I am flying back to make arrangements for the care and burial of my relationship. Of five years of my life.</p>
<p>If you feel like coming up to the podium and saying something about the deceased, please send an email instead. While I am trying to be more open (hence this post) that doesn&#8217;t mean she would want this to become an open discussion on the topic.</p>
<p>PS &#8211; Sorry if this is how you&#8217;re finding out about this. I do love you all, but I am over regaling survivors with the tale. </p>
<p><a href="http://alexthegraham.files.wordpress.com/2009/10/l_640_480_b4758a53-cf7f-432b-a339-af49b9c62f8c.jpeg"><img src="http://alexthegraham.files.wordpress.com/2009/10/l_640_480_b4758a53-cf7f-432b-a339-af49b9c62f8c.jpeg?w=300&#038;h=225" alt="" width="300" height="225" class="alignnone size-full wp-image-364" /></a></p>
<p><a href="http://alexthegraham.files.wordpress.com/2009/10/p_480_319_4db68c44-6615-438d-964f-f59e93339b8d.jpeg"><img src="http://alexthegraham.files.wordpress.com/2009/10/p_480_319_4db68c44-6615-438d-964f-f59e93339b8d.jpeg?w=199&#038;h=300" alt="" width="199" height="300" class="alignnone size-full wp-image-364" /></a></p>
<p><a href="http://alexthegraham.files.wordpress.com/2009/10/l_600_480_541c3bc8-51bc-4fd1-bc6b-1f649bf2031e.jpeg"><img src="http://alexthegraham.files.wordpress.com/2009/10/l_600_480_541c3bc8-51bc-4fd1-bc6b-1f649bf2031e.jpeg?w=300&#038;h=240" alt="" width="300" height="240" class="alignnone size-full wp-image-364" /></a></p>
<p><a href="http://alexthegraham.files.wordpress.com/2009/10/l_640_480_e3fb199e-594d-46bd-8f18-fd3ef39c1057.jpeg"><img src="http://alexthegraham.files.wordpress.com/2009/10/l_640_480_e3fb199e-594d-46bd-8f18-fd3ef39c1057.jpeg?w=300&#038;h=225" alt="" width="300" height="225" class="alignnone size-full wp-image-364" /></a></p>
<p><a href="http://alexthegraham.files.wordpress.com/2009/10/l_640_480_4b1b88cd-22f1-4fc3-ae80-444709e4d224.jpeg"><img src="http://alexthegraham.files.wordpress.com/2009/10/l_640_480_4b1b88cd-22f1-4fc3-ae80-444709e4d224.jpeg?w=300&#038;h=225" alt="" width="300" height="225" class="alignnone size-full wp-image-364" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alexthegraham.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alexthegraham.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alexthegraham.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alexthegraham.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alexthegraham.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alexthegraham.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alexthegraham.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alexthegraham.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alexthegraham.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alexthegraham.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alexthegraham.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alexthegraham.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alexthegraham.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alexthegraham.wordpress.com/361/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexthegraham.wordpress.com&amp;blog=3490817&amp;post=361&amp;subd=alexthegraham&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alexthegraham.wordpress.com/2009/10/17/whats-the-opposite-of-triumphal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b2906a9b039c2ae8a851adc855fd8efd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alexthegraham</media:title>
		</media:content>

		<media:content url="http://alexthegraham.files.wordpress.com/2009/10/l_640_480_b4758a53-cf7f-432b-a339-af49b9c62f8c.jpeg" medium="image" />

		<media:content url="http://alexthegraham.files.wordpress.com/2009/10/p_480_319_4db68c44-6615-438d-964f-f59e93339b8d.jpeg" medium="image" />

		<media:content url="http://alexthegraham.files.wordpress.com/2009/10/l_600_480_541c3bc8-51bc-4fd1-bc6b-1f649bf2031e.jpeg" medium="image" />

		<media:content url="http://alexthegraham.files.wordpress.com/2009/10/l_640_480_e3fb199e-594d-46bd-8f18-fd3ef39c1057.jpeg" medium="image" />

		<media:content url="http://alexthegraham.files.wordpress.com/2009/10/l_640_480_4b1b88cd-22f1-4fc3-ae80-444709e4d224.jpeg" medium="image" />
	</item>
		<item>
		<title>End of Week 1</title>
		<link>http://alexthegraham.wordpress.com/2009/09/18/end-of-week-1/</link>
		<comments>http://alexthegraham.wordpress.com/2009/09/18/end-of-week-1/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 21:13:04 +0000</pubDate>
		<dc:creator>alexthegraham</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://alexthegraham.wordpress.com/?p=352</guid>
		<description><![CDATA[That is correct. We have holiday-themed company power hours.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexthegraham.wordpress.com&amp;blog=3490817&amp;post=352&amp;subd=alexthegraham&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today was the end of week one of my new job, and I gotta say: Damn.</p>
<p>This place is awesome.</p>
<p>The people are super cool. The work we (<em>they</em>) do is amazing. The perks are plentiful (free drinks, free snacks, breakfast, etc.). The work is interesting and fun and I get to learn new things.</p>
<p>And, to top it all off, here&#8217;s an excerpt from an email I just got:</p>
<p style="padding-left:30px;"><em>&#8230;it&#8217;s time to think about a Halloween themed power hour.<br />
It&#8217;s important that we find 60, Sixty second clips of the best, most nasty, most scary, most tense, most funny, most awesome horror films ever.<br />
Also, we must find 60 separate one second vampire bites or vampires drinking blood scenes that will go between the horror film clips.</em></p>
<p style="padding-left:30px;"><em>Everyone submit and load your clips.  If you don&#8217;t know how to load into and avid find a friend who can help. Everyone is invited to submit clips and come to the screening that is TBD, but somewhere around halloween.</em></p>
<p style="padding-left:30px;"><em>This will be best ever.</em></p>
<p>That is correct. We have holiday-themed company <a title="Urban Dictionary: Power Hour" href="http://www.urbandictionary.com/define.php?term=Power%20Hour" target="_blank">power hours</a>.<em><br />
</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alexthegraham.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alexthegraham.wordpress.com/352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alexthegraham.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alexthegraham.wordpress.com/352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alexthegraham.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alexthegraham.wordpress.com/352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alexthegraham.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alexthegraham.wordpress.com/352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alexthegraham.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alexthegraham.wordpress.com/352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alexthegraham.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alexthegraham.wordpress.com/352/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alexthegraham.wordpress.com/352/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alexthegraham.wordpress.com/352/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alexthegraham.wordpress.com&amp;blog=3490817&amp;post=352&amp;subd=alexthegraham&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alexthegraham.wordpress.com/2009/09/18/end-of-week-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b2906a9b039c2ae8a851adc855fd8efd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alexthegraham</media:title>
		</media:content>
	</item>
	</channel>
</rss>
