<?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>le accidental occurrence</title>
	<atom:link href="http://blog.42at.com/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.42at.com</link>
	<description>42at</description>
	<lastBuildDate>Mon, 14 May 2012 20:08:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>npm install WNdb</title>
		<link>http://blog.42at.com/npm-install-wndb</link>
		<comments>http://blog.42at.com/npm-install-wndb#comments</comments>
		<pubDate>Fri, 11 May 2012 17:45:33 +0000</pubDate>
		<dc:creator>Moos</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[nlp]]></category>
		<category><![CDATA[nodejs]]></category>
		<category><![CDATA[wndb]]></category>
		<category><![CDATA[wordnet]]></category>

		<guid isPermaLink="false">http://blog.42at.com/?p=201</guid>
		<description><![CDATA[WordNet is a large lexigraphical database of English words, including definitions, synonyms (aka, synsets), and part-of-speech data.  Now it has come to node.js through NaturalNode&#8217;s natural NLP module.  natural will download the WordNet files on first invocation.  But I found it more convenient to download the database off-line rather than on-demand. So I&#8217;ve added the WordNet database files [...]]]></description>
			<content:encoded><![CDATA[<p><a title="WordNet" href="http://wordnet.princeton.edu/wordnet/" target="_blank">WordNet</a> is a large lexigraphical database of English words, including definitions, synonyms (aka, synsets), and part-of-speech data.  Now it has come to node.js through NaturalNode&#8217;s <a title="naturl" href="https://github.com/NaturalNode/natural" target="_blank">natural</a> NLP module.  natural will download the WordNet files on first invocation.  But I found it more convenient to download the database off-line rather than on-demand.</p>
<p>So I&#8217;ve added the WordNet database files as an npm module.  To install</p>
<pre class="brush: bash; title: ; notranslate">npm install WNdb</pre>
<p>This will install the complete WordNet 3.0 data files (about 34 MB uncompressed) and make them available to your program.</p>
<p>See <a title="WNdb npm registry" href="http://search.npmjs.org/#/WNdb" target="_blank">npm registry</a> and <a title="WNdb on github" href="https://github.com/moos/WNdb" target="_blank">WNdb on github</a>  for more info.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.42at.com/npm-install-wndb/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TimeTravel.js</title>
		<link>http://blog.42at.com/timetravel-js</link>
		<comments>http://blog.42at.com/timetravel-js#comments</comments>
		<pubDate>Sat, 12 Mar 2011 19:04:42 +0000</pubDate>
		<dc:creator>Moos</dc:creator>
				<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://blog.42at.com/?p=198</guid>
		<description><![CDATA[Off to a good start...]]></description>
			<content:encoded><![CDATA[<pre>Off to a good start...
<pre class="brush: jscript; title: ; notranslate">
function timeTravel( direction, time /* in seconds */  ) {

  if (direction == 'forward') {

    wait (time);
    echo (&quot;We're there!&quot;);

  } else {

    // TODO ...

  }
}
</pre>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.42at.com/timetravel-js/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google&#8217;s misguided vision</title>
		<link>http://blog.42at.com/googles-misguided-vision</link>
		<comments>http://blog.42at.com/googles-misguided-vision#comments</comments>
		<pubDate>Thu, 03 Mar 2011 18:54:08 +0000</pubDate>
		<dc:creator>Moos</dc:creator>
				<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://blog.42at.com/?p=197</guid>
		<description><![CDATA[Google are idiotic for offering upwards of $5B for Groupon. Methinks Groupon will go the way of MySpace in not too distant a future.  Other players and more compelling offerings will take its place, just as Facebook &#38; Twitter did for social networking. Instead, Google should pay IBM a cool $1/2 B for the science [...]]]></description>
			<content:encoded><![CDATA[<p>Google are idiotic for <a href="http://www.businessinsider.com/googles-groupon-bid-signals-desperation-loss-of-confidence-2010-12">offering upwards of $5B for Groupon</a>. Methinks Groupon will go the way of MySpace in not too distant a future.  Other players and more compelling offerings will take its place, just as Facebook &amp; Twitter did for social networking.</p>
<p>Instead, Google should pay IBM a cool $1/2 B for the science and technology behind <a href="http://www-03.ibm.com/innovation/us/watson/index.html">Watson</a>.  Then spend another $500M adapting and scaling it for general use to augment their search technology and bringing it up-to-speed from the last decade!</p>
<p>Really I don&#8217;t care to get 100,000 search hits anymore.  I&#8217;m only interested in <em>an</em> answer or at most 4-5 compelling answers in most cases.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.42at.com/googles-misguided-vision/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>node.js: anatomy of a net connection</title>
		<link>http://blog.42at.com/node-js-anatomy-of-a-net-connection</link>
		<comments>http://blog.42at.com/node-js-anatomy-of-a-net-connection#comments</comments>
		<pubDate>Sun, 01 Aug 2010 18:20:45 +0000</pubDate>
		<dc:creator>Moos</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[nodejs]]></category>

		<guid isPermaLink="false">http://blog.42at.com/?p=193</guid>
		<description><![CDATA[Been looking into the awesome node.js project, &#8220;evented I/O&#8221; server-side Javascript running on V8.  I got introduced to node.js while attending a Bayjax meeting back in May dubbed Cinco de Node.js with node.js&#8217; creator Ryan Dahl presenting (video). My little side project (more on that later) involved delving into the internals of the node.js Javascript [...]]]></description>
			<content:encoded><![CDATA[<p>Been looking into the awesome <a href="http://nodejs.org/">node.js</a> project, &#8220;evented I/O&#8221; server-side Javascript running on V8.  I got introduced to node.js while attending a Bayjax meeting back in May dubbed <a href="http://www.meetup.com/BayJax/calendar/13308905/">Cinco de Node.js</a> with node.js&#8217; creator Ryan Dahl presenting (<a href="http://www.yuiblog.com/blog/2010/05/20/video-dahl/">video</a>).</p>
<p>My little side project (more on that later) involved delving into the internals of the node.js Javascript library and figuring out how a network connection was made.  It turns out to be quite nontrivial with the myriad async calls and network socket handshaking.  I started to document the connection process and wanted to share it.  Perhaps others will find it useful also.</p>
<p>A typical client-server connection code can found in the node.js test harness, eg, <a href="http://github.com/ry/node/blob/master/test/simple/test-http-1.0.js">test-http-1.0</a>.  Create a server:</p>
<pre class="brush: jscript; title: ; notranslate">

var server = http.createServer(function (req, res) {
res.writeHead(200, {&quot;Content-Type&quot;: &quot;text/plain&quot;});
res.end(&quot;hello world\n&quot;);
})
server.listen(PORT);
</pre>
<p>and the client:</p>
<pre class="brush: jscript; title: ; notranslate">

var c = net.createConnection(80);
c.setEncoding(&quot;utf8&quot;);
c.addListener(&quot;connect&quot;, function () {
 c.write( &quot;GET / HTTP/1.0\n\n&quot; );
});

c.addListener(&quot;data&quot;, function (chunk) {
 console.log(chunk);
 });

c.addListener(&quot;end&quot;, function () {
 c.end();
 server.close();
});
</pre>
<p>The server goes through the regular socket(), bind(), listen() routine.  It then kicks off its readWatcher which listens() for any connections.  Once a connect request comes in, it creates a  peer socket and pairs it to the incoming connection.  It sets the peer&#8217;s socket error state to zero (0), which tells the peer that the connection was successful. Finally, it kicks off connectionListener(), which waits for incoming data.  The server logic is shown in this diagram: (click for full image)</p>
<div id="attachment_194" class="wp-caption alignnone" style="width: 624px"><a href="http://blog.42at.com/wp-content/uploads/2010/08/node-net-server.png"><img class="size-large wp-image-194 " title="node-net-server" src="http://blog.42at.com/wp-content/uploads/2010/08/node-net-server-1024x478.png" alt="" width="614" height="287" /></a><p class="wp-caption-text">node.js server connection diagram</p></div>
<p>Meanwhile, back at the client, net.createConnection() calls the doConnect() routine which calls socket connect().  If a server is found at the address:port, the client&#8217;s socket state is set to &#8216;connect in progress&#8217; (EINPROGRESS), and the socket is made writable.  This triggers the client&#8217;s writeWatcher, which checks the client&#8217;s socket error state for zero (connected).  When the socket is connected, the client&#8217;s readWatcher is kicked off which listens for response data, and it emits the &#8216;connect&#8217; event, indicating the client is ready to make a request.  The client logic is show in the following diagram (click for full image):</p>
<div id="attachment_195" class="wp-caption alignnone" style="width: 624px"><a href="http://blog.42at.com/wp-content/uploads/2010/08/node-net-client.png"><img class="size-large wp-image-195 " title="node-net-client" src="http://blog.42at.com/wp-content/uploads/2010/08/node-net-client-1024x620.png" alt="" width="614" height="372" /></a><p class="wp-caption-text">node.js client connection diagram</p></div>
<p>The exact sequence of events and calls may change as node.js is under fast-paced development (the diagrams correspond to roughly v0.1.96).  But it should give a good overview of the sequence of events and relation to the callbacks.</p>
<p>More node.js goodness will be coming.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.42at.com/node-js-anatomy-of-a-net-connection/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>imagined conversation</title>
		<link>http://blog.42at.com/imagined-conversation</link>
		<comments>http://blog.42at.com/imagined-conversation#comments</comments>
		<pubDate>Tue, 11 May 2010 07:58:22 +0000</pubDate>
		<dc:creator>Moos</dc:creator>
				<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://blog.42at.com/?p=192</guid>
		<description><![CDATA[- Moos - (Bewildered) - It's my stage name. - Are you an actor? - No, I'm a programmer. And the web is my stage. &#160;]]></description>
			<content:encoded><![CDATA[<pre>- Moos

- (Bewildered)

- It's my stage name.

- Are you an actor?

- No, I'm a programmer.
  And the web is my stage.
</pre>
<pre>
&nbsp;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.42at.com/imagined-conversation/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>tap tap sound fx using HTML5</title>
		<link>http://blog.42at.com/tap-tap-sound-fx-using-html5</link>
		<comments>http://blog.42at.com/tap-tap-sound-fx-using-html5#comments</comments>
		<pubDate>Mon, 03 May 2010 21:40:13 +0000</pubDate>
		<dc:creator>Moos</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://blog.42at.com/?p=189</guid>
		<description><![CDATA[Quick demonstration of enabling sounds effects using HTML5 &#60;audio&#62; tag. Click the bookmarklet below to enable old-style typewriter sounds effects on this page. Drag it to the browser toolbar to enable on any web page. Try taptapFx bookmarklet now. Volume control will show on top right corner of screen. Tested on FF3.6, Chrome 4, Safari [...]]]></description>
			<content:encoded><![CDATA[<p>Quick demonstration of enabling sounds effects using HTML5 <code>&lt;audio&gt;</code> tag.<img class="alignright size-thumbnail wp-image-190" title="old typewriter (image: http://www.abm.on.ca)" src="http://blog.42at.com/wp-content/uploads/2010/05/old3-150x150.jpg" alt="old typewriter" width="150" height="150" /></p>
<p>Click the bookmarklet below to  enable old-style typewriter sounds effects on this page. Drag it to the  browser toolbar to enable on any web page.</p>
<p><a title="taptapSfx" href="javascript:void((function(){if  (document.querySelector('script[src*=\'taptapSfx.js\']')) return; var  e=document.createElement('script');e.setAttribute('type','text/javascript');e.setAttribute('src','http'+'://bit.ly/duYv88?path=http'+'://42at.com/lab/taptapSfx/taptapSfx.js');(document.getElementsByTagName('head')[0]  || document.getElementsByTagName('body')[0]).appendChild(e)})())">Try  taptapFx bookmarklet now</a>.</p>
<p>Volume control will show on top right corner of screen.</p>
<p>Tested on FF3.6, Chrome 4, Safari 4.   Probably works on Opera, iPad/iPhone  browsers as well.  Not IE8, but  maybe IE9!</p>
<p>See <a href="http://42at.com/lab/taptapSfx/">test area</a>.  View <a href="http://github.com/moos/taptapSfx/blob/master/taptapSfx.js">taptapSfx.js</a> source at github.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.42at.com/tap-tap-sound-fx-using-html5/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>_xiterator: an expression iterator for Underscore</title>
		<link>http://blog.42at.com/_xiterator-an-expression-iterator-for-underscore</link>
		<comments>http://blog.42at.com/_xiterator-an-expression-iterator-for-underscore#comments</comments>
		<pubDate>Thu, 15 Apr 2010 20:41:47 +0000</pubDate>
		<dc:creator>Moos</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[underscore]]></category>

		<guid isPermaLink="false">http://blog.42at.com/?p=186</guid>
		<description><![CDATA[Underscore.js is an excellent, compact Javascript  library extending the language with useful tools.  Most of the utils are drawn from Prototype and/or been inspired by languages such as Ruby. Underscore reverts to native code where it is supported. A hand-full of so-called Collection functions which operate on arrays &#38; objects, such as _any(), _all(), _map(), and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://documentcloud.github.com/underscore/">Underscore.js</a> is an excellent, compact Javascript  library extending the language with useful tools.  Most of the utils are drawn from <a href="http://prototypejs.org">Prototype</a> and/or been inspired by languages such as Ruby. Underscore reverts to native  code where it is supported.</p>
<p>A hand-full of so-called Collection functions which operate on arrays &amp; objects, such as _any(), _all(), _map(), and _detect(), take an iterator function as an argument:</p>
<pre class="brush: jscript; title: ; notranslate">
if ( _.any([1,2,3], function iterator(value){
    return ! _.isNumber(value);
})) {
    // ...
}
</pre>
<p>_.isNumber() is one of a dozen or so type checking routines provided by Underscore, in addition to, _isString(), _isFunction(), _isArray(), and others.</p>
<p>Often times the iterator is a simple type-checking, like above, or some sort of expression that needs to be evaluated.  So why not just enter the expression:</p>
<pre class="brush: jscript; title: ; notranslate">if (_.any([1,2,3], &quot;!isNumber&quot;)) {
 // ...
}</pre>
<p>This is what <strong>_xiterator</strong>, an add-on for Underscore, provides.  It  is simply the meat of the iterator in a compact semantic.</p>
<p>Let&#8217;s throw in some range checking:</p>
<pre class="brush: jscript; title: ; notranslate">
if (_.any([1,2,3], function iterator(value){
    return ! _.isNumber(value) || value &lt; 0 || value &gt; 10;
})){
    // ...
}
</pre>
<p>can be  replaced by:</p>
<pre class="brush: jscript; title: ; notranslate">
if (_.any([1,2,3], &quot;!isNumber || &lt; 0 || &gt; 10&quot;)){
    // ....
}
</pre>
<h2>Expression iterators</h2>
<p>The expression is composed of valid Javascript code.  In the case of relational operators (&lt;, &lt;=, ==, etc.) the left operand is <em>implied</em> to be the value of the iterator.  The expression is evaluated in global scope.</p>
<p>Any of the Underscore _.isXXX type-checking routines can be used without the argument (the _.  part is implied).  In addition, three new routines are added: <em>isBlank</em>, <em>isOdd</em>, <em>isEven</em>.</p>
<p>Parenthetical expressions are fully supported:</p>
<pre class="brush: jscript; title: ; notranslate"> _.any([1,2,3], &quot;(isNumber &amp;&amp; &gt; 0) || (isString &amp;&amp; !isBlank)&quot;);</pre>
<p>Validating functions:</p>
<pre class="brush: jscript; title: ; notranslate"> function checkZip(value) {...}

 _.any(zips, &quot;!isBlank &amp;&amp; checkZip(__value) &quot;);  // __value is the placeholder</pre>
<p>In addition to __value, __key and __list placeholder variables, corresponding to the formal arguments of the iterator, are available.</p>
<p>How about a regular expression:</p>
<pre class="brush: jscript; title: ; notranslate"> _.all([1,2,3], /\d+/);   // either as string or RegExp object</pre>
<p>Of course, functions are still supported and will work as before.</p>
<h3>Accessing original methods</h3>
<p>Since the expression string needs to be parsed, runtime performance will be affected.  Performance sensitive applications involving huge sets should use the original routine.</p>
<p>The original routines  can be explicitly accessed by passing no argument, eg.</p>
<pre class="brush: jscript; title: ; notranslate">
var originalAny = _.any();
originalAny(veryLargeSet, function(){...});
</pre>
<p>Or more compactly,</p>
<pre class="brush: jscript; title: ; notranslate">_.any()(veryLargeSet, function(){...});
</pre>
<p>Expressions cannot be used on original methods:</p>
<pre class="brush: jscript; title: ; notranslate">
originalAny(veryLargeSet, 'isNumber'); //  =&gt; raises exception
</pre>
<h3>The code</h3>
<p>Details, code, and examples (including <a href="http://moos.github.com/_xiterator">test suite</a>) are on <a href="http://github.com/moos/_xiterator">Github</a>.   Released under MIT license.</p>
<p><strong>Update: </strong>Just came across <a href="http://osteele.com/sources/javascript/functional/">Functional.js</a>.  Above technique is not too dissimilar to its string `lambda` functionality.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.42at.com/_xiterator-an-expression-iterator-for-underscore/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPad Thumboard &#8211; live!</title>
		<link>http://blog.42at.com/ipad-thumboard-live</link>
		<comments>http://blog.42at.com/ipad-thumboard-live#comments</comments>
		<pubDate>Thu, 25 Mar 2010 11:05:59 +0000</pubDate>
		<dc:creator>Moos</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[ipad]]></category>

		<guid isPermaLink="false">http://blog.42at.com/?p=182</guid>
		<description><![CDATA[Remember the thumb keyboard concept for the iPad introduced earlier?  Well, here&#8217;s a real live working demo.  This demo works best on latest Safari or Chrome (although Firefox is workable too). Try Thumboard live! It&#8217;ll be best to try it on an actual iPad when it ships, which shouldn&#8217;t be too long now.  There is [...]]]></description>
			<content:encoded><![CDATA[<p>Remember the <a href="http://blog.42at.com/thumb-keyboard-concept-for-the-ipad">thumb keyboard concept for the iPad</a> introduced earlier?  Well, here&#8217;s a real live working demo.  This demo works best on latest Safari or Chrome (although Firefox is workable too).</p>
<p><a href="http://42at.com/lab/Thumboard">Try Thumboard live!</a></p>
<pre><img class="size-medium wp-image-183 aligncenter" title="Thumboard" src="http://blog.42at.com/wp-content/uploads/2010/03/thumboard-sm-228x300.jpg" alt="" width="228" height="300" /></pre>
<p>It&#8217;ll be best to try it on an actual <a href="http://www.apple.com/ipad/">iPad</a> when it ships, which shouldn&#8217;t be too long now.  There is also a <a href="http://42at.com/lab/Thumboard/bookmarklet.html">bookmarklet</a> to enable the Thumboard on any website.  Try the &#8216;rotate&#8217; button to simulate rotating on the iPad.</p>
<h2>Usage</h2>
<pre>&lt;script type="text/javascript" src="getThumboard.js" charset="utf-8" &gt;
&lt;/script&gt;</pre>
<p>This will load the necessary JS/CSS/HTML files and fire up the thumboard.</p>
<p><strong>Or with callback:</strong></p>
<pre>&lt;script type="text/javascript" src="getThumboard.js?cb=my_init" charset="utf-8" &gt;
&lt;/script&gt;</pre>
<p>where my_init() is defined in your code, eg:</p>
<pre class="brush: jscript; title: ; notranslate">function my_init() {
     var options = {enterText:'Search'};
     new Thumboard(options);
}</pre>
<p>Who knows, now that there seems to be <a href="http://www.tuaw.com/2010/03/19/ipad-dvorak-hardware-keyboard/">Dvorak keyboard support</a> for the iPad, why not a Thumboard!?</p>
<p><strong>Update:</strong> Apr. 23.  The demo has been improved and updated.   Work around for webkit <a href="https://bugs.webkit.org/show_bug.cgi?id=25444">bug</a> selectionStart on readOnly inputs.  Enter key support on forms (except webkit due to another <a href="https://bugs.webkit.org/show_bug.cgi?id=31234">bug</a>!)</p>
<h6>NOTE: This code is provided purely for demonstration  purposes and  may not live long.  Commercial use without express permission prohibited!</h6>
]]></content:encoded>
			<wfw:commentRss>http://blog.42at.com/ipad-thumboard-live/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Pollock&#8217;d</title>
		<link>http://blog.42at.com/pollockd</link>
		<comments>http://blog.42at.com/pollockd#comments</comments>
		<pubDate>Mon, 15 Mar 2010 09:08:51 +0000</pubDate>
		<dc:creator>Moos</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[harmony]]></category>

		<guid isPermaLink="false">http://blog.42at.com/?p=175</guid>
		<description><![CDATA[* done with tricked-up Harmony.]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter size-full wp-image-174" title="Pollock by Moos with Harmony 1" src="http://blog.42at.com/wp-content/uploads/2010/03/pollock1.png" alt="" width="640" height="527" /></p>
<p><em><a href="http://blog.42at.com/wp-content/uploads/2010/03/pollock3.png"><img class="size-thumbnail wp-image-177 alignleft" title="Pollock by Moos with Harmony 3" src="http://blog.42at.com/wp-content/uploads/2010/03/pollock3-150x150.png" alt="" width="150" height="150" /></a></em><a href="http://blog.42at.com/wp-content/uploads/2010/03/pollock5.png"> <img class="alignnone size-thumbnail wp-image-185" title="Pollock by Moos with Harmony 5" src="http://blog.42at.com/wp-content/uploads/2010/03/pollock5-150x150.png" alt="" width="150" height="150" /></a> <br style="clear: both;" /><br />
<em>* done with tricked-up <a href="http://blog.42at.com/harmony-webappd">Harmony</a>.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.42at.com/pollockd/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Aw Shucks &#8211; only 2!</title>
		<link>http://blog.42at.com/aw-shucks-only-2</link>
		<comments>http://blog.42at.com/aw-shucks-only-2#comments</comments>
		<pubDate>Fri, 12 Mar 2010 21:50:32 +0000</pubDate>
		<dc:creator>Moos</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[ipad]]></category>

		<guid isPermaLink="false">http://blog.42at.com/?p=169</guid>
		<description><![CDATA[iPad pre-order is go &#8212; will you buy one?]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-173" title="aw shucks - only 2!" src="http://blog.42at.com/wp-content/uploads/2010/03/ipad-shucks.png" alt="" width="646" height="322" /></p>
<p><a href="http://www.engadget.com/2010/03/12/ipad-pre-order-is-go-will-you-buy-one/">iPad pre-order is go &#8212; will you buy one?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.42at.com/aw-shucks-only-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

