<?xml version="1.0" encoding="UTF-8"?><rss version="2.0">

 <channel>

  <title><![CDATA[Ted Roden]]></title>
  <link><![CDATA[http://tedroden.com/]]></link>
  <description><![CDATA[ This site is made by a machine!
&rarr; I made *.enjoysthin.gs and Blasted.app&rarr; You can find me on twitter and elsewhere.]]></description>
  <generator>Grablr 1.0b</generator>



   <item>
      <title><![CDATA[Wikipedia, I &lt;3 you....]]></title>
         <description><![CDATA[
 
	
 	  	  	  	  	  	             <img src="http://26.media.tumblr.com/tumblr_kz5hu0PcXp1qz504eo1_500.png" / >;
     <div class="caption"><p><a href="http://en.wikipedia.org/wiki/Gunny_sack">Wikipedia</a>, I &lt;3 you.</p></div>			 	  	  	  	  	  	  	  	  	   	   


	
       ]]></description>
       <link>http://tedroden.com/444105/</link>
       <guid>http://tedroden.com/444105/</guid>
       <pubDate>2010-03-11 23:01:00-05</pubDate>
   </item>



   <item>
      <title><![CDATA[]]></title>
         <description><![CDATA[
 
	
 	  	  
	     <div class="audio">
	         <div class="player"><embed type="application/x-shockwave-flash" src="http://tedroden.tumblr.com/swf/audio_player.swf?audio_file=http://www.tumblr.com/audio_file/442545109/tumblr_kz5h03ST5y1qz504e&color=FFFFFF" height="27" width="207" quality="best"></embed></div>
	         <div class="caption">
<blockquote>Often hopping out of coffins, steady rocking while you&#8217;re rotting</blockquote>
<p>
Perhaps the greatest guest appearance ever? Percee-P (on the previous) track would have an argument with that, but still. Solid track all around.
</p></div>
	     </div> 	   


	
       ]]></description>
       <link>http://tedroden.com/444104/</link>
       <guid>http://tedroden.com/444104/</guid>
       <pubDate>2010-03-11 22:43:00-05</pubDate>
   </item>



   <item>
      <title><![CDATA[Watching a protest (curre...]]></title>
         <description><![CDATA[
 
		     <div class='quote'>
	         <blockquote>Watching a protest (currently held up by a bus full of convicts) from an undisclosed location (check gps).   <a href="http://yfrog.com/86ab3j">yfrog.com/86ab3j</a></blockquote>
             <div class='source'>--Ted Roden</div>
	     </div>	
       ]]></description>
       <link>http://tedroden.com/444089/</link>
       <guid>http://tedroden.com/444089/</guid>
       <pubDate>2010-03-10 10:17:12-05</pubDate>
   </item>



   <item>
      <title><![CDATA[No Other Distribution Authorized Under this Agreement]]></title>
         <description><![CDATA[
 
	
 	   
   	     <p><a href="http://rentzsch.tumblr.com/post/437273247/no-other-distribution-authorized-under-this-agreement" class="tumblr_blog">rentzsch</a>:</p>

<blockquote>
<p>Apple’s <a href="http://www.eff.org/deeplinks/2010/03/iphone-developer-program-license-agreement-all">iPhone Developer Program License Agreement</a>:</p>

<blockquote>
  <p><strong>7.3 No Other Distribution Authorized Under this Agreement</strong><br/>
  Except for the distribution of freely available Licensed Applications and the distribution of Applications for use on Registered Devices as set forth in Sections 7.1 and 7.2 above, no other distribution of programs or applications developed using the Apple Software is authorized or permitted hereunder. In the absence of a separate agreement with Apple, You agree not to distribute Your Application to third parties via other distribution methods or to enable or permit others to do so.</p>
</blockquote>

<p>Diabolical.</p>

<p>Apple’s developer <em>tools</em> license mandates use of their <em>distribution</em> channel.</p>

<p>Because, you know, Cydia is <em>such a threat</em> to Apple’s business model.</p>

<p>Imagine if gcc’s license required your resulting executables run solely on Linux.</p>

<p>Imagine if Google required hosting your web apps on solely <a href="http://code.google.com/appengine/">App Engine</a> if you used <a href="http://code.google.com/closure/">Closure</a>.</p>

<p>I hope section 7.3 comes back to bite Apple during their Department of Justice investigation.</p>
</blockquote>	   


	
       ]]></description>
       <link>http://tedroden.com/444084/</link>
       <guid>http://tedroden.com/444084/</guid>
       <pubDate>2010-03-09 15:34:25-05</pubDate>
   </item>



   <item>
      <title><![CDATA[

First and foremost, up ...]]></title>
         <description><![CDATA[
 
	
 	   
   	     <div class="centered-image bordered-image"><img src="http://media.tumblr.com/tumblr_kz02qeTVZK1qz504e.png"/></div>

<p>First and foremost, up to this point, <a href="http://tedroden.github.com/hairball">Hairball</a> has been written to exist. Not to be fast or feature-rich or serve a specific purpose. It&#8217;s just intended to be something amusing that I can build. However, I&#8217;ve recently become curious about how it stacks up to other HTTP servers when it comes to performance.</p>

<p>
To figure this out, I decided to test it against the very same framework that inspired it, <a href="http://tornadoweb.org">Tornado</a>. Using Apache&#8217;s benchmarking tool called <code>ab</code>, which is the very same benchmarking tool used when the Tornado folks compared their server against other implementations, I ran a very simple test.
</p>

<p>The test consisted on running a simple hello world script using both frameworks and testing the results. I did 10,000 requests to each server running 25 simultaneous requests over and over and over again until I&#8217;d reached 10,000.</p>

<p>Or, on the command line: <code>ab -n 10000 -c 25 <a href="http://127.0.0.1/">http://127.0.0.1/</a></code></p>

<p>The results surprised me quite a bit. Using this simple test, which is the same benchmarking tool used by Tornado, <strong>Hairball is more than twice as fast as Tornado.</strong></p>

<p>I&#8217;ve posted <a href="http://gist.github.com/326243">the full results of both the tests</a>. Along with the code for both the <a href="http://gist.github.com/326262">Tornado</a> and <a href="http://gist.github.com/326264">Hairball</a> scripts.</p>

<p>I&#8217;ll try to run two more benchmark tests soon. 1) How does Hairball compare to apache? And 2) How does it compare when serving long-polling connections?</p>	   


	
       ]]></description>
       <link>http://tedroden.com/444077/</link>
       <guid>http://tedroden.com/444077/</guid>
       <pubDate>2010-03-09 10:00:56-05</pubDate>
   </item>



   <item>
      <title><![CDATA[...]]></title>
         <description><![CDATA[
 
	
 	  	  	  	  	  	             <img src="http://24.media.tumblr.com/tumblr_kyzuda512v1qbnbgdo1_500.png" / >;
     			 	  	  	  	  	  	  	  	  	   	   


	
       ]]></description>
       <link>http://tedroden.com/444075/</link>
       <guid>http://tedroden.com/444075/</guid>
       <pubDate>2010-03-08 21:46:22-05</pubDate>
   </item>



   <item>
      <title><![CDATA[I Quit, or It's Open Source from now on!]]></title>
         <description><![CDATA[
 
	
 	   
   	     <p><a href="http://ted-is-a-nerd.tumblr.com/post/428529777/i-quit-or-its-open-source-from-now-on">ted-is-a-nerd</a>:</p>
<blockquote>
<p class="dashboardonly">I build things because I like to build them, I want to use them, and on some level, probably a bigger level than I’m willing to admit, I want other people to use them.</p>
<p>I started writing software (not all that long ago) because the act of doing it is fun. You code something, see if it works, it does (in a way), you celebrate, and try to fix it. Wash. Rinse. Repeat.</p>
<p>&#8230;</p>
<p>But for me, I’m going to stop thinking in terms of <i>products</i> and start <i>releasing projects</i>. I don’t want to be limited by thinking, “is there a market for this idea.” From here on out, success for a project means at least one person is “watching” it on <a href="http://github.com/tedroden">github</a>.</p>
</blockquote>	   


	
       ]]></description>
       <link>http://tedroden.com/444053/</link>
       <guid>http://tedroden.com/444053/</guid>
       <pubDate>2010-03-05 20:50:08-05</pubDate>
   </item>



   <item>
      <title><![CDATA[The most amazing video di...]]></title>
         <description><![CDATA[
 
		     <div class='quote'>
	         <blockquote>The most amazing video display thing I've ever seen: <a href="http://vimeo.com/9486977">vimeo.com/9486977</a></blockquote>
             <div class='source'>--Ted Roden</div>
	     </div>	
       ]]></description>
       <link>http://tedroden.com/444049/</link>
       <guid>http://tedroden.com/444049/</guid>
       <pubDate>2010-03-05 14:21:43-05</pubDate>
   </item>



   <item>
      <title><![CDATA["I Quit, or It's Open Sou...]]></title>
         <description><![CDATA[
 
		     <div class='quote'>
	         <blockquote>"I Quit, or It's Open Source from now on!" Moving my projects to open source. A long post that was a long time coming: <a href="http://bit.ly/90f7aQ">bit.ly/90f7aQ</a></blockquote>
             <div class='source'>--Ted Roden</div>
	     </div>	
       ]]></description>
       <link>http://tedroden.com/444047/</link>
       <guid>http://tedroden.com/444047/</guid>
       <pubDate>2010-03-05 14:06:56-05</pubDate>
   </item>



   <item>
      <title><![CDATA[I Quit, or It's Open Source from now on!]]></title>
         <description><![CDATA[
 
	
 	   
   	     <p class="dashboardonly">Some of the formatting on this post is totally broken on the dashboard. Click through to view it as I intended.</p>
<p><a href="http://bit.ly/realtimebook"><img src="http://media.tumblr.com/tumblr_kyso2byCsb1qz504e.png" align="right"/></a>I&#8217;ve got a ton of ideas for new things to build and, having more or less just finished a <a href="http://bit.ly/realtimebook">large project</a>, I&#8217;ve suddenly got a lot of energy and some time to work on these ideas. Some of them are ideas that have been building up for years and some are just simple notions that I had while writing the book that I couldn&#8217;t implement at the time. And of course, I&#8217;m interested in updating, fixing and building new things for some of my <a href="http://enjoysthin.gs">other</a> <a href="http://blastedapp.com">projects</a>.</p>
<p>But one thing has become clear to me: from now on, all of my personal projects will be <a href="http://en.wikipedia.org/wiki/Open_source">open source</a>.</p>
<p><a href="http://bit.ly/realtimebook"><img src="http://media.tumblr.com/tumblr_kyso4uZZyJ1qz504e.png" align="left" border="0"/></a>The thing is, I can no longer remember why it&#8217;s beneficial that I keep the source code of my software hidden away. It&#8217;s not that I have super fancy algorithms lying around anywhere. The truth is, <i>I&#8217;m not that good of a programmer</i>, the stuff I do can be done by anyone with a book called &#8220;[Insert Programming Language Here] in 24 Hours.&#8221;</p>
<p>The secret to any of the small successes of any of my projects is not because I&#8217;ve kept the secrets close to me, it&#8217;s not necessarily even because I do it better than anyone else. Although, sometimes I like to think I do some things better <i>and</i> first, but that&#8217;s another story.</p>
<ul>
<li>If <a href="http://enjoysthin.gs">enjoysthin.gs</a> is successful, it&#8217;s not because other developers had trouble duplicating it, it&#8217;s because it&#8217;s a fun site to use. People have watched it grow from a weekend project into a vibrant community, the users are never pretentious, and visiting the site can be anything from inspiring to hilarious. It&#8217;s not about the code base.</li>
<li>
<a href="http://www.blastedapp.com">Blasted</a> scratches a very specific itch. If you have that itch, and aren&#8217;t aware of the application&#8217;s <a href="http://www.ironicsoftware.com/fresh/index.html">superior, albeit uglier, competitors</a>, buying this $5 application is a no brainer.</li>
</ul>
<p>But saying, &#8220;I&#8217;m not that good&#8221; is essentially giving the reason of &#8220;well, <i>why not</i> open source the stuff?&#8221; But, there&#8217;s more to it than that. It comes down to why I do this stuff in the first place, what types of things I like to do and what types of things I <i>don&#8217;t</i> like to do.</p>
<p>I build things because I like to build them, I want to use them, and on some level, probably a bigger level than I&#8217;m willing to admit, I want other people to use them.</p>
<p>I started writing software (not all that long ago) because the act of doing it is fun. You code something, see if it works, it does (in a way), you celebrate, and try to fix it. Wash. Rinse. Repeat.</p>

<div style="text-align: center; margin-bottom: 1em;">
<img src="http://media.tumblr.com/tumblr_kyso81oUYx1qz504e.png" align="middle"/><br/>In real life, there&#8217;s probably more beer and less washing machine.</div>
<p>Making this decision is as much of a commitment to do something as it is commitment to <i>not</i> do something. Yes, I&#8217;m going to move to open source, but I&#8217;m <i>quitting</i> rest of it. I&#8217;m leaving the whole business of startups and MBAs and branding and &#8220;selling to Google&#8221; and Facebook integration as a business decision and &#8220;entrepreneurs.&#8221;</p>
<p>The truth is that I <i>H</i>ate the scene. I&#8217;m tired of people who call themselves geeks but spend their time talking about Twitter&#8217;s business model instead of how they can suddenly handle all their mind-numbing traffic. I hate that after presenting at the New York <i>Tech</i> Meetup, a VC in the audience came up to me (unsolicited) and told me that I should &#8220;try to appear to be a bigger company.&#8221; I&#8217;m tired of the valley vs. the alley talk.</p>
<p>But love other parts of this industry. I love the sitting alone in the middle of the night, staring at a cursor in Emacs and knowing that I&#8217;m almost there. I love writing an application to learn a programming language. I love outdated technologies and stuff that&#8217;s way too far ahead of it&#8217;s time. I love that we can hack our phones (again). I love that users write to express how much they love something, and ask how best to buy a second license. I love that indie developers are featured prominently in major television ad campaigns. I love the feeling that, as an industry, we&#8217;re on to something.</p>
<p>But for me, I&#8217;m going to stop thinking in terms of <i>products</i> and start <i>releasing projects</i>. I don&#8217;t want to be limited by thinking, &#8220;is there a market for this idea.&#8221; From here on out, success for a project means at least one person is &#8220;watching&#8221; it on <a href="http://github.com/tedroden">github</a>.</p>

<div style="text-align: center; margin-bottom: 1em;">
<img src="http://media.tumblr.com/tumblr_kysnm6pDzq1qz504e.png"/><br/>Massive success on <a href="http://github.com/tedroden">github</a>!</div>
<p>It&#8217;s not that I&#8217;m leaving the business<!-- slash circlejerk --> side of things, I&#8217;m just proclaiming that my focus is on interesting projects. The secret to my success will not be contained in some secret deep within the source code. I like to think I&#8217;m more clever than that.</p>
<p>&#8220;<b>So you&#8217;re writing open source software now, is that right, hippie? Are you going to release enjoysthin.gs and Blasted.app as open source.</b>&#8221;</p>
<p>First off, don&#8217;t call me a hippie, chief. Secondly, I&#8217;m not sure if I&#8217;ll release the code to those projects. I actually want to know if anyone has thoughts on the matter: is there any interest in me releasing the source code to either Blasted or Enjoythin.gs?</p>
<p>Is <i>anybody</i> interested in that? Preparing enjoysthin.gs for an open source release could potentially be a lot of work. If there is significant interest, I&#8217;d be willing to open source both of the projects.</p>
<p>PS: None of this is set in stone. I may take it all back.</p>	   


	
       ]]></description>
       <link>http://tedroden.com/444046/</link>
       <guid>http://tedroden.com/444046/</guid>
       <pubDate>2010-03-05 12:00:00-05</pubDate>
   </item>



   <item>
      <title><![CDATA[I got a trial for jury du...]]></title>
         <description><![CDATA[
 
		     <div class='quote'>
	         <blockquote>I got a trial for jury duty, I have a feeling I've received more words of support than anyone involved in the actual crime.</blockquote>
             <div class='source'>--Ted Roden</div>
	     </div>	
       ]]></description>
       <link>http://tedroden.com/444045/</link>
       <guid>http://tedroden.com/444045/</guid>
       <pubDate>2010-03-05 09:55:17-05</pubDate>
   </item>



   <item>
      <title><![CDATA[Looking around a small ro...]]></title>
         <description><![CDATA[
 
		     <div class='quote'>
	         <blockquote>Looking around a small room waiting for jury duty. I see these devices: 1 kindle, 1 netbook, 1 heating pad. All 3 will be replaced by ipads?</blockquote>
             <div class='source'>--Ted Roden</div>
	     </div>	
       ]]></description>
       <link>http://tedroden.com/444037/</link>
       <guid>http://tedroden.com/444037/</guid>
       <pubDate>2010-03-03 13:54:24-05</pubDate>
   </item>



   <item>
      <title><![CDATA[...]]></title>
         <description><![CDATA[
 
	
 	  	  	  	  	  	             <img src="http://25.media.tumblr.com/tumblr_kypsun0sKS1qz504eo1_400.jpg" / >;
     			 	  	  	  	  	  	  	  	  	   	   


	
       ]]></description>
       <link>http://tedroden.com/444035/</link>
       <guid>http://tedroden.com/444035/</guid>
       <pubDate>2010-03-03 11:37:35-05</pubDate>
   </item>



   <item>
      <title><![CDATA[I like it when competitor...]]></title>
         <description><![CDATA[
 
	
 	  	  <div class="quote">	  <blockquote>I like it when competitors copy me because it means they aren’t about to leapfrog me: they’ll always be playing catch-up.</blockquote>         		 <div class="source"><p><a href="http://wilshipley.com/blog/2010/03/open-letter-to-steve-jobs-concerning.html">Wil Shipley</a> (via <a href="http://www.alexbeaudet.com/">alexbeaudet</a>)</p>
<p>Unless it actually happens to him, and then he&#8217;s <a href="http://twitter.com/wilshipley/status/8289792566">pretty</a> <a href="http://twitter.com/wilshipley/status/8290329639">bitter</a> about it.</p></div>         	     </div> 	   


	
       ]]></description>
       <link>http://tedroden.com/444034/</link>
       <guid>http://tedroden.com/444034/</guid>
       <pubDate>2010-03-03 11:06:53-05</pubDate>
   </item>



   <item>
      <title><![CDATA[Riego van Werschs and the...]]></title>
         <description><![CDATA[
 
	
 	  	  	  	  	  	             <img src="http://24.media.tumblr.com/tumblr_kyoq7zxGq01qz504eo1_500.jpg" / >;
     <div class="caption"><p>Riego van Werschs and the unbearable lightness of being | yatzer | Design Architecture Art Fashion  more via <a href="http://tedroden.enjoysthin.gs/366511?from=tumblrpost">Ted Roden</a></p></div>			 	  	  	  	  	  	  	  	  	   	   


	
       ]]></description>
       <link>http://tedroden.com/444031/</link>
       <guid>http://tedroden.com/444031/</guid>
       <pubDate>2010-03-02 21:43:14-05</pubDate>
   </item>



   <item>
      <title><![CDATA[PostScript printing is a ...]]></title>
         <description><![CDATA[
 
	
 	  	  <div class="quote">	  <blockquote>PostScript printing is a good thing, it&#8217;s as old as time itself.</blockquote>         		 <div class="source">It&#8217;s good to have <a href="http://jstn.cc/">jstn</a> back around.</div>         	     </div> 	   


	
       ]]></description>
       <link>http://tedroden.com/444029/</link>
       <guid>http://tedroden.com/444029/</guid>
       <pubDate>2010-03-02 16:18:00-05</pubDate>
   </item>



   <item>
      <title><![CDATA[Bot Ted]]></title>
         <description><![CDATA[
 
			<img src="http://posterous.com/getfile/files.posterous.com/tedroden/knExRc9bGRHKrwuiDu12gT2pPEVfF7DDGjg7PQELcloq18aT40APlA3LWjdE/Group_Chat_with_Hairball-1.jpg" width="464" height="368"/>
<p>I think that I was just unsuccessful at convincing someone I was a real person and not a bot.</p><p /><div>I don&#39;t know if I should be offended because it reflects a terribly boring personality, or honored that this person thought I could create a bot that talks just like me.</div>    
       ]]></description>
       <link>http://tedroden.com/443998/</link>
       <guid>http://tedroden.com/443998/</guid>
       <pubDate>2010-03-02 14:20:13-05</pubDate>
   </item>



   <item>
      <title><![CDATA[These guys are so good it...]]></title>
         <description><![CDATA[
 
	
 	  	  	  	  	  	             <img src="http://30.media.tumblr.com/tumblr_kyo5bgNF5C1qbnbgdo1_500.jpg" / >;
     <div class="caption"><p>These guys are so good it&#8217;s crazy. The UI is great, it&#8217;s easy to see what&#8217;s going on, and what&#8217;s popular, from what region, etc. But that&#8217;s not the crazy good part.</p>
<p>Remember when flickr launched stats? You had to go to their stats page, click &#8220;See stats&#8221; or something similar and then you were greeted with a window saying, &#8220;check back tomorrow while we calculate your stats.&#8221;</p>
<p>Vimeo just launches it.</p>
<p>As always, Vimeo does it again.</p></div>			 	  	  	  	  	  	  	  	  	   	   


	
       ]]></description>
       <link>http://tedroden.com/444027/</link>
       <guid>http://tedroden.com/444027/</guid>
       <pubDate>2010-03-02 14:11:40-05</pubDate>
   </item>



   <item>
      <title><![CDATA[kylewritescode:

caterpil...]]></title>
         <description><![CDATA[
 
	
 	  	  	  	  	  	             <img src="http://30.media.tumblr.com/tumblr_kynpfcIKL61qz7vd6o1_500.png" / >;
     <div class="caption"><p><a href="http://kylewritescode.com/post/422252163/caterpillarcowboy-forrst-where-designers-who">kylewritescode</a>:</p>
<blockquote>
<p><a href="http://caterpillarcowboy.com/post/422006433/forrst-where-designers-who-code-meet-developers">caterpillarcowboy</a>:</p>
<blockquote>
<p><a href="http://carsonified.com/blog/design/forrst-finds-designers-who-code-developers-who-design/">Forrst: Where Designers Who Code meet Developers Who Design | Carsonified</a></p>
<p>Our very own <a href="http://kylewritescode.com/">Kyle</a> has a cool new community for hackers and designers who actually build stuff. If you’re someone like that, ask him for an invite (or ask me and I’ll pass it along).</p>
</blockquote>
<p>Come join an already awesome group of developers and designers. If you’d like an invite, just ask!</p>
</blockquote>
<p>I&#8217;m not going to lie to you, once this is a bit more fleshed out, I hope github buys this.</p></div>			 	  	  	  	  	  	  	  	  	   	   


	
       ]]></description>
       <link>http://tedroden.com/444028/</link>
       <guid>http://tedroden.com/444028/</guid>
       <pubDate>2010-03-02 11:54:42-05</pubDate>
   </item>



   <item>
      <title><![CDATA[...]]></title>
         <description><![CDATA[
 
	
 	  	  
	     <div class="video">
	         <div class="player"><object type="application/x-shockwave-flash" width="400" height="300" data="http://vimeo.com/moogaloop.swf?clip_id=9679622&amp;server=vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF"><param name="quality" value="best" /><param name="allowscriptaccess" value="always" /><param name="allowfullscreen" value="true" /><param name="scale" value="showAll" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=9679622&amp;server=vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF" /><embed src="http://www.vimeo.com/moogaloop.swf?clip_id=9679622&amp;server=www.vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object></div>
	         <div class="caption"><p>This city stinks. AMIRITE?</p></div>
	     </div> 	   


	
       ]]></description>
       <link>http://tedroden.com/443997/</link>
       <guid>http://tedroden.com/443997/</guid>
       <pubDate>2010-03-02 11:36:28-05</pubDate>
   </item>
 </channel>

</rss>




