<?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>Nick Zalabak - techwhizbang</title>
	<atom:link href="http://techwhizbang.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://techwhizbang.com</link>
	<description>my work, life, and ideas</description>
	<lastBuildDate>Mon, 08 Mar 2010 06:15:00 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Twitter Weekly Updates for 2010-03-07</title>
		<link>http://techwhizbang.com/2010/03/twitter-weekly-updates-for-2010-03-07/</link>
		<comments>http://techwhizbang.com/2010/03/twitter-weekly-updates-for-2010-03-07/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 06:15:00 +0000</pubDate>
		<dc:creator>techwhizbang</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://techwhizbang.com/2010/03/twitter-weekly-updates-for-2010-03-07/</guid>
		<description><![CDATA[
Penzeys Spices in Menlo yesterday was great, bought some pure almond extract and made a simple syrup with it for my morning latte, yum #
tinkering with processing.js, very powerful and pretty amazing http://bit.ly/17iZ35 #

]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Penzeys Spices in Menlo yesterday was great, bought some pure almond extract and made a simple syrup with it for my morning latte, yum <a href="http://twitter.com/techwhizbang/statuses/10130013086" class="aktt_tweet_time">#</a></li>
<li>tinkering with processing.js, very powerful and pretty amazing <a href="http://bit.ly/17iZ35" rel="nofollow">http://bit.ly/17iZ35</a> <a href="http://twitter.com/techwhizbang/statuses/9958141934" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://techwhizbang.com/2010/03/twitter-weekly-updates-for-2010-03-07/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Started With Processing.js Tutorial</title>
		<link>http://techwhizbang.com/2010/03/processingjs-tutorial/</link>
		<comments>http://techwhizbang.com/2010/03/processingjs-tutorial/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 19:56:04 +0000</pubDate>
		<dc:creator>techwhizbang</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[canvas]]></category>
		<category><![CDATA[data visualization]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[processing.js]]></category>

		<guid isPermaLink="false">http://techwhizbang.com/?p=99</guid>
		<description><![CDATA[This past week I&#8217;ve had the opportunity to really dig in and give processing.js a work out. For those not familiar with the technology, processing.js is a JavaScript library based on the Java based processing library available for download at http://dev.processing.org/. Processing.js uses the HTML5 Canvas element to draw shapes and designs while using a [...]]]></description>
			<content:encoded><![CDATA[<p><img class=" alignnone" title="Processing.js image" src="http://processingjs.org/content/download/processingjs.gif" alt="Processing.js" width="48" height="48" />This past week I&#8217;ve had the opportunity to really dig in and give <a href="http://processingjs.org" target="_blank">processing.js</a> a work out. For those not familiar with the technology, processing.js is a JavaScript library based on the Java based processing library available for download at <a href="http://dev.processing.org/" target="_blank">http://dev.processing.org/</a>. Processing.js uses the HTML5 Canvas element to draw shapes and designs while using a similar API to the one defined by the Java library.</p>
<p>I found the barrier to entry was unnecessarily frustrating due to the lack of a _good_ beginners tutorial calling out common pitfalls. But don&#8217;t let this sway you, because once you move past this, it is really fun.</p>
<p>Here are the things they don&#8217;t tell you about getting started.</p>
<ul></ul>
<ol>
<li>You should download the <a href="http://processingjs.org/content/download/processing-js-0.6-examples.zip" target="_blank">basic examples zip</a> from the their site.</li>
<li>You&#8217;ll want to grab the processing.init.js and the processing.js from the zip or tarball to include on your page.</li>
<li>As you begin coding you must tag any processing.js script on your page with &lt;<span>script</span><span> type</span>=<span>&#8220;application/processing&#8221;</span>&gt;//your script here&lt;/script&gt;</li>
<li>You must have a corresponding &lt;<span>canvas</span><span> width</span>=<span>&#8220;200px&#8221; </span><span>height</span>=<span>&#8220;200px&#8221;</span>&gt;&lt;/<span>canvas</span>&gt; tag after your script in order for it to render the drawing. Make height and width whatever size you&#8217;d like.</li>
<li>Another note is that you can have multiple canvases on your page, you&#8217;re not limited to one.</li>
<li>The processing.init.js looks for &lt;<span>script</span><span> type</span>=<span>&#8220;application/processing&#8221;</span>&gt;&lt;/script&gt; tag on your page and performs the processing.js initialization, if you don&#8217;t have this included on your page nothing will be drawn.</li>
<li>An alternative to using the processing.init.js and &lt;script type=&#8221;application/processing&#8221;&gt;&lt;/script&gt; is to use the datasrc attribute on the canvas tag. &lt;canvas datasrc=&#8221;your_processing_script.js&#8221;&gt;&lt;/canvas&gt;</li>
</ol>
<p>These are just some of the things I ran into and I hope this helps anyone trying to get started with processsing.js. Next time I will post something using the processing.js library.</p>
<ul></ul>
]]></content:encoded>
			<wfw:commentRss>http://techwhizbang.com/2010/03/processingjs-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2010-02-28</title>
		<link>http://techwhizbang.com/2010/02/twitter-weekly-updates-for-2010-02-28/</link>
		<comments>http://techwhizbang.com/2010/02/twitter-weekly-updates-for-2010-02-28/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 06:15:00 +0000</pubDate>
		<dc:creator>techwhizbang</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://techwhizbang.com/2010/02/twitter-weekly-updates-for-2010-02-28/</guid>
		<description><![CDATA[
chew on that regex for a while, it hurts #
regex = /(?-mix:&#34;[^&#34;]+&#34;&#124;&#39;[^&#39;]+&#39;)&#124;((?:[^\s,\&#124;&#39;&#34;]&#124;(?-mix:(?-mix:\{\%).*?(?-mix:\%\})&#124;(?-mix:\{\{).*?(?-mix:\}\}?)))&#124;(?-mix:&#34;[^&#34;]+&#34;&#124;&#39;[^&#39;]+&#39;))+/ #

]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>chew on that regex for a while, it hurts <a href="http://twitter.com/techwhizbang/statuses/9609099007" class="aktt_tweet_time">#</a></li>
<li>regex = /(?-mix:&quot;[^&quot;]+&quot;|&#39;[^&#39;]+&#39;)|((?:[^\s,\|&#39;&quot;]|(?-mix:(?-mix:\{\%).*?(?-mix:\%\})|(?-mix:\{\{).*?(?-mix:\}\}?)))|(?-mix:&quot;[^&quot;]+&quot;|&#39;[^&#39;]+&#39;))+/ <a href="http://twitter.com/techwhizbang/statuses/9609072843" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://techwhizbang.com/2010/02/twitter-weekly-updates-for-2010-02-28/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2010-02-22</title>
		<link>http://techwhizbang.com/2010/02/twitter-weekly-updates-for-2010-02-22/</link>
		<comments>http://techwhizbang.com/2010/02/twitter-weekly-updates-for-2010-02-22/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 06:15:00 +0000</pubDate>
		<dc:creator>techwhizbang</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://techwhizbang.com/2010/02/twitter-weekly-updates-for-2010-02-22/</guid>
		<description><![CDATA[
delicious egg custard at Golden Gate Bakery in Chinatown #sf #
2 days after getting a land line and I already have telemarketers calling me, this is totally ridiculous #
#stupidinventions leaf blowers #
hacking some C libraries on os x, apparently malloc.h is deprecated or there is some magic i&#39;m not aware to get at it #
just [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>delicious egg custard at Golden Gate Bakery in Chinatown #<a href="http://search.twitter.com/search?q=%23sf" class="aktt_hashtag">sf</a> <a href="http://twitter.com/techwhizbang/statuses/9441988175" class="aktt_tweet_time">#</a></li>
<li>2 days after getting a land line and I already have telemarketers calling me, this is totally ridiculous <a href="http://twitter.com/techwhizbang/statuses/9316808780" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23stupidinventions" class="aktt_hashtag">stupidinventions</a> leaf blowers <a href="http://twitter.com/techwhizbang/statuses/9291708101" class="aktt_tweet_time">#</a></li>
<li>hacking some C libraries on os x, apparently malloc.h is deprecated or there is some magic i&#39;m not aware to get at it <a href="http://twitter.com/techwhizbang/statuses/9218595819" class="aktt_tweet_time">#</a></li>
<li>just curious if there are any complaints or production gotchas anyone has encountered using #<a href="http://search.twitter.com/search?q=%23passenger" class="aktt_hashtag">passenger</a> and #<a href="http://search.twitter.com/search?q=%23nginx" class="aktt_hashtag">nginx</a> with #<a href="http://search.twitter.com/search?q=%23rails" class="aktt_hashtag">rails</a> <a href="http://twitter.com/techwhizbang/statuses/9155537715" class="aktt_tweet_time">#</a></li>
<li>no voting buttons in Entourage, that&#39;s totally lame <a href="http://twitter.com/techwhizbang/statuses/9151873531" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://techwhizbang.com/2010/02/twitter-weekly-updates-for-2010-02-22/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2010-02-14</title>
		<link>http://techwhizbang.com/2010/02/twitter-weekly-updates-for-2010-02-14/</link>
		<comments>http://techwhizbang.com/2010/02/twitter-weekly-updates-for-2010-02-14/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 06:15:00 +0000</pubDate>
		<dc:creator>techwhizbang</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://techwhizbang.com/2010/02/twitter-weekly-updates-for-2010-02-14/</guid>
		<description><![CDATA[
fun finding people I know on the software craftsmanship manifesto http://bit.ly/dtTMXt #
16/100 best companies in Fortune magazine were California based companies and out of those 11 were tech based companies (of course) #
@mattokeefe looks awesome but the registration is steep, I&#39;m totally interested in the NoSQL, no Join, no RDBMS talk in reply to mattokeefe [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>fun finding people I know on the software craftsmanship manifesto <a href="http://bit.ly/dtTMXt" rel="nofollow">http://bit.ly/dtTMXt</a> <a href="http://twitter.com/techwhizbang/statuses/9111017207" class="aktt_tweet_time">#</a></li>
<li>16/100 best companies in Fortune magazine were California based companies and out of those 11 were tech based companies (of course) <a href="http://twitter.com/techwhizbang/statuses/9110715614" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mattokeefe" class="aktt_username">mattokeefe</a> looks awesome but the registration is steep, I&#39;m totally interested in the NoSQL, no Join, no RDBMS talk <a href="http://twitter.com/mattokeefe/statuses/8905368774" class="aktt_tweet_reply">in reply to mattokeefe</a> <a href="http://twitter.com/techwhizbang/statuses/8969171811" class="aktt_tweet_time">#</a></li>
<li>Google trying to &quot;be the internet&quot; with Buzz, it is just a matter of time before they reveal their true identity &#8211; _Skynet_ <a href="http://twitter.com/techwhizbang/statuses/8919437673" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mattpulley" class="aktt_username">mattpulley</a> the Ricketts have already decided the playoffs aren&#39;t worth the Cubs time <img src='http://techwhizbang.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  <a href="http://twitter.com/mattpulley/statuses/8902626913" class="aktt_tweet_reply">in reply to mattpulley</a> <a href="http://twitter.com/techwhizbang/statuses/8911665941" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/p4sam" class="aktt_username">p4sam</a> also irksome Perforce making all my files read only upon check out <a href="http://twitter.com/p4sam/statuses/8881312573" class="aktt_tweet_reply">in reply to p4sam</a> <a href="http://twitter.com/techwhizbang/statuses/8910427855" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/p4sam" class="aktt_username">p4sam</a> coming from Git and SVN one of my biggest dislikes is the way things aren&#39;t handled on the local file system <a href="http://twitter.com/p4sam/statuses/8881312573" class="aktt_tweet_reply">in reply to p4sam</a> <a href="http://twitter.com/techwhizbang/statuses/8910211911" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mattokeefe" class="aktt_username">mattokeefe</a> coming to Cali soon? <a href="http://twitter.com/mattokeefe/statuses/8889597849" class="aktt_tweet_reply">in reply to mattokeefe</a> <a href="http://twitter.com/techwhizbang/statuses/8891592433" class="aktt_tweet_time">#</a></li>
<li>philosophical #<a href="http://search.twitter.com/search?q=%23software" class="aktt_hashtag">software</a> blabbering ad nauseam, too much &quot;Confucius says&quot; &#8211; we respect, we admire, we know you&#39;re awesome <a href="http://twitter.com/techwhizbang/statuses/8886276816" class="aktt_tweet_time">#</a></li>
<li>wondering &#8211; the popularity and production of electric cars and how that will impact the energy sector &#8211; oil vs electricity <a href="http://twitter.com/techwhizbang/statuses/8879468001" class="aktt_tweet_time">#</a></li>
<li>I set a 2 wk timeframe not to pass hasty judgement on Perforce, since everything needs a fair trial. Perforce you&#39;ve got 3 days to shape up. <a href="http://twitter.com/techwhizbang/statuses/8878270236" class="aktt_tweet_time">#</a></li>
<li>selenium browser startup on mac with ruby client not very intuitive, *custom /browser/path didn&#39;t work, had to use *chrome /browser/path <a href="http://twitter.com/techwhizbang/statuses/8878045299" class="aktt_tweet_time">#</a></li>
<li>wrangling javascript test failures after upgrading blueridge <a href="http://twitter.com/techwhizbang/statuses/8870053347" class="aktt_tweet_time">#</a></li>
<li>Selling our place back in IL and just saw the online MLS pics&#8230;feeling homesick? Totally unexpected <a href="http://twitter.com/techwhizbang/statuses/8843645172" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://techwhizbang.com/2010/02/twitter-weekly-updates-for-2010-02-14/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2010-02-07</title>
		<link>http://techwhizbang.com/2010/02/twitter-weekly-updates-for-2010-02-07/</link>
		<comments>http://techwhizbang.com/2010/02/twitter-weekly-updates-for-2010-02-07/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 06:15:00 +0000</pubDate>
		<dc:creator>techwhizbang</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://techwhizbang.com/2010/02/twitter-weekly-updates-for-2010-02-07/</guid>
		<description><![CDATA[
Our stuff arrived today! Do we really have this much stuff? Good grief #
Ate at Refuge last night the beers and cheeses are indeed top notch, lamb burger was especially good #

]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Our stuff arrived today! Do we really have this much stuff? Good grief <a href="http://twitter.com/techwhizbang/statuses/8786175905" class="aktt_tweet_time">#</a></li>
<li>Ate at Refuge last night the beers and cheeses are indeed top notch, lamb burger was especially good <a href="http://twitter.com/techwhizbang/statuses/8786096317" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://techwhizbang.com/2010/02/twitter-weekly-updates-for-2010-02-07/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2010-01-31</title>
		<link>http://techwhizbang.com/2010/01/twitter-weekly-updates-for-2010-01-31/</link>
		<comments>http://techwhizbang.com/2010/01/twitter-weekly-updates-for-2010-01-31/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 06:15:00 +0000</pubDate>
		<dc:creator>techwhizbang</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://techwhizbang.com/2010/01/twitter-weekly-updates-for-2010-01-31/</guid>
		<description><![CDATA[
http://twitpic.com/10m9za &#8211; Afternoon at Half Moon and Pescadero #
@mattpulley Good luck on the polar plunge! in reply to mattpulley #
Today I become a Californian &#8211; home sweet home #
super stoked about starting @ #cafepress, I might have to take my enthusiasm down a notch and reduce my caffeine intake not to scare anyone #
my car [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li><a href="http://twitpic.com/10m9za" rel="nofollow">http://twitpic.com/10m9za</a> &#8211; Afternoon at Half Moon and Pescadero <a href="http://twitter.com/techwhizbang/statuses/8436732651" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mattpulley" class="aktt_username">mattpulley</a> Good luck on the polar plunge! <a href="http://twitter.com/mattpulley/statuses/8415517107" class="aktt_tweet_reply">in reply to mattpulley</a> <a href="http://twitter.com/techwhizbang/statuses/8415728965" class="aktt_tweet_time">#</a></li>
<li>Today I become a Californian &#8211; home sweet home <a href="http://twitter.com/techwhizbang/statuses/8414738524" class="aktt_tweet_time">#</a></li>
<li>super stoked about starting @ #<a href="http://search.twitter.com/search?q=%23cafepress" class="aktt_hashtag">cafepress</a>, I might have to take my enthusiasm down a notch and reduce my caffeine intake not to scare anyone <a href="http://twitter.com/techwhizbang/statuses/8192980436" class="aktt_tweet_time">#</a></li>
<li>my car is on a carrier as of this morning, Wednesday the movers, Saturday we fly to SFO, Sunday we get our place, Monday to work <a href="http://twitter.com/techwhizbang/statuses/8192783155" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://techwhizbang.com/2010/01/twitter-weekly-updates-for-2010-01-31/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2010-01-24</title>
		<link>http://techwhizbang.com/2010/01/twitter-weekly-updates-for-2010-01-24/</link>
		<comments>http://techwhizbang.com/2010/01/twitter-weekly-updates-for-2010-01-24/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 06:15:00 +0000</pubDate>
		<dc:creator>techwhizbang</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://techwhizbang.com/2010/01/twitter-weekly-updates-for-2010-01-24/</guid>
		<description><![CDATA[
&#34;sledding&#34; down a ski hill with my friends was epic, wish we had a radar gun to get the MPH, my tailbone is a bit sore but totally worth it #
por supuesto, estoy aprendiendo español   #
descontrol es mi programa favorito español! #
really wanting Paxton &#38; Whitfield Stilton cheese but shipping to the US [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>&quot;sledding&quot; down a ski hill with my friends was epic, wish we had a radar gun to get the MPH, my tailbone is a bit sore but totally worth it <a href="http://twitter.com/techwhizbang/statuses/8167687365" class="aktt_tweet_time">#</a></li>
<li>por supuesto, estoy aprendiendo español <img src='http://techwhizbang.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <a href="http://twitter.com/techwhizbang/statuses/8127307342" class="aktt_tweet_time">#</a></li>
<li>descontrol es mi programa favorito español! <a href="http://twitter.com/techwhizbang/statuses/8126937372" class="aktt_tweet_time">#</a></li>
<li>really wanting Paxton &amp; Whitfield Stilton cheese but shipping to the US is £70!!! seriously ridiculous <a href="http://twitter.com/techwhizbang/statuses/8080867793" class="aktt_tweet_time">#</a></li>
<li>fetch me my sledgehammer. <a href="http://twitter.com/techwhizbang/statuses/8076091890" class="aktt_tweet_time">#</a></li>
<li>the shower faucet is busted and everything is sealed with tile &#8211; great. trying diamond blade saw for a hole, else enter sledgehammer <a href="http://twitter.com/techwhizbang/statuses/8074495500" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ryankinderman" class="aktt_username">ryankinderman</a>  thought this might of interest <a href="http://bit.ly/6z6yyC" rel="nofollow">http://bit.ly/6z6yyC</a> nice jruby on rails logger <a href="http://twitter.com/techwhizbang/statuses/8037710759" class="aktt_tweet_time">#</a></li>
<li>it is really just bad developers, doesn&#39;t matter what language. anyway i&#39;m enjoying working on a Solr plug-in, and bravo to the Solr team <a href="http://twitter.com/techwhizbang/statuses/8030614682" class="aktt_tweet_time">#</a></li>
<li>I think so many of us have been on &quot;bad&quot; Java projects with poorly written code and lack of tests, unfairly it&#39;s gotten a bad rep <a href="http://twitter.com/techwhizbang/statuses/8030541302" class="aktt_tweet_time">#</a></li>
<li>Solr is so well designed, all aspects are easy to add on and customize, such a pleasure <a href="http://twitter.com/techwhizbang/statuses/8030459713" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/bleitdm" class="aktt_username">bleitdm</a> do you know when clear is going to be available in California? <a href="http://twitter.com/bleitdm/statuses/7448967242" class="aktt_tweet_reply">in reply to bleitdm</a> <a href="http://twitter.com/techwhizbang/statuses/8009037550" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/patmaddox" class="aktt_username">patmaddox</a> if you like the Bourbon County, try N&#39;ice Chouffe equally kickass <a href="http://twitter.com/patmaddox/statuses/7972638549" class="aktt_tweet_reply">in reply to patmaddox</a> <a href="http://twitter.com/techwhizbang/statuses/7989320477" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/mattpulley" class="aktt_username">mattpulley</a> As I Lay Dying channel, metalcore! <a href="http://twitter.com/mattpulley/statuses/7988694452" class="aktt_tweet_reply">in reply to mattpulley</a> <a href="http://twitter.com/techwhizbang/statuses/7989068077" class="aktt_tweet_time">#</a></li>
<li>Rocking to &quot;My Curse&quot; by Killswitch Engage (<a href="http://bit.ly/7kyG0e" rel="nofollow">http://bit.ly/7kyG0e</a>) #<a href="http://search.twitter.com/search?q=%23pandora" class="aktt_hashtag">pandora</a> <a href="http://twitter.com/techwhizbang/statuses/7988471769" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/patmaddox" class="aktt_username">patmaddox</a> Bourbon County Stout is some seriously tasty beer, dudes at Goose Island nailed it <a href="http://twitter.com/patmaddox/statuses/7972638549" class="aktt_tweet_reply">in reply to patmaddox</a> <a href="http://twitter.com/techwhizbang/statuses/7984148329" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/mattokeefe" class="aktt_username">mattokeefe</a> Google patents MapReduce&#8230; what does that mean for Hadoop?  <a href="http://bit.ly/7nuBQx" rel="nofollow">http://bit.ly/7nuBQx</a> <a href="http://twitter.com/mattokeefe/statuses/7962064671" class="aktt_tweet_reply">in reply to mattokeefe</a> <a href="http://twitter.com/techwhizbang/statuses/7970392083" class="aktt_tweet_time">#</a></li>
<li>Heading home to pack more.boxes, about  10 more days left <a href="http://twitter.com/techwhizbang/statuses/7960542489" class="aktt_tweet_time">#</a></li>
<li>I&#39;ve got some nifty ideas brewing for #<a href="http://search.twitter.com/search?q=%23protobuf" class="aktt_hashtag">protobuf</a> usage <a href="http://twitter.com/techwhizbang/statuses/7912007646" class="aktt_tweet_time">#</a></li>
<li>solr 1.4 is killer, anyone who is paying money for a search solution needs to really look at the latest feature list <a href="http://twitter.com/techwhizbang/statuses/7910716079" class="aktt_tweet_time">#</a></li>
<li>fascinated with birds of paradise, they seem alien like <a href="http://bit.ly/70k9fk" rel="nofollow">http://bit.ly/70k9fk</a> <a href="http://twitter.com/techwhizbang/statuses/7909150598" class="aktt_tweet_time">#</a></li>
<li>#KNN algorithm for auto-classification and #<a href="http://search.twitter.com/search?q=%23search" class="aktt_hashtag">search</a> relevance, are there better #<a href="http://search.twitter.com/search?q=%23algorithms" class="aktt_hashtag">algorithms</a> for such purposes? what are other people using? <a href="http://twitter.com/techwhizbang/statuses/7905953291" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://techwhizbang.com/2010/01/twitter-weekly-updates-for-2010-01-24/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2010-01-17</title>
		<link>http://techwhizbang.com/2010/01/twitter-weekly-updates-for-2010-01-17/</link>
		<comments>http://techwhizbang.com/2010/01/twitter-weekly-updates-for-2010-01-17/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 06:15:00 +0000</pubDate>
		<dc:creator>techwhizbang</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://techwhizbang.com/2010/01/twitter-weekly-updates-for-2010-01-17/</guid>
		<description><![CDATA[
@aslak_hellesoy your blog is throwing 502&#39;s in reply to aslak_hellesoy #
finally started to publish my gems to gemcutter, jruby-quartz is available now  http://bit.ly/7NGO5Z #
finished the rails 2.3.5 upgrade for more notes and gotchas http://bit.ly/7FdX5L #
Rails 2.3.3 to 2.3.5 upgrade gotchas: update your rspec and rspec-rails gems to 1.3.x #
Rails 2.3.3 to 2.3.5 upgrade gotchas: [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>@<a href="http://twitter.com/aslak_hellesoy" class="aktt_username">aslak_hellesoy</a> your blog is throwing 502&#39;s <a href="http://twitter.com/aslak_hellesoy/statuses/7883826882" class="aktt_tweet_reply">in reply to aslak_hellesoy</a> <a href="http://twitter.com/techwhizbang/statuses/7888423904" class="aktt_tweet_time">#</a></li>
<li>finally started to publish my gems to gemcutter, jruby-quartz is available now  <a href="http://bit.ly/7NGO5Z" rel="nofollow">http://bit.ly/7NGO5Z</a> <a href="http://twitter.com/techwhizbang/statuses/7882601955" class="aktt_tweet_time">#</a></li>
<li>finished the rails 2.3.5 upgrade for more notes and gotchas <a href="http://bit.ly/7FdX5L" rel="nofollow">http://bit.ly/7FdX5L</a> <a href="http://twitter.com/techwhizbang/statuses/7804461422" class="aktt_tweet_time">#</a></li>
<li>Rails 2.3.3 to 2.3.5 upgrade gotchas: update your rspec and rspec-rails gems to 1.3.x <a href="http://twitter.com/techwhizbang/statuses/7800738125" class="aktt_tweet_time">#</a></li>
<li>Rails 2.3.3 to 2.3.5 upgrade gotchas: ActiveSupport::JSON::ParseError no longer exists, use ActiveSupport::JSON.parse_error <a href="http://twitter.com/techwhizbang/statuses/7800706965" class="aktt_tweet_time">#</a></li>
<li>Rails 2.3.3 to 2.3.5 upgrade gotchas: db:seed task exists in Rails, if you use seed_fu plugin it will default to db:seed_fu as the task name <a href="http://twitter.com/techwhizbang/statuses/7800692684" class="aktt_tweet_time">#</a></li>
<li>having a blast with a hundred sinatra microapps running, (lightbulb moment) now i have to write a script to kill them <a href="http://twitter.com/techwhizbang/statuses/7759596285" class="aktt_tweet_time">#</a></li>
<li>needed to test the http timeout stuff with jruby 1.4, sinatra to the rescue! in 2 seconds i wrote a microapp  and spun up, friggin&#39; awesome <a href="http://twitter.com/techwhizbang/statuses/7759282377" class="aktt_tweet_time">#</a></li>
<li>working on the Rails 2.3.5 upgrade now, combined with jruby 1.4, the speed of our specs has improved <a href="http://twitter.com/techwhizbang/statuses/7758521998" class="aktt_tweet_time">#</a></li>
<li>#jruby 1.4 upgrade complete without pulling any hair out and it seems a bit faster than 1.3.1, let&#39;s see if those timeout settings work <a href="http://twitter.com/techwhizbang/statuses/7727032770" class="aktt_tweet_time">#</a></li>
<li>upgrading to jruby 1.4 right now due to net/http timeouts being ignored in versions &lt; 1.4 causing threads and requests to hang forever <a href="http://twitter.com/techwhizbang/statuses/7715654040" class="aktt_tweet_time">#</a></li>
<li>wagilefall &#8211; defn. Those under some disillusion claiming they are agile when they are really waterfall <a href="http://twitter.com/techwhizbang/statuses/7685415741" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/tonycoco" class="aktt_username">tonycoco</a> BREAKING NEWS: Mark McGwire took steroids. In other news, kids like puppies! <a href="http://twitter.com/tonycoco/statuses/7644360392" class="aktt_tweet_reply">in reply to tonycoco</a> <a href="http://twitter.com/techwhizbang/statuses/7646506677" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://techwhizbang.com/2010/01/twitter-weekly-updates-for-2010-01-17/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rails 2.3.3 to 2.3.5 and Jruby 1.4 Upgrade Notes</title>
		<link>http://techwhizbang.com/2010/01/rails-2-3-3-to-2-3-5-and-jruby-1-4-upgrade-notes/</link>
		<comments>http://techwhizbang.com/2010/01/rails-2-3-3-to-2-3-5-and-jruby-1-4-upgrade-notes/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 22:25:13 +0000</pubDate>
		<dc:creator>techwhizbang</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[jruby]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[rails 2.3.3]]></category>
		<category><![CDATA[rails 2.3.5]]></category>

		<guid isPermaLink="false">http://techwhizbang.com/?p=87</guid>
		<description><![CDATA[Rails upgrade notes:
1.) Rails now has seeding functionality and along with it comes a new task, db:seed. If you use the seed_fu gem be aware that your db:seed call that worked with the gem is now executing the Rails version of db:seed. You will need to call rake db:seed_fu to get the gem version to [...]]]></description>
			<content:encoded><![CDATA[<p>Rails upgrade notes:</p>
<p>1.) Rails now has seeding functionality and along with it comes a new task, db:seed. If you use the seed_fu gem be aware that your db:seed call that worked with the gem is now executing the Rails version of db:seed. You will need to call rake db:seed_fu to get the gem version to work.</p>
<p>2.) ActiveSupport::JSON::ParseError no longer exists, so be sure to use ActiveSupport::JSON.parse_error.</p>
<p>3.) Update your rspec and rspec-rails gems to 1.3.x.</p>
<p>4.) Update your rack gem from 1.0.0 to 1.0.1</p>
<p>5.) Rails 2.3.5 works with the <a href="http://github.com/nzkoz/rails_xss">RailsXss plugin</a>, in Rails 3 escaping content in erb will default, but if you want to ensure your site isn&#8217;t at risk of XSS, make sure you do this install.</p>
<p>Jruby upgrade notes:</p>
<p>If you are using Jruby < 1.4 and you use the net/http library, you better upgrade soon. We were having all sorts of problems with threading and exorbitantly long running requests. There were several bug fixes around the open and read timeout functionality in Jruby 1.4. Now network requests will timeout properly according to your open and read timeout settings.</p>
]]></content:encoded>
			<wfw:commentRss>http://techwhizbang.com/2010/01/rails-2-3-3-to-2-3-5-and-jruby-1-4-upgrade-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
