<?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>Honolulu Hacker &#187; Tech</title>
	<atom:link href="http://honoluluhacker.com/category/tech/feed/" rel="self" type="application/rss+xml" />
	<link>http://honoluluhacker.com</link>
	<description>Tech, Linux, Rails by Honululu-based Kevin English</description>
	<lastBuildDate>Sat, 24 Sep 2011 22:53:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Using TinyTDS to connect to SQL Server with Ruby on Rails 3 (for Mac OSX)</title>
		<link>http://honoluluhacker.com/2011/01/13/using-tinytds-to-connect-to-sql-server-with-ruby-on-rails-3-for-mac-osx/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=using-tinytds-to-connect-to-sql-server-with-ruby-on-rails-3-for-mac-osx</link>
		<comments>http://honoluluhacker.com/2011/01/13/using-tinytds-to-connect-to-sql-server-with-ruby-on-rails-3-for-mac-osx/#comments</comments>
		<pubDate>Thu, 13 Jan 2011 19:36:58 +0000</pubDate>
		<dc:creator>kenglish</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[freetds]]></category>
		<category><![CDATA[mssql rails]]></category>
		<category><![CDATA[tinytds]]></category>

		<guid isPermaLink="false">http://honoluluhacker.com/?p=1157</guid>
		<description><![CDATA[Note: please see comments by Ken Collins (metaskills.net) at the bottom of this entry. He mentions a better way to do this without even installing FreeTDS. You will need FreeTDS to connect to MSSQL Server on Unix-based environments. You MUST use Homebrew to install FreeTDS on the Mac. MacPorts is evil and will not install [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Note: please see comments by Ken Collins (<a href="http://metaskills.net/">metaskills.net</a>) at the bottom of this entry. He mentions a better way to do this without even installing FreeTDS.</strong></p>
<p>You will need <a href="http://www.freetds.org/">FreeTDS</a> to connect to MSSQL Server on Unix-based environments. You MUST use Homebrew to install FreeTDS on the Mac. MacPorts is evil and will not install FreeTDS correctly. Installation of Homebrew is covered excellently in the Homebrew installation docs:<br />
<a href="https://github.com/mxcl/homebrew/wiki/installation">https://github.com/mxcl/homebrew/wiki/installation</a></p>
<p>Edit the FreeTDS configuration for the FreeTDS library:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">brew edit freetds</pre></div></div>

<p>Replace from &#8220;def install&#8221;  to &#8220;end &#8221; with:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#9966CC; font-weight:bold;">def</span> install 
  args = <span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#996600;">&quot;--prefix=#{prefix}&quot;</span>,
          <span style="color:#996600;">&quot;--with-tdsver=7.0&quot;</span>,
          <span style="color:#996600;">&quot;--enable-msdblib&quot;</span>,
          <span style="color:#996600;">&quot;--mandir=#{man}&quot;</span><span style="color:#006600; font-weight:bold;">&#93;</span>
&nbsp;
  <span style="color:#CC0066; font-weight:bold;">system</span> <span style="color:#996600;">&quot;./configure&quot;</span>, <span style="color:#006600; font-weight:bold;">*</span>args
  <span style="color:#CC0066; font-weight:bold;">system</span> <span style="color:#996600;">'make'</span>
  <span style="color:#CC0066; font-weight:bold;">system</span> <span style="color:#996600;">'make install'</span>
<span style="color:#9966CC; font-weight:bold;">end</span></pre></div></div>

<p>Install FreeTDS:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">brew <span style="color: #c20cb9; font-weight: bold;">install</span> freetds</pre></div></div>

<p>Add an entry to the bottom of your freetds.conf for your MSSQL Server. This file is found at /usr/local/etc/freetds.conf:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">&#91;</span>my_sql_server<span style="color: #7a0874; font-weight: bold;">&#93;</span> 
host = <span style="color: #000000; font-weight: bold;">&lt;</span>hostip<span style="color: #000000; font-weight: bold;">&gt;</span>
port = <span style="color: #000000;">1433</span> 
tds version = <span style="color: #000000;">7.0</span></pre></div></div>

<p>Add the TinyTDS and activerecord-sqlserver-adapter gems to your Rails Gemfile.</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;">  gem <span style="color:#996600;">'tiny_tds'</span>
  gem <span style="color:#996600;">'activerecord-sqlserver-adapter'</span>, :<span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#0000FF; font-weight:bold;">false</span></pre></div></div>

<p>Run bundler to install the gems:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">bundle <span style="color: #c20cb9; font-weight: bold;">install</span></pre></div></div>

<p>Finally, add the connection to your <em>database.yml</em> file:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;">development:
  adapter: sqlserver
  mode: dblib
  dataserver: my_sql_server
  database: my_database_name
  username: my_username
  password: xxxxx
  timeout: <span style="color:#006666;">5000</span></pre></div></div>

<p>A reference for installing UnixODBC (which I don&#8217;t recommend), you can follow this tutorial:<br />
<a href="http://stuartc.posterous.com/mssql2005-on-rails-on-snow-leopard-the-easies">MSSQL2005 on Rails on Snow Leopard (the easiest way I know how.)</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://honoluluhacker.com/2011/01/13/using-tinytds-to-connect-to-sql-server-with-ruby-on-rails-3-for-mac-osx/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Has comedy changed as a result of the internet?</title>
		<link>http://honoluluhacker.com/2010/02/21/has-comedy-as-a-result-of-the-internet/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=has-comedy-as-a-result-of-the-internet</link>
		<comments>http://honoluluhacker.com/2010/02/21/has-comedy-as-a-result-of-the-internet/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 04:40:56 +0000</pubDate>
		<dc:creator>kenglish</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://honoluluhacker.com/?p=1050</guid>
		<description><![CDATA[Let&#8217;s think about how comedy has changed since we&#8217;ve started consuming digital video on the internet. Prior to the Internet, comedy media was consumed primarily through movies and television. However, the internet has made comedy infinitely more accessible and thus we&#8217;ve been laughing a lot harder these days at a lot of different things. To [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s think about how comedy has changed since we&#8217;ve started consuming digital video on the internet. Prior to the Internet, comedy media was consumed primarily through movies and television. However, the internet has made comedy infinitely more accessible and thus we&#8217;ve been laughing a lot harder these days at a lot of different things. </p>
<p>To begin, what is Comedy? The following summarizes a popular book about comedy:</p>
<p><a href="http://www.amazon.com/Comedy-Writing-Secrets-Best-Selling-Think/dp/1582973571/ref=sr_1_1?ie=UTF8&#038;s=books&#038;qid=1266906094&#038;sr=8-1">Comedy Writing Secrets by Mel Helitzer</a></p>
<p>Why We laugh?<br />
  The two main motivations:</p>
<ul>
<li>We laugh out of surprise.</li>
<li>We laugh when we feel superior.</li>
</ul>
<p>  There are six additional motivations each which supports the first two.</p>
<ul>
<li>We laugh out of Instinct</li>
<li>We laugh at incongruity</li>
<li>We laugh out of ambivalence</li>
<li>We laugh out of release</li>
<li>We laugh when we solve a puzzle</li>
<li>We laugh to regress.</li>
</ul>
<p>Recipe for Humor:</p>
<p>The following six elements must be present for any humor to work:</p>
<ul>
<li>Target</li>
<li>Hostility</li>
<li>Realism</li>
<li>Exaggeration</li>
<li>Emotion</li>
<li>Surprise</li>
</ul>
<p>These elements have not changed much, what has changed is the content. </p>
<p>How do I consume great comedy vidoes?</p>
<ul>
<li><a href="http://www.comedycentral.com/tosh.0/">Tosh.O Blog</a></li>
<li><a href="http://reddit.tv/">Redit.tv</a> (click Happy)</li>
</ul>
<p>This is my internet Comedy Highlight real. Since I won&#8217;t have time to show all these videos in class, I hope that the other students will visit my blog and watch them on their own time.</p>
<p><strong>Early history:</strong><br />
<a href="http://www.atom.com/fun_games/gangsta_rap/">Star Wars Gangsta Rap</a>: The most popular flash-video of all time</p>
<p>Lenny Bruce, Eddy Murphy, Richard Pryor were all considered vulgar for their time. Now, notice that vulgarity is almost expected in interactions on the internet.</p>
<p>Popular Targets: Technology and Technology Workers</p>
<ul>
<li><a href="http://www.collegehumor.com/video:1907543">We didn&#8217;t start the flame war</a></li>
<li><a href="http://www.youtube.com/watch?v=W8_Kfjo3VjU">The Website is Down: Web dude vs Sales Guy</a> </li>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/yg7Xh0m_Oco&#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/yg7Xh0m_Oco&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object><br />
Mac Parody
</ul>
<p>There is a hostility towards traditional media. Even though we&#8217;re consuming more traditional media than ever, it&#8217;s easier to make fun of it now:<br />
<object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/YtGSXMuWMR4&#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/YtGSXMuWMR4&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object><br />
Charlie Brooker &#8211; How To Report The News<br />
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/3eooXNd0heM&#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/3eooXNd0heM&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object><br />
Auto-tune the news with Joe Biden singing</p>
<p>Mixing Media:</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/luVjkTEIoJc&#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/luVjkTEIoJc&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object><br />
Star Trek and Monty Python.<br />
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/Xzkd_m4ivmc&#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/Xzkd_m4ivmc&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object><br />
Don&#8217;t Taze me and MC Hammer.</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/iORpLPmFfHU&#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/iORpLPmFfHU&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object><br />
Kesha/cops parody uses many internet based images.</p>
<p>Target/ Hostility: Popular Movies<br />
<object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/1bXeQ7baYEE&#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/1bXeQ7baYEE&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object><br />
Twilight &#8216;New Moon&#8217; in one minute.</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/zzoeEdW-EDQ&#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/zzoeEdW-EDQ&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object><br />
How Star Wars should have ended.</p>
<p>Realism (Fail Videos) Top 100 Fail Clips of 2009:<br />
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/QNbpIwS_kCA&#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/QNbpIwS_kCA&#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>Tons of Suprises:<br />
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/judWB4Bn-3c&#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/judWB4Bn-3c&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object><br />
 Misheard Metal Lyrics.</p>
<p>Digital video can be used to parody how ridiculous Television video is. Does this render Television obsolete or<br />
engage us more in it. For example, before watching the Rap Chop video, I knew very little about the slap chop. Now I always check it out in the &#8220;As seen on TV&#8221; store.<br />
Slap Chop Video.</p>
<p><a href="http://www.rooftopcomedy.com/watch/FacebookBreastFeeding">Rooftop Comedy</a> introduces us to new comedians in short, easy to consume forms.</p>
<p>Comedy by Consensus? Pride of origination?</p>
<p> So, has comedy changed? Not much. Our tolerance for bad comedy has certainly gone. Nothing is is off limits these days and technology has given comedy infinite more possibilities to expand.</p>
]]></content:encoded>
			<wfw:commentRss>http://honoluluhacker.com/2010/02/21/has-comedy-as-a-result-of-the-internet/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>svn2git for real men</title>
		<link>http://honoluluhacker.com/2009/05/21/svn2git-for-real-men/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=svn2git-for-real-men</link>
		<comments>http://honoluluhacker.com/2009/05/21/svn2git-for-real-men/#comments</comments>
		<pubDate>Thu, 21 May 2009 21:43:20 +0000</pubDate>
		<dc:creator>kenglish</dc:creator>
				<category><![CDATA[Mysql]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://honoluluhacker.com/?p=675</guid>
		<description><![CDATA[On the server, set up the remote repositories: 1 2 3 mkdir project1.git cd project1.git git --bare init Here&#8217;s a script to do them all in one shot, just modifiy the REPOS variable: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 #!/bin/sh &#160; REPOS=&#34;project1 project2 project3 project4&#34; &#160; for [...]]]></description>
			<content:encoded><![CDATA[<p>On the server, set up the remote repositories:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mkdir</span> project1.git
<span style="color: #7a0874; font-weight: bold;">cd</span> project1.git
<span style="color: #c20cb9; font-weight: bold;">git</span> <span style="color: #660033;">--bare</span> init</pre></td></tr></table></div>

<p>Here&#8217;s a script to do them all in one shot, just modifiy the REPOS variable:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/sh</span>
&nbsp;
<span style="color: #007800;">REPOS</span>=<span style="color: #ff0000;">&quot;project1 project2 project3 project4&quot;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">for</span> repo <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #007800;">$REPOS</span>
<span style="color: #000000; font-weight: bold;">do</span>
    <span style="color: #007800;">repo_dir</span>=<span style="color: #ff0000;">&quot;<span style="color: #007800;">$repo</span>.git&quot;</span>
    <span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #660033;">-p</span> <span style="color: #007800;">$repo_dir</span>
    <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Creating git directory  <span style="color: #007800;">$repo_dir</span>&quot;</span>
    <span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #007800;">$repo_dir</span>
    <span style="color: #c20cb9; font-weight: bold;">git</span> <span style="color: #660033;">--bare</span> init
    <span style="color: #7a0874; font-weight: bold;">cd</span> ..
<span style="color: #000000; font-weight: bold;">done</span>
<span style="color: #7a0874; font-weight: bold;">exit</span></pre></td></tr></table></div>

<p>Now, on the workstation:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> git-core <span style="color: #c20cb9; font-weight: bold;">git-svn</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> gem <span style="color: #c20cb9; font-weight: bold;">install</span> nirvdrum-svn2git <span style="color: #660033;">--source</span> http:<span style="color: #000000; font-weight: bold;">//</span>gems.github.com</pre></td></tr></table></div>

<p>Create the authors.txt in the following format:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">dburger = David Burger <span style="color: #000000; font-weight: bold;">&lt;</span>email<span style="color: #000000; font-weight: bold;">@</span>email.com<span style="color: #000000; font-weight: bold;">&gt;</span>
jdoe = John Doe <span style="color: #000000; font-weight: bold;">&lt;</span>jdoe<span style="color: #000000; font-weight: bold;">@</span>doe.com<span style="color: #000000; font-weight: bold;">&gt;</span></pre></td></tr></table></div>

<p>For one project, do the following:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mkdir</span> project1
<span style="color: #7a0874; font-weight: bold;">cd</span> project1
svn2git  https:<span style="color: #000000; font-weight: bold;">//</span>svn.myserver.org<span style="color: #000000; font-weight: bold;">/</span>repos<span style="color: #000000; font-weight: bold;">/</span>ses <span style="color: #660033;">--authors</span> ..<span style="color: #000000; font-weight: bold;">/</span>authors.txt
<span style="color: #c20cb9; font-weight: bold;">git</span> remote add origin hailstorm.myserver.org:<span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>kenglish<span style="color: #000000; font-weight: bold;">/</span>repotest<span style="color: #000000; font-weight: bold;">/</span>ses.git
<span style="color: #c20cb9; font-weight: bold;">git</span> push <span style="color: #660033;">--all</span></pre></td></tr></table></div>

<p>The script:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/sh</span>
&nbsp;
<span style="color: #007800;">REPOS</span>=<span style="color: #ff0000;">&quot;project1 project2 project3 project4&quot;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">for</span> repo <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #007800;">$REPOS</span>
<span style="color: #000000; font-weight: bold;">do</span>
    <span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #007800;">$repo</span>
    <span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #007800;">$repo</span>
&nbsp;
    <span style="color: #007800;">cmd</span>=<span style="color: #ff0000;">&quot;svn2git https://svn.myserver.org/repos/<span style="color: #007800;">$repo</span> --authors ../authors.txt&quot;</span>
    <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #007800;">$cmd</span>
    <span style="color: #000000; font-weight: bold;">`</span><span style="color: #007800;">$cmd</span><span style="color: #000000; font-weight: bold;">`</span>
    <span style="color: #007800;">cmd</span>=<span style="color: #ff0000;">&quot;git remote add origin hailstorm.myserver.org:/home/kenglish/repotest/<span style="color: #007800;">$repo</span>.git&quot;</span>
    <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #007800;">$cmd</span>
    <span style="color: #000000; font-weight: bold;">`</span><span style="color: #007800;">$cmd</span><span style="color: #000000; font-weight: bold;">`</span>
    <span style="color: #007800;">cmd</span>=<span style="color: #ff0000;">&quot;git push --all&quot;</span>
    <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #007800;">$cmd</span>
    <span style="color: #000000; font-weight: bold;">`</span><span style="color: #007800;">$cmd</span><span style="color: #000000; font-weight: bold;">`</span>
    <span style="color: #7a0874; font-weight: bold;">cd</span> ..
    <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;DONE EXPORTING <span style="color: #007800;">$repo</span>&quot;</span> 
<span style="color: #000000; font-weight: bold;">done</span>
<span style="color: #7a0874; font-weight: bold;">exit</span></pre></td></tr></table></div>

<p>Don&#8217;t diss the shell script, I leave in the echoes in case i need to test stuff out&#8230;</p>
<p>Note: Another option for the authors file is place it in your home directory .svn2git/authors (e.g. /home/kenglish/.svn2git/authors). Svn2git will automatically detect it and use it.<br />
Any questions? Comments?</p>
]]></content:encoded>
			<wfw:commentRss>http://honoluluhacker.com/2009/05/21/svn2git-for-real-men/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Weekly Aggregate, April 20-24</title>
		<link>http://honoluluhacker.com/2009/04/24/weekly-aggregate-april-20-24/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=weekly-aggregate-april-20-24</link>
		<comments>http://honoluluhacker.com/2009/04/24/weekly-aggregate-april-20-24/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 01:04:47 +0000</pubDate>
		<dc:creator>kenglish</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://honoluluhacker.com/?p=670</guid>
		<description><![CDATA[Not too much going on this week. Sun and Oracle Does anyone not know about this? Is anyone nervous? FacebookStatus.org Hilarious! I&#8217;m gonna use the Facebook status generator for a week as a social experiment. Ubuntu charges forward with 9.04 Great stuff. Mac people, stop trying to convert me! Sponsor Aloha on Rails This is [...]]]></description>
			<content:encoded><![CDATA[<p>Not too much going on this week.</p>
<p><a href="http://www.sun.com/third-party/global/oracle/index.jsp">Sun and Oracle</a><br />
Does anyone not know about this? Is anyone nervous?</p>
<p><a href="http://www.facebookstatus.org">FacebookStatus.org</a><br />
Hilarious! I&#8217;m gonna use the <a href="http://www.facebookstatus.org/funny-facebook-status-generator/">Facebook status generator</a> for a week as a social experiment.</p>
<p><a href="http://arstechnica.com/open-source/news/2009/04/the-jackalope-arrives-ubuntu-904-officially-released.ars">Ubuntu charges forward with 9.04</a><br />
Great stuff. Mac people, stop trying to convert me!</p>
<p><a href="http://www.alohaonrails.com/sponsorship/">Sponsor Aloha on Rails</a><br />
This is going to be the best conference ever. If you haven&#8217;t been to Oahu, this is your perfect excuse to come. October is the best time to come.</p>
<p>Is this one viral?<br />
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/d8r_-Ktth3w&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en&#038;feature=player_embedded&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/d8r_-Ktth3w&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://honoluluhacker.com/2009/04/24/weekly-aggregate-april-20-24/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Weekly Aggregate, April 13-17</title>
		<link>http://honoluluhacker.com/2009/04/17/weekly-aggregate-april-13-17/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=weekly-aggregate-april-13-17</link>
		<comments>http://honoluluhacker.com/2009/04/17/weekly-aggregate-april-13-17/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 18:57:33 +0000</pubDate>
		<dc:creator>kenglish</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://honoluluhacker.com/?p=653</guid>
		<description><![CDATA[Dad smashes daughters phone after 10,000 texts My high-quality, thought-provoking story of the weak. 10,000 texts in one month. That&#8217;s 333.333 text per day. Assuming an 8 hour sleep schedule, that&#8217;s 20 texts an hour. Seriously. That&#8217;s not that much???? Calm down, DAD! Jruby on Rails on Google App Engine Some people work fast! Why [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://news.cnet.com/dad-takes-hammer-to-kids-cell-for-10000-texts/?tag=feed&#038;subj=Crave&#038;part=sphere">Dad smashes daughters phone after 10,000 texts</a><br />
My high-quality, thought-provoking story of the weak. 10,000 texts in one month. That&#8217;s 333.333 text per day. Assuming an 8 hour sleep schedule, that&#8217;s 20 texts an hour. Seriously. That&#8217;s not that much???? Calm down, DAD!</p>
<p><a href="http://olabini.com/blog/2009/04/jruby-on-rails-on-google-app-engine/">Jruby on Rails on Google App Engine</a><br />
Some people work fast!</p>
<p><a href="http://marcostoledo.com/why-i-dont-object-to-arraysum/">Why I don’t object to Array#sum</a> and <a href="http://github.com/raganwald/homoiconic/blob/master/2009-04-09/my_objection_to_sum.md#readme">My Objections to Array#sum</a><br />
Great discussion here. Start by checking the <a href="http://www.reddit.com/r/ruby/comments/8cqvi/why_i_dont_object_to_arraysum/">reddit comments</a> on the link.  I&#8217;m glad they brought this issue to the forefront. My next blog post will detail <a href="http://www.opensecrets.org/orgs/summary.php?id=D000000085">how my vote can be bought</a> for or against Array#sum. As you may know, <a href="http://www.opensecrets.org/orgs/summary.php?id=D000000071">anything can be bought.</a></p>
<p><a href="http://sdruby.com/podcast">San Diego Ruby Podcast</a><br />
In case you haven&#8217;t seen it, these guys have some videos of their presentations. There&#8217;s  a choppy <a href="http://thoughtbot.com/projects/paperclip">Paperclip</a> plugin <a href="http://sdruby.com/video/054_paperclip.m4v">Presentation</a>. I&#8217;m all about Paperclip now.</p>
]]></content:encoded>
			<wfw:commentRss>http://honoluluhacker.com/2009/04/17/weekly-aggregate-april-13-17/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://sdruby.com/video/054_paperclip.m4v" length="236030566" type="video/mp4" />
		</item>
		<item>
		<title>Weekly Aggregate, April 6-10</title>
		<link>http://honoluluhacker.com/2009/04/10/weekly-aggregate-april-6-10/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=weekly-aggregate-april-6-10</link>
		<comments>http://honoluluhacker.com/2009/04/10/weekly-aggregate-april-6-10/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 19:38:13 +0000</pubDate>
		<dc:creator>kenglish</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://honoluluhacker.com/?p=649</guid>
		<description><![CDATA[ALOHA ON RAILS It&#8217;s official. We have a date: October 5-6, 2009. All the Rails geeks will be packing their board shorts and sunscreen to come to our awesome island. Seth didn&#8217;t hold back, settled on the Marriot in Waikiki. It&#8217;s 1 block from the beach. App Engine Java Overview As predicted here, Java will [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.alohaonrails.com/">ALOHA ON RAILS</a><br />
It&#8217;s official. We have a date: October 5-6, 2009. All the Rails geeks will be packing their board shorts and sunscreen to come to our awesome island. Seth didn&#8217;t hold back, settled on the Marriot in Waikiki. It&#8217;s 1 block from the beach. </p>
<p><a href="http://code.google.com/appengine/docs/java/overview.html">App Engine Java Overview</a><br />
As predicted here, Java will now be supported by the Google App Engine. Now, we just need a Java version of Mysql and everything will run like it does at home&#8230;</p>
<p><a href="http://www.betanews.com/article/German-govt-fines-Microsoft-for-influencing-Office-resale-prices/1239206434">Microsoft fined by German, 9 Million Euros for monopoly style pricing</a><br />
I wonder if paying out fines for anti-trust fines is built into Microsoft cost structure. It must be by now. Matt Asay talks about how much influence Microsoft can have by<a href="http://news.cnet.com/8301-13505_3-10214919-16.html?part=rss&#038;subj=news&#038;tag=2547-1_3-0-20"> controlling the user&#8217;s first experience on the web.</a> Too bad <a href="http://www.msversus.org/">msversus.org</a> doesn&#8217;t keep his site up to date anymore but if you haven&#8217;t read it, check it out NOW.</p>
]]></content:encoded>
			<wfw:commentRss>http://honoluluhacker.com/2009/04/10/weekly-aggregate-april-6-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Weekly Aggregate for March 30 &#8211; April 3</title>
		<link>http://honoluluhacker.com/2009/04/03/weekly-aggregate-for-march-30-april-3/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=weekly-aggregate-for-march-30-april-3</link>
		<comments>http://honoluluhacker.com/2009/04/03/weekly-aggregate-for-march-30-april-3/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 18:14:32 +0000</pubDate>
		<dc:creator>kenglish</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://honoluluhacker.com/?p=631</guid>
		<description><![CDATA[Google Contact Found here:www.google.com/contacts. I have a lot of my contacts in my Yahoo! address book. I am slowing moving them over to this one. TechCrunch Layoff Tracker This is eerily reminiscent of the old fuckedcompany.com. That Pud guy was pretty damn funny. Japan&#8217;s Wacky Indoor Beach Do you think the wave is more crowded [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.readwriteweb.com/archives/why_you_have_to_use_the_standalone_google_contacts.php">Google Contact</a><br />
Found here:<a href="http://www.google.com/contacts">www.google.com/contacts</a>. I have a lot of my contacts in my Yahoo! address book. I am slowing moving them over to this one. </p>
<p><a href="http://www.techcrunch.com/layoffs/">TechCrunch Layoff Tracker</a><br />
This is eerily reminiscent of the old <a href="http://fuckedcompany.com">fuckedcompany.com</a>. That Pud guy was pretty damn funny. </p>
<p><a href="http://www.weirdasianews.com/2009/03/31/japans-indoor-beach-surf/">Japan&#8217;s Wacky Indoor Beach</a><br />
Do you think the wave is more crowded that Waikiki? I wonder why come here when they can just go to this awesome place!<br />
More pictures of the <a href="http://japansugoi.com/wordpress/japans-wacky-indoor-beach-attraction/">Miyazaki Ocean Dome</a>.</p>
<p><a href="http://www.jetbrains.com/ruby/index.html">RubyMine 1.0 Beta</a><br />
I found this on the <a href="http://feedproxy.google.com/~r/RubyInside/~3/xdjlbheWmDY/rubymine-1-beta-intellij-ruby-and-rails-ide-1675.html">a Ruby Inside post</a> I&#8217;m gonna try to use it for a week and see how it goes. The only problem is, if I&#8217;m using flex builder in Eclipse, why not use Aptana?</p>
<p><a href="http://labs.mozilla.com/2008/08/introducing-ubiquity/">Playing with Ubiquity</a><br />
My co-worker turned me on to Ubiquity, an amazing Firefox Plugin. If you don&#8217;t know what ubiquity is, watch this video. Be prepare to be blown away:<br />
<object width="400" height="298"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=1561578&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=1561578&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="298"></embed></object><br /><a href="http://vimeo.com/1561578">Ubiquity for Firefox</a> from <a href="http://vimeo.com/user532161">Aza Raskin</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://honoluluhacker.com/2009/04/03/weekly-aggregate-for-march-30-april-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Weekly Aggregate for March 23-27</title>
		<link>http://honoluluhacker.com/2009/03/27/weekly-aggregate-for-march-23-27/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=weekly-aggregate-for-march-23-27</link>
		<comments>http://honoluluhacker.com/2009/03/27/weekly-aggregate-for-march-23-27/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 14:38:56 +0000</pubDate>
		<dc:creator>kenglish</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://honoluluhacker.com/?p=586</guid>
		<description><![CDATA[&#8216;Jaunty Jackalope&#8217; Ubuntu springs into beta Sounds like some good new features for my OS of choice. Full details here. Java: Coming Soon to Google’s App Engine Sladd got me all excited about App Engine last year. However, we quickly discovered that coming from Rails, using Python (Django or Pylons) is like going back to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://news.cnet.com/8301-1001_3-10205896-92.html?part=rss&#038;subj=news&#038;tag=2547-1_3-0-20">&#8216;Jaunty Jackalope&#8217; Ubuntu springs into beta</a><br />
Sounds like some good new features for my OS of choice. Full details <a href="http://www.ubuntu.com/testing/jaunty/beta">here</a>. </p>
<p><a href="http://gigaom.com/2009/03/26/java-coming-soon-to-googles-app-engine/">Java: Coming Soon to Google’s App Engine</a><br />
Sladd got me all excited about App Engine last year. However, we quickly discovered that coming from Rails, using Python (Django or Pylons) is like going back to FoxPro. If Google&#8217;s App Engine allows Java, we can use JRuby instead of this ridiculous hack for <a href="http://hackety.org/2008/05/05/sneakingRubyThroughGoogleAppEngine.html">Sneaking Ruby Through Google App Engine (and Other Strictly Python Places.)</a> </p>
<p><a href="http://www.open-bio.org/wiki/Google_Summer_of_Code_2009">Open Bio Google Summer of Code</a><br />
If you are student and jobless, apply to Google Summer or Code. I&#8217;ve heard great things about it.</p>
<p><a href="http://www.readwriteweb.com/archives/reqall_goes_pro_smarter_task_management_for_the_ip.php">ReQall Goes Pro: Smarter Task Management for the iPhone</a><br />
Geo-based tasks and task reminders. This was Tyler&#8217;s idea and these guys stole it. That&#8217;s the downside of being jacked into the Matrix: others can read your thoughts. </p>
<p><a href="http://www.phpwomen.org/">Php Women</a><br />
I would have never switched to Ruby if I knew that chicks dig PHP. They need to add a Personals section. I could relate to  &#8220;<a href="http://www.phpwomen.org/wordpress/2008/12/04/phpnw-experiences-of-a-conference-virgin/">Experiences of a conference virgin</a>&#8221; because, sadly, I too am a conferences virgin. </p>
<p><a href="http://go.shopsansa.com/content/slotplayer">Sansa SlotMusic for $20</a>.<br />
Screw you, Ipod Shuffle! Seriously, this thing could be a good audio book buddy.<br />
<object width="364" height="280"><param name="movie" value="http://www.cnet.com/av/video/flv/universalPlayer/universalSmall.swf" /><param name="wmode" value="transparent" /><param name="allowFullScreen" value="true" /><param name="FlashVars" value="playerType=embedded&#038;type=id&#038;value=50004147" /><embed src="http://www.cnet.com/av/video/flv/universalPlayer/universalSmall.swf" type="application/x-shockwave-flash" wmode="transparent" width="364" height="280" allowFullScreen="true" FlashVars="playerType=embedded&#038;type=id&#038;value=50004147" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://honoluluhacker.com/2009/03/27/weekly-aggregate-for-march-23-27/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Weekly Aggregate for March 16-20</title>
		<link>http://honoluluhacker.com/2009/03/20/weekly-aggregate-for-march-16-20/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=weekly-aggregate-for-march-16-20</link>
		<comments>http://honoluluhacker.com/2009/03/20/weekly-aggregate-for-march-16-20/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 17:34:16 +0000</pubDate>
		<dc:creator>kenglish</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://honoluluhacker.com/?p=546</guid>
		<description><![CDATA[I&#8217;m gonna try to post a running commentary on tech news once a week&#8230;. What IBM might gain by buying Sun Microsystems Interesting article. Too bad we have Dells and Apples everywhere. I&#8217;d like to see a demographic breakdown of who buys IBM and Sun servers. I would guess that people that came into the [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m gonna try to post a running commentary on tech news once a week&#8230;.</p>
<p><a href="http://arstechnica.com/business/news/2009/03/report-ibm-eyes-sun.ars">What IBM might gain by buying Sun Microsystems</a><br />
Interesting article. Too bad we have Dells and Apples everywhere. I&#8217;d like to see a demographic breakdown of who buys IBM and Sun servers. I would guess that people that came into the industry in the 70s and 80s are all over IBM while the early dot-commers from the 90s think that Sun is the bomb. Tools like me just want a Dell that they can throw Linux on. I know, I know: what about all those cool enterprise wide applications (that nobody knows how to use or install.)</p>
<p><a href="http://www.betanews.com/article/Lenovo-Pocket-Yoga-a-new-form-factor-in-the-making/1237408908">Lenova&#8217;s new Pocket Yoga</a><br />
I could see it as a good roadside hacking device as long as it runs Linux. I like the name too. Honestly, I was expecting to a see a small version of my first Yoga instructor, Vanessa. She used to make us hold poses for 10-15 minutes at a time. A pocket version of her would really help with my posture. </p>
<p><a href="http://lifehacker.com/5173441/android-versus-iphone-30-the-showdown">Android vs IPhone 3.0 Showdown</a><br />
The only way my blog will ever go viral is if I mention the iPhone. I&#8217;m not much of a smartphone guy but this a good read.</p>
<p><a href="http://gigaom.com/2009/03/19/rackables-new-servers-like-it-hot/">Rackable’s New Servers Like It Hot</a><br />
It&#8217;s amazing where server technology is going. Check out this one, it can run at 104 degrees. Boom! I hope never have to set up another server. Just have some guy maintain these and I&#8217;ll access everything in the cloud.</p>
<p><a href="https://www.lendingclub.com">Lending Club</a><br />
Wow. Social Lending. This is a pretty neat concept. They only lend to people with FICA scores over 600 and claim to only have a 3% default rate.</p>
]]></content:encoded>
			<wfw:commentRss>http://honoluluhacker.com/2009/03/20/weekly-aggregate-for-march-16-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>config.gem: Unpacked gem ezcrypto-0.7 in vendor/gems has no specification file. Run &#8216;rake gems:refresh_specs&#8217; to fix this.</title>
		<link>http://honoluluhacker.com/2009/03/18/configgem-unpacked-gem-ezcrypto-07-in-vendorgems-has-no-specification-file-run-rake-gemsrefresh_specs-to-fix-this/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=configgem-unpacked-gem-ezcrypto-07-in-vendorgems-has-no-specification-file-run-rake-gemsrefresh_specs-to-fix-this</link>
		<comments>http://honoluluhacker.com/2009/03/18/configgem-unpacked-gem-ezcrypto-07-in-vendorgems-has-no-specification-file-run-rake-gemsrefresh_specs-to-fix-this/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 18:30:01 +0000</pubDate>
		<dc:creator>kenglish</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://honoluluhacker.com/?p=548</guid>
		<description><![CDATA[Thanks to Giles, I finally found the answer to this problem. Open config/environment.rb and add &#8220;Rails::VendorGemSourceIndex.silence_spec_warnings = true&#8221; 1 2 3 4 5 6 RAILS_GEM_VERSION = '2.2.2' unless defined? RAILS_GEM_VERSION &#160; # Bootstrap the Rails environment, frameworks, and default configuration require File.join&#40;File.dirname&#40;__FILE__&#41;, 'boot'&#41; &#160; Rails::VendorGemSourceIndex.silence_spec_warnings = true You can put an awesome comment like this [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to Giles, I finally found the answer to this problem. </p>
<p>Open config/environment.rb and add &#8220;Rails::VendorGemSourceIndex.silence_spec_warnings = true&#8221;</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td class="code"><pre class="ruby" style="font-family:monospace;">RAILS_GEM_VERSION = <span style="color:#996600;">'2.2.2'</span> <span style="color:#9966CC; font-weight:bold;">unless</span> <span style="color:#9966CC; font-weight:bold;">defined</span>? RAILS_GEM_VERSION
&nbsp;
<span style="color:#008000; font-style:italic;"># Bootstrap the Rails environment, frameworks, and default configuration</span>
<span style="color:#CC0066; font-weight:bold;">require</span> <span style="color:#CC00FF; font-weight:bold;">File</span>.<span style="color:#9900CC;">join</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#CC00FF; font-weight:bold;">File</span>.<span style="color:#9900CC;">dirname</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF; font-weight:bold;">__FILE__</span><span style="color:#006600; font-weight:bold;">&#41;</span>, <span style="color:#996600;">'boot'</span><span style="color:#006600; font-weight:bold;">&#41;</span>
&nbsp;
<span style="color:#6666ff; font-weight:bold;">Rails::VendorGemSourceIndex</span>.<span style="color:#9900CC;">silence_spec_warnings</span> = <span style="color:#0000FF; font-weight:bold;">true</span></pre></td></tr></table></div>

<p>You can put an awesome comment like this guy did:</p>
<p><a href="http://gilesbowkett.blogspot.com/2009/03/configgem-unpacked-gem-whatever-in.html">http://gilesbowkett.blogspot.com/2009/03/configgem-unpacked-gem-whatever-in.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://honoluluhacker.com/2009/03/18/configgem-unpacked-gem-ezcrypto-07-in-vendorgems-has-no-specification-file-run-rake-gemsrefresh_specs-to-fix-this/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

