<?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 &#187; thoughts</title>
	<atom:link href="http://ark.asengard.net/blog/category/thoughts/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>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>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>Original &amp; authentic</title>
		<link>http://ark.asengard.net/blog/2010/01/23/original-authentic/</link>
		<comments>http://ark.asengard.net/blog/2010/01/23/original-authentic/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 14:24:04 +0000</pubDate>
		<dc:creator>Arkham</dc:creator>
				<category><![CDATA[thoughts]]></category>
		<category><![CDATA[quotes]]></category>

		<guid isPermaLink="false">http://ark.asengard.net/blog/?p=880</guid>
		<description><![CDATA[Nothing is original. Steal from anywhere that resonates with inspiration or fuels your imagination. Devour old films, new films, music, books, paintings, photographs, poems, dreams, random conversations, architecture, bridges, street signs, trees, clouds, bodies of water, light and shadows. Select only things to steal from that speak directly to your soul. If you do this, [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-881 aligncenter" title="tarantino" src="http://ark.asengard.net/blog/wp-content/uploads/2010/01/tarantino.jpg" alt="" width="512" height="329" /></p>
<blockquote>
<p style="text-align: justify;"><em>Nothing is original. Steal from anywhere that resonates with inspiration or fuels your imagination. Devour old films, new films, music, books, paintings, photographs, poems, dreams, random conversations, architecture, bridges, street signs, trees, clouds, bodies of water, light and shadows. Select only things to steal from that speak directly to your soul. If you do this, your work (and theft) will be authentic. Authenticity is invaluable; originality is non-existent. And don’t bother concealing your thievery &#8211; celebrate it if you feel like it. In any case, always remember what Jean-Luc Godard said: “It’s not where you take things from &#8211; it’s where you take them to.</em></p>
<p style="text-align: right;"><em>Jim Jarmush</em></p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://ark.asengard.net/blog/2010/01/23/original-authentic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unnatural Selection &#8211; Traduzione</title>
		<link>http://ark.asengard.net/blog/2009/11/25/unnatural-selection-traduzione/</link>
		<comments>http://ark.asengard.net/blog/2009/11/25/unnatural-selection-traduzione/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 13:42:29 +0000</pubDate>
		<dc:creator>Arkham</dc:creator>
				<category><![CDATA[thoughts]]></category>
		<category><![CDATA[muse]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[poetry]]></category>
		<category><![CDATA[resistance]]></category>
		<category><![CDATA[translation]]></category>

		<guid isPermaLink="false">http://ark.asengard.net/blog/?p=863</guid>
		<description><![CDATA[Unnatural Selection They&#8217;ll laugh as they watch us fall The lucky don&#8217;t care at all No chance for fate It&#8217;s unnatural selection I want the truth I am hungry for some unrest I want to push this beyond a peaceful protest I wanna speak in a language that they&#8217;ll understand Dedication, to a new age [...]]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/UJgvFM_mNy4&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/UJgvFM_mNy4&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p><strong>Unnatural Selection</strong></p>
<blockquote><p>
They&#8217;ll laugh as they watch us fall<br />
The lucky don&#8217;t care at all<br />
No chance for fate<br />
It&#8217;s unnatural selection<br />
I want the truth</p>
<p>I am hungry for some unrest<br />
I want to push this beyond a peaceful protest<br />
I wanna speak in a language that they&#8217;ll understand</p>
<p>Dedication, to a new age<br />
Is this the end of destruction and rampage?<br />
Another chance to erase then repeat it again</p>
<p>Counter balance this commotion<br />
We&#8217;re not droplets in the ocean</p>
<p>They&#8217;ll laugh as they watch us fall<br />
The lucky don&#8217;t care at all<br />
No chance for fate<br />
It&#8217;s unnatural selection<br />
I want the truth</p>
<p>No religion or mind virus&#8217;<br />
Is there a hope that the facts will ever find us<br />
Just make sure that your are looking out for number 1</p>
<p>I am hungry for an unrest<br />
Lets push this beyond a peaceful protest<br />
I wanna speak in a language that you will understand</p>
<p>Counter balance this commotion<br />
We&#8217;re not droplets in the ocean</p>
<p>They&#8217;ll laugh as they watch us crawl<br />
The lucky don&#8217;t share at all<br />
No hope for fate, its a random chance selection<br />
I want the truth</p>
<p>Try to ride out the storm<br />
Whilst they&#8217;ll make you believe,<br />
That they are the special ones, (we have not been chosen)</p>
<p>Injustice is the norm<br />
You won&#8217;t be the first and you know you won&#8217;t be the last</p>
<p>Counter balance this commotion<br />
We&#8217;re not droplets in the ocean</p>
<p>They&#8217;ll laugh as they watch us fall<br />
The lucky don&#8217;t care at all<br />
No chance for fate<br />
It&#8217;s unnatural selection<br />
I want the truth, I want the truth<br />
I want the truth, I want the truth
</p></blockquote>
<p><br/><br />
<strong>Selezione innaturale</strong></p>
<blockquote><p>Rideranno nel vederci cadere<br />
Ai fortunati non importa affatto<br />
Non c&#8217;è scampo per il destino<br />
E&#8217; una selezione innaturale<br />
Voglio la verità</p>
<p>Sono affamato di un po&#8217; d&#8217;azione<br />
Voglio spingermi al di là della protesta pacifica<br />
Voglio parlare una lingua che possano capire</p>
<p>Dedizione, ad una nuova era<br />
Sarà questa la fine della distruzione e della furia selvaggia?<br />
Un&#8217;altra occasione per cancellare tutto e ripeterlo ancora</p>
<p>Opponiti a questa confusione<br />
Non siamo gocce in un oceano</p>
<p>Rideranno nel vederci cadere<br />
Ai fortunati non importa affatto<br />
Non c&#8217;è scampo per il destino<br />
E&#8217; una selezione innaturale<br />
Voglio la verità</p>
<p>Nessuna religione o virus mentale<br />
Esiste una speranza che i fatti ci possano trovare?<br />
Basta essere sicuri di fare il proprio interesse</p>
<p>Sono affamato di azione<br />
Voglio spingermi al di là della protesta pacifica<br />
Voglio parlare una lingua che possano capire</p>
<p>Opponiti a questa confusione<br />
Non siamo gocce in un oceano</p>
<p>Rideranno nel vederci strisciare<br />
I fortunati non condividono niente<br />
Nessuna speranza per il destino, è una selezione casuale<br />
Voglio la verità</p>
<p>Prova a uscire dalla tempesta<br />
Mentre ti faranno credere<br />
Di essere quelli speciali, (noi non siamo stati scelti)</p>
<p>L&#8217;ingiustizia è la norma<br />
Non sarai il primo e sai che non sarai l&#8217;ultimo</p>
<p>Opponiti a questa confusione<br />
Non siamo gocce in un oceano</p>
<p>Rideranno nel vederci cadere<br />
Ai fortunati non importa affatto<br />
Non c&#8217;è scampo per il destino<br />
E&#8217; una selezione innaturale<br />
Voglio la verità</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://ark.asengard.net/blog/2009/11/25/unnatural-selection-traduzione/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Uprising &#8211; Traduzione</title>
		<link>http://ark.asengard.net/blog/2009/09/26/uprising-traduzione/</link>
		<comments>http://ark.asengard.net/blog/2009/09/26/uprising-traduzione/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 23:58:47 +0000</pubDate>
		<dc:creator>Arkham</dc:creator>
				<category><![CDATA[italian]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[muse]]></category>
		<category><![CDATA[poetry]]></category>
		<category><![CDATA[resistance]]></category>
		<category><![CDATA[translation]]></category>

		<guid isPermaLink="false">http://ark.asengard.net/blog/?p=831</guid>
		<description><![CDATA[Uprising Paranoia is in bloom, The PR transmissions will resume, They&#8217;ll try to push drugs that keep us all dumbed down, And hope that we will never see the truth around (So come on) Another promise, another scene, Another packaged lie to keep us trapped in greed, And all the green belts wrapped around our [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://ark.asengard.net/blog/wp-content/uploads/2009/09/uprising-300x280.jpg" alt="uprising" title="uprising" width="300" height="280" class="alignnone size-medium wp-image-832" /><br />
<strong>Uprising</strong></p>
<blockquote><p>Paranoia is in bloom,<br />
The PR transmissions will resume,<br />
They&#8217;ll try to push drugs that keep us all dumbed down,<br />
And hope that we will never see the truth around<br />
(So come on)<br />
Another promise, another scene,<br />
Another packaged lie to keep us trapped in greed,<br />
And all the green belts wrapped around our minds,<br />
And endless red tape to keep the truth confined<br />
(So come on)</p>
<p>They will not force us,<br />
They will stop degrading us,<br />
They will not control us,<br />
We will be victorious<br />
(So come on)</p>
<p>Interchanging mind control,<br />
Come let the revolution take it&#8217;s toll,<br />
If you could flick a switch and open your third eye,<br />
You&#8217;d see that<br />
We should never be afraid to die<br />
(So come on)</p>
<p>Rise up and take the power back,<br />
It&#8217;s time the fat cats had a heart attack,<br />
You know that their time&#8217;s coming to an end,<br />
We have to unify and watch our flag ascend</p>
<p>They will not force us,<br />
They will stop degrading us,<br />
They will not control us,<br />
We will be victorious</p></blockquote>
<p><br/><br />
<strong>Rivolta</strong></p>
<blockquote><p>
La paranoia sta sbocciando,<br />
Le trasmissioni riprenderanno a breve,<br />
Proveranno a darci nuove droghe per tenerci sedati,<br />
Sperando che non vedremo mai la verità che ci circonda<br />
(Forza)<br />
Un&#8217;altra promessa, un&#8217;altra menzogna,<br />
Un&#8217;altra bugia confezionata per tenerci intrappolati nell&#8217;avidità,<br />
E tutte le zone verdi che circondano le nostre menti,<br />
E l&#8217;infinita burocrazia che tiene la verità nascosta<br />
(Forza)</p>
<p>Non ci costringeranno,<br />
Non ci avviliranno più,<br />
Non ci controlleranno,<br />
Vinceremo<br />
(Forza)</p>
<p>Scambiando il controllo sulle menti,<br />
Lascia che la rivoluzione si prenda la sua rivincita,<br />
Se tu potessi all&#8217;improvviso accendere il tuo terzo occhio,<br />
Capiresti che non dovremmo mai aver paura di morire<br />
(Forza)</p>
<p>Rialzati e riprenditi il potere,<br />
E&#8217; ora che alle vecchie volpi si schianti il cuore,<br />
Sai che il loro tempo è giunto al termine,<br />
Dobbiamo riunirci e veder issare la nostra bandiera</p>
<p>Non ci costringeranno<br />
Non ci avviliranno più,<br />
Non ci controlleranno,<br />
Vinceremo</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://ark.asengard.net/blog/2009/09/26/uprising-traduzione/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resistance &#8211; Traduzione</title>
		<link>http://ark.asengard.net/blog/2009/09/20/resistance-traduzione/</link>
		<comments>http://ark.asengard.net/blog/2009/09/20/resistance-traduzione/#comments</comments>
		<pubDate>Sun, 20 Sep 2009 18:25:42 +0000</pubDate>
		<dc:creator>Arkham</dc:creator>
				<category><![CDATA[italian]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[muse]]></category>
		<category><![CDATA[resistance]]></category>
		<category><![CDATA[translation]]></category>

		<guid isPermaLink="false">http://ark.asengard.net/blog/?p=826</guid>
		<description><![CDATA[Resistance Is your secret safe tonight? And are we out of sight? Or will our world come tumbling down? Will they find our hiding place? Is this our last embrace? Or will the walls start caving in? (It could be wrong, could be wrong) But it should&#8217;ve been right (It could be wrong, could be [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://ark.asengard.net/blog/wp-content/uploads/2009/09/front-300x295.jpg" alt="Resistance" title="Resistance" width="300" height="295" class="alignnone size-medium wp-image-827" /><br />
<strong>Resistance</strong></p>
<blockquote><p>
Is your secret safe tonight?<br />
And are we out of sight?<br />
Or will our world come tumbling down?</p>
<p>Will they find our hiding place?<br />
Is this our last embrace?<br />
Or will the walls start caving in?</p>
<p>(It could be wrong, could be wrong)<br />
But it should&#8217;ve been right<br />
(It could be wrong, could be wrong)<br />
Let our hearts ignite<br />
(It could be wrong, could be wrong)<br />
Are we digging a hole?<br />
(It could be wrong, could be wrong)<br />
This is outta control</p>
<p>(It could be wrong, could be wrong)<br />
It could never last<br />
(It could be wrong, could be wrong)<br />
Must erase it fast<br />
(It could be wrong, could be wrong)<br />
But it could&#8217;ve been right<br />
(It could be wrong, could be&#8230;)</p>
<p>Love is our resitance<br />
They keep us apart and they won&#8217;t stop breaking us down<br />
And hold me, our lips must always be sealed</p>
<p>If we live our life in fear<br />
I&#8217;ll wait a thousand years<br />
Just to see you smile again</p>
<p>Quell your prayers for love and peace<br />
You&#8217;ll wake the thought police<br />
We can hide the truth inside</p>
<p>(It could be wrong, could be wrong)<br />
But it should&#8217;ve been right<br />
(It could be wrong, could be wrong)<br />
Let our hearts ignite<br />
(It could be wrong, could be wrong)<br />
Are we digging a hole?<br />
(It could be wrong, could be wrong)<br />
This is outta control</p>
<p>(It could be wrong, could be wrong)<br />
It could never last<br />
(It could be wrong, could be wrong)<br />
Must erase it fast<br />
(It could be wrong, could be wrong)<br />
But it could&#8217;ve been right<br />
(It could be wrong, could be&#8230;)</p>
<p>Love is our resistance!<br />
They keep us apart and won&#8217;t stop breaking us down<br />
And hold me, our lips must always be sealed</p>
<p>The night has reached its end<br />
We can&#8217;t pretend<br />
We must run<br />
We must run<br />
It&#8217;s time to run</p>
<p>Take us away from here<br />
Protect us from further harm<br />
Resistance!
</p></blockquote>
<p><br/><br />
<strong>Resistenza</strong></p>
<blockquote><p>
Stanotte il tuo segreto è al sicuro?<br />
Siamo al riparo dagli sguardi?<br />
O il nostro mondo comincerà a crollare?</p>
<p>Troveranno il nostro rifugio?<br />
E&#8217; questo il nostro ultimo abbraccio?<br />
O i muri cominceranno a crollare?</p>
<p>(Potrebbe essere sbagliato, potrebbe)<br />
Ma dovrebbe essere giusto<br />
(Potrebbe essere sbagliato, potrebbe)<br />
Accendiamo i nostri cuori<br />
(Potrebbe essere sbagliato, potrebbe)<br />
Stiamo scavandoci la fossa?<br />
(Potrebbe essere sbagliato, potrebbe)<br />
E&#8217; tutto fuori controllo</p>
<p>(Potrebbe essere sbagliato, potrebbe)<br />
Non potrebbe mai durare<br />
(Potrebbe essere sbagliato, potrebbe)<br />
Bisogna rimuoverlo in fretta<br />
(Potrebbe essere sbagliato, potrebbe)<br />
Ma dovrebbe essere giusto<br />
(Potrebbe essere sbagliato, potrebbe)</p>
<p>L&#8217;amore è la nostra resistenza<br />
Ci tengono separati e non smetteranno di colpirci<br />
Stringimi, le nostre labbra dovranno rimanere sempre serrate</p>
<p>Se viviamo nella paura<br />
Aspetterò mille anni<br />
Solo per vedere ancora un tuo sorriso</p>
<p>Soffoca le tue preghiere per l&#8217;amore e la pace<br />
Sveglierai la polizia del pensiero<br />
Possiamo nascondere la verità dentro</p>
<p>(Potrebbe essere sbagliato, potrebbe)<br />
Ma dovrebbe essere giusto<br />
(Potrebbe essere sbagliato, potrebbe)<br />
Accendiamo i nostri cuori<br />
(Potrebbe essere sbagliato, potrebbe)<br />
Stiamo scavandoci la fossa?<br />
(Potrebbe essere sbagliato, potrebbe)<br />
E&#8217; tutto fuori controllo</p>
<p>(Potrebbe essere sbagliato, potrebbe)<br />
Non potrebbe mai durare<br />
(Potrebbe essere sbagliato, potrebbe)<br />
Bisogna cancellarlo in fretta<br />
(Potrebbe essere sbagliato, potrebbe)<br />
Ma dovrebbe essere giusto<br />
(Potrebbe essere sbagliato, potrebbe)</p>
<p>L&#8217;amore è la nostra resistenza<br />
Ci tengono separati e non smetteranno di colpirci<br />
Stringimi, le nostre labbra dovranno rimanere sempre serrate</p>
<p>La notte è giunta alla sua fine<br />
Non possiamo fingere<br />
Dobbiamo correre<br />
Correre<br />
E&#8217; tempo di correre</p>
<p>Portaci via di qui<br />
Liberaci dal male<br />
Resistenza!
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://ark.asengard.net/blog/2009/09/20/resistance-traduzione/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

