<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns: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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Ryan Day</title>
	
	<link>http://www.ryanday.net</link>
	<description>Product Development</description>
	<lastBuildDate>Tue, 08 May 2012 14:03:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/RyanDay" /><feedburner:info uri="ryanday" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Rails alias_method_chain</title>
		<link>http://feedproxy.google.com/~r/RyanDay/~3/WhfWoaTvjgY/</link>
		<comments>http://www.ryanday.net/2012/05/08/rails-alias_method_chain/#comments</comments>
		<pubDate>Tue, 08 May 2012 14:03:10 +0000</pubDate>
		<dc:creator>Ryan Day</dc:creator>
				<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://www.ryanday.net/?p=715</guid>
		<description><![CDATA[I am totally new to Ruby and Rails and, frankly, it all is a little too magical for my tastes. I&#8217;m developing a plugin for Redmine at the moment, and I need to wrap the &#8220;update&#8221; and &#8220;create&#8221; method for Issues. So I&#8217;m using the alias_method_chain to create aliases for method names to specify what [...]]]></description>
			<content:encoded><![CDATA[<p>I am totally new to Ruby and Rails and, frankly, it all is a little too magical for my tastes. I&#8217;m developing a plugin for Redmine at the moment, and I need to wrap the &#8220;update&#8221; and &#8220;create&#8221; method for Issues. So I&#8217;m using the alias_method_chain to create aliases for method names to specify what I&#8217;m doing.. I think&#8230; here is some code:</p>
<p><!--DEVFMTCODE--><pre class="devcodeblock" title="Ruby"><div class="devcodeoverflow"><ol><li> </li><li>&nbsp;&nbsp;&nbsp;&nbsp;<span style="color:#9966CC; font-weight:bold;">def</span> <span style="color:#0000FF; font-weight:bold;">self</span>.<span style="color:#9900CC;">included</span><span style="color:#006600; font-weight:bold;">&#40;</span>base<span style="color:#006600; font-weight:bold;">&#41;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;base.<span style="color:#9900CC;">send</span><span style="color:#006600; font-weight:bold;">&#40;</span>:<span style="color:#9966CC; font-weight:bold;">include</span>, InstanceMethods<span style="color:#006600; font-weight:bold;">&#41;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;base.<span style="color:#9900CC;">class_eval</span> <span style="color:#9966CC; font-weight:bold;">do</span> </li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;alias_method_chain <span style="color:#ff3333; font-weight:bold;">:update</span>, <span style="color:#ff3333; font-weight:bold;">:alert_pmxbot</span> </li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;alias_method_chain <span style="color:#ff3333; font-weight:bold;">:create</span>, <span style="color:#ff3333; font-weight:bold;">:alert_pmxbot</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color:#9966CC; font-weight:bold;">end</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;<span style="color:#9966CC; font-weight:bold;">end</span></li></ol></div></pre><!--END_DEVFMTCODE--></p>
<p>This will do the following:</p>
<ul>
<li>Create an &#8220;update_without_alert_pmxbot&#8221; method, which points to the original update method</li>
<li>Put an &#8220;update_with_alert_pmxbot&#8221; method in the &#8220;update&#8221; method chain (so we must create update_with_alert_pmxbot)</li>
</ul>
<p>This is the method I created</p>
<p><!--DEVFMTCODE--><pre class="devcodeblock" title="Ruby"><div class="devcodeoverflow"><ol><li>&nbsp;&nbsp;&nbsp;&nbsp;<span style="color:#9966CC; font-weight:bold;">def</span> update_with_alert_pmxbot</li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color:#9966CC; font-weight:bold;">begin</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;logger.<span style="color:#9900CC;">info</span> <span style="color:#996600;">&quot;In update_with_alert_pmxbot&quot;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color:#008000; font-style:italic;"># Do greatness</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color:#9966CC; font-weight:bold;">rescue</span> <span style="color:#CC00FF; font-weight:bold;">Exception</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> e</li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;logger.<span style="color:#9900CC;">info</span> e</li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color:#9966CC; font-weight:bold;">ensure</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;update_without_alert_pmxbot</li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color:#9966CC; font-weight:bold;">end</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;<span style="color:#9966CC; font-weight:bold;">end</span></li></ol></div></pre><!--END_DEVFMTCODE--></p>
<div>
<p>The ensure block is important. I was under the impression that adding my method to the chain would just make me one of several methods called. <strong>This was not true!</strong> You must call the &#8220;update_without_alert_pmxbot&#8221; method alias to make sure all the other methods in the chain run. This alias is provided to prevent a loop. Calling the original &#8220;update&#8221; method directly would keep your method in the chain, and you would loop until the stack crashed.</p>
</div>
<img src="http://feeds.feedburner.com/~r/RyanDay/~4/WhfWoaTvjgY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ryanday.net/2012/05/08/rails-alias_method_chain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ryanday.net/2012/05/08/rails-alias_method_chain/</feedburner:origLink></item>
		<item>
		<title>VIM at Novapy</title>
		<link>http://feedproxy.google.com/~r/RyanDay/~3/XSnYWWDg8x8/</link>
		<comments>http://www.ryanday.net/2012/03/18/vim-at-novapy/#comments</comments>
		<pubDate>Sun, 18 Mar 2012 18:39:19 +0000</pubDate>
		<dc:creator>Ryan Day</dc:creator>
				<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.ryanday.net/?p=702</guid>
		<description><![CDATA[We had a wonderful gathering this past Thursday at Nova Python&#8217;s March meetup. Matt showed up with some great information about how he spends his day in VIM, and also talked about a few plugins that he doesn&#8217;t use personally. but are popular anyway. According to our comments, people learned a lot. That means, to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ryanday.net/wp-content/uploads/2012/01/python.png"><img class="alignright size-thumbnail wp-image-683" title="python" src="http://www.ryanday.net/wp-content/uploads/2012/01/python-138x150.png" alt="" width="138" height="150" /></a>We had a wonderful gathering this past Thursday at <a href="http://www.meetup.com/NOVA-Python/events/48474422/">Nova Python&#8217;s March meetup</a>. Matt showed up with some great information about how he spends his day in VIM, and also talked about a few plugins that he doesn&#8217;t use personally. but are popular anyway. According to our comments, people learned a lot. That means, to me at least, the meetup was a success. The official slides are available online at&nbsp;<a href="http://www.slideshare.net/majmcdonald/vim-and-python-12038822">http://www.slideshare.net/majmcdonald/vim-and-python-12038822</a>. You should also scroll through the <a href="http://www.meetup.com/NOVA-Python/events/48474422/">meetup comments</a> for vim configs that &nbsp;our members use.</p>
<p>In other news, the first beta of the website is online at <a href="http://novapython.org">http://novapython.org</a>. There are some graphs of comparing RSVPs to attended statistics, as well as member joins over time. There is some more work to be done, but I figured I&#8217;d post it anyway. The code is <a href="https://github.com/novapython/Website">online on GitHub</a>, so fork it!&nbsp;</p>
<img src="http://feeds.feedburner.com/~r/RyanDay/~4/XSnYWWDg8x8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ryanday.net/2012/03/18/vim-at-novapy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ryanday.net/2012/03/18/vim-at-novapy/</feedburner:origLink></item>
		<item>
		<title>Recess Framework Quick Tip</title>
		<link>http://feedproxy.google.com/~r/RyanDay/~3/0mv1vYqgBB4/</link>
		<comments>http://www.ryanday.net/2012/03/05/recess-framework-quick-tip/#comments</comments>
		<pubDate>Tue, 06 Mar 2012 03:19:26 +0000</pubDate>
		<dc:creator>Ryan Day</dc:creator>
				<category><![CDATA[recess framework]]></category>

		<guid isPermaLink="false">http://www.ryanday.net/?p=692</guid>
		<description><![CDATA[Recess has an apps/ directory to allow you to load several different applications in one Recess instance. I typically don&#8217;t follow this pattern in production because I don&#8217;t want to restart multiple applications when I make a code update to just one of them. I have several installations of Recess with one application in each [...]]]></description>
			<content:encoded><![CDATA[<p>R<a href="http://www.ryanday.net/wp-content/uploads/2012/03/recess.png"><img class="alignright size-medium wp-image-695" title="recess" src="http://www.ryanday.net/wp-content/uploads/2012/03/recess-300x93.png" alt="" width="300" height="93" /></a>ecess has an apps/ directory to allow you to load several different applications in one Recess instance. I typically don&#8217;t follow this pattern in production because I don&#8217;t want to restart multiple applications when I make a code update to just one of them. I have several installations of Recess with one application in each install. This does have one problem; APC cache keys. Recess has cache keys in several files:</p>
<ol>
<li>recess/lang/Library.class.php</li>
<li>recess/database/pdo/PdoDataSource.class.php</li>
<li>bootstrap.php</li>
</ol>
<div>These keys all start with &#8220;Recess::&#8221;, and therefore each Recess install can overrun cache keys. So what I do is create a global APP_CACHE_PREFIX variable in bootstrap.php where I can prefix my application name. Then this variable should be added to all cache key instances in the other Recess files.</div>
<img src="http://feeds.feedburner.com/~r/RyanDay/~4/0mv1vYqgBB4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ryanday.net/2012/03/05/recess-framework-quick-tip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ryanday.net/2012/03/05/recess-framework-quick-tip/</feedburner:origLink></item>
		<item>
		<title>Burgers and Beer</title>
		<link>http://feedproxy.google.com/~r/RyanDay/~3/o3nIN2lCJtQ/</link>
		<comments>http://www.ryanday.net/2012/01/27/burgers-and-beer/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 07:33:07 +0000</pubDate>
		<dc:creator>Ryan Day</dc:creator>
				<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.ryanday.net/?p=686</guid>
		<description><![CDATA[A great time was had by all at The Counter this evening. We had an all time high turn out at near 100%! Several new faces joined today as well. Perhaps the time/date change was helpful? Alex was able to make it out from DC.&#160;He brought me up to date on Python Packges&#160;and the near [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ryanday.net/wp-content/uploads/2012/01/python.png"><img class="alignright size-full wp-image-683" title="python" src="http://www.ryanday.net/wp-content/uploads/2012/01/python.png" alt="" width="138" height="180" /></a>A great time was had by all at The Counter this evening. We had an all time high turn out at near 100%! Several new faces joined today as well. Perhaps the time/date change was helpful? <a href="http://aclark.net/" target="_blank">Alex</a> was able to make it out from DC.&nbsp;He brought me up to date on <a href="http://www.pythonpackages.com/" target="_blank">Python Packges</a>&nbsp;and the near term plans.&nbsp;<a href="http://pydanny.blogspot.com/" target="_blank">pyDanny</a>(original nova Django coordinator) and Audrey made it out from LA. They provided some great insight on Meetups and persistence and keeping going.</p>
<p>The third Thursday is going well but perhaps it would be wise to expand to multiple meetings a month? I would hate to over expand, however this particular meeting generated a lot of traffic. Perhaps pyBrew would still work. The Lost Dog Cafe was mentioned more then once tonight and came runner up in our poll&#8230;. it is looking good&#8230;</p>
<p>So on to new business. NOVA Python is now its own group! We have split off of the DC parent and have all manner of new domains and color schemes and&#8230; well, thats about it really. So, the new Meetup Group location is <a href="http://meetup.novapython.org" target="_blank">http://meetup.novapython.org</a> and the website is <a href="http://www.novapython.org" target="_blank">http://www.novapython.org.</a>&nbsp;There is a Twitter &#8230; thing?&#8230; to follow as well,&nbsp;<a href="https://twitter.com/#!/NOVAPython">https://twitter.com/#!/NOVAPython</a>&nbsp;(or @NOVAPython). I&#8217;m sure I&#8217;ll send an email to the list shortly, once I make sure everything is working correctly.&nbsp;</p>
<img src="http://feeds.feedburner.com/~r/RyanDay/~4/o3nIN2lCJtQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ryanday.net/2012/01/27/burgers-and-beer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ryanday.net/2012/01/27/burgers-and-beer/</feedburner:origLink></item>
		<item>
		<title>NOVA Python January</title>
		<link>http://feedproxy.google.com/~r/RyanDay/~3/IHyAUyg7KMA/</link>
		<comments>http://www.ryanday.net/2012/01/20/nova-python-january/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 23:49:30 +0000</pubDate>
		<dc:creator>Ryan Day</dc:creator>
				<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.ryanday.net/?p=679</guid>
		<description><![CDATA[Today&#8217;s meetup went pretty well. Kenneth Reitz gave his Python for Humans talk. The main focus (I felt) was on PEP 20&#8242;s &#8220;There should be one&#8211; and preferably only one &#8211;obvious way to do it&#8221;. The major problem being that new adopters are faced with multiple choices to do everyday things like file system access [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ryanday.net/wp-content/uploads/2012/01/python.png"><img class="alignright size-full wp-image-683" title="python" src="http://www.ryanday.net/wp-content/uploads/2012/01/python.png" alt="" width="138" height="180" /></a>Today&#8217;s meetup went pretty well. <a title="Kr" href="http://www.kennethreitz.com/" target="_blank">Kenneth Reitz</a> gave his Python for Humans talk. The main focus (I felt) was on PEP 20&#8242;s &#8220;There should be one&#8211; and preferably only one &#8211;obvious way to do it&#8221;. The major problem being that new adopters are faced with multiple choices to do everyday things like file system access and web requests. Some of these choices are old (urllib2) and deprecated (<a title="PIP over easy_install" href="http://stackoverflow.com/questions/3220404/why-use-pip-over-easy-install" target="_blank">easy_install</a>).</p>
<p>We discussed Python 3k and its unicode problems, and possibly convinced Ed to back port his language processor to use 2.7 instead of 3k. I learned about gUnicorn, which I intend on using for a work in progress.</p>
<p>It was a good time, and I anxiously await next month when <a title="NOVA Python" href="http://nova-python.dcpython.org/events/47424962/">Jim Fulton gives his talk</a>!</p>
<img src="http://feeds.feedburner.com/~r/RyanDay/~4/IHyAUyg7KMA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ryanday.net/2012/01/20/nova-python-january/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ryanday.net/2012/01/20/nova-python-january/</feedburner:origLink></item>
		<item>
		<title>First Hire</title>
		<link>http://feedproxy.google.com/~r/RyanDay/~3/OYNh2CYYzjk/</link>
		<comments>http://www.ryanday.net/2012/01/16/first-hire/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 04:38:32 +0000</pubDate>
		<dc:creator>Ryan Day</dc:creator>
				<category><![CDATA[startup]]></category>

		<guid isPermaLink="false">http://www.ryanday.net/?p=639</guid>
		<description><![CDATA[We&#8217;ve just recently completed our first full time development hire for Cirrusworks! This increases our stateside My experience was not entirely what I expected so I wanted to share my notes about the process. I used two types of job ads, and posted to three different boards. I&#8217;m interested to hear other&#8217;s experiences in today&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p align="LEFT"><span style="color: #000000; font-size: medium; font-family: georgia, palatino;"><a href="http://www.ryanday.net/wp-content/uploads/2012/01/celebrate-fire-works-pretty.png"><img class="alignright size-full wp-image-668" title="celebrate-fire-works-pretty" src="http://www.ryanday.net/wp-content/uploads/2012/01/celebrate-fire-works-pretty.png" alt="" width="224" height="179" /></a>We&#8217;ve just recently completed our first full time development hire for Cirrusworks! This increases our stateside My experience was not entirely what I expected so I wanted to share my notes about the process. I used two types of job ads, and posted to three different boards. I&#8217;m interested to hear other&#8217;s experiences in today&#8217;s hiring process as well. I want to know if the hiring process has changed from just a few years ago.</span></p>
<p align="LEFT"><span style="color: #000000; font-size: medium;"><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><span style="text-decoration: underline;">TL;DR</span></span></span><br /> <span style="color: #000000; font-size: medium;"><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">I received significantly less resumes than I expected. However I still had several great candidates that I had to make hard decisions about. This leads me to believe that the more specialized job boards are successfully reducing the clutter. I feel that, given this elite group, the company is the one who only has 30 seconds to pique the interest of candidate instead of the other way around(which is what I tend&nbsp;to see in hiring blog posts and books).</span></span></p>
<p align="LEFT"><span style="color: #000000; font-size: medium;"><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><span style="text-decoration: underline;">Search Locations</span></span></span><br /> <span style="color: #000000; font-size: medium;"><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">I used Craigslist, <a title="Careers 2.0" href="http://careers.stackoverflow.com" target="_blank">Careers 2.0</a> and <a title="Authentic Jobs" href="http://www.authenticjobs.com" target="_blank">Authentic Jobs</a> for my search. I tested out both ads on Craigslist first. This let me keep costs down while I made sure my ads would get some sort of attention. I only posted the most successful ad on Careers and Authentic Jobs.</span></span></p>
<p align="LEFT"><span style="color: #000000; font-size: medium;"><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><span style="text-decoration: underline;">Types of Job Descriptions</span></span></span><br /> <span style="color: #000000; font-size: medium;"><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">I used two types of ads; a standard job description with the &#8220;Required&#8221; and &#8220;Additional&#8221; skill set, and a colorful request for those that love writing code and seeing their work make the lives thousands of people better everyday. The standard description attracted some people, however the second ad received the most response by far. The responses to the second ad were much more more personal as well. I&#8217;m not sure how to measure people&#8217;s responses to the ad, so I can only assume that the second ad attracted better candidates that were looking for more interesting work while the first ad seemed like a typical bland job.</span></span></p>
<p style="text-align: left;" align="LEFT"><span style="color: #000000; font-size: medium;"><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><span style="text-decoration: underline;">Results</span></span></span></p>
<p style="text-align: left;" align="LEFT"><span style="color: #000000; font-size: medium;"><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">In total I received 32 unique responses by principles to my ads. The two Craigslist ads yielded a couple duplicates, and there were several companies offering me services(I don&#8217;t count those).</span></span></p>
<p style="text-align: left;"><img class="size-full wp-image-669 alignleft" title="ResumeChart" src="http://www.ryanday.net/wp-content/uploads/2012/01/ResumeChart.png" alt="" width="240" height="173" /><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">Here are my results for the job boards I used:</span><span style="font-size: medium;">&nbsp;</span></p>
<ul style="text-align: left;">
<li><span style="font-size: medium;">Careers 2.0: <strong>3</strong></span></li>
<li><span style="font-size: medium;">Authentic Jobs: <strong>3</strong></span></li>
<li><span style="font-size: medium;">Craigslist (paid, not Etc) (first job): <strong>6</strong></span></li>
<li><span style="font-size: medium;">Craigslist (paid, not Etc) (second job): <strong>26</strong></span></li>
</ul>
<p style="text-align: left;">&nbsp;</p>
<p style="text-align: left;"><em style="font-family: georgia, palatino; font-size: medium;">Careers 2.0</em></p>
<p style="text-align: left;"><span style="color: #000000; font-size: medium;"><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">One of our finalists was from this site. I was expecting more resumes, but then again that isn&#8217;t what they try to do. The three responses I had were serious applicants, and I didn&#8217;t have to spend time sorting through any resumes that were obviously not what I wanted.</span></span></p>
<p align="LEFT"><span style="color: #000000; font-size: medium;"><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><em>Authentic Jobs</em></span></span><br /> <span style="font-size: medium;">I feel we were mismatched for this site. The three responses I got were very good, but we were looking for back end developers and these responses had a history of design work. Most of the positions on Authentic Jobs are front end and design related, and I will certainly return for that kind of hire. I was quite happy with the process and Cameron is great to work with. I can&#8217;t wait for <a title="Authentic Crew" href="http://www.authenticcrew.com" target="_blank">Authentic Crew</a> to go live.</span></p>
<p align="LEFT"><span style="color: #000000; font-size: medium;"><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><em>Craigslist</em></span></span><br /> <span style="color: #000000; font-size: medium;"><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">As expected, this is where most of my resumes came from. I didn&#8217;t get hundreds of resumes however. It was also fairly simple to tell the auto responses from the real responses, and the people representing companies were upfront in the response.</span></span></p>
<p align="LEFT"><span style="color: #000000; font-size: medium;"><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><span style="text-decoration: underline;">Commentary</span></span></span><br /> <span style="color: #000000; font-size: medium;"><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">Only receiving 32 responses was a little shocking because I had expected hundreds of responses. Everything I&#8217;ve read in books(<a href="http://www.amazon.com/gp/product/1590598385/ref=as_li_tf_tl?ie=UTF8&amp;tag=stufforprog-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1590598385">here</a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=stufforprog-20&amp;l=as2&amp;o=1&amp;a=1590598385" alt="" width="1" height="1" border="0" /> and <a href="http://www.amazon.com/gp/product/159059844X/ref=as_li_tf_tl?ie=UTF8&amp;tag=stufforprog-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=159059844X">here</a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=stufforprog-20&amp;l=as2&amp;o=1&amp;a=159059844X" alt="" width="1" height="1" border="0" />) and blogs talked about hundreds of responses to job posts. I&#8217;ve got this idea in my head that job applicants only have 30 seconds to attract the attention of the resume screener due to the vast amounts of responses to each job post. I found this not to be the case.</span></span></p>
<p align="LEFT"><span style="color: #000000; font-size: medium;"><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">I was able to read each resume I received. It only took about an hour total spread over, roughly, a month. Of course, the next steps of finding that perfect candidate was pretty close to what I thought and what I had read about. I was able to work the 32 responses down to five phone calls without too much trouble. The five phone calls became three interviews, which were all excellent fits. It took a much longer time to make a decision at that point because I was hoping for one single, obvious, match. Instead I was given two perfect matches. We met a few times, with all the other members of the company, and went through some internal procedures to determine who we would make the offer to.</span></span></p>
<p align="LEFT"><span style="color: #000000; font-size: medium;"><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">I don&#8217;t know what this says, if anything, about the job market in DC. Maybe my postings were no good, and that caused the low response rate. It&#8217;s possible everyone already has a great job and they&#8217;re not interested in joining an early stage company. I&#8217;ve noticed that DC has a lot of consultants as well. Consultants that actually make a lot of money and don&#8217;t seem too interested on being locked into one company. This may be because the government is a big business here and consulting fits that contract by contract model pretty well. </span></span></p>
<p align="LEFT"><span style="color: #000000; font-size: medium;"><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">I think the most likely explanation is because we are a smaller company and don&#8217;t have a continuous hiring process. We haven&#8217;t had the resources to establish our name in the community. Therefore when we put up our &#8220;Now Hiring&#8221; sign, there isn&#8217;t a large flock of people just waiting to respond.</span></span></p>
<img src="http://feeds.feedburner.com/~r/RyanDay/~4/OYNh2CYYzjk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.ryanday.net/2012/01/16/first-hire/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ryanday.net/2012/01/16/first-hire/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 0.498 seconds. --><!-- Cached page generated by WP-Super-Cache on 2012-05-08 09:26:57 -->

