<?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>Binary Code &#187; Search Results  &#187;  chris</title>
	<atom:link href="http://www.postal-code.com/binarycode/search/chris/feed/rss2/" rel="self" type="application/rss+xml" />
	<link>http://www.postal-code.com/binarycode</link>
	<description>A whole bunch of nought thought by Chris Cummer</description>
	<lastBuildDate>Sun, 29 Jan 2012 16:47:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Rails 3.1, deprecation warning, and primary_key_name</title>
		<link>http://www.postal-code.com/binarycode/2012/01/10/rails-3-1-deprecation-warning-and-primary_key_name/</link>
		<comments>http://www.postal-code.com/binarycode/2012/01/10/rails-3-1-deprecation-warning-and-primary_key_name/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 23:28:55 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[/dev/rails]]></category>

		<guid isPermaLink="false">http://www.postal-code.com/binarycode/?p=550</guid>
		<description><![CDATA[We&#8217;ve spent the past couple days upgrading the Travergence site from Rails 3.0 to 3.1 and while it hasn&#8217;t been entirely smooth, it hasn&#8217;t been horrible either. Except for one issue: DEPRECATION WARNING: primary_key_name is deprecated and will be removed from Rails 3.2 (use foreign_key instead). This would cause recursion somewhere in the stack, eventually [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve spent the past couple days upgrading the Travergence site from Rails 3.0 to 3.1 and while it hasn&#8217;t been entirely smooth, it hasn&#8217;t been horrible either. Except for one issue:</p>
<pre>
DEPRECATION WARNING: primary_key_name is deprecated and will be removed from Rails 3.2 (use foreign_key instead).
</pre>
<p>This would cause recursion somewhere in the stack, eventually leading to:</p>
<pre>
SystemStackError (stack level too deep)
</pre>
<p>After much digging, googling, commenting-out of code, and swearing I finally figured out that it was rails3_acts_as_paranoid causing the issue. One more google led to <a href="https://github.com/goncalossilva/rails3_acts_as_paranoid/pull/46">this solution by Chris Hilton</a>, which involves patching rails3_acts_as_paranoid to prevent circular aliasing.</p>
<p>Hopefully Gonçalo Silva will fix it in the official branch on Github. Until then you can either fork and patch it yourself or grab ours:</p>
<pre>
gem 'rails3_acts_as_paranoid', :git => 'git@github.com:travergence/rails3_acts_as_paranoid.git'
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.postal-code.com/binarycode/2012/01/10/rails-3-1-deprecation-warning-and-primary_key_name/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nokogiri and Segmentation Fault</title>
		<link>http://www.postal-code.com/binarycode/2011/03/21/nokogiri-and-sementation-fault/</link>
		<comments>http://www.postal-code.com/binarycode/2011/03/21/nokogiri-and-sementation-fault/#comments</comments>
		<pubDate>Mon, 21 Mar 2011 20:00:13 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[/dev/random]]></category>

		<guid isPermaLink="false">http://www.postal-code.com/binarycode/?p=463</guid>
		<description><![CDATA[After recently re-installing my system on a new SSD everything was working fine except Rspec for a project running on Rails 2.3.5. Turns out there were a couple issues. First, Rails was out of date. Upgrading to 2.3.11 fixed those issues. Next, Nokogiri was throwing this error: /Users/chris/Sites/adobe-agency-partner-portal/vendor/bundle/ruby/1.8/gems/nokogiri-1.4.4/lib/nokogiri/xml/schema.rb:37: [BUG] Segmentation fault ruby 1.8.7 (2009-06-12 patchlevel [...]]]></description>
			<content:encoded><![CDATA[<p>After recently re-installing my system on a new SSD everything was working fine except Rspec for a project running on Rails 2.3.5. Turns out there were a couple issues.</p>
<p>First, Rails was out of date. Upgrading to 2.3.11 fixed those issues.</p>
<p>Next, <a href="http://nokogiri.org/">Nokogiri</a> was throwing this error:</p>
<blockquote><p>
/Users/chris/Sites/adobe-agency-partner-portal/vendor/bundle/ruby/1.8/gems/nokogiri-1.4.4/lib/nokogiri/xml/schema.rb:37: [BUG] Segmentation fault<br />
ruby 1.8.7 (2009-06-12 patchlevel 174) [universal-darwin10.0]
</p></blockquote>
<p>In this case my version of <a href="http://xmlsoft.org/">libxml2</a> was causing the problems. Upgrading that to the latest and re-installing Nokogiri fixed that issue.</p>
<p>To see where you stand with Nokogiri, run this command:</p>
<blockquote><p>
~/Sites/adobe-agency-partner-portal (master⚡) : bundle exec nokogiri -v&#8212;<br />
warnings: []</p>
<p>ruby:<br />
  engine: mri<br />
  version: 1.8.7<br />
  platform: i686-darwin10.6.0<br />
libxml:<br />
  loaded: 2.7.8<br />
  binding: extension<br />
  compiled: 2.7.8<br />
nokogiri: 1.4.4
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.postal-code.com/binarycode/2011/03/21/nokogiri-and-sementation-fault/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Thought on Email Security and Password Reuse</title>
		<link>http://www.postal-code.com/binarycode/2011/01/31/email-security/</link>
		<comments>http://www.postal-code.com/binarycode/2011/01/31/email-security/#comments</comments>
		<pubDate>Mon, 31 Jan 2011 21:01:21 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[/dev/random]]></category>

		<guid isPermaLink="false">http://www.postal-code.com/binarycode/?p=453</guid>
		<description><![CDATA[Today it was revealed that dating site Plenty of Fish&#8217;s databases have been severely compromised. All their data user data has been stolen, probably many times from the sounds of it. It also seems that Plenty of Fish was &#8211; let&#8217;s be generous &#8211; naive enough to keep their user&#8217;s passwords stored in the database [...]]]></description>
			<content:encoded><![CDATA[<p>Today <a href="http://grumomedia.com/plenty-of-fish-hacked-chris-russos-explains-how-he-did-it/">it was revealed</a> that dating site Plenty of Fish&#8217;s databases have been severely compromised. All their data user data has been stolen, probably many times from the sounds of it. It also seems that Plenty of Fish was &#8211; let&#8217;s be generous &#8211; naive enough to keep their user&#8217;s passwords stored in the database in plaintext. That is, unencrypted, readable by anyone with access.</p>
<p>This is a big deal on a number of levels, not the least of which is because people have a tendency to reuse their passwords for multiple sites. It&#8217;s no small leap to imagine that most users on PoF who signed up with their Gmail account also used the same password for PoF that they used for Gmail. To put it another way, anyone who did that has now also had their Gmail account compromised, and for many people their email account is the gateway to all their accounts.</p>
<p>It got me thinking: what small steps could be taken on the user&#8217;s behalf to help cut down on the number of people reusing their passwords? How about something like this?</p>
<p><center><br />
<a href="http://www.postal-code.com/binarycode/wp-content/uploads/2011/01/new_password.png"><img src="http://www.postal-code.com/binarycode/wp-content/uploads/2011/01/new_password.png" alt="" title="new_password" width="280" height="281" class="aligncenter size-full wp-image-454" /></a><br />
</center></p>
<p>Obviously it won&#8217;t stop anyone if they&#8217;re adamant enough, but it just might get them thinking.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.postal-code.com/binarycode/2011/01/31/email-security/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Rspec with Rails3 beta and Rspec 2 beta</title>
		<link>http://www.postal-code.com/binarycode/2010/05/17/rspec-with-rails3-beta-and-rspec-2-beta/</link>
		<comments>http://www.postal-code.com/binarycode/2010/05/17/rspec-with-rails3-beta-and-rspec-2-beta/#comments</comments>
		<pubDate>Mon, 17 May 2010 18:22:42 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[/dev/random]]></category>

		<guid isPermaLink="false">http://www.postal-code.com/binarycode/?p=324</guid>
		<description><![CDATA[The problem: running spec filename.rb against a project built on Rails 3 beta and using Rspec 2 beta generated the following error (I can&#8217;t imagine why there were any issues): /Users/chris/.rvm/gems/ruby-1.8.7-p249/gems/activesupport-3.0.0.beta3/lib/active_support/dependencies.rb:209:in `require&#8217;: no such file to load &#8212; spec/adapters/mock_frameworks/rspec (LoadError) from /Users/chris/.rvm/gems/ruby-1.8.7-p249/gems/activesupport-3.0.0.beta3/lib/active_support/dependencies.rb:209:in `require&#8217; from /Users/chris/.rvm/gems/ruby-1.8.7-p249/gems/activesupport-3.0.0.beta3/lib/active_support/dependencies.rb:197:in `load_dependency&#8217; from /Users/chris/.rvm/gems/ruby-1.8.7-p249/gems/activesupport-3.0.0.beta3/lib/active_support/dependencies.rb:209:in `require&#8217; from /Users/chris/.rvm/gems/ruby-1.8.7-p249/gems/rspec-1.3.0/lib/spec/runner/options.rb:312:in `plugin_mock_framework&#8217; from /Users/chris/.rvm/gems/ruby-1.8.7-p249/gems/rspec-1.3.0/lib/spec/runner/options.rb:138:in `run_examples&#8217; [...]]]></description>
			<content:encoded><![CDATA[<p>The problem: running </p>
<blockquote><p>
spec filename.rb
</p></blockquote>
<p>against a project built on Rails 3 beta and using Rspec 2 beta generated the following error (I can&#8217;t <em>imagine</em> why there were any issues):</p>
<blockquote><p>
/Users/chris/.rvm/gems/ruby-1.8.7-p249/gems/activesupport-3.0.0.beta3/lib/active_support/dependencies.rb:209:in `require&#8217;: no such file to load &#8212; spec/adapters/mock_frameworks/rspec (LoadError)<br />
	from /Users/chris/.rvm/gems/ruby-1.8.7-p249/gems/activesupport-3.0.0.beta3/lib/active_support/dependencies.rb:209:in `require&#8217;<br />
	from /Users/chris/.rvm/gems/ruby-1.8.7-p249/gems/activesupport-3.0.0.beta3/lib/active_support/dependencies.rb:197:in `load_dependency&#8217;<br />
	from /Users/chris/.rvm/gems/ruby-1.8.7-p249/gems/activesupport-3.0.0.beta3/lib/active_support/dependencies.rb:209:in `require&#8217;<br />
	from /Users/chris/.rvm/gems/ruby-1.8.7-p249/gems/rspec-1.3.0/lib/spec/runner/options.rb:312:in `plugin_mock_framework&#8217;<br />
	from /Users/chris/.rvm/gems/ruby-1.8.7-p249/gems/rspec-1.3.0/lib/spec/runner/options.rb:138:in `run_examples&#8217;<br />
	from /Users/chris/.rvm/gems/ruby-1.8.7-p249/gems/rspec-1.3.0/lib/spec/runner.rb:61:in `run&#8217;<br />
	from /Users/chris/.rvm/gems/ruby-1.8.7-p249/gems/rspec-1.3.0/lib/spec/runner.rb:45<br />
	from /Users/chris/.rvm/gems/ruby-1.8.7-p249/bin/spec:19
</p></blockquote>
<p>As you can see from the error it is in fact not running the rspec beta but rather trying to use the system&#8217;s rspec 1.3.0. Problematic, that.</p>
<p>Turns out the solution was to use bundle* to run the individual spec (this, of course, assumes you&#8217;re managing your gems with <a href="http://github.com/wycats/bundler">Bundler</a>):</p>
<blockquote><p>
bundle exec rspec filename.rb
</p></blockquote>
<p>*In the project above I have a whole separate environment managed by <a href="http://rvm.beginrescueend.com/">RVM</a> specifically for the latest über-stable Ruby (ruby 1.8.7 (2010-01-10 patchlevel 249) as of this writing), the Rails and Rspec beta.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.postal-code.com/binarycode/2010/05/17/rspec-with-rails3-beta-and-rspec-2-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Smarty Gotcha: Spaces</title>
		<link>http://www.postal-code.com/binarycode/2009/02/16/smarty-gotcha-spaces/</link>
		<comments>http://www.postal-code.com/binarycode/2009/02/16/smarty-gotcha-spaces/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 21:48:19 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[/dev/random]]></category>

		<guid isPermaLink="false">http://www.postal-code.com/binarycode/?p=277</guid>
		<description><![CDATA[One of the projects I&#8217;m working on uses Smarty as its templating engine. Frankly in a post-Rails/Merb/CakePHP/Django world Smarty is pretty painful to work with and its age and implementation restrictions become readily apparent&#8230; but that&#8217;s another post for another time. This post is about how spaces in Smarty templates might trip you up. Witness [...]]]></description>
			<content:encoded><![CDATA[<p>One of the projects I&#8217;m working on uses <a href="http://www.smarty.net/">Smarty</a> as its templating engine. Frankly in a post-Rails/Merb/CakePHP/Django world Smarty is pretty painful to work with and its age and implementation restrictions become readily apparent&#8230; but that&#8217;s another post for another time.</p>
<p>This post is about how spaces in Smarty templates might trip you up. Witness the following code from a Smarty template (yes, this is kind&#8217;a like PHP but less functional and less readable):</p>
<pre name="code" class="php">
&lt;img src="{$deletion_item->default_image(false)}" /&gt;
</pre>
<pre name="code" class="php">
&lt;img src="{$deletion_item->default_image( false )}" /&gt;
</pre>
<p>One would tend to think, or at least I tend to think, that those two lines of HTML/Smarty code would be functionally equivalent. They look the same, save for the second developer&#8217;s preference for some extra whitespace.</p>
<p>However example one works with Smarty, example two throws the following error:</p>
<blockquote class="code"><p>
<strong>Fatal error</strong>: Smarty error: [in /Users/chris/Sites/dreambank/templates/en/delete_item.tpl line 42]:<br />
syntax error: unrecognized tag: $deletion_item->default_image( false ) (Smarty_Compiler.class.php, line 446) in <strong>/Users/chris/Sites/dreambank/includes/smarty/Smarty.class.php</strong> on line <strong>1095</strong>
</p></blockquote>
<p>So, there you have it. There&#8217;s not much more to this than to say: when working with Smarty be very careful with your whitespace.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.postal-code.com/binarycode/2009/02/16/smarty-gotcha-spaces/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DreamBank for my birthday</title>
		<link>http://www.postal-code.com/binarycode/2008/10/20/dreambank-for-my-birthday/</link>
		<comments>http://www.postal-code.com/binarycode/2008/10/20/dreambank-for-my-birthday/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 02:41:44 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[/dev/random]]></category>

		<guid isPermaLink="false">http://www.postal-code.com/binarycode/?p=262</guid>
		<description><![CDATA[Today&#8217;s my birthday and, as is inevitable with all birthdays, people ask &#8220;what would you like?&#8221; This year I&#8217;d like something a little different. Since January I&#8217;ve been working with a group of fantastic people to help create DreamBank, a web site who&#8217;s goal &#8211; and our hope &#8211; is to alter, for the better, [...]]]></description>
			<content:encoded><![CDATA[<p>Today&#8217;s my birthday and, as is inevitable with all birthdays, people ask &#8220;what would you like?&#8221; This year I&#8217;d like something a little different.</p>
<p>Since January I&#8217;ve been working with a group of fantastic people to help create <a href="http://www.dreambank.org">DreamBank</a>, a web site who&#8217;s goal &#8211; and our hope &#8211; is to alter, for the better, the way in which we give each other gifts. DreamBank is designed to allow anyone to post their goals, or their needs, or their wants in a way that allows their friends, their family, and everyone else to help them achieve their objectives. No more mis-sized socks, no more unwanted DVDs, no more soon-to-be-lost gift cards. Just a goal and the means.</p>
<p>For my birthday I&#8217;d really like if you&#8217;d head over to <a href="http://www.dreambank.org">DreamBank</a>, check out the work we&#8217;ve been doing, read about the philosophy, sign up, create a dream and give it a try.</p>
<p><a href="http://www.dreambank.org">http://www.dreambank.org</a></p>
<p>Many thanks to you, on my birthday.<br />
Chris</p>
]]></content:encoded>
			<wfw:commentRss>http://www.postal-code.com/binarycode/2008/10/20/dreambank-for-my-birthday/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Me Meme</title>
		<link>http://www.postal-code.com/binarycode/2008/10/03/the-me-meme/</link>
		<comments>http://www.postal-code.com/binarycode/2008/10/03/the-me-meme/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 18:58:30 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[/dev/random]]></category>

		<guid isPermaLink="false">http://www.postal-code.com/binarycode/?p=251</guid>
		<description><![CDATA[Via Obie Fernandez, the Me Meme. 1.Take a picture of yourself right now. 2. Don’t change your clothes, don’t fix your hair…just take a picture. (should be super-easy with Photobooth) 3. Post that picture with NO editing. 4 Post these instructions with your picture.]]></description>
			<content:encoded><![CDATA[<p>Via <a href="http://blog.obiefernandez.com/content/2008/10/the-me-meme.html">Obie Fernandez</a>, the Me Meme.<br />
<center><br />
<a href='http://www.postal-code.com/binarycode/wp-content/uploads/2008/10/me.jpg'><img src="http://www.postal-code.com/binarycode/wp-content/uploads/2008/10/me-300x225.jpg" alt="Chris Cummer" title="me" width="300" height="225" class="alignnone size-medium wp-image-252" /></a><br />
</center><br />
1.Take a picture of yourself right now.<br />
2. Don’t change your clothes, don’t fix your hair…just take a picture. (should be super-easy with Photobooth)<br />
3. Post that picture with NO editing.<br />
4 Post these instructions with your picture. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.postal-code.com/binarycode/2008/10/03/the-me-meme/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>DreamBank is Hiring Again</title>
		<link>http://www.postal-code.com/binarycode/2008/10/01/dreambank-is-hiring-again/</link>
		<comments>http://www.postal-code.com/binarycode/2008/10/01/dreambank-is-hiring-again/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 16:51:46 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[/dev/random]]></category>

		<guid isPermaLink="false">http://www.postal-code.com/binarycode/?p=248</guid>
		<description><![CDATA[If you&#8217;re in Vancouver and you&#8217;re looking for a great job on an interesting project: DreamBank is hiring. http://www.dreambank.org DreamBank is about creating an alternative to traditional gift giving in a way that helps both the planet and important social causes. We&#8217;re currently looking for one more software developer with solid experience developing MySQL-driven PHP [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re in Vancouver and you&#8217;re looking for a great job on an interesting project:</p>
<blockquote><p>
DreamBank is hiring.</p>
<p>http://www.dreambank.org</p>
<p>DreamBank is about creating an alternative to traditional gift giving in a way that helps both the planet and important social causes. We&#8217;re currently looking for one more software developer with solid experience developing MySQL-driven PHP web sites (aka LAMP).</p>
<p>You&#8217;ll be working with the head developer to improve and solidify  the current codebase, scope and implement new features, and help  plan the technical growth of the company and site.</p>
<p>Real-world Ruby/Rails experience is also definitely an asset as we  make considerable use of Rails at DreamBank.</p>
<p>If you&#8217;re interested, please send your resume and cover letter in  PDF format as well as a links to examples of software you&#8217;ve worked  on, to info@dreambank.org.</p>
<p>Regards<br />
Chris Cummer<br />
Technical Director, DreamBank</p>
<p>Location: Yaletown, Vancouver<br />
Compensation: 60-70k on contract, depending on experience.<br />
This is a contract job.
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.postal-code.com/binarycode/2008/10/01/dreambank-is-hiring-again/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ultrasphinx Bootstrap Error</title>
		<link>http://www.postal-code.com/binarycode/2008/08/07/ultrasphinx-bootstrap-error/</link>
		<comments>http://www.postal-code.com/binarycode/2008/08/07/ultrasphinx-bootstrap-error/#comments</comments>
		<pubDate>Thu, 07 Aug 2008 21:28:30 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[/dev/rails]]></category>
		<category><![CDATA[/dev/ruby]]></category>

		<guid isPermaLink="false">http://www.postal-code.com/binarycode/?p=238</guid>
		<description><![CDATA[You&#8217;re installing Ultraspinx (perhaps per these instructions from Inoshi, which are the best I&#8217;ve found thus far) and you run into this error when time comes to bootstrap your installation: ~/Sites/ticklists/: sudo rake ultrasphinx:bootstrap &#8211;trace (in /Users/chris/Sites/ticklists) ** Invoke ultrasphinx:bootstrap (first_time) ** Invoke ultrasphinx:_environment (first_time) ** Invoke environment (first_time) ** Execute environment ** Execute ultrasphinx:_environment [...]]]></description>
			<content:encoded><![CDATA[<p>You&#8217;re installing Ultraspinx (perhaps <a href="http://blog.insoshi.com/2008/07/17/searching-a-ruby-on-rails-application-with-sphinx-and-ultrasphinx/">per these instructions</a> from <a href="http://portal.insoshi.com/">Inoshi</a>, which are the best I&#8217;ve found thus far) and you run into this error when time comes to bootstrap your installation:</p>
<blockquote><p>
~/Sites/ticklists/: sudo rake ultrasphinx:bootstrap &#8211;trace<br />
(in /Users/chris/Sites/ticklists)<br />
** Invoke ultrasphinx:bootstrap (first_time)<br />
** Invoke ultrasphinx:_environment (first_time)<br />
** Invoke environment (first_time)<br />
** Execute environment<br />
** Execute ultrasphinx:_environment<br />
** Invoke ultrasphinx:configure (first_time)<br />
** Invoke ultrasphinx:_environment<br />
** Execute ultrasphinx:configure<br />
rake aborted!<br />
You have a nil object when you didn&#8217;t expect it!<br />
You might have expected an instance of ActiveRecord::Base.<br />
The error occurred while evaluating nil.[]
</p></blockquote>
<p>I couldn&#8217;t find this one in the google anywhere. Turns out the cause of this is defining non-existent properties for indexing on your models (perhaps I&#8217;m the only one dumb enough to do that). </p>
<p>You&#8217;ll know if this is the cause because you&#8217;ll see something akin to this in your Rails console:</p>
<blockquote><p>
** ultrasphinx: warning: field f is not present in User<br />
** ultrasphinx: warning: field descritpion is not present in Profile
</p></blockquote>
<p>Remove (or fix the spelling of) those and everything should work hunky-dory.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.postal-code.com/binarycode/2008/08/07/ultrasphinx-bootstrap-error/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Wanted: Software Project Manager in Vancouver</title>
		<link>http://www.postal-code.com/binarycode/2008/05/11/wanted-software-project-manager-in-vancouver/</link>
		<comments>http://www.postal-code.com/binarycode/2008/05/11/wanted-software-project-manager-in-vancouver/#comments</comments>
		<pubDate>Mon, 12 May 2008 01:41:53 +0000</pubDate>
		<dc:creator>chris</dc:creator>
				<category><![CDATA[/dev/random]]></category>

		<guid isPermaLink="false">http://www.postal-code.com/binarycode/?p=192</guid>
		<description><![CDATA[Hello all, Update: Position filled. Thanks to all who applied. Dreambank.org is looking to hire a software project manager in Vancouver to help chart and manage the post-launch development and growth of a funded web start-up that&#8217;s just about to go live. Said PM would be responsible for determining the future feature-set and growth of [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.postal-code.com/binarycode/wp-content/uploads/2008/05/hiring.jpg" alt="" title="hiring" width="145" height="180" class="alignright size-full wp-image-193" align="right" />Hello all,</p>
<p><strong>Update:</strong> Position filled. Thanks to all who applied.</p>
<p>Dreambank.org is looking to hire a software project manager in Vancouver to help chart and manage the post-launch development and growth of a funded web start-up that&#8217;s just about to go live. </p>
<p>Said PM would be responsible for determining the future feature-set and growth of the site, working with me (the Tech Director) to plan the schedule and deliver the features, work with marketing, with the customers, and so forth. Any PM worth their salt will be able to describe this job position far better than I (and if you&#8217;re off-put by that remark you&#8217;re probably not the right fit, sorry.)</p>
<p>Said person must have successfully managed and delivered at least one relatively sizable commercial software project in the past as the PM. That is the minimum requirement. No developers looking to advance their careers or PMs from other industries looking to get into software. You know software, and you know you know it.</p>
<p>If you sound like this person and you live in Vancouver and you&#8217;re interested and think you&#8217;re qualified, kindly get in touch with me at either chris@postal-code.com or chris@dreambank.org. I&#8217;d love to talk to you, fill you in and find out more about you.</p>
<p>Cheers<br />
Chris</p>
]]></content:encoded>
			<wfw:commentRss>http://www.postal-code.com/binarycode/2008/05/11/wanted-software-project-manager-in-vancouver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

