<?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>Modern Sage</title>
	<atom:link href="http://modernsage.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://modernsage.wordpress.com</link>
	<description>One man's view of the modern world.</description>
	<lastBuildDate>Wed, 21 Dec 2011 12:22:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='modernsage.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/388292ca77739384d7162ad45c782cd7?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Modern Sage</title>
		<link>http://modernsage.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://modernsage.wordpress.com/osd.xml" title="Modern Sage" />
	<atom:link rel='hub' href='http://modernsage.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Rails 3.0 &#8211; Arel Acrobatics</title>
		<link>http://modernsage.wordpress.com/2011/02/05/rails-3-0-arel-acrobatics/</link>
		<comments>http://modernsage.wordpress.com/2011/02/05/rails-3-0-arel-acrobatics/#comments</comments>
		<pubDate>Sat, 05 Feb 2011 22:33:17 +0000</pubDate>
		<dc:creator>Chris Hayes</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://modernsage.wordpress.com/?p=184</guid>
		<description><![CDATA[I&#8217;ve recently started a project, using Ruby on Rails version 3.0.1, that has been teaching me a *lot*. One such lesson is some pretty quirky magic involving rails&#8217;s new Arel engine for querying the database.  It&#8217;s best taught through an example modeling the exact problem I had &#8211; in a different problem space. Assume you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=modernsage.wordpress.com&amp;blog=4639346&amp;post=184&amp;subd=modernsage&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently started a project, using Ruby on Rails version 3.0.1, that has been teaching me a *lot*. One such lesson is some pretty quirky magic involving rails&#8217;s new Arel engine for querying the database.  It&#8217;s best taught through an example modeling the exact problem I had &#8211; in a different problem space.</p>
<p><span id="more-184"></span>Assume you have a broad forum site, and you want to find the comments on posts only on forums belonging to the logged in user. In rails, the object structure for this would typically look something like this:</p>
<div style="background-color:#eeeeee;overflow:auto;">
<pre><code>class Forum
 has_many :posts
end

class Post
 belongs_to :forum
 has_many :comments
end

class Comment
 belongs_to :post
end</code></pre>
</div>
<p>At this point, the first step in logic is to get the forums belonging to the current user. In rails 3.0, with arel, this is incredibly easy. It would look something like this:</p>
<div style="background-color:#eeeeee;overflow:auto;">
<pre><code>class Forum
 def self.mine
  where(:user_id =&gt; User.current.id)
 end
end</code></pre>
</div>
<p>I make one assumption in this code &#8211; that there is an authentication system in place, and User.current gets the currently logged in user. The line making a call to &#8220;where&#8221; is the arel magic &#8211; a relational algebra engine that builds up a data structure representing a query, without building the actual query or executing it, until the last possible moment (such as actually cycling through the records found).</p>
<p>So, how would we get the posts across all of the current user&#8217;s forums? Well, here&#8217;s the first, easy solution:</p>
<div style="background-color:#eeeeee;overflow:auto;">
<pre><code>class Post
 def self.mine
  joins(:forum).where(:forum =&gt; { :user_id =&gt; User.current.id })
 end
end</code></pre>
</div>
<p>However, there are two problems with this code. 1) It&#8217;s starting to get less readable, and 2) It violates DRY: the where clause is essentially an exact duplicate of the where clause from the Forum version of this filter. So how can we fix this? Here&#8217;s the second version I came up with:</p>
<div style="background-color:#eeeeee;overflow:auto;">
<pre><code>class Forum
 def self.posts
  Post.joins(:forum) &amp; scoped
 end
end

class Post
 def self.mine
  Forum.mine.posts
 end
end</code></pre>
</div>
<p>Now the acrobatics are beginning. First, the new scoping method in the Forum class: what this does is it uses a Forum&#8217;s relations to filter out posts &#8211; so you get some set of forums, say, through Forum.mine&#8230; and then you use that relation to grab all of the associated posts. However, you can&#8217;t just do that out of the box &#8211; because the relation Forum.mine is grabbing from the forums table, you have to merge it *into* a relation that grabs from the Posts table, and use a join on the forum table to apply the filters correctly. (e.g. Get all posts that are in forums belonging to the current user: Forum.mine.posts becomes Post.joins(:forum) &amp; Forum.mine (scoped grabs the current relation) &#8211; which becomes Post.joins(:forum).where(:forums =&gt; { :user_id =&gt; User.current.id }) &#8211; because the where was performed on the forums table.</p>
<p>Great. That works, and it&#8217;s clean, and there&#8217;s no repetition. But what happens when we go after the comments? Let&#8217;s try the same thing:</p>
<div style="background-color:#eeeeee;overflow:auto;">
<pre><code>class Post
 def self.comments
  Comment.joins(:post) &amp; scoped
 end
end

class Comment
 def self.mine
  Post.mine.comments
 end
end</code></pre>
</div>
<p>This is the most DRY way to try the same solution. Except, it doesn&#8217;t work. What it eventually translates into is Comment.joins(:post).joins(:forum).where(:forum =&gt; { :user_id =&gt; User.current.id }). The problem here is that this tries to join both the posts AND the forums DIRECTLY to the comments table. Forums have to be joined THROUGH posts. The correct arel would be built by this:</p>
<div style="background-color:#eeeeee;overflow:auto;">
<pre><code>Comment.joins(:post =&gt; :forum).where(:forum =&gt; { :user_id =&gt; User.current.id })</code></pre>
</div>
<p>This tells rails that forums can only be found by looking at posts. So, how do we do this DRY style? This is the one that took me a while to figure out, but here is the solution I came up with:</p>
<div style="background-color:#eeeeee;overflow:auto;">
<pre><code>class ActiveRecord::Base
 def self.query_association(klass)
  rel = klass.joins(self.name.to_sym =&gt; scoped.joins_values)
  joins = rel.joins_values
  rel = rel &amp; scoped
  rel.joins_values = joins
  rel
 end
end

class Forum
 def self.posts
  query_association Post
 end
end

class Post
 def self.comments
  query_association Comment
 end
end

class Comment
 def self.mine
  Post.mine.comments
 end
end</code></pre>
</div>
<p>What&#8217;s that? I extended ActiveRecord::Base? You&#8217;re damn right, I did. (Well, I haven&#8217;t tried this exact solution &#8211; you may have to pass in the scoped value. I realized the Base extension improvement while writing this post, and wrote a class method to do this, instead.) What happens here, step by step, is this: First, the joins are built correctly &#8211; any joins that were used in the original relation are scoped to go *through* the new join. Then, we save the generated relation&#8217;s joins. This is important, because when we do the final merge, the bad joins will be added in &#8211; we don&#8217;t want this. Next, we perform the real merge, and restore our original, valid joins. In effect this gives us the following telescope of the code:</p>
<div style="background-color:#eeeeee;overflow:auto;">
<pre><code>Comment.mine
Post.mine.comments
Forum.mine.posts.comments
Forum.where(:user_id =&gt; User.current.id).posts.comments
Forum.where(:forums =&gt; { :user_id =&gt; User.current.id).posts.comments (This is functionally equivalent to the previous line)
Post.joins(:forum).where(:forums =&gt; { :user_id =&gt; User.current.id }).comments
Comment.joins(:post =&gt; :forum).where(:forums =&gt; { :user_id =&gt; User.current_id })</code></pre>
</div>
<p>Success! And the best thing about this? It&#8217;s 100% recursively scalable. You can use it with a single association or with a monster hierarchy of the form A -&gt; B -&gt; C -&gt; D -&gt; E -&gt; F -&gt; &#8230; DRY, recursive, scalable. Now that&#8217;s what I call magic.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/modernsage.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/modernsage.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/modernsage.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/modernsage.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/modernsage.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/modernsage.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/modernsage.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/modernsage.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/modernsage.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/modernsage.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/modernsage.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/modernsage.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/modernsage.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/modernsage.wordpress.com/184/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=modernsage.wordpress.com&amp;blog=4639346&amp;post=184&amp;subd=modernsage&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://modernsage.wordpress.com/2011/02/05/rails-3-0-arel-acrobatics/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8a0d146f2b7b1bb222bb3a06a93b8fe8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Chris</media:title>
		</media:content>
	</item>
		<item>
		<title>A lucid dream within a dream</title>
		<link>http://modernsage.wordpress.com/2010/11/26/a-lucid-dream-within-a-dream/</link>
		<comments>http://modernsage.wordpress.com/2010/11/26/a-lucid-dream-within-a-dream/#comments</comments>
		<pubDate>Fri, 26 Nov 2010 13:10:41 +0000</pubDate>
		<dc:creator>Chris Hayes</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://modernsage.wordpress.com/?p=176</guid>
		<description><![CDATA[This morning, I dreamt that I had a lucid dream. This is one of the shortest dreams I have ever had &#8211; though I think there was a lot more before this part. I just can&#8217;t remember it all clearly, for once. In this dream within a dream, I was participating in some kind of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=modernsage.wordpress.com&amp;blog=4639346&amp;post=176&amp;subd=modernsage&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This morning, I dreamt that I had a lucid dream. This is one of the shortest dreams I have ever had &#8211; though I think there was a lot more before this part. I just can&#8217;t remember it all clearly, for once.</p>
<p>In this dream within a dream, I was participating in some kind of art contest. Each contestant was given a concept/theme which they had to make six pieces based around. These pieces would be situated on a black cube, one to a side, in chalk. And we only had five minutes to complete each piece. I forget what the theme was for the contest, but I was going with simple geometric shapes.</p>
<p>However, for some reason I couldn&#8217;t make any progress in my pieces, no matter how simple they were. And that&#8217;s when I realized: I wasn&#8217;t actually in the contest. I&#8217;d never made it there. When I&#8217;d gone to grab my art supplies, I&#8217;d grabbed a container with a toxic chemical in it.</p>
<p>I wasn&#8217;t actually in the contest, because this container had broken, and the chemical had knocked me out. While I was dreaming of losing this contest, in the real world I was convulsing and choking on my own vomit. I was completely aware of this in my dream, but couldn&#8217;t do anything about it.</p>
<p>And that&#8217;s when I woke up. And as I awoke, I heard a woman singing to me. I only caught a snippet of what she was singing to me, but it was a haunting melody, and moving lyrics: &#8220;I want to help you see how long you&#8217;ve been trapped inside of me.&#8221;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/modernsage.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/modernsage.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/modernsage.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/modernsage.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/modernsage.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/modernsage.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/modernsage.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/modernsage.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/modernsage.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/modernsage.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/modernsage.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/modernsage.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/modernsage.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/modernsage.wordpress.com/176/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=modernsage.wordpress.com&amp;blog=4639346&amp;post=176&amp;subd=modernsage&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://modernsage.wordpress.com/2010/11/26/a-lucid-dream-within-a-dream/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8a0d146f2b7b1bb222bb3a06a93b8fe8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Chris</media:title>
		</media:content>
	</item>
		<item>
		<title>The wanderer</title>
		<link>http://modernsage.wordpress.com/2010/06/16/the-wanderer/</link>
		<comments>http://modernsage.wordpress.com/2010/06/16/the-wanderer/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 07:49:03 +0000</pubDate>
		<dc:creator>Chris Hayes</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://modernsage.wordpress.com/?p=166</guid>
		<description><![CDATA[The first sensation he had upon waking was a cool breeze across his face. Where was he? How did he get here? How long had he been asleep? All of these questions, and more, raced through his mind as he let himself slowly gain consciousness. But one question came crashing through the rest, leaving his mind in a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=modernsage.wordpress.com&amp;blog=4639346&amp;post=166&amp;subd=modernsage&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The first sensation he had upon waking was a cool breeze across his face. Where was he? How did he get here? How long had he been asleep?</p>
<p><span id="more-166"></span>All of these questions, and more, raced through his mind as he let himself slowly gain consciousness. But one question came crashing through the rest, leaving his mind in a shambles: <em>who</em> was he?</p>
<p>He opened his eyes with a start. It took him a brief moment to regain his composure, but he determined not to be shaken by this gap in his memory. He was him. That was all that he needed to know, for now.</p>
<p>He lay on a hard, smooth surface, raised about four feet off the ground. As he shifted his body and sat up, a cloud of dust sent him into fits of coughing. Just how long <em>had</em> he been here?</p>
<p>His resting place was a small chamber of stone, with no obvious entrance or exit. In one wall, a crystaline window shimmered with light from outside. And next to it hung an axe, itself of black and silver crystal.</p>
<p>On pure instinct, the man rose from the slab &amp; grabbed the axe. His body seemed on autopilot. He didn&#8217;t know why he was doing this&#8230; but he knew it was right. With all his might, he swung the axe, first chipping, then cracking the window. Within ten swings, he had breached the window, and a figid wind came howling into the chamber. Another twenty had the window gone, and much of the wall following it.</p>
<p>Not long after, the man took his first steps into the outside world. With a dull red sun shining down on his face, he looked out on a vast and empty ruins, long abandoned and buried in snow. He spent many days searching the ruins, with no sign of life anywhere. He had no thought for food, or water, or sleep &#8211; only the hunt for life, and answers. He had a purpose here, but what, he could not remember.</p>
<p>Weeks went by before he began to admit to himself that his answers would not be found here. Not only had he been asleep for who knew how long&#8230; but not another soul was to be found. He still did not know who he was, or how he came to be here. He had a purpose, but it was lost to him&#8230;</p>
<p>(More to come&#8230;)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/modernsage.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/modernsage.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/modernsage.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/modernsage.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/modernsage.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/modernsage.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/modernsage.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/modernsage.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/modernsage.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/modernsage.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/modernsage.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/modernsage.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/modernsage.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/modernsage.wordpress.com/166/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=modernsage.wordpress.com&amp;blog=4639346&amp;post=166&amp;subd=modernsage&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://modernsage.wordpress.com/2010/06/16/the-wanderer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8a0d146f2b7b1bb222bb3a06a93b8fe8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Chris</media:title>
		</media:content>
	</item>
		<item>
		<title>The city and the mall</title>
		<link>http://modernsage.wordpress.com/2010/06/10/the-city-and-the-mall/</link>
		<comments>http://modernsage.wordpress.com/2010/06/10/the-city-and-the-mall/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 13:03:58 +0000</pubDate>
		<dc:creator>Chris Hayes</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://modernsage.wordpress.com/?p=159</guid>
		<description><![CDATA[This is my first foray into making my dreams public. How fitting that this should also be the first dream during my newest venture into biphasic sleep&#8230; I have a history of recurring dreams. Some are pretty standard. Some are incredibly, heart-wrenchingly poignant. Fortunately, none of them are nightmares. But, this one is certainly one [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=modernsage.wordpress.com&amp;blog=4639346&amp;post=159&amp;subd=modernsage&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is my first foray into making my dreams public. How fitting that this should also be the first dream during my newest venture into biphasic sleep&#8230;</p>
<p>I have a history of recurring dreams. Some are pretty standard. Some are incredibly, heart-wrenchingly poignant. Fortunately, none of them are nightmares. But, this one is certainly one that leaves me out of sorts when I awake&#8230;</p>
<p>There is a nameless city which I have visited thousands of times in my dreams. This city is as compact as a Japanese metropolis, and as sprawling as Dallas/Fort-Worth. It has suburbs, and boroughs. Havens of prosperity, and dens of iniquity. And, it distorts time and space. You could walk the same street a hundred times in your lifetime, and it would never take you the same place twice.<span id="more-159"></span></p>
<p>In this city, there&#8217;s a building. It has ten floors, with a two-story mall on the ground floor and an executive suite in the penthouse. The mall, itself, has many of the features of the city. It is a sprawling maze almost <em>designed</em> to get you lost. There&#8217;s a food court far larger than should fit in the building, and many interconnecting department stores and specialty stores. If any of you have read <em><a href="http://www.amazon.com/House-Leaves-Mark-Z-Danielewski/dp/0375703764/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1276173347&amp;sr=8-1">House of Leaves</a>, </em>some of the space-bending properties may seem familiar.</p>
<p>It&#8217;s unclear to me whether the building is part of the city, or if the city is what it is because the building infects it. Either way, this building is at the heart of it all. If I&#8217;ve been in the city thousands of times, I&#8217;ve been in this building &#8211; this mall &#8211; millions. Almost as though it were a conduit between my other dreams and their worlds.</p>
<p>Over time in my countless explorations of the mall, I began to find back paths and extra-dimensional shortcuts. I would turn a corner or take some stairs on one end of the building, and I would come out in a hall clear on the other side and on the same floor. M.C. Escher would be so proud. But one time, I took some stairs, and I found a basement, in a building with no basement. And so I explored. Vast, empty halls and rooms I explored. Until I found the elevators.</p>
<p>Now, there&#8217;s nothing strange about elevators in a ten story building. Except, I&#8217;d never seen them before. And upon inspection, these elevators had buttons for every floor &#8211; except the basement. Buttons, 1-10. In exactly one elevator, however, there was an additional button situated next to 10. It was a little, black, 12-point star with a light in the middle. It almost looked like the plastic cover for the button had come off at some time. This button, no matter how often I pressed it, did not do a thing.</p>
<p>Over time, I learned more about these elevators. They had always been there, but unless you knew where to look, you would walk right by them, none the wiser. Having no button for the basement, these elevators were impossible to discover unless you happened to stumble across the basement as I had.</p>
<p>To my great misfortune, these elevators were never intended for public use. I became a person of interest to the building&#8217;s security, and what had been a time of peaceful exploration quickly became a string of hurried chases, filled with anxiety. I found myself running down halls and using the many shortcuts and secrets I had learned to evade my would be captors.</p>
<p>Even during these frenetic chases, I continued to learn more of this building. At some point I had begun learning about the city outside, as I was learning of the building inside. And as had happened with security, the city&#8217;s law enforcement had begun a man hunt, as well. In my attempts to evade all of these pursuers, I eventually found back entrances to the building from the city outside. Some of these were even more elevators with a single, 12-point star button. This button, when pressed, would bring me to one of the department stores, close behind me and disappear, blending into the wood paneling without so much as a crack hinting at its existence. Over time, I came to use these elevators more and more, as the building&#8217;s security became aware of my tricks and blocked off many of my shortcuts. And then, one day, I finally discovered the purpose of the non-functional button in that basement elevator.</p>
<p>During one of my many chases, and in my haste, I hit a couple of buttons at the same time. Including the star. Up the elevator shot, all the way to the 10th floor. But, when it arrived, the doors did not open. Instead, one of the walls slid to the side, and I was blinded by a flash of light. I had found the heart of the building. What I still believe to be the secret center of this dream universe. I have since returned there countless times, and learned the logic behind the elevators. But, I am never allowed to recall what I saw or learned in that hidden room. I am fully aware of its existence, but not of its purpose. Every time I return to this room, the dream begins anew. Each time, I am a little more aware and a little more familiar. But, the cycle never ends.</p>
<p>The elevator&#8217;s logic, at this point, is likely an unimportant detail&#8230; but here it is.</p>
<p>They are, in all cases, normal elevators, except for a few details.</p>
<ol>
<li>Having no button for the basement, the elevators cannot be used to reach that level. This makes the basement exceptionally difficult to reach, because its entrance moves as much as the rest of the building changes. It also makes the elevators difficult to use, as all entrances outside the basement level are exceptionally well concealed.</li>
<li>The star button is in one elevator, and one elevator only. Not including the secret entrances.</li>
<li>The star button will never work on any floor, <em>except the basement</em>.</li>
<li>The star button will never work if any button is pressed before it.</li>
<li>The star button will only work when pressed in conjunction with 10.</li>
<li>Once the star has been invoked, the elevator behaves as an uninterruptable express. It will not stop on any other floor, and no buttons will work until it has stopped.</li>
<li>There are no elevators on the 10th floor. Much as the secret elevators into the building, all of the elevators are one-way passages. The stairs back down do not provide any exits until you have reached the first floor. In this way, the building is like a big circuit, with the elevators taking you up, and the stairs taking you down.</li>
</ol>
<p>This dream feels very muck like an evolution of one I had in college, where I was exploring a world between the walls of my school. It feels much the same, but where the college dream seemed dark and forboding, this one seems both more neutral&#8230; and more urgent.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/modernsage.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/modernsage.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/modernsage.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/modernsage.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/modernsage.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/modernsage.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/modernsage.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/modernsage.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/modernsage.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/modernsage.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/modernsage.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/modernsage.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/modernsage.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/modernsage.wordpress.com/159/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=modernsage.wordpress.com&amp;blog=4639346&amp;post=159&amp;subd=modernsage&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://modernsage.wordpress.com/2010/06/10/the-city-and-the-mall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8a0d146f2b7b1bb222bb3a06a93b8fe8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Chris</media:title>
		</media:content>
	</item>
		<item>
		<title>The games</title>
		<link>http://modernsage.wordpress.com/2010/05/25/the-games/</link>
		<comments>http://modernsage.wordpress.com/2010/05/25/the-games/#comments</comments>
		<pubDate>Tue, 25 May 2010 13:26:11 +0000</pubDate>
		<dc:creator>Chris Hayes</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://modernsage.wordpress.com/?p=149</guid>
		<description><![CDATA[Last night, I said I was going to purge my life of video games. This has already been both easier and harder than I expected it to be. Last night, as I went through my games, I kept finding myself making arguments why a game should stay&#8230; and I had to keep forcing myself to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=modernsage.wordpress.com&amp;blog=4639346&amp;post=149&amp;subd=modernsage&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Last night, I said I was going to <a href="http://modernsage.wordpress.com/2010/05/24/my-life-it-is-a-changin/">purge my life of video games</a>.</p>
<p>This has already been both easier and harder than I expected it to be. Last night, as I went through my games, I kept finding myself making arguments why a game should stay&#8230; and I had to keep forcing myself to stick to my promise. The thing that made it easier, honestly, was the fact that I made my goal public. I told the world I would do this, so I owe it not only to myself, but to anybody who stumbles across my blog. A little bit irrational? Maybe. But, so far, it&#8217;s working.</p>
<p><span id="more-149"></span>Now, I know I own more games than are on this list. But many of them are back in Texas, with my family. Over one hundred original NES games, many Gameboy games, Gameboy Advance, PlayStation, SNES, N64&#8230; These, I cannot take care of, right now. I can ask my parents to do so for me, though.</p>
<p>I&#8217;m pretty sure there are still some games hiding out in my apartment, somewhere, too. I only say this because there are some games I know I own, but cannot find. If and when they turn up, they will be getting sold, immediately.</p>
<p>And, this list obviously does not include the games I&#8217;ve downloaded &#8211; on Xbox Live Arcade, Wii Shop, Steam, or from various indie developers online.</p>
<p>I also was forced to stare two particularly bad truths in the face, last night. One, I had multiple copies of several games lying around. And I couldn&#8217;t think of a single good reason why this was. And two: there are several games that are unopened, and far more that I never finished. Particularly in the last couple of years, I got in the habit of buying a few games at the same time. And often before I was finished with the games I was already playing. I was always looking for the next, newer, better game.</p>
<p>The next thing of note: when I was done sorting through the games, there were maybe five that had met my criteria. When I realized that, I had to take a step back and ask myself if that was worth holding on to. Sure, these games are of historical and cultural significance. But, would somebody&#8217;s life perspective really suffer from never experiencing these games? No. So I&#8217;m getting rid of them, as well. All of my games are going. This means the systems are, too. I can use my laptop to watch movies, and even hook it up to my TV &amp; stereo. That removes my one last excuse for keeping a system. And I was making the excuse, believe me.</p>
<p>Now that that&#8217;s out of the way, on to the list. If anybody wants any of these games, let me know. I will wait a week, and whatever is not spoken for is going to a Game Stop, or &#8211; for a few very special games that have actually appreciated in value &#8211; on eBay. As games are spoken for, I will come back and mark them off, here. And without further ado&#8230;</p>
<ul>
<li><strong><span style="text-decoration:line-through;">SNES</span></strong>
<ul>
<li>Chrono Trigger</li>
<li>Donkey Kong Country</li>
<li>Final Fantasy: Mystic Quest</li>
<li>Inindo: Way of the Ninja</li>
<li>Super Mario World</li>
<li>Uniracers</li>
</ul>
</li>
<li><strong>N64</strong>
<ul>
<li>007 Goldeneye</li>
<li>Banjo-Kazooie</li>
<li>Bomber Man 64</li>
<li>Chameleon Twist</li>
<li>Extreme-G</li>
<li>Hexen</li>
<li>Killer Instinct Gold</li>
<li>The Legend of Zelda: Ocarina of Time</li>
<li>Mario Kart 64</li>
<li>Mortal Kombat Mythologies: Sub-Zero</li>
<li>Mortal Kombat Trilogy</li>
<li>Paper Mario</li>
<li>Pilotwings 64</li>
<li>Quest 64</li>
<li>Shadowgate 64</li>
<li>Space Station Silicon Valley</li>
<li>Star Wars: Shadows of the Empire</li>
<li>Super Mario 64</li>
<li>Super Smash Bros.</li>
<li>Tetrisphere</li>
<li>Turok: Dinosaur Hunter</li>
<li>Yoshi&#8217;s Story</li>
</ul>
</li>
<li><strong>Game Cube</strong> (These games will work on a Wii, as well &#8211; you just need a Game Cube controller)
<ul>
<li>Baten Kaitos: Eternal Wings and the Lost Ocean</li>
<li>Final Fantasy: Crystal Chronicles</li>
<li>The Legend of Zelda: Ocarina of Time/The Legend of Zelda: Ocarina of Time &#8211; Master Quest (Two game set) (This is a duplicate of the N64 game)</li>
<li>The Legend of Zelda: The Wind Waker</li>
<li>Mario Kart: Double Dash!!</li>
<li>Megaman Network Transmission</li>
<li>Megaman X Command Mission</li>
<li>Metal Gear Solid: The Twin Snakes</li>
<li>Metroid Prime</li>
<li>Metroid Prime 2: Echoes</li>
<li>Paper Mario: The Thousand-Year Door</li>
<li>Starfox Adventures</li>
<li>Super Mario Sunshine</li>
<li>Super Smash Bros. Melee</li>
</ul>
</li>
<li><strong><span style="text-decoration:line-through;">Wii </span></strong>
<ul>
<li>Avatar: The Last Airbender</li>
<li>The Legend of Zelda: Twilight Princess</li>
<li>Mario Kart Wii</li>
<li>Metroid Prime 3: Corruption</li>
<li>Super Mario Galaxy</li>
<li>Super Monkey Ball: Banana Blitz</li>
<li>Super Paper Mario</li>
<li>Super Smash Bros. Brawl</li>
<li>Wii Sports</li>
</ul>
</li>
<li><strong><span style="text-decoration:line-through;">Gameboy Advance </span></strong>
<ul>
<li>Final Fantasy IV Advance</li>
<li>Kingdom Hearts: Chain of Memories</li>
</ul>
</li>
<li><strong>Nintendo DS </strong>
<ul>
<li>Advance Wars: Dual Strike</li>
<li>Castlevania: Portrait of Ruin</li>
<li>Dragon Quest Monsters: Joker</li>
<li>Dragon Quest V</li>
<li>Etrian Odyssey</li>
<li>Etrian Odyssey II</li>
<li>Final Fantasy III</li>
<li>The Legend of Zelda: Phantom Hourglass</li>
<li>New Super Mario Bros.</li>
<li>Professor Layton and the Curious Village</li>
<li>Super Mario 64 DS (This is a duplicate of the N64 game)</li>
</ul>
</li>
<li><strong><span style="text-decoration:line-through;">PlayStation </span></strong>
<ul>
<li>Blaster Master: Blasting Again</li>
<li>Breath of Fire III</li>
<li>Breath of Fire IV</li>
<li>Castlevania: Symphony of the Night</li>
<li>Dance Dance Revolution: Disney Mix</li>
<li>Dance Dance Revolution: Konamix</li>
<li>Dragon Warrior VII</li>
<li>Final Fantasy Anthology</li>
<li>Final Fantasy Tactics</li>
<li>Kagero: Deception II</li>
<li>Mega Man Legends</li>
<li>Warhammer: Shadow of the Horned Rat</li>
<li>Warhammer: Dark Omen</li>
<li>Xenogears</li>
<li>Xenogears (Yes, two copies of the exact same game)</li>
</ul>
</li>
<li><strong><span style="text-decoration:line-through;">PlayStation 2 </span></strong>
<ul>
<li>ATV Offroad Fury 2 (Unopened)</li>
<li>Baldur&#8217;s Gate: Dark Alliance</li>
<li>Breath of Fire: Dragon Quarter</li>
<li>Burnout 2: Point of Impact</li>
<li>Burnout: Takedown</li>
<li>Burnout Revenge</li>
<li>Castlevania: Lament of Innocence</li>
<li>Champions of Norrath</li>
<li>Champions: Return to Arms</li>
<li>Dance Dance Revolution Extreme</li>
<li>Dark Cloud 2</li>
<li>DDRMax: Dance Dance Revolution</li>
<li>DDRMax 2: Dance Dance Revolution</li>
<li>Devil May Cry</li>
<li>Devil May Cry 2</li>
<li>Devil May Cry 3: Special Edition</li>
<li>Dirge of Cerberus: Final Fantasy VII</li>
<li>Dot Hack: Infection</li>
<li>Final Fantasy X</li>
<li>Final Fantasy X-2</li>
<li>God of War</li>
<li>God of War II</li>
<li>Gran Turismo 3</li>
<li>Gran Turismo 4</li>
<li>Kingdom Hearts</li>
<li>Kingdom Hearts II</li>
<li>Lego Star Wars</li>
<li>Marvel vs. Capcom 2</li>
<li>Megaman X Collection</li>
<li>Megaman X-7</li>
<li>Metal Gear Solid 3: Subsistence</li>
<li><span style="text-decoration:line-through;">Odin Sphere</span></li>
<li>Okami</li>
<li>Onimusha 2</li>
<li>Shadow Hearts</li>
<li>Shadow Hearts: Covenant</li>
<li>Shadow Hearts: From the New World</li>
<li>Shadow of Destiny</li>
<li>Silent Hill 3</li>
<li>SoulCalibur III</li>
<li>Star Ocean: Till the End of Time</li>
<li>Tony Hawk&#8217;s Pro Skater 3</li>
<li>Tony Hawk&#8217;s Pro Skater 4</li>
<li>Wizardry: Tale of the Forsaken Land</li>
<li>X-Men Legends</li>
<li>X-Men Legends II: Rise of Apocalypse (Unopened)</li>
<li>Xenosaga Episode I</li>
<li>Xenosaga Episode I Movie DVD (Just the cinematics from the game&#8230;)</li>
<li>Xenosaga Episode II</li>
<li>Xenosaga Episode III (Unopened)</li>
</ul>
</li>
<li><strong>PSP </strong>
<ul>
<li>Archer Maclean&#8217;s Mercury</li>
<li>Dungeon Maker: Hunting Ground</li>
<li>Dungeons &amp; Dragons Tactics</li>
<li>Dynasty Warriors</li>
<li>Final Fantasy</li>
<li>Final Fantasy II</li>
<li>Final Fantasy Tactics: War of the Lions (This is a duplicate of the PlayStation game)</li>
<li>Kingdom of Paradise</li>
<li>Lunar: Silver Star Harmony</li>
<li>Metal Gear AC!D</li>
<li>PoPoLoCrois</li>
<li>Ratchet &amp; Clank: Size Matters</li>
<li>Rengoku: The Tower of Purgatory</li>
<li>Star Ocean: First Departure</li>
</ul>
</li>
<li><strong>Xbox </strong>
<ul>
<li>Castlevania: Curse of Darkness</li>
<li>Dance Dance Revolution Ultramix</li>
<li>Dead or Alive 3</li>
<li>Fable</li>
<li>Fable: Limited Edition Bonus DVD (Unopened &#8211; just extras for Fable)</li>
<li>Forza Motorsport (Unopened)</li>
<li>Gunvalkyrie</li>
<li>Metal Gear Solid 2: Substance</li>
<li>Ninja Gaiden</li>
<li>Silent Hill 2: Restless Dreams</li>
<li>Silent Hill 4: The Room</li>
<li>SoulCalibur II</li>
<li>Splinter Cell: Pandora Tomorrow</li>
<li>Star Wars: Knights of the Old Republic II</li>
</ul>
</li>
<li><strong><span style="text-decoration:line-through;">Xbox 360 </span></strong>
<ul>
<li>Assassin&#8217;s Creed</li>
<li>Banjo-Kazooie: Nuts &amp; Bolts</li>
<li><span style="text-decoration:line-through;">Batman: Arkham Asylum</span></li>
<li><span style="text-decoration:line-through;">Bayonetta</span></li>
<li>Bioshock</li>
<li><span style="text-decoration:line-through;">Bioshock 2</span></li>
<li>Blazing Angels: Squadrons of WWII</li>
<li>Blazing Angels 2: Secret Mission</li>
<li>Blue Dragon</li>
<li><span style="text-decoration:line-through;">Borderlands</span></li>
<li>Call of Duty 2</li>
<li><span style="text-decoration:line-through;">Call of Duty 4: Modern Warfare</span></li>
<li>Crackdown</li>
<li>Culdcept Saga</li>
<li>The Darkness</li>
<li>Darksiders</li>
<li>Devil May Cry 4</li>
<li>Dragon Age Origins</li>
<li>The Elder Scrolls IV: Oblivion</li>
<li>Eternal Sonata</li>
<li><span style="text-decoration:line-through;">Fallout 3: Collector&#8217;s Edition w/ Lunchbox</span></li>
<li>Final Fantasy XIII</li>
<li>Gears of War</li>
<li><span style="text-decoration:line-through;">Guitar Hero II</span></li>
<li><span style="text-decoration:line-through;">Guitar Hero III: Legends of Rock</span></li>
<li>Infinite Undiscovery</li>
<li>The Last Remnant</li>
<li><span style="text-decoration:line-through;">Lego Batman</span></li>
<li>Lego Indiana Jones: The Original Adventures/Kung Fu Panda (Two game set)</li>
<li>Lego Star Wars: The Complete Saga</li>
<li>Lego Star Wars II: The Original Trilogy</li>
<li>Lost Odyssey</li>
<li>Lost Planet: Extreme Condition</li>
<li>Mass Effect</li>
<li>Mortal Kombat vs. DC Universe (Unopened)</li>
<li>Need for Speed Most Wanted</li>
<li>Ninety-Nine Nights</li>
<li>Overlord</li>
<li>Overlord II</li>
<li>Perfect Dark Zero: Limited Collector&#8217;s Edition</li>
<li>Project Gotham Racing 3</li>
<li><span style="text-decoration:line-through;">Rock Band</span></li>
<li><span style="text-decoration:line-through;">Rock Band 2</span></li>
<li>Sacred 2</li>
<li>Saints Row</li>
<li><span style="text-decoration:line-through;">SoulCalibur IV</span></li>
<li>Star Ocean: The Last Hope</li>
<li>Tales of Vesperia</li>
<li><span style="text-decoration:line-through;">Tomb Raider: Anniversary</span></li>
<li>Tomb Raider: Legend</li>
<li><span style="text-decoration:line-through;">Tomb Raider: Underworld</span></li>
<li>Tony Hawk&#8217;s American Wasteland</li>
<li>Too Human</li>
<li>Viva Piñata</li>
</ul>
</li>
<li><strong><span style="text-decoration:line-through;">PC/Mac</span></strong>
<ul>
<li>Anachronox</li>
<li>Baldur&#8217;s Gate</li>
<li>Betrayal in Antara</li>
<li>Civilization: Call to Power</li>
<li>Civilization II</li>
<li>Civilization II: Test of Time</li>
<li>Civilization III</li>
<li>Civilization IV</li>
<li>Civilization IV: Warlords (Unopened)</li>
<li>Command &amp; Conquer: Red Alert</li>
<li>Command &amp; Conquer: Red Alert &#8211; The Aftermath</li>
<li>The Complete Encyclopedia of Games</li>
<li>Daggerfall</li>
<li>Descent II: The Vertigo Series</li>
<li>Diablo</li>
<li>Diablo II</li>
<li>Diablo II (A second copy of the exact same game. I&#8217;m positive I have a <em>third</em>, somewhere)</li>
<li>Driver: You Are the Wheelman</li>
<li>Fallout 2</li>
<li>Final Fantasy VII</li>
<li>The Forgotten Realms Archives</li>
<li>Frogger: Hop To It</li>
<li>Galactic Civilizations II: Gold Edition</li>
<li>Grand Theft Auto</li>
<li>Grand Theft Auto (A second copy)</li>
<li>Grand Theft Auto &#8211; Mission Pack #1: London 1969</li>
<li>Hellgate: London</li>
<li>Heroes of Might and Magic Compendium</li>
<li>Icewind Dale</li>
<li>Lands of Lore: The Throne of Chaos</li>
<li>Lands of Lore: Guardians of Destiny</li>
<li>Lode Runner^2</li>
<li>Lords of the Realm II</li>
<li>Magic: The Gathering</li>
<li>Magic: The Gathering &#8211; Duels of the Planeswalkers</li>
<li>Masters of Orion II: Battle at Antares</li>
<li>Mechwarrior 2: 31st Century Combat</li>
<li>Might and Magic VI: The Mandate of Heaven</li>
<li>Myst III: Exile</li>
<li>Neverwinter Nights Diamond</li>
<li>Pax Imperia: Eminent Domain</li>
<li>Privateer 2: The Darkening</li>
<li>Quake II</li>
<li>Quest for Glory V: Dragon Fire</li>
<li>Riven: The Sequel to Myst</li>
<li>Septerra Core</li>
<li>Siege of Avalon Anthology</li>
<li>Spore</li>
<li>Star Trek: Birth of the Federation</li>
<li>Star Wars: Knights of the Old Republic</li>
<li>Star Wars Dark Forces II: Jedi Knight</li>
<li>Star Wars Episode I: The Phantom Menace</li>
<li>Thief Gold</li>
<li>Tomb Raider</li>
<li>Tomb Raider II</li>
<li>The Ultimate RPG Archives</li>
<li>The Ultimate Wizardry Archives</li>
<li>Unreal</li>
<li>Warcraft II: Tides of Darkness</li>
<li>Warcraft II: Beyond the Dark Portal</li>
<li>Level Master for Warcraft II</li>
<li>Warcraft III: Reign of Chaos</li>
<li>Warhammer: Age of Reckoning</li>
<li>Warhammer: Dark Omen (Duplicate of the PlayStation game)</li>
<li>Warhammer: Mark of Chaos</li>
<li>Warhammer: Mark of Chaos &#8211; Battle March (Unopened)</li>
<li>Warhammer 40000: Dawn of War &#8211; Gold Edition</li>
<li>Warhammer Epic 40000: Final Liberation</li>
<li>Warlords III: Reign of Heroes</li>
<li>Wing Commander: The Kilrathi Saga</li>
<li>Wing Commander IV</li>
<li>Wizardry Nemesis</li>
<li>World of Warcraft: The Burning Crusade</li>
</ul>
</li>
</ul>
<p>And there you have it.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/modernsage.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/modernsage.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/modernsage.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/modernsage.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/modernsage.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/modernsage.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/modernsage.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/modernsage.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/modernsage.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/modernsage.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/modernsage.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/modernsage.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/modernsage.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/modernsage.wordpress.com/149/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=modernsage.wordpress.com&amp;blog=4639346&amp;post=149&amp;subd=modernsage&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://modernsage.wordpress.com/2010/05/25/the-games/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8a0d146f2b7b1bb222bb3a06a93b8fe8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Chris</media:title>
		</media:content>
	</item>
		<item>
		<title>My life. It is a changin&#8217;&#8230;</title>
		<link>http://modernsage.wordpress.com/2010/05/24/my-life-it-is-a-changin/</link>
		<comments>http://modernsage.wordpress.com/2010/05/24/my-life-it-is-a-changin/#comments</comments>
		<pubDate>Tue, 25 May 2010 04:03:34 +0000</pubDate>
		<dc:creator>Chris Hayes</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://modernsage.wordpress.com/?p=141</guid>
		<description><![CDATA[(By the way, I&#8217;m not a fan of Bob Dylan.) It&#8217;s been a while. And boy is this a doozy for me to write. I&#8217;m about to make some admissions to the world. Admissions that I&#8217;ve only hinted at to most of the people I know in my life. I&#8217;m purging my life. Over the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=modernsage.wordpress.com&amp;blog=4639346&amp;post=141&amp;subd=modernsage&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>(By the way, I&#8217;m not a fan of Bob Dylan.)</p>
<p>It&#8217;s been a while. And boy is this a doozy for me to write. I&#8217;m about to make some admissions to the world. Admissions that I&#8217;ve only <em>hinted </em>at to most of the people I know in my life.</p>
<p>I&#8217;m purging my life.</p>
<p>Over the last couple of months, my life has taken some very interesting turns. It&#8217;s led to a re-examination of my priorities, and much of the clutter in my life. So, I&#8217;m purging it. Starting with my video games.</p>
<p>This is no small matter for me, either. I started playing games when I was 8. Maybe 3. First game I remember playing is a little number called &#8220;Dog Doo&#8221;, on a Tandy CRT. I played the hell out of that game, too. But now, it&#8217;s 22 years later. Or is it 27? I&#8217;m 30, and I&#8217;ve wasted &#8211; yes wasted &#8211; a vast majority of my life on these games. My collection of games and game systems amounts to thousands of dollars sunk into this&#8230; &#8220;hobby&#8221;.</p>
<p><span id="more-141"></span>A couple years ago, I finally admitted to myself. This was an addiction. No, it&#8217;s not drugs. Or alcohol. Or sex. Or any of the other stereotypical addictions. But it is an addiction, none the less. Tired? Play games. Lonely? Play games. Bored? Play games. Depressed? Play games. And the worst part? For a large portion of my childhood, my parents were my pushers. How can I blame them, though? They had no idea what would happen to me. They only knew I enjoyed them. And the games were largely intellectually stimulating. I had good taste, at least. No, I can&#8217;t blame my parents. The only person I have to blame is myself.</p>
<p>At some point, video games took over my life; they were unarguably an addiction. They were interfering with my job, my social life, and my ability to support myself. &#8211; Even when I tried to budget, I *refused* to set a limit on my spending for games. I made rationalizations to myself. And as hard as this is for me to admit, I lied to people about it.</p>
<p>When I first realized this, I was in the process of moving to a new apartment complex. I took the opportunity <em>not</em> to get internet in my apartment. I also swore off games for a month. I cheated once or twice. And at the end of the month, the first thing I did was sign up with Comcast.</p>
<p>About a year ago, I made the resolution to be social every day I could manage. It lasted about 3 months &#8211; one hundred some-odd days of being social. That&#8217;s impressive, in it&#8217;s own right. But the reason I stopped? Video games.</p>
<p>In the last few months, I have come to the realization that this is not a fight I can win when the source of my addiction is so readily available. I&#8217;ve moved in to a new apartment, and have gone two months without internet access. I have also begun to find real passions in my life, again.</p>
<p>I have begun playing guitar&#8230; you could call it my &#8220;anti-drug&#8221;.</p>
<p>I have begun writing down my dreams, at the suggestion of a good friend. And I&#8217;ve realized that they are the stuff of real stories. I will begin posting them, here &#8211; though the first few attempts will be utter balls.</p>
<p>I&#8217;ve been considering a return to graduate school &#8211; either for math, psychology, or computer science. I&#8217;m thinking about becoming an educator. That vocation resonates with my deepest soul.</p>
<p>So, I&#8217;ve finally admitted to myself. The games cannot keep a hold over me, if I wish to do the things in my life that truly matter to me. They are no longer a priority, and I need a concrete way to show myself that. I&#8217;m getting rid of my video games.</p>
<p>Here is the plan. I&#8217;m going home as soon as I finish this post. And I&#8217;m sifting through all my games. There are two criteria. If a game does not meet either, it goes.</p>
<ol>
<li><strong>It&#8217;s a party game.</strong> This includes Rock Band, and probably Mario Kart. And not much else.</li>
<li><strong>It is a game of real artistic merit.</strong> Either a true influence on games that followed (Zelda), or one on a par with musical masterpieces or classic novels (a couple of the Final Fantasies fall into this category).</li>
</ol>
<p>I estimate 99% of my collection will go.</p>
<p>So why not 100%? And what am I doing with the rest?</p>
<p>Not 100%, because unlike drugs, video games are not inherently addictive. I believe there&#8217;s a chance I will have kids one day. And some of these games are of cultural significance. It&#8217;s something they may have value in learning about and experiencing. The party games &#8211; well, it&#8217;s something social. Those, I could probably do away with.</p>
<p>What am I doing with the ones I&#8217;m keeping? My first thought is this: Buy a lock box of some sort. Put all of my remaining games in it, and give a good friend the key. The only time I&#8217;m allowed access is when I&#8217;m loaning a game out&#8230; or I&#8217;m planning or attending a social event where a social game would be a good activity.</p>
<p>The hardest part will be my laptop. Flash games abound on the internet. I don&#8217;t know of any way to remove that temptation. So all I can do is make a promise to myself &#8211; if I succumb, I will admit it, fully, openly, and to the world. And then I will begin my recovery again.</p>
<p>This is the unadulterated truth. I didn&#8217;t allow myself any concessions. Any excuses. I am an addict. And I am determined to change.</p>
<p>My greatest fear? That this could lose me some respect with peers, that it could cost me business, and that it could cost me the chance at some future relationships. The truth, though, is that the people who lose respect for me are not seeing the strength &amp; conviction that this is taking for me to really open up about. Most should <em>gain</em> respect &#8211; assuming I can hold strong. And the relationships it could cost? Well, if I had kept this in, then what kind of relationships would those have been? If I lose business because of it&#8230; well, I can&#8217;t blame them. Nobody wants an addict working for them.</p>
<p>Tonight, I begin the purge. Tomorrow, I will post a list of the games I&#8217;m getting rid of &#8211; and anybody that wants them, can have them. I&#8217;d <em>like</em> compensation &#8211; this is 20 someodd years of my life and thousands of dollars of investment I&#8217;m talking about. But my absolute, number one, primary concern is to get rid of them.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/modernsage.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/modernsage.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/modernsage.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/modernsage.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/modernsage.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/modernsage.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/modernsage.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/modernsage.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/modernsage.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/modernsage.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/modernsage.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/modernsage.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/modernsage.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/modernsage.wordpress.com/141/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=modernsage.wordpress.com&amp;blog=4639346&amp;post=141&amp;subd=modernsage&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://modernsage.wordpress.com/2010/05/24/my-life-it-is-a-changin/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8a0d146f2b7b1bb222bb3a06a93b8fe8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Chris</media:title>
		</media:content>
	</item>
		<item>
		<title>I Am a Human Guinea Pig</title>
		<link>http://modernsage.wordpress.com/2009/03/02/i-am-a-human-guinea-pig/</link>
		<comments>http://modernsage.wordpress.com/2009/03/02/i-am-a-human-guinea-pig/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 06:11:20 +0000</pubDate>
		<dc:creator>Chris Hayes</dc:creator>
				<category><![CDATA[Life Experiments]]></category>
		<category><![CDATA[Biphasic Sleep]]></category>
		<category><![CDATA[Health]]></category>
		<category><![CDATA[Krav Maga]]></category>
		<category><![CDATA[Self Improvement]]></category>
		<category><![CDATA[Sleep]]></category>
		<category><![CDATA[Socializing]]></category>

		<guid isPermaLink="false">http://modernsage.wordpress.com/?p=106</guid>
		<description><![CDATA[Hello, all. It&#8217;s been a while. Again. Sorry about that. But, I&#8217;ve been busy. No, not too busy to blog. But busy enough that it hasn&#8217;t been crossing my mind as much as it usually does. Let&#8217;s fix that, shall we? The reason I&#8217;ve been so preoccupied is really very simple. I&#8217;ve taken on a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=modernsage.wordpress.com&amp;blog=4639346&amp;post=106&amp;subd=modernsage&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hello, all. It&#8217;s been a while. Again. Sorry about that. But, I&#8217;ve been busy. No, not too busy to blog. But busy enough that it hasn&#8217;t been crossing my mind as much as it usually does. Let&#8217;s fix that, shall we?</p>
<p>The reason I&#8217;ve been so preoccupied is really very simple. I&#8217;ve taken on a few life experiments that have had the intended result of really changing my life up. Fortunately for me, all of the changes thus far have been for the better.</p>
<p>You see, I&#8217;m a big fan of &#8220;What if&#8230;?&#8221; I&#8217;m an even bigger fan of actually finding out. So I experiment with my life. I went for six months without internet in my apartment when I last moved, and I grew my hair out for a year, just to see how long I could get it before it either got hideous or bugged me too much. I just shaved it last night.</p>
<p>Right now, I have three experiments going on in my life. Here&#8217;s a brief rundown of them. In the near future, I hope to give you a more in depth look at how each of these experiments are turning out.</p>
<p><strong>Sleep &amp; Wakefulness: Biphasic Sleep</strong></p>
<p>About 4 months ago, I started a sleep schedule commonly known as biphasic sleep. Essentially, it means I sleep twice a day, for anywhere from two to five hours each time. I get about six hours of sleep a day&#8212;sometimes more, sometimes less. Overall, this has been a phenomenal success.</p>
<p>I went into it expecting, well, nothing. I certainly wasn&#8217;t expecting to come out more alert, more productive, more responsible, or more energetic. But that is what happened.</p>
<p>This experiment is still going, and unless I come up with another hair-brained idea for sleep, it&#8217;s going to be around for a very long time. I don&#8217;t suggest this one for everyone, but if you have trouble with sleeping a &#8220;normal&#8221; schedule, you might want to check it out.</p>
<p><strong>Social Life: 100% Social. Aim for the sky, knowing you&#8217;ll miss.</strong></p>
<p>Starting January 1st this year, I made it my goal to do something social every day this year. Yes, that is a lofty and practically impossible goal. That&#8217;s exactly why I set the goal, knowing I would most likely not achieve it. Perfection wasn&#8217;t my aim here. I&#8217;ve already failed at 100%, but I&#8217;m still going at the experiment as though I haven&#8217;t.</p>
<p>My intention is to get out of my house, train myself to be better at meeting new people and making good first impressions, and just see what it&#8217;s like not to be a hermit. It&#8217;s now the beginning of March, and I&#8217;m currently at 53 out of 59 days of successful socializing. If I keep going at this rate, that is right around 9 out of every 10 days, which is better than most people achieve.</p>
<p>In this case, I&#8217;ve ended up with some very unexpected results. Most of my original aims haven&#8217;t come to light. But I have learned more about myself in the process. This one I most definitely *do* suggest people try out, in some variation. The results have been positively staggering.</p>
<p><strong>Physical and Emotional Well Being: Krav Maga</strong></p>
<p>This one is brand new. I only started the classes last Friday. <a href="http://en.wikipedia.org/wiki/Krav_Maga">Krav Maga</a>, for those who don&#8217;t know, is an Israeli martial art designed during WW2 to be easy to learn, brutal, and effective. It&#8217;s not designed for tournaments, and it&#8217;s not designed with honor in mind. Krav Maga is pure, unadulterated survivalism. I decided to try this out for many reasons, both physical and emotional. </p>
<p>I&#8217;m not in great shape. I&#8217;m not even in good shape. In fact, I&#8217;m a fat-ass in a skinny man&#8217;s body. I&#8217;ve tried getting into various sports to shape up, but nothing has stuck. I&#8217;ve always enjoyed martial arts, but the tournament focus of the majority had turned me off. Krav Maga seems like a pretty good fit.</p>
<p>Emotionally, I&#8217;m a very shut down man. I keep as much anger or frustration as I can hidden from the world. With no outlet for these negative emotions, they eventually come out in fear, depression, and unexpected and inappropriate tears. I needed to find some outlet for these emotions, and the more internal outlets&#8212;such as working out in a gym, or writing&#8212;did no good. Martial arts are a socially acceptable outlet for some of the energy that I keep pent up, so I figured I would give it a shot.</p>
<p>I&#8217;ve only been to two classes so far, but I can say this much: No activity has left me actually enjoying being in pain or willing to endure the agony I feel after any real intensity of aerobic exercise. For once, I see it all as a challenge instead of a nuisance or an obstacle. That is a completely new experience for me. The only question is whether it&#8217;s a change in my outlook, or something about Krav Maga, itself.</p>
<p><strong>So what&#8217;s next?</strong></p>
<p>Those are my experiments right now. It&#8217;s been a very interesting four months, an even more interesting 2009, and it&#8217;s about to get even more interesting. In the coming weeks, I&#8217;ll write a little more in depth on each of my experiments: the road that led me to each of them, the benefits, and the drawbacks. And I&#8217;m already looking out for my next big experiment.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/modernsage.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/modernsage.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/modernsage.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/modernsage.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/modernsage.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/modernsage.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/modernsage.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/modernsage.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/modernsage.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/modernsage.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/modernsage.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/modernsage.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/modernsage.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/modernsage.wordpress.com/106/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=modernsage.wordpress.com&amp;blog=4639346&amp;post=106&amp;subd=modernsage&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://modernsage.wordpress.com/2009/03/02/i-am-a-human-guinea-pig/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8a0d146f2b7b1bb222bb3a06a93b8fe8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Chris</media:title>
		</media:content>
	</item>
		<item>
		<title>Be selfish. Be good.</title>
		<link>http://modernsage.wordpress.com/2009/01/02/be-selfish-be-good/</link>
		<comments>http://modernsage.wordpress.com/2009/01/02/be-selfish-be-good/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 02:37:17 +0000</pubDate>
		<dc:creator>Chris Hayes</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[honesty]]></category>
		<category><![CDATA[integrity]]></category>
		<category><![CDATA[objectivism]]></category>
		<category><![CDATA[subjective reality]]></category>
		<category><![CDATA[trust]]></category>

		<guid isPermaLink="false">http://modernsage.wordpress.com/?p=81</guid>
		<description><![CDATA[Yesterday, my friend Michael posted an article about the (im)morality of piracy. I can&#8217;t say how much I respect his lifestyle choice with regards to this. And it&#8217;s one reason I&#8217;m writing this post. The other is an article I read about a man who treated his mugger to dinner. No kidding. Besides the obvious [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=modernsage.wordpress.com&amp;blog=4639346&amp;post=81&amp;subd=modernsage&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Yesterday, my friend Michael posted an article about the <a href="http://www.zerologic.com/site/page/pg4047-as154-pn_To_buy_or_not_to_buy_My_views_on_pirated_media_and_software.html">(im)morality of piracy</a>. I can&#8217;t say how much I respect his lifestyle choice with regards to this. And it&#8217;s one reason I&#8217;m writing this post.</p>
<p>The other is an article I read about a man who <a href="http://www.npr.org/templates/story/story.php?storyId=89164759">treated his mugger to dinner</a>. No kidding.</p>
<p>Besides the obvious crazy-man sensationalism of the story, why is this important to me? Because it exemplifies the reasons behind my being so honest and trusting. My honesty has ended relationships before (if honesty kills a relationship, it was already doomed), kept me out of jobs and insurance policies, and carried other minor nuisances.</p>
<p><span id="more-81"></span></p>
<p>But I refuse to give it up, even if some friends and family may tell me white lies are &#8220;good&#8221; for relationships. I really don&#8217;t believe any lie is good. I&#8217;m not just coming from a moral high ground here, either. I honestly believe that living with integrity has a practical purpose. The Golden Rule&#8212;treat others as you would like to be treated&#8212;can be selfish. I&#8217;ll tell you why.</p>
<p>I believe in something called <a title="Steve Pavlina - where I learned about subjective reality." href="http://www.stevepavlina.com/blog/2007/09/subjective-reality-simplified">subjective reality</a>. What we think, and what we believe, has a solid impact on our own reality. Hold on, don&#8217;t run&#8230; I&#8217;m not talking about some new-age spiritual philosophy, here. I&#8217;m talking about psychology. There are many different aspects to this, but today, I&#8217;m going to focus on integrity.</p>
<p>What happens to your interactions with people when you lie? What happens when you begin a relationship on the grounds of mistrust? When you steal? When you cheat? What about when you bad-mouth somebody you hardly know? Think about what goes on in the other person&#8217;s mind. If you lie, then they will learn not to trust you. If you steal or cheat, it&#8217;s similar. Those are easy.</p>
<p>But what about if you just don&#8217;t trust people? This is where the psychology gets interesting. If you start out on a footing of mistrust, then what reason does the other person have to be honest to you other than their own integrity? There&#8217;s no trust for them to break. There&#8217;s nothing to lose. It&#8217;s a no-brainer that the less honest person will lie, cheat, and steal their way over your corpse to get what they want. But if you enter a relationship with a trusting attitude? Now there&#8217;s something to lose. There&#8217;s a cognitive reason for them to be honest, whether it&#8217;s your respect, your repeat business, or simply their own good reputation; and, in the end, there is your relationship to lose.</p>
<p>It&#8217;s a similar situation for gossiping and bad-mouthing. Not only will the mud slinger have dug themselves a hole if their gossip or slander is made public, but what kind of first impression does this make? I also wonder why people feel the need to do this. It may very well be a result of the mistrust above; their beliefs have now contributed to their actions, impacting the world and&#8212;in return&#8212;bringing their own beliefs true. That is the power of subjective reality.</p>
<p>If you want a real world example, I can bring in exhibit A&#8212;My dad. The man is as honest a person as I&#8217;ve met. He&#8217;s also where I learned the value of integrity. But he has one major problem: He doesn&#8217;t trust people. I&#8217;ve lost count of how many times he&#8217;s told me I&#8217;m too trusting. He&#8217;s told me that people will screw me over at the drop of the hat if I just give them the chance. But I&#8217;m not the one who&#8217;s been ripped off for thousands of dollars, screwed over by family members, and left with nothing coming out of business deals. Those are all results of my dad&#8217;s interactions with people, and his not giving them reason to maintain his trust. He has gotten a lot better over the years, and it can be seen in how much better his dealings with people have become.</p>
<p>Speaking of, how has this worked out for me? Well, let me start with my exact philosophy about trust. When I meet somebody, I take them at face value. I trust everything they say, at least until I can get a feel for their personality and tendency toward red flags like grand-standing and gossip. I&#8217;m not naive, and I&#8217;m not stupid. But I do like to believe that people are good by nature, until proven otherwise. White lies, I can forgive in others. Black ones are a zero tolerance policy. I uncover one, and the person is exiled from my world. No exceptions. I, in turn, try my best to live by this policy, and I am harsher on myself than on others. After all, what right do I have to hold others to a standard, if I&#8217;m not willing to live up to that standard, myself?</p>
<p>Even with the harsh penalty for a real deception, I have only had to truly exile a smattering of people in my life. One for sure, and there are one or two whose side of the story I would like to hear first. I haven&#8217;t ever been truly &#8220;taken,&#8221; when I wasn&#8217;t already willing to accept that risk. I am surrounded by love, and I have a lot to give. I have my walls, but trust is not one of them.</p>
<p>So you can judge for yourself. The psychology is there.</p>
<p>Don&#8217;t do it for my sake. Don&#8217;t do it for society&#8217;s. Do it for your own.</p>
<p>Be selfish. Be good.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/modernsage.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/modernsage.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/modernsage.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/modernsage.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/modernsage.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/modernsage.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/modernsage.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/modernsage.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/modernsage.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/modernsage.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/modernsage.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/modernsage.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/modernsage.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/modernsage.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=modernsage.wordpress.com&amp;blog=4639346&amp;post=81&amp;subd=modernsage&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://modernsage.wordpress.com/2009/01/02/be-selfish-be-good/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8a0d146f2b7b1bb222bb3a06a93b8fe8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Chris</media:title>
		</media:content>
	</item>
		<item>
		<title>Out with the old. In with the real.</title>
		<link>http://modernsage.wordpress.com/2008/12/12/out-with-the-old-in-with-the-real/</link>
		<comments>http://modernsage.wordpress.com/2008/12/12/out-with-the-old-in-with-the-real/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 03:37:17 +0000</pubDate>
		<dc:creator>Chris Hayes</dc:creator>
				<category><![CDATA[Metablog]]></category>
		<category><![CDATA[Myself]]></category>

		<guid isPermaLink="false">http://modernsage.wordpress.com/?p=61</guid>
		<description><![CDATA[By now, my readers (all five of them) must have noticed I stopped writing reviews. That blog certainly didn&#8217;t last long. I have to admit, though I like playing games, when it comes to writing about them, I just don&#8217;t give a shit. They&#8217;re video games. They&#8217;re fun. But, the merits and failings of them [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=modernsage.wordpress.com&amp;blog=4639346&amp;post=61&amp;subd=modernsage&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>By now, my readers (all five of them) must have noticed I stopped writing reviews. That blog certainly didn&#8217;t last long. I have to admit, though I like playing games, when it comes to writing about them, I just don&#8217;t give a shit.</p>
<p>They&#8217;re video games. They&#8217;re fun. But, the merits and failings of them are hardly world-changing topics. So, I&#8217;m going to try something a little more valuable. More valuable to me and, hopefully, more valuable to you.</p>
<p><span id="more-61"></span></p>
<p>At the risk of sounding arrogant (well, if the shoe fits&#8230;), I&#8217;m a smart guy. Really smart. And my mind never turns off. I think while I eat. I think in the shower. I think while I sleep. and sometimes I even think while&#8230; well, I&#8217;m trying to stop that last one&#8212;kinda kills the mood. But, I never tell anybody what I&#8217;m thinking. Nobody asks. (Well, isn&#8217;t that a lame excuse?)</p>
<p>So here I am. A mathematician, a musican, a thinker, and a creator. Philosophical, critical, and observant. As of today, this blog is an outlet for getting my view on topics: critical, often thought out, and&#8212;I&#8217;m told&#8212;frequently contrarian. Sometimes, they might even be intelligent.</p>
<p>I will be reading more blogs of friends, acquaintances, and generally interesting people; news articles, and any other topics of current interest. Anything that sparks an interesting monologue, I will share with you all.</p>
<p>This means the topics could range from music, to math, to video games. From science, to religion, politics, business. Life. Love. Death. Or how good my pancakes were this morning. If there&#8217;s a topic you want to hear me rant about, feel free to suggest one. I&#8217;ll do my research, and promise to give as informed an opinion as I can manage.</p>
<p>Welcome to Modern Sage.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/modernsage.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/modernsage.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/modernsage.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/modernsage.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/modernsage.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/modernsage.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/modernsage.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/modernsage.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/modernsage.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/modernsage.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/modernsage.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/modernsage.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/modernsage.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/modernsage.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=modernsage.wordpress.com&amp;blog=4639346&amp;post=61&amp;subd=modernsage&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://modernsage.wordpress.com/2008/12/12/out-with-the-old-in-with-the-real/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8a0d146f2b7b1bb222bb3a06a93b8fe8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Chris</media:title>
		</media:content>
	</item>
		<item>
		<title>Look ma, I&#8217;m a drummer!</title>
		<link>http://modernsage.wordpress.com/2008/10/14/look-ma-im-a-drummer/</link>
		<comments>http://modernsage.wordpress.com/2008/10/14/look-ma-im-a-drummer/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 21:54:08 +0000</pubDate>
		<dc:creator>Chris Hayes</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Simulation]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Party Game]]></category>

		<guid isPermaLink="false">http://modernsage.wordpress.com/?p=44</guid>
		<description><![CDATA[I&#8217;m a music nut. Really, I like my music. I like to play it, and I like to play it loud. I live on the 7th floor, but it doesn&#8217;t stop me from cranking up Rock Band and stomping on the foot pedal like a madman. I haven&#8217;t had any complaints. Yet. Maybe my neighbors [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=modernsage.wordpress.com&amp;blog=4639346&amp;post=44&amp;subd=modernsage&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a music nut. Really, I like my music. I like to play it, and I like to play it loud. I live on the 7th floor, but it doesn&#8217;t stop me from cranking up <em>Rock Band</em> and stomping on the foot pedal like a madman. I haven&#8217;t had any complaints. Yet. Maybe my neighbors are dead, and nobody knows it&#8230;<span id="more-44"></span></p>
<p>Well, I recently got a chance to play around with the new <em><a href="http://www.amazon.com/gp/product/B001BX6JUA?ie=UTF8&amp;tag=modsag-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B001BX6JUA">Rock Band 2</a><img style="border:none!important;margin:0!important;" src="http://www.assoc-amazon.com/e/ir?t=modsag-20&amp;l=as2&amp;o=1&amp;a=B001BX6JUA" border="0" alt="" width="1" height="1" /></em> drum kit, from Ion &#8211; makers of some real electric drum kits. You know, the kind actual drummers use? Yeah &#8211; awesome. And the Rock Band kit they made is just that. Everything feels more solid and responsive. The pads are um&#8230; padded, so the music in the game doesn&#8217;t get drowned out by your amazing drummer (keep telling him that &#8211; you need a drummer) flagellating the drums. The pads are individually adjustable for personal taste, and the kit includes two cymbals to use instead of pads for a more realistic experience. And I&#8217;m all about the realism. I&#8217;ve never played drums before &#8211; but I can play &#8220;&#8230;And Justice for All&#8221; on hard, so I must know what I&#8217;m talking about. Can you do that?</p>
<p>This kit is a fantastic setup. Even if it&#8217;s not a realistic experience (and I swear, it <em>feels</em> realistic), it makes for an amazing one. If you play Rock Band religiously, or want an <em>experience</em>, then the $300 price tag is well worth it to <a href="http://www.amazon.com/gp/product/B001E2OW1Q?ie=UTF8&amp;tag=modsag-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B001E2OW1Q">get this kit</a><img style="border:none!important;margin:0!important;" src="http://www.assoc-amazon.com/e/ir?t=modsag-20&amp;l=as2&amp;o=1&amp;a=B001E2OW1Q" border="0" alt="" width="1" height="1" />. If not, then you can always get the cheaper $80 toy that came with Rock Band 1. But if you&#8217;re going to do that, at least pay the extra ten bucks for a <a href="http://www.amazon.com/gp/product/B001BX6MT8?ie=UTF8&amp;tag=modsag-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B001BX6MT8">wireless set</a><img style="border:none!important;margin:0!important;" src="http://www.assoc-amazon.com/e/ir?t=modsag-20&amp;l=as2&amp;o=1&amp;a=B001BX6MT8" border="0" alt="" width="1" height="1" />.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/modernsage.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/modernsage.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/modernsage.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/modernsage.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/modernsage.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/modernsage.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/modernsage.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/modernsage.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/modernsage.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/modernsage.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/modernsage.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/modernsage.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/modernsage.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/modernsage.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=modernsage.wordpress.com&amp;blog=4639346&amp;post=44&amp;subd=modernsage&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://modernsage.wordpress.com/2008/10/14/look-ma-im-a-drummer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8a0d146f2b7b1bb222bb3a06a93b8fe8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Chris</media:title>
		</media:content>

		<media:content url="http://www.assoc-amazon.com/e/ir?t=modsag-20&#038;l=as2&#038;o=1&#038;a=B001BX6JUA" medium="image" />

		<media:content url="http://www.assoc-amazon.com/e/ir?t=modsag-20&#038;l=as2&#038;o=1&#038;a=B001E2OW1Q" medium="image" />

		<media:content url="http://www.assoc-amazon.com/e/ir?t=modsag-20&#038;l=as2&#038;o=1&#038;a=B001BX6MT8" medium="image" />
	</item>
	</channel>
</rss>
