<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Arkham&#039;s Eyrie</title>
	<atom:link href="http://ark.asengard.net/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://ark.asengard.net/blog</link>
	<description>Ruby, Rails and something else</description>
	<lastBuildDate>Fri, 28 Oct 2011 09:09:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Ruby 1.9 &#8211; Tap my Object</title>
		<link>http://ark.asengard.net/blog/2011/10/28/ruby-1-9-tap-my-object/</link>
		<comments>http://ark.asengard.net/blog/2011/10/28/ruby-1-9-tap-my-object/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 08:53:30 +0000</pubDate>
		<dc:creator>Arkham</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[learning]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[tap]]></category>

		<guid isPermaLink="false">http://ark.asengard.net/blog/?p=1041</guid>
		<description><![CDATA[Let&#8217; say you need to debug this piece of code: very_cool_method&#40;egg, sausage&#41; What would you do? I guess something along the lines of: spam = very_cool_method&#40;egg, sausage&#41; p spam Well, Ruby 1.9 let you do something cooler instead: very_cool_method&#40;egg, sausage&#41;.tap&#123; &#124;s&#124; p s &#125; The cool thing about tap is that you can use it [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217; say you need to debug this piece of code:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;">very_cool_method<span style="color:#006600; font-weight:bold;">&#40;</span>egg, sausage<span style="color:#006600; font-weight:bold;">&#41;</span></pre></div></div>

<p>What would you do? I guess something along the lines of:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;">spam = very_cool_method<span style="color:#006600; font-weight:bold;">&#40;</span>egg, sausage<span style="color:#006600; font-weight:bold;">&#41;</span>
<span style="color:#CC0066; font-weight:bold;">p</span> spam</pre></div></div>

<p>Well, Ruby 1.9 let you do something cooler instead:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;">very_cool_method<span style="color:#006600; font-weight:bold;">&#40;</span>egg, sausage<span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="color:#9900CC;">tap</span><span style="color:#006600; font-weight:bold;">&#123;</span> <span style="color:#006600; font-weight:bold;">|</span>s<span style="color:#006600; font-weight:bold;">|</span> <span style="color:#CC0066; font-weight:bold;">p</span> s <span style="color:#006600; font-weight:bold;">&#125;</span></pre></div></div>

<p>The cool thing about tap is that you can use it to eavesdrop method chains:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;">very_cool_method<span style="color:#006600; font-weight:bold;">&#40;</span>egg, sausage<span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="color:#9900CC;">tap</span><span style="color:#006600; font-weight:bold;">&#123;</span> <span style="color:#006600; font-weight:bold;">|</span>s<span style="color:#006600; font-weight:bold;">|</span> <span style="color:#CC0066; font-weight:bold;">p</span> s <span style="color:#006600; font-weight:bold;">&#125;</span>.<span style="color:#9900CC;">now_make_sandwich_from</span><span style="color:#006600; font-weight:bold;">&#40;</span>bacon<span style="color:#006600; font-weight:bold;">&#41;</span></pre></div></div>

<p>Hooray! <img src='http://ark.asengard.net/blog/wp-content/plugins/smilies-themer/tango/face-smile.png' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://ark.asengard.net/blog/2011/10/28/ruby-1-9-tap-my-object/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Rails: how to show SQL logs in console</title>
		<link>http://ark.asengard.net/blog/2011/09/02/rails-how-to-show-sql-logs-in-console/</link>
		<comments>http://ark.asengard.net/blog/2011/09/02/rails-how-to-show-sql-logs-in-console/#comments</comments>
		<pubDate>Fri, 02 Sep 2011 10:58:18 +0000</pubDate>
		<dc:creator>Arkham</dc:creator>
				<category><![CDATA[thoughts]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://ark.asengard.net/blog/?p=1033</guid>
		<description><![CDATA[Simply type in rails console: ActiveRecord::Base.logger = Logger.new(STDOUT)]]></description>
			<content:encoded><![CDATA[<p>Simply type in rails console:</p>
<blockquote><p>ActiveRecord::Base.logger = Logger.new(STDOUT)</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://ark.asengard.net/blog/2011/09/02/rails-how-to-show-sql-logs-in-console/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ruby: disable documentation when installing gems</title>
		<link>http://ark.asengard.net/blog/2011/07/29/ruby-disable-documentation-when-installing-gems/</link>
		<comments>http://ark.asengard.net/blog/2011/07/29/ruby-disable-documentation-when-installing-gems/#comments</comments>
		<pubDate>Fri, 29 Jul 2011 14:22:55 +0000</pubDate>
		<dc:creator>Arkham</dc:creator>
				<category><![CDATA[thoughts]]></category>
		<category><![CDATA[documentation]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://ark.asengard.net/blog/?p=1021</guid>
		<description><![CDATA[If you want to install gems quickly without waiting for ri and rdoc documentation files, run this command: echo "gem: --no-ri --no-rdoc" >> ~/.gemrc Your new gems won&#8217;t include documentation at all. Hooray!]]></description>
			<content:encoded><![CDATA[<p>If you want to install gems quickly without waiting for ri and rdoc documentation files, run this command:</p>
<blockquote><p><code>echo "gem: --no-ri --no-rdoc" >> ~/.gemrc</code></p></blockquote>
<p>Your new gems won&#8217;t include documentation at all. Hooray!</p>
]]></content:encoded>
			<wfw:commentRss>http://ark.asengard.net/blog/2011/07/29/ruby-disable-documentation-when-installing-gems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rails 3: how to undo rails generate</title>
		<link>http://ark.asengard.net/blog/2011/07/29/rails-3-how-to-undo-rails-generate/</link>
		<comments>http://ark.asengard.net/blog/2011/07/29/rails-3-how-to-undo-rails-generate/#comments</comments>
		<pubDate>Fri, 29 Jul 2011 13:28:22 +0000</pubDate>
		<dc:creator>Arkham</dc:creator>
				<category><![CDATA[thoughts]]></category>
		<category><![CDATA[destroy]]></category>
		<category><![CDATA[generate]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://ark.asengard.net/blog/?p=1013</guid>
		<description><![CDATA[Have you ever run a rails generate controller UsersController and seen your app folder filled with useless files? create app/controllers/users_controller_controller.rb invoke erb create app/views/users_controller invoke test_unit create test/functional/users_controller_controller_test.rb invoke helper create app/helpers/users_controller_helper.rb invoke test_unit create test/unit/helpers/users_controller_helper_test.rb invoke assets create app/assets/javascripts/users_controller.js.coffee invoke scss create app/assets/stylesheets/users_controller.css.scss Eww, that&#8217;s gross. To undo that rails generate, simply run: rails [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever run a</p>
<blockquote><p>rails generate controller UsersController</p></blockquote>
<p>and seen your app folder filled with useless files?</p>
<blockquote><p><span style="color: #888888;"><em>create app/controllers/users_controller_controller.rb<br />
invoke erb<br />
create app/views/users_controller<br />
invoke test_unit<br />
create test/functional/users_controller_controller_test.rb<br />
invoke helper<br />
create app/helpers/users_controller_helper.rb<br />
invoke test_unit<br />
create test/unit/helpers/users_controller_helper_test.rb<br />
invoke assets<br />
create app/assets/javascripts/users_controller.js.coffee<br />
invoke scss<br />
create app/assets/stylesheets/users_controller.css.scss</em></span></p></blockquote>
<p>Eww, that&#8217;s gross.<br />
To undo that rails generate, simply run:</p>
<blockquote><p>rails destroy controller UserController</p></blockquote>
<p>and rails will destroy all those ugly files for you!</p>
<blockquote><p><span style="color: #888888;"><em>remove app/controllers/users_controller_controller.rb<br />
invoke erb<br />
remove app/views/users_controller<br />
invoke test_unit<br />
remove test/functional/users_controller_controller_test.rb<br />
invoke helper<br />
remove app/helpers/users_controller_helper.rb<br />
invoke test_unit<br />
remove test/unit/helpers/users_controller_helper_test.rb<br />
invoke assets<br />
remove app/assets/javascripts/users_controller.js.coffee<br />
invoke scss<br />
remove app/assets/stylesheets/users_controller.css.scss</em></span></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://ark.asengard.net/blog/2011/07/29/rails-3-how-to-undo-rails-generate/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ruby, difference from instance_eval and class_eval</title>
		<link>http://ark.asengard.net/blog/2011/07/05/ruby-difference-from-instance_eval-and-class_eval/</link>
		<comments>http://ark.asengard.net/blog/2011/07/05/ruby-difference-from-instance_eval-and-class_eval/#comments</comments>
		<pubDate>Tue, 05 Jul 2011 07:41:10 +0000</pubDate>
		<dc:creator>Arkham</dc:creator>
				<category><![CDATA[thoughts]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://ark.asengard.net/blog/?p=983</guid>
		<description><![CDATA[String.instance_eval &#123; def foo; p &#34;bar&#34;; end &#125; String.foo = &#34;bar&#34; String.class_eval &#123; def foo; p &#34;bar&#34;; end &#125; &#34;sausage&#34;.foo = &#34;bar&#34; So, using instance_eval adds a class method.On the other hand, using class_eval adds a instance method. Why? class_eval is a method of the Module class, meaning that the receiver will be a module [...]]]></description>
			<content:encoded><![CDATA[
<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#CC0066; font-weight:bold;">String</span>.<span style="color:#9900CC;">instance_eval</span> <span style="color:#006600; font-weight:bold;">&#123;</span> <span style="color:#9966CC; font-weight:bold;">def</span> foo; <span style="color:#CC0066; font-weight:bold;">p</span> <span style="color:#996600;">&quot;bar&quot;</span>; <span style="color:#9966CC; font-weight:bold;">end</span> <span style="color:#006600; font-weight:bold;">&#125;</span>
<span style="color:#CC0066; font-weight:bold;">String</span>.<span style="color:#9900CC;">foo</span> = <span style="color:#996600;">&quot;bar&quot;</span></pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#CC0066; font-weight:bold;">String</span>.<span style="color:#9900CC;">class_eval</span> <span style="color:#006600; font-weight:bold;">&#123;</span> <span style="color:#9966CC; font-weight:bold;">def</span> foo; <span style="color:#CC0066; font-weight:bold;">p</span> <span style="color:#996600;">&quot;bar&quot;</span>; <span style="color:#9966CC; font-weight:bold;">end</span> <span style="color:#006600; font-weight:bold;">&#125;</span>
<span style="color:#996600;">&quot;sausage&quot;</span>.<span style="color:#9900CC;">foo</span> = <span style="color:#996600;">&quot;bar&quot;</span></pre></div></div>

<p>So, using instance_eval adds a  <strong>class</strong> method.<br/>On the other hand, using class_eval adds a <strong>instance</strong> method.</p>
<p>Why?</p>
<blockquote><p><em>class_eval</em> is a method of the Module class, meaning that the receiver will be a module or a class. The block you pass to class_eval is evaluated in the context of that class. Defining a method with the standard def keyword within a class defines an instance method, and that’s exactly what happens here.</p>
<p><em>instance_eval</em>, on the other hand, is a method of the Object class, meaning that the receiver will be an object. The block you pass to instance_eval is evaluated in the context of that object. That means that String.instance_eval is evaluated in the context of the String object. Remember that a class name is simply a constant which points to an instance of the class Class. Because of this fact, defining a method in the context of Class instance referenced by String creates a class method for the String class.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://ark.asengard.net/blog/2011/07/05/ruby-difference-from-instance_eval-and-class_eval/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rails 3: difference between has_many :through and has_and_belongs_to_many</title>
		<link>http://ark.asengard.net/blog/2011/05/24/rails-3-has_many-through-or-has_and_belongs_to_many/</link>
		<comments>http://ark.asengard.net/blog/2011/05/24/rails-3-has_many-through-or-has_and_belongs_to_many/#comments</comments>
		<pubDate>Tue, 24 May 2011 09:52:50 +0000</pubDate>
		<dc:creator>Arkham</dc:creator>
				<category><![CDATA[thoughts]]></category>
		<category><![CDATA[activerecord]]></category>
		<category><![CDATA[association]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://ark.asengard.net/blog/?p=978</guid>
		<description><![CDATA[From Rails guides: The simplest rule of thumb is that you should set up a has_many :through relationship if you need to work with the relationship model as an independent entity. If you don’t need to do anything with the relationship model, it may be simpler to set up a has_and_belongs_to_many relationship (though you’ll need [...]]]></description>
			<content:encoded><![CDATA[<p>From <a href="http://guides.rubyonrails.org/association_basics.html#choosing-between-has_many-through-and-has_and_belongs_to_many">Rails guides</a>:</p>
<blockquote><p>The simplest rule of thumb is that you should set up a has_many :through relationship if you need to work with the relationship model as an independent entity. If you don’t need to do anything with the relationship model, it may be simpler to set up a has_and_belongs_to_many relationship (though you’ll need to remember to create the joining table in the database).</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://ark.asengard.net/blog/2011/05/24/rails-3-has_many-through-or-has_and_belongs_to_many/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Immigrant Song &#8211; Traduzione</title>
		<link>http://ark.asengard.net/blog/2011/04/24/immigrant-song-traduzione/</link>
		<comments>http://ark.asengard.net/blog/2011/04/24/immigrant-song-traduzione/#comments</comments>
		<pubDate>Sun, 24 Apr 2011 09:48:13 +0000</pubDate>
		<dc:creator>Arkham</dc:creator>
				<category><![CDATA[italian]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[led zeppelin]]></category>
		<category><![CDATA[poetry]]></category>
		<category><![CDATA[translation]]></category>

		<guid isPermaLink="false">http://ark.asengard.net/blog/?p=971</guid>
		<description><![CDATA[Immigrant Song Ah-ah-ahhh-ah! Ah-ah-ahhh-ah! We come from the land of the ice and snow, From the midnight sun where the hot springs blow. Hammer of the Gods will drive our ships To new lands to fight the horde Singing and crying: &#8220;Valhalla I am coming.&#8221; On we sweep with, with threshing oar. Our only goal [...]]]></description>
			<content:encoded><![CDATA[<p><iframe title="YouTube video player" width="480" height="390" src="http://www.youtube.com/embed/RGRQUd9iQro" frameborder="0" allowfullscreen></iframe></p>
<p><strong>Immigrant Song</strong></p>
<blockquote><p><strong>Ah-ah-ahhh-ah! Ah-ah-ahhh-ah!</strong><br />
We come from the land of the ice and snow,<br />
From the midnight sun where the hot springs blow.<br />
Hammer of the Gods will drive our ships<br />
To new lands to fight the horde<br />
Singing and crying: &#8220;Valhalla I am coming.&#8221;</p>
<p>On we sweep with, with threshing oar.<br />
Our only goal will be the western shore.</p>
<p><strong>Ah-ah-ahhh-ah! Ah-ah-ahhh-ah!</strong><br />
An&#8217; we come from the land of the ice and snow,<br />
From the midnight sun where the hot springs blow.<br />
How soft your fields so green<br />
Can whisper tales of gore of how we calmed<br />
The tides of war. We are your over lords.</p>
<p>On we sweep with threshing oar.<br />
Our only goal will be the western shore.</p>
<p>So now you better stop and rebuild all your ruins.<br />
For peace and trust can win the day despite of all<br />
Your losing.</p>
<p>Ooh-ooh. Ooh-ooh. Ooh-ooh. Ooh-ooh.<br />
Ooh-ooh. Ooh-ooh. Ah hah hah hah hah hah.<br />
Ooh-ooh. Ooh-ooh. Ooh-ooh. Ooh-ooh.<br />
Ooh-ooh. Ooh-ooh. Ooh-ooh. Ooh-ooh.<br />
Ooh-ooh
</p></blockquote>
<p><strong>La canzone del ramingo</strong></p>
<blockquote><p>
<strong>Ah-ah-ahhh-ah! Ah-ah-ahhh-ah!</strong><br />
La nostra è la terra della neve e del ghiaccio,<br />
dove le calde fonti sgorgano sotto al sole di mezzanotte.<br />
Il martello degli dei guiderà le nostre navi<br />
verso nuove terre e nuove guerre,<br />
mentre cantiamo e urliamo: &#8220;Valhalla, arriviamo!&#8221;</p>
<p>Avanziamo contro vento, sferzando il mare<br />
Quella è la nostra meta, la costa occidentale.</p>
<p><strong>Ah-ah-ahhh-ah! Ah-ah-ahhh-ah!</strong><br />
La nostra è la terra della neve e del ghiaccio,<br />
dove le calde fonti scorrono sotto al sole di mezzanotte.<br />
E con che dolcezza i verdi pascoli<br />
sanno sussurrare storie di sangue e morte,<br />
storie di guerre ormai antiche a cui abbiamo posto fine.<br />
Noi, i signori supremi.</p>
<p>Avanziamo contro vento, sferzando il mare<br />
Quella è la nostra meta, la costa occidentale.</p>
<p>E&#8217; meglio se vi fermate e ricostruite le vostre rovine,<br />
perché la pace e la fiducia possono portarvi grandi vittorie<br />
dalle vostre sconfitte.</p>
<p>Ooh-ooh. Ooh-ooh. Ooh-ooh. Ooh-ooh.<br />
Ooh-ooh. Ooh-ooh. Ah hah hah hah hah hah.<br />
Ooh-ooh. Ooh-ooh. Ooh-ooh. Ooh-ooh.<br />
Ooh-ooh. Ooh-ooh. Ooh-ooh. Ooh-ooh.<br />
Ooh-ooh
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://ark.asengard.net/blog/2011/04/24/immigrant-song-traduzione/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The bravery of being out of range</title>
		<link>http://ark.asengard.net/blog/2010/04/06/we-zap-and-main-with-the-bravery-of-being-out-of-range/</link>
		<comments>http://ark.asengard.net/blog/2010/04/06/we-zap-and-main-with-the-bravery-of-being-out-of-range/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 14:02:59 +0000</pubDate>
		<dc:creator>Arkham</dc:creator>
				<category><![CDATA[music]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[death]]></category>
		<category><![CDATA[poetry]]></category>
		<category><![CDATA[roger waters]]></category>

		<guid isPermaLink="false">http://ark.asengard.net/blog/?p=910</guid>
		<description><![CDATA[Read this: http://collateralmurder.org/ Roger Waters &#8211; The bravery of being out of range You have a natural tendency To squeeze off a shot You&#8217;re good fun at parties You wear the right masks You&#8217;re old but you still Like a laugh in the locker room You can&#8217;t abide change You&#8217;re at home on the range [...]]]></description>
			<content:encoded><![CDATA[<h4>Read this: <a href="http://collateralmurder.org" target="_blank">http://collateralmurder.org/</a></h4>
<p></p>
<p><object width="480" height="390"><param name="movie" value="http://www.youtube.com/v/DzofJeg5bPo?fs=1&amp;hl=en_US" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed type="application/x-shockwave-flash" width="480" height="390" src="http://www.youtube.com/v/DzofJeg5bPo?fs=1&amp;hl=en_US" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p></p>
<p><strong>Roger Waters &#8211; The bravery of being out of range</strong></p>
<p></p>
<blockquote><p>You have a natural tendency<br />
To squeeze off a shot<br />
You&#8217;re good fun at parties<br />
You wear the right masks<br />
You&#8217;re old but you still<br />
Like a laugh in the locker room<br />
You can&#8217;t abide change<br />
You&#8217;re at home on the range</p>
<p>You opened your suitcase<br />
Behind the old workings<br />
To show off the magnum<br />
You deafened the canyon<br />
A comfort a friend<br />
Only upstaged in the end<br />
By the Uzi machine gun</p>
<p>Does the recoil remind you<br />
Remind you of sex<br />
Old man what the hell you gonna kill next<br />
Old timer who you gonna kill next</p>
<p>I looked over Jordan and what did I see<br />
Saw a U.S. Marine in a pile of debris<br />
I swam in your pools<br />
And lay under your palm trees<br />
I looked in the eyes of the Indian<br />
Who lay on the Federal Building steps</p>
<p>And through the range finder over the hill<br />
I saw the front line boys popping their pills<br />
Sick of the mess they find<br />
On their desert stage<br />
And the bravery of being out of range<br />
Yeah the question is vexed</p>
<p>Old man what the hell you gonna kill next<br />
Old timer who you gonna kill next</p>
<p>Hey bartender over here<br />
Two more shots<br />
And two more beers<br />
Sir turn up the TV sound<br />
The war has started on the ground</p>
<p>Just love those laser guided bombs<br />
They&#8217;re really great<br />
For righting wrongs<br />
You hit the target<br />
And win the game<br />
From bars 3,000 miles away<br />
3,000 miles away</p>
<p>We play the game<br />
With the bravery of being out of range</p>
<p>We zap and maim<br />
With the bravery of being out of range</p>
<p>We strafe the train<br />
With the bravery of being out of range</p>
<p>We gain terrain<br />
With the bravery of being out of range<br />
With the bravery of being out of range</p>
<p>We play the game<br />
With the bravery of being out of range</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://ark.asengard.net/blog/2010/04/06/we-zap-and-main-with-the-bravery-of-being-out-of-range/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This relationship is headed&#8230;</title>
		<link>http://ark.asengard.net/blog/2010/03/02/this-relationship-is-headed/</link>
		<comments>http://ark.asengard.net/blog/2010/03/02/this-relationship-is-headed/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 17:04:06 +0000</pubDate>
		<dc:creator>Arkham</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[funny]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[joke]]></category>
		<category><![CDATA[meme]]></category>

		<guid isPermaLink="false">http://ark.asengard.net/blog/?p=891</guid>
		<description><![CDATA[http://www.youtube.com/watch?v=JVfVqfIN8_c Hey Mom, Dad, this is Ryan. Oh so this is the famous boy we&#8217;ve been hearing so much about. Nice to finally meet you Mrs. L33T. And sir. So, Ryan, what Warcraft server do you play on? Is that on umm is that on the computer? Oh you know what, i think i forgot [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;">
<img class="size-full wp-image-895 aligncenter" title="n00b-boyfriend" src="http://ark.asengard.net/blog/wp-content/uploads/2010/03/n00b-boyfriend.jpg" alt="" width="556" height="308" /></p>
<p style="text-align: center;"><a href="http://www.youtube.com/watch?v=JVfVqfIN8_c" target="_blank">http://www.youtube.com/watch?v=JVfVqfIN8_c</a></p>
<ul>
<li>Hey</li>
<li>Mom, Dad, this is Ryan.</li>
<li>Oh so this is the famous boy we&#8217;ve been hearing so much about.</li>
<li>Nice to finally meet you Mrs. L33T. And sir.</li>
<li>So, Ryan, what Warcraft server do you play on?</li>
<li>Is that on umm is that on the computer? Oh you know what, i think i forgot the desert in the car.</li>
<li>Who do you think you are bringing his kind into my house!?</li>
<li>But dad, he&#8217;s a nice guy, really.</li>
<li>No he&#8217;s a n00b Jessica, a n00b!</li>
<li>But ryan and I are perfect together.</li>
<li>This relationship is headed for an epic fail, young lady. You&#8217;re a L33T damn it, we don&#8217;t date n00bs, we pwn them!!</li>
<li>Well maybe I don&#8217;t want to be a L33T!</li>
<li>Your insolence, for the lose!</li>
<li>No, maybe I looove that he watches VHS tapes still. And maybe i love that his phone still has a cord.</li>
<li>You might as well date someone who plays Aliance.</li>
<li>I date whoever I want!</li>
<li>Over my level 80 rogue&#8217;s temporary dead body!</li>
<li>Mr. L33T, I may run around in circles when I play halo, and I might never get a monster kill, well, I can&#8217;t even find the space bar half the time. But I know when I find true love, and that is worth more than all the uber gear in the world.</li>
<li>Too long, did not listen!</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://ark.asengard.net/blog/2010/03/02/this-relationship-is-headed/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Creep &#8211; Traduzione</title>
		<link>http://ark.asengard.net/blog/2010/01/27/creep-traduzione/</link>
		<comments>http://ark.asengard.net/blog/2010/01/27/creep-traduzione/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 00:43:01 +0000</pubDate>
		<dc:creator>Arkham</dc:creator>
				<category><![CDATA[music]]></category>
		<category><![CDATA[poetry]]></category>
		<category><![CDATA[radiohead]]></category>
		<category><![CDATA[translation]]></category>

		<guid isPermaLink="false">http://ark.asengard.net/blog/?p=886</guid>
		<description><![CDATA[Creep When you were here before, Couldn&#8217;t look you in the eye You&#8217;re just like an angel, Your skin makes me cry You float like a feather In a beautiful world I wish I was special You&#8217;re so fuckin&#8217; special But I&#8217;m a creep, I&#8217;m a weirdo What the hell am I doin&#8217; here? I [...]]]></description>
			<content:encoded><![CDATA[<p><object width="480" height="390"><param name="movie" value="http://www.youtube.com/v/XFkzRNyygfk?fs=1&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/XFkzRNyygfk?fs=1&amp;hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="390"></embed></object></p>
<p><strong>Creep</strong></p>
<blockquote><p>When you were here before,<br />
Couldn&#8217;t look you in the eye<br />
You&#8217;re just like an angel,<br />
Your skin makes me cry</p>
<p>You float like a feather<br />
In a beautiful world<br />
I wish I was special<br />
You&#8217;re so fuckin&#8217; special</p>
<p>But I&#8217;m a creep,<br />
I&#8217;m a weirdo<br />
What the hell am I doin&#8217; here?<br />
I don&#8217;t belong here</p>
<p>I don&#8217;t care if it hurts,<br />
I wanna have control<br />
I want a perfect body<br />
I want a perfect soul</p>
<p>I want you to notice<br />
when I&#8217;m not around<br />
You&#8217;re so fuckin&#8217; special<br />
I wish I was special</p>
<p>But I&#8217;m a creep<br />
I&#8217;m a weirdo<br />
What the hell am I doin&#8217; here?<br />
I don&#8217;t belong here, ohhhh, ohhhh</p>
<p>She&#8217;s running out again<br />
She&#8217;s running out<br />
She run run run run&#8230;<br />
run&#8230; run&#8230;</p>
<p>Whatever makes you happy<br />
Whatever you want<br />
You&#8217;re so fuckin&#8217; special<br />
I wish I was special</p>
<p>But I&#8217;m a creep,<br />
I&#8217;m a weirdo<br />
What the hell am I doin&#8217; here?<br />
I don&#8217;t belong here</p>
<p>I don&#8217;t belong here&#8230;</p></blockquote>
<p><br/><br />
<strong>Inquietante</strong></p>
<blockquote><p>Quando prima eri qui,<br />
Non riuscivo a guardarti negli occhi,<br />
Sei proprio un angelo<br />
La tua pelle mi fa venire da piangere</p>
<p>Aleggi come una piuma<br />
In un mondo fantastico<br />
Vorrei essere speciale<br />
Tu sei così speciale</p>
<p>Ma sono uno inquietante<br />
Sono uno strano<br />
Che diavolo ci faccio qui?<br />
Non sono di qui</p>
<p>Non mi importa se fa male<br />
Voglio avere il controllo<br />
Voglio un corpo perfetto<br />
Voglio un&#8217;anima perfetta</p>
<p>Voglio che tu te ne accorga<br />
Quando non ci sono<br />
Cazzo, sei così speciale<br />
Vorrei essere speciale</p>
<p>Ma sono uno inquietante<br />
Sono uno strano<br />
Che diavolo ci faccio qui?<br />
Non sono di qui</p>
<p>Lei sta scappando di nuovo<br />
Lei sta scappando<br />
Lei.. scappa</p>
<p>Qualunque cosa ti faccia felice<br />
Qualunque cosa tu voglia<br />
Cazzo, sei così speciale<br />
Vorrei essere speciale</p>
<p>Ma sono uno inquietante<br />
Sono uno strano<br />
Che diavolo ci faccio qui?<br />
Non sono di qui</p>
<p>Non sono di qui&#8230;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://ark.asengard.net/blog/2010/01/27/creep-traduzione/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

