<!doctype html>
<html lang="en">
	<head>
        
                <title>Ruby on Rails Consulting and Development: Norbauer Inc</title>
        

        
            <meta name="keywords" content="rails consulting, rails consultants, ruby, development">
        
        
        
                <meta name="description" content='Norbauer: Ruby on Rails Web Development Consulting and Development.'>
        

        <meta charset="utf-8">
        <meta name="robots" content="index, follow, noarchive">
       
        <link href='http://norbauer.com/favicon.ico' rel='shortcut icon' type='image/ico' />
        <link href='http://norbauer.com/images/favicon.png' rel='icon' type='image/png' />
        
        <script type="text/javascript">
        // Google analytics
          var _gaq = _gaq || [];
          _gaq.push(['_setAccount', 'UA-25177302-2']);
          _gaq.push(['_trackPageview']);

          (function() {
            var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
            ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
            var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
          })();
        </script>
                
        <link href="/assets/stylesheets/legacy/rails-consulting-screen.css" media="screen" rel="stylesheet" type="text/css" />
        <link href="/assets/stylesheets/legacy/rails-consulting-print.css" media="print" rel="stylesheet" type="text/css" />
        
        
                <link href="/assets/stylesheets/legacy/coderay.css" media="screen" rel="stylesheet" type="text/css" />
        
</head>

	<body id='code_landing_page'>
		<div id='nav_bar'>
	<div id='nav_content_area'>
		<div id='logo'>
			<a href="/"><img alt="Norbauer Apps" src="/assets/images/legacy/rails-consulting/logo.png" title="GTD and Research Productivity Software for Windows" /></a>
		</div>
		
		<ul id='nav_controls'>
			<li class='section_title'>
				<a href="/rails-consulting"><img alt="Ruby on Rails Consulting and Consultants" src="/assets/images/legacy/rails-consulting/nav_consulting.png" title="Ruby on Rails development" /></a>
			</li>
			<li class='section_title'>
				<a href="/rails-consulting/ideas"><img alt="Ideas Blog" src="/assets/images/legacy/rails-consulting/nav_ideas.png" title="Ideas blog" /></a>
			</li>
			<li class='section_title'>
				<a href="/rails-consulting/code"><img alt="Code Blog" src="/assets/images/legacy/rails-consulting/nav_code.png" title="Our open-source Ruby projects and software snippets" /></a>
			</li>
			<li class='section_title'>
				<a href="/rails-consulting"><img alt="Contact" src="/assets/images/legacy/rails-consulting/nav_contact.png" title="Contact us." /></a>
			</li>
		</ul>
	</div>

	<div id='section_indicator_and_nav_drop_shadow_bar'>
		
			<div id='section_indicator'>
				<img alt="Section_indicator" class="code" src="/assets/images/legacy/rails-consulting/section_indicator.png" />
			</div>
		
	</div>
</div>
		<div id='paper_sheet'>
			<div id='paper_sheet_contents'>
				
					
	<img alt="Our laboratory of open-source Ruby and Rails software." id="masthead" src="/assets/images/legacy/rails-consulting/masthead_code.png" title="Experimentation and investigation are what make good software craftspeople." />
	<div id='subheader'>
		<img alt="Ideas blog: on software, productivity, and design." id="ideas_blurb" src="/assets/images/legacy/rails-consulting/software_design.gif" />
		<img alt="We have written parts of Ruby on Rails, ActiveMerchant, and a number of other open-source projects." id="we_have_written_text" src="/assets/images/legacy/rails-consulting/we_have_written.png" />
	</div>

				

				<div id='paper_sheet_margin'>
					<div id='content'>
						<div id='column'>
	<div class='note_summary note_content'>
		<h3><a href='/rails-consulting/notes/code-challenge-combinations'>Code Challenge: Combinations</a></h3>
		<p class='byline'>
			<span class='author'>By Jonathan Dance</a></span>
		</p>

		<p>Given an array of arrays of possible values, enumerate all combinations that can occur, preserving order. For instance:</p>
		<p>Given: <code>[[1,2,3], [4,5,6], [7,8,9]]</code>, calculate the same result as the code below, but do so with an arbitrary size array:</p>
		<pre>combos = []&#x000A;[1,2,3].each do |v1|&#x000A;  [4,5,6].each do |v2|&#x000A;    [7,8,9].each do |v3|&#x000A;      combos &lt;&lt; [v1, v2, v3]&#x000A;    end&#x000A;  end&#x000A;end&#x000A;combos</pre>
		<p>Entries can be written using one or more functions, and may optionally be written as a class extension (i.e. Array).</p>
		<p>Points will be given on technique, performance/speed, and <strike>difficulty of the program</strike> style. Winner receives a gold medal made of pure awesome. Submit <a href="http://norbauer.com/notebooks/code/notes/code-challenge-combinations">a comment</a> with a link to a <a href="http://gist.github.com">gist of your code</a> to enter. Comments are moderated, so your entry is safe until a winner is chosen.</p>
	</div>

	<div class='note_summary note_content'>
		<h3><a href='/rails-consulting/notes/announcing-a-dns-tool-without-the-bullshit'>Announcing a DNS tool without the bullshit</a></h3>
		<p class='byline'>
			<span class='author'>By Jonathan Dance</a></span>
		</p>

		<p>I&#8217;ve created a simple <span class="caps">DNS</span> tool that allows you to easily link <span class="caps">DNS</span> results to share with others. Using a third-party tool is a great way to show that the <span class="caps">DNS</span> settings are not being affected by your local network, but most third-party tools are riddled with advertising and unclear tool names, with some even charging a membership to access some of their tools. Our tool uses (and displays in the result) the command line used to generate the results instead. While not everyone will be familiar with these different commands, users can still experiment to learn and discover more about these valuable tools.</p>
		<p>The tool is available under our name, <a href="http://dns.norbauer.com/">dns.norbauer.com</a>, or at its Heroku hostname, <a href="http://dns.heroku.com/">dns.heroku.com</a>, where the tool is hosted.</p>
		<p>The site is written using the Sinatra framework and the <a href="http://github.com/norbauer/dns-tools">code is open source</a>.</p>
	</div>

	<div class='note_summary note_content'>
		<h3><a href='/rails-consulting/notes/erd-diagrams-from-sequel-pro'>ERD diagrams from Sequel Pro</a></h3>
		<p class='byline'>
			<span class='author'>By Jonathan Dance</a></span>
		</p>

		<p>If you need a diagram of your MySQL database and you&#8217;re on a Mac, generating an <span class="caps">ERD</span> diagram is quite easy &#8211; and completely free. Sequel Pro can export Graphviz dot files, and then all you need is a few tools to create the diagram.</p>
		<ul>
			<li>Install graphviz from MacPorts via your Terminal:<br /><code>sudo port install graphviz</code></li>
			<li>Install <a href="http://www.sequelpro.com/">Sequel Pro</a>, run the app, connect to your MySQL server and open the database you&#8217;d like to diagram.</li>
			<li>Go to File &gt; Export &gt; Graphviz Dot file, and save the file somewhere convenient.</li>
			<li>Generate an <span class="caps">SVG</span> file of your diagram:<br /><code>dot -Tsvg your_database.dot &gt; your_database.svg</code></li>
			<li>You can open <span class="caps">SVG</span> files with Opera, Safari, Illustrator, etc, but you can generate a <span class="caps">PNG</span> file in a number of ways. You can try installing ImageMagick or libsrvg from MacPorts, or use Illustrator or Inkscape to open and convert the file.
				<ul>
					<li>ImageMagick: <code>convert your_database.svg your_database.png</code></li>
					<li>libsrvg: <code>cat your_database.svg | rsvg-convert -o your_database.png</code></li>
				</ul>
			</li>
		</ul>
		<p>The result is a basic table-based <span class="caps">ERD</span>, but it&#8217;s not bad for a few minutes of your time.</p>
		<p>Thanks to the <a href="http://github.com/finalist/geert">geert</a> <span class="caps">README</span> for the introduction to this process.</p>
	</div>

	<div class='note_summary note_content'>
		<h3><a href='/rails-consulting/notes/storing-ip-addresses-as-integers'>Storing IP addresses as integers</a></h3>
		<p class='byline'>
			<span class='author'>By Jonathan Dance</a></span>
		</p>

		<p>Tying long sessions to an IP address is a good way to ensure some security for your users. But inevitably, you&#8217;ll want to store that IP. While you could, of course, store it as a string, such as <code>"123.125.126.127"</code> (called a &#8220;dotted quad&#8221;), some developers might prefer saving some space and storing it as a compact integer. There&#8217;s a right way and a wrong way to do this. The wrong way is as follows:</p>
		<pre>'12.34.56.78'.sub('.', '').to_i</pre>
		<p>This is a bad idea because two IP addresses can result in the same integer: 12.34.56.78 and 123.4.56.78 are both valid IPs. The correct way is as follows:</p>
		<pre>'12.34.56.78'.split('.').collect(&amp;:to_i).&#x000A;              pack('C*').unpack('N').first</pre>
		<p>To understand this seemingly obfuscated train wreck, let&#8217;s look at the data in this chain after each method call:</p>
		<pre>'12.34.56.78'.split('.'). #=&gt; ['12', '34', '56', 78']&#x000A;  collect(&amp;:to_i).        #=&gt; [12, 34, 56, 78]&#x000A;  pack('C*').             #=&gt; "\f\"8N"&#x000A;  unpack('N').            #=&gt; [203569230]&#x000A;  first                   #=&gt; 203569230</pre>
		<p>Many developers are unfamiliar with pack and unpack. These allow you to create and extract data into and out of binary-packed strings. In the third method call, you&#8217;ll see the result is <code>"\f\"8N"</code>. This strange-looking string is really just 4 bytes of data, the numbers 12, 34, 56, and 78 in binary form, put into a string. We then unpack that 4-byte string into a 4-byte integer (with network byte order).</p>
		<p>This is also the same problem solved by the C library method <code>inet_aton</code>, which is implemented as part of <a href="http://www.ruby-doc.org/stdlib/libdoc/ipaddr/rdoc/classes/IPAddr.html">Ruby&#8217;s <code>IPAddr</code> class</a>. Thus, there is a much simpler alternative:</p>
		<pre>require 'ipaddr'&#x000A;IPAddr.new('12.34.56.78').to_i   #=&gt; 203569230</pre>
		<p>But what fun is that!</p>
		<p>PS. Yes, you can have multi-line method chains simply by leaving the dot at the end of the line. Ruby then knows to look for a method call on the next line. Both snippets are valid Ruby! You should, of course, indent appropriately.</p>
	</div>

	<div class='note_summary note_content'>
		<h3><a href='/rails-consulting/notes/snow-leopard-upgrading-for-rails-developers'>Snow Leopard: Upgrading for Rails Developers</a></h3>
		<p class='byline'>
			<span class='author'>By Jonathan Dance</a></span>
		</p>

		<p>Upgrading to Snow Leopard is not as easy as Apple would lead you to believe; at least not if you&#8217;re a Rails developer. Here are a few select errors you might have encountered:</p>
		<pre>uninitialized constant MysqlCompat::MysqlRes&#x000A;dlopen(/Library/Ruby/Gems/1.8/gems/nokogiri-1.3.3/lib/nokogiri/nokogiri.bundle, 9): no suitable image found</pre>
		<p>These errors seems to stem because OS X is now fully 64-bit, and unfortunately, all your compiled libraries are 32-bit. Whoops!</p>
		<p>So, let&#8217;s fix them.</p>
		<p><strong>Important</strong>: These instructions are tailored for Intel 64-bit machines, as only 64-bit machines should have these issues. Any Intel Core 2 machines including recent Macbooks, Macbook Pros, and iMacs, and all Mac Pros should work fine with these instructions.</p>
		<h4>Install 64-bit MySQL</h4>
		<p>To fix the MySQL problem, you need install the <a href="http://dev.mysql.com/get/Downloads/MySQL-5.1/mysql-5.1.35-osx10.5-x86_64.dmg/from/pick#mirrors">x86_64 version of MySQL</a>. This will uninstall your old MySQL version, but will not migrate your databases. In order to migrate your data, first make sure MySQL is not running, then:</p>
		<pre>$ sudo mv /usr/local/mysql/data /usr/local/mysql/data.default&#x000A;$ sudo mv /usr/local/mysql-oldversion/data /usr/local/mysql/data</pre>
		<p>Start up MySQL and your databases should be in tact.</p>
		<h4>Reinstall the MySQL gem</h4>
		<p>Now that you have the correct version of MySQL, you need to reinstall the latest MySQL gem. Make sure to uninstall your current MySQL gem first:</p>
		<pre>$ sudo gem uninstall mysql&#x000A;$ sudo env ARCHFLAGS="-arch x86_64" gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config</pre>
		<h4>Re-install MacPorts</h4>
		<p>To fix nokogiri (and other gems with external dependencies), you&#8217;ll need to fix your Macports install. Unfortunately, the only way to fix Macports is to completely reinstall it. You need to completely delete (or at least move) your /opt/local directory. Once that is done, download and install the latest version of <a href="http://distfiles.macports.org/MacPorts/MacPorts-1.8.0-10.6-SnowLeopard.dmg">MacPorts for Snow Leopard</a>.</p>
		<p>You&#8217;ll probably want to install two things pretty quickly: libxml2 for nokogiri and git-core:</p>
		<pre>$ sudo port install libxml2&#x000A;$ sudo port install git-core +bash_completion +doc</pre>
		<h4>Re-install nokogiri (and other gems)</h4>
		<p>Any gem that has a compiled component will need to be reinstalled. nokogiri is just one of the libraries; others include ruby-debug, ruby-prof, and a lot of others. To fix them, just run this command:</p>
		<pre>$ sudo gem pristine --all</pre>
	</div>

	<div class='note_summary note_content'>
		<h3><a href='/rails-consulting/notes/symbol-vs-string-performance'>Symbol vs String performance in Ruby</a></h3>
		<p class='byline'>
			<span class='author'>By Jonathan Dance</a></span>
		</p>

		<p>A more interesting metric to this discussion is the use of strings versus symbols. Fortunately, these types of discussions can easily be solved by benchmarks:</p>
		<script src="http://gist.github.com/114989.js"></script><p>Results under Ruby 1.8.6:</p>
		<pre>&#x000A;                           user     system      total        real    less no op&#x000A;String instanciation   9.050000   0.010000   9.060000 (  9.057162)   5.921219&#x000A;Symbol use             5.130000   0.000000   5.130000 (  5.131844)   1.995901&#x000A;new String#to_sym     14.550000   0.020000  14.570000 ( 14.567466)   11.431523&#x000A;const String#to_sym   11.960000   0.010000  11.970000 ( 11.967217)   8.831274&#x000A;String const lookup    6.350000   0.010000   6.360000 (  6.358697)   3.222754&#x000A;Symbol const lookup    6.400000   0.010000   6.410000 (  6.416395)   3.280452&#x000A;No op                  3.130000   0.010000   3.140000 (  3.135943)   n/a</pre>
		<p>Results under Ruby 1.9.1:</p>
		<pre>&#x000A;                           user     system      total        real    less no op&#x000A;String instanciation   9.170000   0.010000   9.180000 (  9.174451)   4.736163&#x000A;Symbol use             4.920000   0.010000   4.930000 (  4.930031)   0.491743&#x000A;new String#to_sym     18.080000   0.030000  18.110000 ( 18.087386)   13.649098&#x000A;const String#to_sym   13.940000   0.030000  13.970000 ( 13.954099)   9.515811&#x000A;String const lookup    4.920000   0.000000   4.920000 (  4.927497)   0.489209&#x000A;Symbol const lookup    4.910000   0.020000   4.930000 (  4.921151)   0.482863&#x000A;No op                  4.440000   0.000000   4.440000 (  4.438288)   n/a</pre>
		<p>What do these results mean? Well, first you need to subtract out the &#8220;no op&#8221; results from all the others, which I&#8217;ve added as a column above. We can now see that string instantiation takes about 90 nanoseconds, which means about 11000 string instantiations per millisecond. Are symbols faster? Considerably so. But the real lesson here is that these numbers are so small that no one in there right mind should spend time worrying about them.</p>
		<p>So please, <a href="http://www.randomhacks.net/articles/2007/01/20/13-ways-of-looking-at-a-ruby-symbol">use symbols when you should use symbols, and otherwise use strings.</a></p>
	</div>

	<div class='note_summary note_content'>
		<h3><a href='/rails-consulting/notes/remembering-lighttpd-nginx-and-the-internet-as-a-pipe'>Remembering lighttpd, nginx, and the Internet as a pipe</a></h3>
		<p class='byline'>
			<span class='author'>By Jonathan Dance</a></span>
		</p>

		<p>We asked ourselves <a href="/rails-consulting/notes/lighttpd-1-5-0-vaporware">a year ago</a> if lighttpd 1.5.0 was vaporware. It seems that was nearly true. At that time, nginx, apache&#8217;s mod_proxy_balancer, and haproxy were flourishing as Rails proxy solutions. The more recent introduction of Phusion Passenger (mod_rails) and Ruby Enterprise Edition, both excellent, free, and open-source products, has now driven most deployments (including our own) away from proxying altogether.</p>
		<p>There is&#8212;or was&#8212;generally two counter-arguments to Passenger. The first is the stability and performance argument, which is well understood and has been discussed at length. I believed it was well summarized by <a href="http://blog.engineyard.com/2008/12/05/apache-passenger-vs-nginx-mongrel">Engine Yard&#8217;s discussion on the topic.</a> But this is not the argument I&#8217;m not interested in.</p>
		<p>My early argument against mod_rails was complexity: first, by using Apache instead of a smaller, simpler web server, and second, using a platform that I don&#8217;t comprehend and can&#8217;t debug. This argument relates to an old article I wrote: that Rails applications&#8212;and applications in general&#8212;should <a href="http://norbauer.com/notebooks/code/notes/acts_as_pipe-web">act like a pipe</a>. (The original article, by James Duncan Davidson, is so old its only accessible through <a href="http://web.archive.org/web/20060706054938/http://duncandavidson.com/essay/2006/06/webaspipe">archive.org</a>). My presumption was that the same argument should apply to a 3rd-party mod_rails solution: I don&#8217;t know anything about the app server, so if I have problems, I&#8217;m screwed. How is this better than FastCGI?</p>
		<p>It is ironic, then, to note the success of Passenger in light of Rails&#8217; history with FastCGI. The reason, as it turns out, basically comes down to two answers:</p>
		<ol>
			<li>Passenger is easy to set up under Apache, and requires less configuration than under nginx</li>
			<li>Passenger <em>always works</em>, in my experience, and thus debugging problems is non-existent.</li>
			<li>As a bonus, if you&#8217;re using something like monit to ensure your app stays up, monitoring apache2 is a lot easier than individual mongrel processes.</li>
		</ol>
		<p>So, better products are better, and users (including myself) will flock to them once they realize it.</p>
		<p><strong>The Future</strong></p>
		<p>I do wonder, though, whether history will continue to repeat itself in this regard. Where will the next improvements be? What will be our theory (or justifications, as it seems to turn out) behind those improvements? Personally, I&#8217;ve been <a href="http://norbauer.com/notebooks/code/notes/why-threading-matters">eying threaded solutions</a> for a long time, and given that mod_rails is a multi-process solution, perhaps threads will move things forward in the future. However, given that Ruby 1.9 is <a href="http://www.igvita.com/2008/11/13/concurrency-is-a-myth-in-ruby/">still limited by the Global Interpreter Lock</a>, we might not see a threaded answer for a while. The closest we&#8217;ll come in the short term is JRuby. Could it be possible that JRuby is the future? Only time will tell.</p>
	</div>

	<div class='note_summary note_content'>
		<h3><a href='/rails-consulting/notes/garbage-collection-thresholds-in-ruby'>Garbage collection thresholds in Ruby</a></h3>
		<p class='byline'>
			<span class='author'>By Jonathan Dance</a></span>
		</p>

		<p>I&#8217;ve put together a <a href="http://gist.github.com/64453">somewhat extensive</a> collection of scripts and results from looking at how often objects get garbage collected in Ruby 1.8 and Ruby 1.9. Performance metrics are also provided running the script under various different environments, which I found quite fascinating. irb, for instance, is ridiculously slow. Granted, the vast majority of these scripts times are spent performing very inefficient ObjectSpace calls, so the raw numbers should be taken with a grain of salt. The metrics are only interesting for comparison, and are of questionable use.</p>
		<p>This was instigated by a String versus Symbol discussion in #ruby on Freenode. The individual was primarily worried about memory usage, and these scripts confirm that strings will get garbage collected often and quickly.</p>
		<p>One thing to note is how Ruby 1.8 changes its thresholds for garbage collection under each environment, which may be based on the amount of objects in global space that it cannot garbage collect. Under Ruby 1.9, the results are bit more consistent, although this may be due to better metrics being available in Ruby 1.9.</p>
	</div>

	<div class='note_summary note_content'>
		<h3><a href='/rails-consulting/notes/ls-colors-and-terminal-app'>ls, colors, and Terminal.app</a></h3>
		<p class='byline'>
			<span class='author'>By Jonathan Dance</a></span>
		</p>

		<p>This isn&#8217;t a Ruby thing but many of us spend a lot of time in Terminal.app, and I suspect few of you have taken the time to both enable colors and change your <span class="caps">LSCOLORS</span>, the setting which affects what colors <code>ls</code> uses when in color mode.</p>
		<p><strong>Enable Colors in ls</strong></p>
		<p>In order for ls to use colors at all, you need to set up an alias to turn colors on. To do this, open (or create) <code>.profile</code> file in your home directory using your favorite text editor and add:</p>
		<pre>alias ls="ls -G"</pre>
		<p>Now open a new Terminal window and type <code>ls</code>. You will see colors, hurray!</p>
		<p><strong>Make Colors Linux-like</strong></p>
		<p>If you&#8217;re used to Linux-like colors, you will appreciate this setting. This is what I use and it works particularly well on dark Terminal backgrounds (I use the &#8220;Pro&#8221; theme). I also check off &#8220;Use bright colors for bold text&#8221; under Terminal &gt; Preferences &gt; Settings. Again, add this to your <code>.profile</code>:</p>
		<pre>export LSCOLORS="ExGxBxDxCxEgEdxbxgxcxd"</pre>
		<p><strong>Customize Your Colors</strong></p>
		<p>The values in <span class="caps">LSCOLORS</span> are codes corresponding to different colors for different types of files. The letter you use indicates which color to use, and the position in the string indicates what type of file should be that color. Each color comes in pairs &#8211; a foreground color and a background color. Here is a list of color values:</p>
		<ul>
			<li>a = black</li>
			<li>b = red</li>
			<li>c = green</li>
			<li>d = brown</li>
			<li>e = blue</li>
			<li>f = magenta</li>
			<li>g = cyan</li>
			<li>h = grey</li>
			<li>A = dark grey</li>
			<li>B = bold red</li>
			<li>C = bold green</li>
			<li>D = yellow</li>
			<li>E = bold blue</li>
			<li>F = magenta</li>
			<li>G = cyan</li>
			<li>H = white</li>
			<li>x = default</li>
		</ul>
		<p>And here is a list of the positions in <span class="caps">LSCOLORS</span>:</p>
		<ol>
			<li>directory</li>
			<li>symbolic link</li>
			<li>socket</li>
			<li>pipe</li>
			<li>executable</li>
			<li>block device</li>
			<li>character device</li>
			<li>executable with setuid set</li>
			<li>executable with setguid set</li>
			<li>directory writable by others, with sticky bit</li>
			<li>directory writable by others, without sticky bit</li>
		</ol>
		<p>The default is &#8220;exfxcxdxbxegedabagacad&#8221;, which indicates blue foreground with default background for directories, magenta foreground with default background for symbolic links, etc.</p>
	</div>

	<div class='note_summary note_content'>
		<h3><a href='/rails-consulting/notes/interview-on-the-ruby-on-rails-podcast'>Interview on the Ruby on Rails podcast.</a></h3>
		<p class='byline'>
			<span class='author'>By Ryan Norbauer</a></span>
		</p>

		<p>The <a href="http://podcast.rubyonrails.org">interview</a> I did with the incredibly gracious and awesome <a href="http://topfunky.com">Geoffrey Grosenbach</a> (of Peepcasts) on the official Ruby on Rails podcast just went up.</p>
		<p>I talk a little bit about <a href="http://norbauer.com">consulting at Norbauer Inc</a>, a bit about <a href="http://rubyrags.com">RubyRags</a>, and I spend a bit of time kicking social networks in the nuts.</p>
		<p>Incidentally, I&#8217;m proud to announce that we&#8217;re now selling Peepcode shirts at RubyRags.</p>
	</div>
</div>

					</div>
					
					
						<div id='sidebar_column'>
	
		
			<div class='sidebar_item sidebar_button' id='github'>
				<a href="https://github.com/norbauer"><img src="/assets/images/legacy/rails-consulting/code_repository_icon.png" /></a>
				<p>See some of our open source projects.</p>
			</div>
		
	
		
			<div class='sidebar_item sidebar_button' id='rails_podcast_button'>
				<a href="http://podcast.rubyonrails.org/programs/1/episodes/ryan-norbauer"><img alt="Rails_podcast_button_text" src="/assets/images/legacy/rails-consulting/rails_podcast_button_text.png" /></a>
			</div>
		
	
		
			<div class='sidebar_item sidebar_button' id='code_archive_button'>
				<a href='/rails-consulting/code/blog_archive'><img  alt="View_archive" src="/assets/images/legacy/rails-consulting/view_archive.gif" /></a>
			</div>
		
	

	

	

</div>
					
				</div>
			</div>

			<!-- temporary until footer created -->
			<div style='clear:both;'></div>			
		</div>

		<div id='paper_sheet_bottom'>&nbsp;</div>
	</body>
</html>