<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><description>Better living through pop culture.</description><title>Giant Japanese Robot</title><generator>Tumblr (3.0; @giantjapaneserobot)</generator><link>http://www.giantjapaneserobot.com/</link><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/giantjapaneserobot/FxLb" type="application/rss+xml" /><feedburner:emailServiceId>giantjapaneserobot/FxLb</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item><title>They Might Be Giants - Put It to the Test (via ParticleMen)</title><description>&lt;object width="400" height="336"&gt;&lt;param name="movie" value="http://www.youtube.com/v/_cCC8a6HMz4&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/_cCC8a6HMz4&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1" type="application/x-shockwave-flash" width="400" height="336" allowFullScreen="true" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;They Might Be Giants - Put It to the Test (via &lt;a href="http://youtube.com/user/ParticleMen" target="_blank"&gt;ParticleMen&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/giantjapaneserobot/FxLb/~4/wTf0Q75iyBg" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/giantjapaneserobot/FxLb/~3/wTf0Q75iyBg/233074390</link><guid isPermaLink="false">http://www.giantjapaneserobot.com/post/233074390</guid><pubDate>Wed, 04 Nov 2009 13:33:58 -0500</pubDate><feedburner:origLink>http://www.giantjapaneserobot.com/post/233074390</feedburner:origLink></item><item><title>The Blob 1958 opening tune (via bubbazametti)</title><description>&lt;object width="400" height="336"&gt;&lt;param name="movie" value="http://www.youtube.com/v/HCtcgI4BcIQ&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/HCtcgI4BcIQ&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1" type="application/x-shockwave-flash" width="400" height="336" allowFullScreen="true" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;The Blob 1958 opening tune (via &lt;a href="http://youtube.com/user/bubbazametti" target="_blank"&gt;bubbazametti&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/giantjapaneserobot/FxLb/~4/Y9_BG3jj8kQ" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/giantjapaneserobot/FxLb/~3/Y9_BG3jj8kQ/228948161</link><guid isPermaLink="false">http://www.giantjapaneserobot.com/post/228948161</guid><pubDate>Sat, 31 Oct 2009 12:00:38 -0400</pubDate><feedburner:origLink>http://www.giantjapaneserobot.com/post/228948161</feedburner:origLink></item><item><title>Ruby on Rails: String to Object</title><description>&lt;p&gt;In my new app I have a whole bunch of nested models.  For the most part they all have the same database structure and can use very similar partials.  I hate to repeat code because it usually makes my life more difficult when I need to go back and change something or do maintenance.  I am now placing these partials in a single location that all of these models have access to.&lt;/p&gt;

&lt;p&gt;Problem is I had a very difficult time telling the partials what object it needed to represent without adding a parameter. (I am making a lot of AJAX calls) I solved it by using the controller that was passed along with the request.  After that I needed to take that string that was passed and transform it so ruby recognized it as an object.  This was my final solution:&lt;/p&gt;

&lt;div class="rails" style="font-family:monospace;color: #006; border: 1px solid #d0d0d0; background-color: #f0f0f0;"&gt;object = params&lt;span class="br0"&gt;[&lt;/span&gt;&lt;span class="re3"&gt;:controller&lt;/span&gt;&lt;span class="br0"&gt;]&lt;/span&gt;.&lt;span class="me1"&gt;classify&lt;/span&gt;.&lt;span class="me1"&gt;constantize&lt;/span&gt;.&lt;span class="me1"&gt;find&lt;/span&gt;&lt;span class="br0"&gt;(&lt;/span&gt;params&lt;span class="br0"&gt;[&lt;/span&gt;&lt;span class="re3"&gt;:id&lt;/span&gt;&lt;span class="br0"&gt;]&lt;/span&gt;&lt;span class="br0"&gt;)&lt;/span&gt;
&lt;/div&gt;

&lt;p&gt;Classify takes the string and gives it the proper camelcase format so that it conforms to the model naming convention.  Constantize then takes that string and converts it into an actual object.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/giantjapaneserobot/FxLb/~4/7ycpgkFr_kU" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/giantjapaneserobot/FxLb/~3/7ycpgkFr_kU/214856603</link><guid isPermaLink="false">http://www.giantjapaneserobot.com/post/214856603</guid><pubDate>Fri, 16 Oct 2009 14:20:41 -0400</pubDate><category>ruby</category><category>rubyonrails</category><category>ruby on rails</category><category>REST</category><category>restful</category><category>don't repeat yourself</category><category>dry</category><feedburner:origLink>http://www.giantjapaneserobot.com/post/214856603</feedburner:origLink></item><item><title>RIP Captain Lou.  You will be missed.</title><description>&lt;object width="400" height="336"&gt;&lt;param name="movie" value="http://www.youtube.com/v/65uNCLBTje0&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/65uNCLBTje0&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1" type="application/x-shockwave-flash" width="400" height="336" allowFullScreen="true" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;RIP Captain Lou.  You will be missed.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/giantjapaneserobot/FxLb/~4/zLYodxq6FOM" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/giantjapaneserobot/FxLb/~3/zLYodxq6FOM/213144592</link><guid isPermaLink="false">http://www.giantjapaneserobot.com/post/213144592</guid><pubDate>Wed, 14 Oct 2009 17:18:34 -0400</pubDate><feedburner:origLink>http://www.giantjapaneserobot.com/post/213144592</feedburner:origLink></item><item><title>agentmlovestacos:


Man, 2012’s gonna be IIiiiiiiintense!
(via...</title><description>&lt;img src="http://19.media.tumblr.com/tumblr_kr5hcpzOSM1qzmxjbo1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a href="http://agentmlovestacos.tumblr.com/post/206784078/man-2012s-gonna-be-iiiiiiiiintense-via" target="_blank"&gt;agentmlovestacos&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Man, 2012’s gonna be IIiiiiiiintense!&lt;/p&gt;
&lt;p&gt;(via &lt;a href="http://20twelve.tumblr.com/" target="_blank"&gt;20twelve&lt;/a&gt;)&lt;/p&gt;
&lt;/blockquote&gt;&lt;img src="http://feeds.feedburner.com/~r/giantjapaneserobot/FxLb/~4/qyMOe-8z97w" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/giantjapaneserobot/FxLb/~3/qyMOe-8z97w/206872125</link><guid isPermaLink="false">http://www.giantjapaneserobot.com/post/206872125</guid><pubDate>Wed, 07 Oct 2009 14:40:39 -0400</pubDate><feedburner:origLink>http://www.giantjapaneserobot.com/post/206872125</feedburner:origLink></item><item><title>Lenny Kravitz  Let Love Rule (Justice Remix) (via lennykravitz)</title><description>&lt;object width="400" height="336"&gt;&lt;param name="movie" value="http://www.youtube.com/v/BCmwr8I9Dz4&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/BCmwr8I9Dz4&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1" type="application/x-shockwave-flash" width="400" height="336" allowFullScreen="true" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;Lenny Kravitz  Let Love Rule (Justice Remix) (via &lt;a href="http://youtube.com/user/lennykravitz" target="_blank"&gt;lennykravitz&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/giantjapaneserobot/FxLb/~4/RH5Zpi_kfNk" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/giantjapaneserobot/FxLb/~3/RH5Zpi_kfNk/206758183</link><guid isPermaLink="false">http://www.giantjapaneserobot.com/post/206758183</guid><pubDate>Wed, 07 Oct 2009 11:24:04 -0400</pubDate><feedburner:origLink>http://www.giantjapaneserobot.com/post/206758183</feedburner:origLink></item><item><title>Carl Sagan - ‘A Glorious Dawn’  ft Stephen Hawking...</title><description>&lt;object width="400" height="336"&gt;&lt;param name="movie" value="http://www.youtube.com/v/zSgiXGELjbc&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/zSgiXGELjbc&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1" type="application/x-shockwave-flash" width="400" height="336" allowFullScreen="true" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;Carl Sagan - ‘A Glorious Dawn’  ft Stephen Hawking (Cosmos Remixed) (via &lt;a href="http://youtube.com/user/melodysheep" target="_blank"&gt;melodysheep&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/giantjapaneserobot/FxLb/~4/s82oG5UUROY" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/giantjapaneserobot/FxLb/~3/s82oG5UUROY/196853763</link><guid isPermaLink="false">http://www.giantjapaneserobot.com/post/196853763</guid><pubDate>Fri, 25 Sep 2009 16:43:30 -0400</pubDate><feedburner:origLink>http://www.giantjapaneserobot.com/post/196853763</feedburner:origLink></item><item><title>Ruby on Rails: String to Boolean</title><description>&lt;p&gt;Really, this should be simpler.  Knowing Rails folks there is probably some deep philosophical reason this isn’t included, but I hold no grudge.&lt;/p&gt;

&lt;p&gt;So….I’m converting objects back and forth to JSON and when they return all my pretty Booleans are converted into strings. My assumption was that there was a handy little &lt;code&gt;.to_b(ool)&lt;/code&gt; method for String, but alas there does not appear to be.  This is the method I ended up writing.&lt;/p&gt;

&lt;div class="rails" style="font-family:monospace;color: #006; border: 1px solid #d0d0d0; background-color: #f0f0f0;"&gt;&lt;ol&gt;
&lt;li class="li1"&gt;&lt;div class="de1"&gt;     &lt;span class="kw1"&gt;def&lt;/span&gt; object_to_boolean&lt;span class="br0"&gt;(&lt;/span&gt;value&lt;span class="br0"&gt;)&lt;/span&gt;
&lt;/div&gt;&lt;/li&gt;
&lt;li class="li1"&gt;&lt;div class="de1"&gt;        &lt;span class="kw2"&gt;return&lt;/span&gt; &lt;span class="br0"&gt;[&lt;/span&gt;&lt;span class="kw2"&gt;true&lt;/span&gt;, &lt;span class="st0"&gt;“true”&lt;/span&gt;, &lt;span class="nu0"&gt;1&lt;/span&gt;, &lt;span class="st0"&gt;“1”&lt;/span&gt;, &lt;span class="st0"&gt;“T”&lt;/span&gt;, &lt;span class="st0"&gt;“t”&lt;/span&gt;&lt;span class="br0"&gt;]&lt;/span&gt;.&lt;span class="kw1"&gt;include&lt;/span&gt;?&lt;span class="br0"&gt;(&lt;/span&gt;value.&lt;span class="kw1"&gt;class&lt;/span&gt; == &lt;span class="kw3"&gt;String&lt;/span&gt; ? value.&lt;span class="me1"&gt;downcase&lt;/span&gt; : value&lt;span class="br0"&gt;)&lt;/span&gt;
&lt;/div&gt;&lt;/li&gt;
&lt;li class="li1"&gt;&lt;div class="de1"&gt;     &lt;span class="kw1"&gt;end&lt;/span&gt;
&lt;/div&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/div&gt;

&lt;p&gt;As always I am open to suggestions and improvements.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/giantjapaneserobot/FxLb/~4/Kh8W956CZFM" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/giantjapaneserobot/FxLb/~3/Kh8W956CZFM/191116276</link><guid isPermaLink="false">http://www.giantjapaneserobot.com/post/191116276</guid><pubDate>Fri, 18 Sep 2009 13:36:00 -0400</pubDate><category>string,</category><category>rails</category><category>ruby</category><category>rubyonrails</category><category>boolean</category><feedburner:origLink>http://www.giantjapaneserobot.com/post/191116276</feedburner:origLink></item><item><title>Ruby on Rails: Single Table Inheritance and Restful Routes</title><description>&lt;p&gt;I am writing this out of a bit of frustration.  I have a solution here, but it took too long and it can not be correct.  I am hoping some smarter folks will chime in with some thoughts.&lt;/p&gt;

&lt;p&gt;I have a model called Questions which has many subtypes using single table inheritance.  Basically types of questions dropdown, checkbox, radio, etc etc.&lt;/p&gt;

&lt;p&gt;These are set up as resources so I can use restful routing.  I also want to use all of the rails form magic so I set up resources like this…&lt;/p&gt;

&lt;pre&gt;&lt;code&gt; map.resources :question_checkboxes, :as =&gt; :questions, :controller =&gt; :questions
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;This allowed the form_for method to render the form correctly and point to the “&lt;code&gt;question&lt;/code&gt;” url instead of the url of one of the subtypes.&lt;/p&gt;

&lt;p&gt;The next problem was that the “update” controller method was looking for very specific params “&lt;code&gt;params[:question]&lt;/code&gt;”, but the rendered form was passing params like “&lt;code&gt;params[:question_checkbox]&lt;/code&gt;”.  The way I eventually solved this was set up a before filter and method in the controller like this…&lt;/p&gt;

&lt;pre&gt;&lt;code&gt; before_filter :form_symbol

   def form_symbol
      if params[:question] then @form_symbol = :question end
      if params[:question_checkbox] then @form_symbol = :question_checkbox end
   end
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;and then in the &lt;code&gt;update&lt;/code&gt; method of the &lt;code&gt;questions_controller&lt;/code&gt;…&lt;/p&gt;

&lt;pre&gt;&lt;code&gt; @question.update_attributes(params[@form_symbol])
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;It does the trick, but feels very uncomfortable.  Suggestions and comments are welcome.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/giantjapaneserobot/FxLb/~4/tHWlfhR53yg" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/giantjapaneserobot/FxLb/~3/tHWlfhR53yg/177232107</link><guid isPermaLink="false">http://www.giantjapaneserobot.com/post/177232107</guid><pubDate>Tue, 01 Sep 2009 13:36:36 -0400</pubDate><category>ruby</category><category>rails</category><category>ruby on rails</category><category>single table inheritance</category><category>rest</category><category>restful</category><category>routes</category><feedburner:origLink>http://www.giantjapaneserobot.com/post/177232107</feedburner:origLink></item><item><title>The other day I mentioned sketching a Zombie Totoro, looks like...</title><description>&lt;img src="http://22.media.tumblr.com/tumblr_kozpzu8FvA1qz7uhco1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;The other day I mentioned sketching a Zombie Totoro, looks like this person beat me to it.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/giantjapaneserobot/FxLb/~4/TsFcZDKSZoQ" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/giantjapaneserobot/FxLb/~3/TsFcZDKSZoQ/172183760</link><guid isPermaLink="false">http://www.giantjapaneserobot.com/post/172183760</guid><pubDate>Wed, 26 Aug 2009 11:35:47 -0400</pubDate><feedburner:origLink>http://www.giantjapaneserobot.com/post/172183760</feedburner:origLink></item><item><title>has_many :through &amp; Acts_As_List</title><description>&lt;p&gt;Following post is for Ruby on Rails geeks.&lt;/p&gt;

&lt;p&gt;I don’t normally post my programming adventures here, but maybe I should.  This is a simple thing and should have been obvious right away to me, but it wasn’t so I am posting it here for future generations.  Thanks to &lt;a href="http://blogs.law.harvard.edu/lianaleahy/" target="_blank"&gt;Geek Mama&lt;/a&gt; for shaming me into posting this.&lt;/p&gt;

&lt;p&gt;I have a “&lt;code&gt;has_many :choices, :through =&gt; :question_items&lt;/code&gt;” model set up for Questions and their Choices.  The QuestionItems model also has a”&lt;code&gt;position&lt;/code&gt;” column because it is an Acts_As_List model.  All is fine and good until I try and get the choices to return in the correct order by calling @questions.choices in my controller.&lt;/p&gt;

&lt;p&gt;The solution was pretty simple, adding an &lt;code&gt;:order&lt;/code&gt; option to the &lt;code&gt;has_many&lt;/code&gt; method solved it:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;has_many :choices, :through =&gt; :question_items, :order =&gt; "question_items.position"
&lt;/code&gt;&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/giantjapaneserobot/FxLb/~4/InUWHCJbSxo" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/giantjapaneserobot/FxLb/~3/InUWHCJbSxo/167582122</link><guid isPermaLink="false">http://www.giantjapaneserobot.com/post/167582122</guid><pubDate>Thu, 20 Aug 2009 16:50:39 -0400</pubDate><category>rubyonrails</category><category>ruby</category><category>rails</category><category>programming</category><feedburner:origLink>http://www.giantjapaneserobot.com/post/167582122</feedburner:origLink></item><item><title>nouvelle vague “dance with me” from bande a part...</title><description>&lt;object width="400" height="336"&gt;&lt;param name="movie" value="http://www.youtube.com/v/ekQZPozjCX8&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/ekQZPozjCX8&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1" type="application/x-shockwave-flash" width="400" height="336" allowFullScreen="true" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;nouvelle vague “dance with me” from bande a part (via &lt;a href="http://youtube.com/user/luakabopper" target="_blank"&gt;luakabopper&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/giantjapaneserobot/FxLb/~4/QCsgj2M0aFw" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/giantjapaneserobot/FxLb/~3/QCsgj2M0aFw/156439282</link><guid isPermaLink="false">http://www.giantjapaneserobot.com/post/156439282</guid><pubDate>Wed, 05 Aug 2009 11:06:12 -0400</pubDate><feedburner:origLink>http://www.giantjapaneserobot.com/post/156439282</feedburner:origLink></item><item><title>Kurtroll’d</title><description>&lt;object width="400" height="336"&gt;&lt;param name="movie" value="http://www.youtube.com/v/NN75im_us4k&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/NN75im_us4k&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1" type="application/x-shockwave-flash" width="400" height="336" allowFullScreen="true" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;Kurtroll’d&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/giantjapaneserobot/FxLb/~4/9t0OL1m5pN8" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/giantjapaneserobot/FxLb/~3/9t0OL1m5pN8/147591260</link><guid isPermaLink="false">http://www.giantjapaneserobot.com/post/147591260</guid><pubDate>Thu, 23 Jul 2009 11:46:33 -0400</pubDate><feedburner:origLink>http://www.giantjapaneserobot.com/post/147591260</feedburner:origLink></item><item><title>Tricky Linguistics (via ayesham819)</title><description>&lt;object width="400" height="336"&gt;&lt;param name="movie" value="http://www.youtube.com/v/ZFD01r6ersw&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/ZFD01r6ersw&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1" type="application/x-shockwave-flash" width="400" height="336" allowFullScreen="true" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;Tricky Linguistics (via &lt;a href="http://youtube.com/user/ayesham819" target="_blank"&gt;ayesham819&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/giantjapaneserobot/FxLb/~4/urb4R5inf2g" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/giantjapaneserobot/FxLb/~3/urb4R5inf2g/145581931</link><guid isPermaLink="false">http://www.giantjapaneserobot.com/post/145581931</guid><pubDate>Mon, 20 Jul 2009 17:06:25 -0400</pubDate><feedburner:origLink>http://www.giantjapaneserobot.com/post/145581931</feedburner:origLink></item><item><title>(via reygunn)</title><description>&lt;img src="http://8.media.tumblr.com/UId46J87ypqoquhqk1yt2UcHo1_500.png"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;(via &lt;a href="http://reygunn.tumblr.com/" target="_blank"&gt;reygunn&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/giantjapaneserobot/FxLb/~4/IauMhv9hzow" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/giantjapaneserobot/FxLb/~3/IauMhv9hzow/144258448</link><guid isPermaLink="false">http://www.giantjapaneserobot.com/post/144258448</guid><pubDate>Sat, 18 Jul 2009 14:21:25 -0400</pubDate><feedburner:origLink>http://www.giantjapaneserobot.com/post/144258448</feedburner:origLink></item><item><title>Quirk Classics #2: Book Trailer (via irreference)</title><description>&lt;object width="400" height="336"&gt;&lt;param name="movie" value="http://www.youtube.com/v/_jZVE5uF24Q&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/_jZVE5uF24Q&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1" type="application/x-shockwave-flash" width="400" height="336" allowFullScreen="true" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;Quirk Classics #2: Book Trailer (via &lt;a href="http://youtube.com/user/irreference" target="_blank"&gt;irreference&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/giantjapaneserobot/FxLb/~4/MItXY_WClMg" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/giantjapaneserobot/FxLb/~3/MItXY_WClMg/143030410</link><guid isPermaLink="false">http://www.giantjapaneserobot.com/post/143030410</guid><pubDate>Thu, 16 Jul 2009 17:22:18 -0400</pubDate><feedburner:origLink>http://www.giantjapaneserobot.com/post/143030410</feedburner:origLink></item><item><title>Bionic Woman - Bigfoot (via LincolnAP)

Checklist


Afro...</title><description>&lt;object width="400" height="336"&gt;&lt;param name="movie" value="http://www.youtube.com/v/3-mqn8kX2e0&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/3-mqn8kX2e0&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1" type="application/x-shockwave-flash" width="400" height="336" allowFullScreen="true" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;Bionic Woman - Bigfoot (via &lt;a href="http://youtube.com/user/LincolnAP" target="_blank"&gt;LincolnAP&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;Checklist&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Afro Bigfoot&lt;/li&gt;
&lt;li&gt;Best hair on television&lt;/li&gt;
&lt;li&gt;Purple and yellow speedsuits&lt;/li&gt;
&lt;li&gt;Anti-gravity rock throwing&lt;/li&gt;
&lt;li&gt;Utility belts&lt;/li&gt;
&lt;li&gt;Socially acceptable paunch&lt;/li&gt;
&lt;/ol&gt;&lt;img src="http://feeds.feedburner.com/~r/giantjapaneserobot/FxLb/~4/qDKzoc5PESg" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/giantjapaneserobot/FxLb/~3/qDKzoc5PESg/140759143</link><guid isPermaLink="false">http://www.giantjapaneserobot.com/post/140759143</guid><pubDate>Mon, 13 Jul 2009 08:56:03 -0400</pubDate><feedburner:origLink>http://www.giantjapaneserobot.com/post/140759143</feedburner:origLink></item><item><title>Interview with Danny from The Shining (via Spiralendrache)</title><description>&lt;object width="400" height="336"&gt;&lt;param name="movie" value="http://www.youtube.com/v/7rNicTi9FWY&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/7rNicTi9FWY&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1" type="application/x-shockwave-flash" width="400" height="336" allowFullScreen="true" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;Interview with Danny from The Shining (via &lt;a href="http://youtube.com/user/Spiralendrache" target="_blank"&gt;Spiralendrache&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/giantjapaneserobot/FxLb/~4/g6gaokohsi4" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/giantjapaneserobot/FxLb/~3/g6gaokohsi4/134453839</link><guid isPermaLink="false">http://www.giantjapaneserobot.com/post/134453839</guid><pubDate>Thu, 02 Jul 2009 20:28:28 -0400</pubDate><feedburner:origLink>http://www.giantjapaneserobot.com/post/134453839</feedburner:origLink></item><item><title>Bollywood He-Man

Bonus dime store Orco.

Chahiye He Man He Man...</title><description>&lt;object width="400" height="336"&gt;&lt;param name="movie" value="http://www.youtube.com/v/O_84MAfap6c&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/O_84MAfap6c&amp;rel=0&amp;egm=0&amp;showinfo=0&amp;fs=1" type="application/x-shockwave-flash" width="400" height="336" allowFullScreen="true" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;strong&gt;Bollywood He-Man&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Bonus dime store Orco.&lt;/p&gt;

&lt;p&gt;Chahiye He Man He Man from Nafrat Ki Aandhi (1989) (via &lt;a href="http://youtube.com/user/jatholb" target="_blank"&gt;jatholb&lt;/a&gt;)&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/giantjapaneserobot/FxLb/~4/rulaYMtq7n4" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/giantjapaneserobot/FxLb/~3/rulaYMtq7n4/133648583</link><guid isPermaLink="false">http://www.giantjapaneserobot.com/post/133648583</guid><pubDate>Wed, 01 Jul 2009 13:57:35 -0400</pubDate><feedburner:origLink>http://www.giantjapaneserobot.com/post/133648583</feedburner:origLink></item><item><title>Earlier version of Dune that never was</title><description>&lt;p&gt;From Wikipedia:&lt;/p&gt;

&lt;p&gt;In December 1974, a French consortium led by Jean-Paul Gibon purchased the film rights from APJ. Alejandro Jodorowsky was set to direct. In 1975, Jodorowsky planned to film the story as a ten hour feature, in collaboration with Orson Welles, Dan O’Bannon, Salvador Dalí, Gloria Swanson, Hervé Villechaize and others (whom he nicknamed his “seven samurais”). The music would be composed by Pink Floyd. Jodorowsky set up a pre-production unit in Paris consisting of Chris Foss, a British artist who designed covers for science fiction periodicals, Jean Giraud (Moebius), a French illustrator who created and also wrote and drew for Metal Hurlant magazine, and H. R. Giger. Moebius began designing creatures and characters for the film, while Foss was brought in to design the film’s space ships and hardware. Giger began designing the Harkonnen Castle based on Moebius’ storyboards, and Dali was cast as the Emperor with a reported salary of $100,000 an hour. Jodorowsky also hired Dan O’Bannon to head the special effects department.&lt;/p&gt;

&lt;hr&gt;
&lt;p&gt;I love the Lynch version but that would have been unicorn magic right there.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/giantjapaneserobot/FxLb/~4/OBUKgs7F_hc" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/giantjapaneserobot/FxLb/~3/OBUKgs7F_hc/119946736</link><guid isPermaLink="false">http://www.giantjapaneserobot.com/post/119946736</guid><pubDate>Mon, 08 Jun 2009 10:01:54 -0400</pubDate><feedburner:origLink>http://www.giantjapaneserobot.com/post/119946736</feedburner:origLink></item></channel></rss>
