<?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/"
	>

<channel>
	<title>Behanisms - Michael Behan's Blog</title>
	<atom:link href="http://www.behanisms.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.behanisms.com</link>
	<description>Memoirs of an Irish Programmer</description>
	<pubDate>Thu, 15 Oct 2009 02:43:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Magic Micro - A new hope</title>
		<link>http://www.behanisms.com/2009/10/15/magic-micro-a-new-hope/</link>
		<comments>http://www.behanisms.com/2009/10/15/magic-micro-a-new-hope/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 02:43:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.michaelbehan.me/?p=73</guid>
		<description><![CDATA[Every once in a while you have a positive business experience that is worth sharing, and I believe that if you have a good experience - sharing it is the best compliment.
Almost anyone who has conducted business with numerous custom PC manufacturers more than likely has their fair share of horror stories. It starts out [...]]]></description>
			<content:encoded><![CDATA[<p>Every once in a while you have a positive business experience that is worth sharing, and I believe that if you have a good experience - sharing it is the best compliment.</p>
<p>Almost anyone who has conducted business with numerous custom PC manufacturers more than likely has their fair share of horror stories. It starts out fantastically when you see the box at your doorstep&#8230; you can almost taste the lightning speed PhotoShop batches. You rush the box into the house, cut through all the tape with your car key, wade through the Styrofoam peanuts, and assemble the machine with the haste of a cheetah&#8230; Only to find out that the darn thing doesn&#8217;t work! Bad ram, an overheating CPU, an ungrounded motherboard, and a faulty power supply.  It can be quite disheartening to have your excitement quenched by utter disappointment.</p>
<p><a title="Opens new window to Magic Micro" href="http://myworld.ebay.com/magic-micro" target="_blank">Magic Micro</a> is a breath of fresh air. After perusing feedback and reviews on numerous companies that specialize in this sort of work, my eyes perked when I saw the outstanding reviews given to Magic Micro. Let&#8217;s face it&#8230;  E-bay can be tough turf when it comes to the ever-growing (and often irrational) demands of spoiled consumers. The simple fact that Magic Micro had over 13,000 transactions and not a single negative remark was intriguing enough. Their highly competitive prices, friendly customer support, and spot on responsiveness was just icing on the CPU. Not only did the computer work flawlessly out of the box, but for the first time in many years - I have a custom built PC that continues to perform like a dream without a single hiccup.</p>
<p>Hats off to you guys! Thank you for providing me with not just an excellent piece of machinery, but also reassurance that there are still custom PC manufacturers with passion, expertise, and integrity.</p>
<p>Two thumbs up to <a title="Opens new window to Magic Micro" href="http://myworld.ebay.com/magic-micro" target="_blank">Magic Micro</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.behanisms.com/2009/10/15/magic-micro-a-new-hope/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Phusion Passenger on Ubuntu</title>
		<link>http://www.behanisms.com/2009/10/07/phusion-passenger-on-ubuntu/</link>
		<comments>http://www.behanisms.com/2009/10/07/phusion-passenger-on-ubuntu/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 23:28:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.michaelbehan.me/?p=70</guid>
		<description><![CDATA[For those of you who are like me in joining the sensation called Phusion Passenger (the quickest and fastest way to run Ruby on Rails applications with Apache), and are using a Ubuntu box.. you may have noticed an error while trying to update the Ubuntu package. Fortunately someone has blogged on the solution for [...]]]></description>
			<content:encoded><![CDATA[<p>For those of you who are like me in joining the sensation called Phusion Passenger (the quickest and fastest way to run Ruby on Rails applications with Apache), and are using a Ubuntu box.. you may have noticed an error while trying to update the Ubuntu package. Fortunately someone has blogged on the solution for this and I figured I would share it since I just ran into this problem!</p>
<p>http://blog.brightbox.co.uk/posts/brightbox-builds-hardy-passenger-package</p>
]]></content:encoded>
			<wfw:commentRss>http://www.behanisms.com/2009/10/07/phusion-passenger-on-ubuntu/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Searcher - Rails plugin</title>
		<link>http://www.behanisms.com/2009/06/09/searcher-rails-plugin/</link>
		<comments>http://www.behanisms.com/2009/06/09/searcher-rails-plugin/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 15:20:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[My Software]]></category>

		<category><![CDATA[Rails Plugins]]></category>

		<category><![CDATA[plugins]]></category>

		<category><![CDATA[rails]]></category>

		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://www.michaelbehan.me/?p=64</guid>
		<description><![CDATA[A simple and lightweight &#8217;search&#8217; method for ActiveRecord::Base models that will search text/string-based columns for a specified critieria.
http://github.com/jabberwock/Searcher/tree/master
Usage:

MyModel.search('some text')

You may also add normal ActiveRecord.find options, e.g.:
MyModel.search('some text', :limit =&#62; 20)

You may specify which columns get searched in your ActiveRecord model
by specifying +seacher_column+ or +seacher_columns+, e.g.:
class Foo &#60; ActiveRecord::Base
    searcher_column :col1, :col2
end
]]></description>
			<content:encoded><![CDATA[<p><span id="repository_description" class="edit" title="Click to edit!">A simple and lightweight &#8217;search&#8217; method for ActiveRecord::Base models that will search text/string-based columns for a specified critieria.</span></p>
<p><span class="edit" title="Click to edit!"><a title="Searcher rails plugin" href="http://github.com/jabberwock/Searcher/tree/master" target="_self">http://github.com/jabberwock/Searcher/tree/master</a></span></p>
<p><span class="edit" title="Click to edit!"><strong>Usage:</strong><br />
</span></p>
<pre>MyModel.search('some text')

You may also add normal ActiveRecord.find options, e.g.:
MyModel.search('some text', :limit =&gt; 20)

You may specify which columns get searched in your ActiveRecord model
by specifying +seacher_column+ or +seacher_columns+, e.g.:
class Foo &lt; ActiveRecord::Base
    searcher_column :col1, :col2
end</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.behanisms.com/2009/06/09/searcher-rails-plugin/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SmartForm Rails plugin is back!</title>
		<link>http://www.behanisms.com/2009/06/01/smartform-rails-plugin-is-back/</link>
		<comments>http://www.behanisms.com/2009/06/01/smartform-rails-plugin-is-back/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 17:29:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Cool Tools]]></category>

		<category><![CDATA[My Software]]></category>

		<category><![CDATA[Rails Plugins]]></category>

		<category><![CDATA[plugins]]></category>

		<category><![CDATA[rails]]></category>

		<category><![CDATA[ruby]]></category>

		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://www.michaelbehan.me/?p=34</guid>
		<description><![CDATA[SmartForm creates nicely laid out form fields for an ActiveRecord object, including it&#8217;s content columns and association reflections. The form fields are encapsulated in an HTML definition list.
http://github.com/jabberwock/smart_form/tree/master

]]></description>
			<content:encoded><![CDATA[<p><span id="repository_description" class="edit" title="Click to edit!">SmartForm creates nicely laid out form fields for an ActiveRecord object, including it&#8217;s content columns and association reflections. The form fields are encapsulated in an HTML definition list.</span></p>
<p><span class="edit" title="Click to edit!"><a title="SmartForm" href="http://github.com/jabberwock/smart_form/tree/master" target="_self">http://github.com/jabberwock/smart_form/tree/master</a><br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.behanisms.com/2009/06/01/smartform-rails-plugin-is-back/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ciphermail is back for your enjoyment!</title>
		<link>http://www.behanisms.com/2009/05/30/ciphermail-is-back-for-your-enjoyment/</link>
		<comments>http://www.behanisms.com/2009/05/30/ciphermail-is-back-for-your-enjoyment/#comments</comments>
		<pubDate>Sat, 30 May 2009 21:04:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Cool Tools]]></category>

		<category><![CDATA[My Software]]></category>

		<category><![CDATA[Rails Plugins]]></category>

		<category><![CDATA[cipher]]></category>

		<category><![CDATA[mailto]]></category>

		<category><![CDATA[rails]]></category>

		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://www.michaelbehan.me/?p=9</guid>
		<description><![CDATA[After losing my dedicated server (including all of my rails plugins) due to reasons beyond explanation, I was very excited  to discover that HowFlow has a backup copy of my CipherMail Ruby on Rails plugin. I have added it to my GitHub account!

For those of you not already familiar with Ciphermail, here is the synopsis:
CipherMail [...]]]></description>
			<content:encoded><![CDATA[<p>After losing my dedicated server (including all of my rails plugins) due to reasons beyond explanation, I was very excited  to discover that <a title="HowFlow - Ciphermail" href="http://howflow.com/" target="_blank">HowFlow</a> has a backup copy of my <a title="Ciphermail" href="http://github.com/jabberwock/ciphermail/tree/master" target="_self">CipherMail</a> Ruby on Rails plugin. I have <a title="Ciphermail" href="http://github.com/jabberwock/ciphermail/tree/master" target="_self">added it to my GitHub account!<br />
</a></p>
<p>For those of you not already familiar with Ciphermail, here is the synopsis:</p>
<blockquote><p><span id="repository_description" class="edit" title="Click to edit!">CipherMail provides a safe alternative to the mail_to helper by hiding mailto links from e-mail harvesting bots. The generated output is completely obfuscated by a 1024 bit random key. They keyword is stored on the server, so it is never revealed to the client. Processing is performed on the server-side via an AJAX request and the decrypted redirect is returned to the client, opening a mail composer window… just like normala mailto link.<br />
</span></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.behanisms.com/2009/05/30/ciphermail-is-back-for-your-enjoyment/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hello Git &amp; Github!</title>
		<link>http://www.behanisms.com/2009/05/30/hello-world/</link>
		<comments>http://www.behanisms.com/2009/05/30/hello-world/#comments</comments>
		<pubDate>Sat, 30 May 2009 20:14:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Cool Tools]]></category>

		<category><![CDATA[git]]></category>

		<category><![CDATA[github]]></category>

		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://www.michaelbehan.me/?p=1</guid>
		<description><![CDATA[So after a year of working with a lot of proprietary technologies and using Perforce as my primary SCM, I have decided it is time to join the sensation and begin using Git. So far I have been very pleased with Git&#8217;s features as well as its ease of use. For someone who has mostly [...]]]></description>
			<content:encoded><![CDATA[<p>So after a year of working with a lot of proprietary technologies and using <a title="Perforce" href="http://www.perforce.com" target="_blank">Perforce</a> as my primary <a title="Source Code Mangement" href="http://en.wikipedia.org/wiki/Revision_control" target="_blank">SCM</a>, I have decided it is time to join the sensation and begin using <a title="Git" href="http://git-scm.com/" target="_blank">Git</a>. So far I have been very pleased with Git&#8217;s features as well as its ease of use. For someone who has mostly used <a title="SubVersion" href="http://subversion.tigris.org/" target="_blank">SubVersion</a> and Perforce, Git is extremely simple to learn. I was up and running with Git in just a few minutes.</p>
<p>There is a <a title="GitHub" href="http://github.com/" target="_blank">fantastic website</a> for Git users called <a title="Git Hub" href="http://github.com/" target="_blank">GitHub</a>. It is essentially a SourceForge dedicated to Git users. Unlike SourceForge, GitHub offers an intuitive and simple interface. Sorry, SourceForge&#8230; but you mandate way too many clicks to download software! Github is where it&#8217;s at!</p>
<p>You can <a title="Michael Behan's GitHub Profile" href="http://github.com/jabberwock" target="_self">view my Github profile</a> here: <a title="Michael Behan's GItHub Account" href="http://github.com/jabberwock" target="_self">http://github.com/jabberwock</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.behanisms.com/2009/05/30/hello-world/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
