<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
  <channel>
    <title>Schrade.Blog : </title>
    <link>http://kurt.karmalab.org/articles.rss</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description>Tech and Business Ramblings by Kurt Schrader</description>
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/Schradeblog" type="application/rss+xml" /><feedburner:browserFriendly>This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site, subject to copyright and fair use.</feedburner:browserFriendly><item>
      <title>The Simplicity of Merb</title>
      <description>&lt;p&gt;As some of you know, we're building our new startup on top of Merb. One of my favorite things about Merb is how much easier it is to understand than Rails is when you need to hack on something that's outside the realm of what the framework expects you to use it for.  I think that Ezra Zygmuntowicz put it best in his &lt;a href="http://uk.youtube.com/watch?v=TcMklv40YMY"&gt;recent tech talk on Merb&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;
    &lt;p&gt;A lot of people tend to end up treating Rails as a blackbox because it is eighty thousand or so lines of code and it's a little bit hard to step into and figure out what's going on because there's so much advanced Ruby meta-programming going on inside of there. I kind of feel like the place for meta-programming and that kind of stuff is in your own application code. I'd rather have the foundation that you're building on top of be as simple and as easy to understand as possible so that when you do hit the wall and you need to look inside the framework you don't get grossed out and you can get in there and actually do stuff with it.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Amen.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Schradeblog?a=XE0SM"&gt;&lt;img src="http://feeds.feedburner.com/~f/Schradeblog?i=XE0SM" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Schradeblog?a=NgSKM"&gt;&lt;img src="http://feeds.feedburner.com/~f/Schradeblog?i=NgSKM" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Schradeblog/~4/428796352" height="1" width="1"/&gt;</description>
      <pubDate>Wed, 22 Oct 2008 10:39:00 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:3389b6c2-4b54-4ddb-ad44-790dd94e1091</guid>
      <comments>http://kurt.karmalab.org/articles/2008/10/22/the-simplicity-of-merb#comments</comments>
      <category>Agile</category>
      <category>Ruby</category>
      <category>Tech</category>
      <link>http://feeds.feedburner.com/~r/Schradeblog/~3/428796352/the-simplicity-of-merb</link>
    <feedburner:origLink>http://kurt.karmalab.org/articles/2008/10/22/the-simplicity-of-merb</feedburner:origLink></item>
    <item>
      <title>Datamapper (or Just Say No to Active Record)</title>
      <description>&lt;p&gt;I was having a conversation with a friend the other day who said something along the lines of "lately at work, we've pretty much just been rewriting Active Record to make it not suck as much".  &lt;/p&gt;

&lt;p&gt;I was thinking about it, and I've never really heard anyone say anything good about Active Record.  It's slow, it uses a ton of memory, it's not thread-safe, etc.&lt;/p&gt;

&lt;p&gt;Luckily, the community is starting to tackle those problems with a couple of new projects aimed at doing a better job of OR mapping.&lt;/p&gt;

&lt;p&gt;The one that I've used the most, and that we're building the software for my new company on, is &lt;a href="http://datamapper.org/"&gt;Datamapper&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The development philosophy behind Datamapper tries to keep everything as fast and as lightweight as possible.  It does this by being as lazy as possible in what it loads to keep memory usage down, and by breaking out as much functionality as possible into plugins, so that you only need to include what you're really using in your application.&lt;/p&gt;

&lt;p&gt;In my stress tests here using my new application, I've seen significant speed increases across the board compared to ActiveRecord. (I'm writing a Merb app, and it's relatively easy to switch back and forth between the two of them at this early stage in development.)&lt;/p&gt;

&lt;p&gt;Datamapper also has most of the &lt;a href="http://datamapper.org/docs/dm_more/index.html"&gt;major ActiveRecord plugins&lt;/a&gt; ported to it (as well as a CouchDB adaptor that we're using for some of our models).  &lt;/p&gt;

&lt;p&gt;If you're starting a new Ruby web application, I strongly suggest checking it out instead of just settling for the default choice of Active Record.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Schradeblog?a=IvnjM"&gt;&lt;img src="http://feeds.feedburner.com/~f/Schradeblog?i=IvnjM" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Schradeblog?a=wcCjM"&gt;&lt;img src="http://feeds.feedburner.com/~f/Schradeblog?i=wcCjM" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Schradeblog/~4/416358709" height="1" width="1"/&gt;</description>
      <pubDate>Thu, 09 Oct 2008 18:24:00 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:a82c94fa-f175-44ac-b53c-5ebe8bdaa1f0</guid>
      <comments>http://kurt.karmalab.org/articles/2008/10/09/datamapper-or-just-say-no-to-active-record#comments</comments>
      <link>http://feeds.feedburner.com/~r/Schradeblog/~3/416358709/datamapper-or-just-say-no-to-active-record</link>
    <feedburner:origLink>http://kurt.karmalab.org/articles/2008/10/09/datamapper-or-just-say-no-to-active-record</feedburner:origLink></item>
    <item>
      <title>Running Merb on Edge</title>
      <description>&lt;p&gt;The easiest way to run Merb from edge:&lt;/p&gt;

&lt;pre&gt;
$ sudo gem install sake
$ sake -i http://github.com/wycats/merb-more/tree/master%2Ftools%2Fmerb-dev.rake?raw=true
$ sake merb:clone
$ sake merb:install:all
&lt;/pre&gt;

&lt;p&gt;This will install the edge versions of all of the merb gems.&lt;/p&gt;

&lt;p&gt;To keep things up to date, navigate to the directory that you ran the commands in and do:&lt;/p&gt;

&lt;pre&gt;
$ sake merb:update
$ sake merb:install:all
&lt;/pre&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Schradeblog?a=1BupkK"&gt;&lt;img src="http://feeds.feedburner.com/~f/Schradeblog?i=1BupkK" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Schradeblog?a=D28iRK"&gt;&lt;img src="http://feeds.feedburner.com/~f/Schradeblog?i=D28iRK" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Schradeblog/~4/367553813" height="1" width="1"/&gt;</description>
      <pubDate>Sun, 17 Aug 2008 14:29:00 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:ea9d6233-065a-4caa-a9c8-c545500e7d98</guid>
      <comments>http://kurt.karmalab.org/articles/2008/08/17/running-merb-on-edge#comments</comments>
      <category>Ruby</category>
      <category>Tech</category>
      <category>Programming</category>
      <link>http://feeds.feedburner.com/~r/Schradeblog/~3/367553813/running-merb-on-edge</link>
    <feedburner:origLink>http://kurt.karmalab.org/articles/2008/08/17/running-merb-on-edge</feedburner:origLink></item>
    <item>
      <title>Why Not Just Fire All Of Your Programmers?</title>
      <description>&lt;p&gt;Then no software would get written, but at least we wouldn't have any crap software...&lt;/p&gt;

&lt;p&gt;My friend Jay posted two &lt;a href="http://blog.jayfields.com/2008/08/elephant-in-server-room.html"&gt;blog&lt;/a&gt; &lt;a href="http://blog.jayfields.com/2008/08/elitist-or-optimist.html"&gt;entries&lt;/a&gt; yesterday on the subject of raising the standard for programmers in our industry. I left &lt;a href="https://www.blogger.com/comment.g?blogID=12467669&amp;amp;postID=2427762782957269871"&gt;a comment&lt;/a&gt; about it on his blog and talked with him about it on IM, but I figured I'd expand a bit on my thoughts on it here.&lt;/p&gt;

&lt;p&gt;First things first, I completely disagree with him.&lt;/p&gt;

&lt;p&gt;I don't think that 50% of programmers should leave the profession.  I've worked on a lot of projects with a lot of different teams and I can't ever remember thinking "man, this project would be a lot easier if I got rid of half of this team."&lt;/p&gt;

&lt;p&gt;I can also only think of few &lt;a href="http://en.wikipedia.org/wiki/NNPP"&gt;Net Negative Producing Programmers&lt;/a&gt; that I've worked with and most of them usually leave pretty quickly.&lt;/p&gt;

&lt;p&gt;Most of the time, I've found that when a person isn't performing up to par, it's because of a management failure.  I think that it's up to the development leads to analyze their teams and figure out how everyone can best contribute and make sure that people are performing at the top of their game.&lt;/p&gt;

&lt;p&gt;Too often I've seen people fall into the trap of always being assigned to, or always choosing to work on, the easiest features in the project. They then do a half-assed job because they're always working on the boring part of the project and don't feel like a valued part of the team.&lt;/p&gt;

&lt;p&gt;Maybe, for a change, we should assign those people the hardest part of the project for a few weeks. Sure, they might not so the best job, but they will work harder because, for once, what they're working on is challenging and exciting. Plus they know that the entire team is depending on them and is there to help them. That's how you bring people back into the fold and make them a productive, happy member of the team.&lt;/p&gt;

&lt;p&gt;The point that's neglected in Jay's arguments is that experienced programmers shouldn't just be responsible for writing code. It should also be the job of experienced programmers to take those who are less experienced or interested and pull them up to our level. &lt;/p&gt;

&lt;p&gt;Forcing them out of the profession is just as much of a failure on our part as it is on theirs.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Schradeblog?a=PLbMEK"&gt;&lt;img src="http://feeds.feedburner.com/~f/Schradeblog?i=PLbMEK" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Schradeblog?a=X5FJGK"&gt;&lt;img src="http://feeds.feedburner.com/~f/Schradeblog?i=X5FJGK" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Schradeblog/~4/357638607" height="1" width="1"/&gt;</description>
      <pubDate>Wed, 06 Aug 2008 10:49:00 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:fb6329da-1a64-44a9-9abd-f3cd2c0d5cc3</guid>
      <comments>http://kurt.karmalab.org/articles/2008/08/06/why-not-just-fire-all-your-programmers#comments</comments>
      <category>Business</category>
      <category>Tech</category>
      <category>Programming</category>
      <link>http://feeds.feedburner.com/~r/Schradeblog/~3/357638607/why-not-just-fire-all-your-programmers</link>
    <feedburner:origLink>http://kurt.karmalab.org/articles/2008/08/06/why-not-just-fire-all-your-programmers</feedburner:origLink></item>
    <item>
      <title>Moving On</title>
      <description>&lt;p&gt;Things sure have been quiet around here...&lt;/p&gt;

&lt;p&gt;As some of you may already know, I've left the relative safety of my job at &lt;a href="http://www.collaborativedrug.com/"&gt;Collaborative Drug Discovery&lt;/a&gt; to have another go at starting a company. &lt;/p&gt;

&lt;p&gt;I'm currently working with a friend to once again create something out of nothing and bring yet another crazy idea into the world. Therefore, if you see me and I look like I just got finished working for 18 hours straight, please buy me a beer and put me to bed.&lt;/p&gt;

&lt;p&gt;As for the new company, I'm not ready to talk about what we're doing yet, but I'm sure that I'll be writing about it here as it comes together.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Schradeblog?a=jc23OK"&gt;&lt;img src="http://feeds.feedburner.com/~f/Schradeblog?i=jc23OK" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Schradeblog?a=xIdidK"&gt;&lt;img src="http://feeds.feedburner.com/~f/Schradeblog?i=xIdidK" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Schradeblog/~4/356634542" height="1" width="1"/&gt;</description>
      <pubDate>Tue, 05 Aug 2008 11:46:00 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:06660c3b-b7be-4b37-ac34-5e14c96d713b</guid>
      <comments>http://kurt.karmalab.org/articles/2008/08/05/moving-on#comments</comments>
      <category>Business</category>
      <category>General</category>
      <category>Tech</category>
      <link>http://feeds.feedburner.com/~r/Schradeblog/~3/356634542/moving-on</link>
    <feedburner:origLink>http://kurt.karmalab.org/articles/2008/08/05/moving-on</feedburner:origLink></item>
    <item>
      <title>Don't Forget to Clear Out Your Rails Session Data</title>
      <description>&lt;p&gt;For the last year or so, this blog has been running slow, &lt;em&gt;slow&lt;/em&gt;, &lt;strong&gt;slow&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;From time to time, I tried to figure out what was going on, but I figured that Typo upgrades were just causing things to slow down and use more and more memory.&lt;/p&gt;

&lt;p&gt;Until tonight.&lt;/p&gt;

&lt;p&gt;Tonight I did a database dump and it came to 44 MB. &lt;/p&gt;

&lt;p&gt;There is no way I have 44 MB of content in this blog.  &lt;/p&gt;

&lt;p&gt;So I had a look at the dump and realized that I had close to 100000 sessions in the sessions table, and that there was a table for Sitealizer plugin that's no longer part of typo.&lt;/p&gt;

&lt;p&gt;So after a drop of the Sitealizer table and a&lt;/p&gt;

&lt;pre&gt;rake db:sessions:clear&lt;/pre&gt;

&lt;p&gt;Typo is now using 20% of the memory it was using before, running much, much faster, and the database dump comes to a slim 476 KB in size.&lt;/p&gt;

&lt;p&gt;So this is my reminder to myself (and everyone else) to be sure to clear out your sessions table from time to time.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Schradeblog?a=SLTPpJ"&gt;&lt;img src="http://feeds.feedburner.com/~f/Schradeblog?i=SLTPpJ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Schradeblog?a=BzPVvJ"&gt;&lt;img src="http://feeds.feedburner.com/~f/Schradeblog?i=BzPVvJ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Schradeblog/~4/323846217" height="1" width="1"/&gt;</description>
      <pubDate>Tue, 01 Jul 2008 00:01:00 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:f4d333e4-78fb-4763-98f9-61a415eed50f</guid>
      <comments>http://kurt.karmalab.org/articles/2008/07/01/dont-forget-to-clear-your-rails-sessions-data#comments</comments>
      <category>Ruby</category>
      <category>Tech</category>
      <category>Blogging</category>
      <category>Programming</category>
      <link>http://feeds.feedburner.com/~r/Schradeblog/~3/323846217/dont-forget-to-clear-your-rails-sessions-data</link>
    <feedburner:origLink>http://kurt.karmalab.org/articles/2008/07/01/dont-forget-to-clear-your-rails-sessions-data</feedburner:origLink></item>
    <item>
      <title>Omnifocus Interface == Fail</title>
      <description>&lt;p&gt;I use Omnifocus everyday to track what I'm doing, and I love it, but there are tons of UI problems with it that drive me absolutely crazy.  There's a good article about some of the failings of the interface design &lt;a href="http://db.tidbits.com/article/9594"&gt;here&lt;/a&gt; (with a &lt;a href="http://www.apeth.com/omnifocus/omnifocus.html"&gt;video&lt;/a&gt; showing some of them), but there's one interface decision that's been absolutely driving me nuts lately.&lt;/p&gt;

&lt;p&gt;Look at this picture:&lt;/p&gt;

&lt;p&gt;&lt;img src="http://farm4.static.flickr.com/3071/2625870492_0e2b0e6747_o.jpg" alt="omnicalendar"/&gt;&lt;/p&gt;

&lt;p&gt;See anything wrong with it?&lt;/p&gt;

&lt;p&gt;If you said, "There's no way to set the due date for a project to Tuesday without clicking the little arrow at the top left to go to next month" then you're right.&lt;/p&gt;

&lt;p&gt;What a horrible failure of UI design. I end up up dealing with this at the end of every month, and everytime it's a pain in the ass.  Compare it to the iCal day chooser:&lt;/p&gt;

&lt;p&gt;&lt;img src="http://farm4.static.flickr.com/3171/2625900694_c43e00c4d7_o.jpg" alt="ical"/&gt;&lt;/p&gt;

&lt;p&gt;See that? Much better. They just grey out the days in the upcoming month. (They even go above and beyond the call of duty and show two upcoming weeks.) This is what the Omnifocus date chooser should be.&lt;/p&gt;

&lt;p&gt;Hopefully there will be an Omnifocus update soon that addresses most of the problems with the interface. I expect more at the price point ($89) that they've positioned it at.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Schradeblog?a=0Rx06I"&gt;&lt;img src="http://feeds.feedburner.com/~f/Schradeblog?i=0Rx06I" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Schradeblog?a=QdxdMI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Schradeblog?i=QdxdMI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Schradeblog/~4/323524561" height="1" width="1"/&gt;</description>
      <pubDate>Mon, 30 Jun 2008 12:40:00 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:85c1f8a0-9d0d-404c-9f0d-406c79662bc8</guid>
      <comments>http://kurt.karmalab.org/articles/2008/06/30/omnifocus-interface-fail#comments</comments>
      <category>General</category>
      <category>Tech</category>
      <category>Programming</category>
      <link>http://feeds.feedburner.com/~r/Schradeblog/~3/323524561/omnifocus-interface-fail</link>
    <feedburner:origLink>http://kurt.karmalab.org/articles/2008/06/30/omnifocus-interface-fail</feedburner:origLink></item>
    <item>
      <title>Django Testing Framework == Fail</title>
      <description>&lt;p&gt;I was reading on a plane recently, and was about halfway through the &lt;a href="http://www.amazon.com/Definitive-Guide-Django-Development-Right/dp/1590597257/ref=pd_bbs_sr_1?ie=UTF8&amp;amp;s=books&amp;amp;qid=1214594704&amp;amp;sr=8-1"&gt;Django book&lt;/a&gt;, when I realized that I hadn't seen anything about how to test my application yet. I tend to be a &lt;a href="http://kurt.karmalab.org/articles/2008/02/07/rails-app-without-tests-guaranteed-fail"&gt;test first developer&lt;/a&gt; and use lots of mocks to play with things, especially at the beginning of a project, so I flipped to the index, turned to the test page, and saw the following:&lt;/p&gt;

&lt;blockquote&gt;
    &lt;p&gt;Testing was still under development when this book was being written, so to learn more you’ll need to read the documentation online at http://www.djangoproject.com/documentation/0.96/testing/&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Not a whole lot of help when you're on a plane.&lt;/p&gt;

&lt;p&gt;Still, I was willing to give them the benefit of the doubt.  Maybe they could create a bolt-on testing framework that would really be something.  &lt;/p&gt;

&lt;p&gt;Unfortunately, it's just &lt;a href="http://www.djangoproject.com/documentation/testing/"&gt;not very good&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Perhaps I'm spoiled by Rails and Rspec, but to me, the Django testing framework feels like something that they put in place just because someone told them that they needed a testing framework. It's not an integral part of the system.&lt;/p&gt;

&lt;p&gt;Let's look at their test types.  &lt;/p&gt;

&lt;p&gt;First of all we have doctests.  These emulate the output of the Python interactive interpreter exactly inside of your test code.  All this does is to encourage the bad practice of writing some code, firing up your your interpreter, running a few cases, and then cutting and pasting the results into a file.  There's no need to think through all of the cases or what you're really doing here.  It's just an after the fact, feel-good, safety check.&lt;/p&gt;

&lt;p&gt;Second, we have Unit tests.  Not the most sophisticated testing framework in the world, but these look like a better choice, very much like any sort of xUnit tests.&lt;/p&gt;

&lt;p&gt;The biggest problem I have with these, and the Django testing framework in general, is that the tests don't look to be compulsory. Why, in this day and age, don't we make the generation of a test automatic, and make the user decide to remove it if they really, really don't want to test, not the other way around?&lt;/p&gt;

&lt;p&gt;Testing as an afterthought inevitably leads to poorly tested code. &lt;/p&gt;

&lt;p&gt;I certainly hope that, as Django continues to grow and mature, testing take a more central role in the future.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Schradeblog?a=YKDFHI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Schradeblog?i=YKDFHI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Schradeblog?a=NjFtwI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Schradeblog?i=NjFtwI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Schradeblog/~4/321544042" height="1" width="1"/&gt;</description>
      <pubDate>Fri, 27 Jun 2008 12:20:00 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:7fdba219-dcd5-4ef2-aaa3-33f159c2eedd</guid>
      <comments>http://kurt.karmalab.org/articles/2008/06/27/django-testing-frameworks-fail#comments</comments>
      <category>Ruby</category>
      <category>Tech</category>
      <category>Programming</category>
      <link>http://feeds.feedburner.com/~r/Schradeblog/~3/321544042/django-testing-frameworks-fail</link>
    <feedburner:origLink>http://kurt.karmalab.org/articles/2008/06/27/django-testing-frameworks-fail</feedburner:origLink></item>
    <item>
      <title>Innovation, Or the Complete Lack Thereof, In the Start-up Community</title>
      <description>&lt;blockquote&gt;
    &lt;p&gt;You can't just ask customers what they want and then try to give that to them. By the time you get it built, they'll want something new. - Steve Jobs&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I was at a networking event out here in the Valley a few weeks ago where a bunch of companies went up on stage and presented their companies to the audience. I'm fairly certain that at least one of them might have been interesting, but to tell you the truth, I don't really know because I didn't really pay attention to any of them. &lt;/p&gt;

&lt;p&gt;I already knew about the ones that mattered and a quick glance at the program showed me that the others weren't worth listening to because they were me too clones of other start-ups.&lt;/p&gt;

&lt;p&gt;After the presentations were over, a friend asked me what I though of them, to which I replied, "Don't know, didn't pay attention" and he responded, "yeah, but are you actively a hater like me yet?"&lt;/p&gt;

&lt;p&gt;I think that I got his point, and that is that there are times lately where I just want to slap people when they tell me what their company is doing.  &lt;/p&gt;

&lt;p&gt;I know that innovating is one of the hardest things in the world to do, but lately, I've been disappointed in 99% of what I see. As far as I can tell, there seem to be two main reasons for this:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;The first reason is because of what I call the "me too" start-up.  For example, when I first moved to SF, Flickr was the big thing out here, so for a few months everyone seemed to have a crap photo sharing site. Then this changed to Youtube/crap video sites, Facebook Platform/crap widget sites, and on and on. Some degree of competition is a good thing, but it's all a little much. If you have a substantial improvement to an existing product then, by all means, go for it. However, if you're just doing a feature for feature copy of a competitor's website then, please, invest those resources in doing something else. Or at least don't try to pitch it to me as something new and exciting.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The second reason, and the one that bothers me more, is the "aim high, fall fast" start-up.  This is the start-up that has lofty goals, and falls into the trap of selling them out to meet some sort of smaller and less interesting short term target. This is all too common (hell, I did it at my last start-up), and I think that a big part of it comes from the fact that it's so cheap to start a company now that sometime it's easy to forget just how hard you really have to work to make something great. These are the companies that VCs need to fund at their "aim high" stage to keep them from plummeting. Sure, they might have an idea that's way off in left field, but companies like that are usually the ones that grow into something huge and interesting.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;So, I guess that I'm asking everyone out there for one thing, and that is to think bigger than we are right now. Think outside the box, don't water it down in the early stages or once a little revenue starts to trickle in the door. &lt;/p&gt;

&lt;p&gt;When I run into you at a networking event, make me say "damn, that's a crazy idea, but it just might work" and when I run into you 6 months later don't make me shake my head at you because you've turned it into a clone of another idea.&lt;/p&gt;

&lt;p&gt;Perhaps if we all start using our heads, the innovation will start flowing freely once again.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Schradeblog?a=jmpn9I"&gt;&lt;img src="http://feeds.feedburner.com/~f/Schradeblog?i=jmpn9I" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Schradeblog?a=Ed9dxI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Schradeblog?i=Ed9dxI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Schradeblog/~4/318753691" height="1" width="1"/&gt;</description>
      <pubDate>Tue, 24 Jun 2008 01:47:00 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:64169189-7239-4bbc-91c4-8392565851af</guid>
      <comments>http://kurt.karmalab.org/articles/2008/06/24/innovation-or-the-complete-lack-thereof-in-the-start-up-community#comments</comments>
      <category>Business</category>
      <category>General</category>
      <category>Web 2.0</category>
      <category>Tech</category>
      <link>http://feeds.feedburner.com/~r/Schradeblog/~3/318753691/innovation-or-the-complete-lack-thereof-in-the-start-up-community</link>
    <feedburner:origLink>http://kurt.karmalab.org/articles/2008/06/24/innovation-or-the-complete-lack-thereof-in-the-start-up-community</feedburner:origLink></item>
    <item>
      <title>Exposure to New Things, Still Good (More on Maglev)</title>
      <description>&lt;p&gt;I'm somewhat taken aback by all of the negative reaction to Gemstone being a closed source product in the wake of the Maglev announcement.&lt;/p&gt;

&lt;p&gt;Look at this:&lt;/p&gt;

&lt;p&gt;&lt;img src="http://farm4.static.flickr.com/3263/2548118475_0c9fed3ee0_o.jpg" alt="Cargo Ship"/&gt;&lt;/p&gt;

&lt;p&gt;Do you really think that the people that own this ship care about paying for software?&lt;/p&gt;

&lt;p&gt;I doubt it, but they probably care about things like development speed. And software reliability. And the ability to get someone on the phone immediately if something goes wrong with the software.&lt;/p&gt;

&lt;p&gt;That's the world the Gemstone comes from.  I would bet that if the software running the shipping platform for this company falls over, it would lose more money over the course of a few hours then it would cost them to license Gemstone for an entire year.&lt;/p&gt;

&lt;p&gt;Here's another example where JP Morgan has a system built on top of Gemstone that they &lt;a href="http://www.cincomsmalltalk.com/blog/blogView?showComments=true&amp;amp;entry=3272163751"&gt;can not afford&lt;/a&gt; to shut down or migrate to another language because it would cost them too much money.&lt;/p&gt;

&lt;p&gt;How is being exposed to the toolset that powers things like that going to be a bad thing?&lt;/p&gt;

&lt;p&gt;Sure, it's closed source, but if enough people use it and benefit from it then the community will just do what we always do:&lt;/p&gt;

&lt;p&gt;Some of us will pay for it, some of will find clever ways to subvert the license, and the rest of us will get to work on building an open source clone of it.&lt;/p&gt;

&lt;p&gt;That's what always happens, and when it does happen some people will continue buying the closed source supported version (Oracle) and others will move to the free version (MySql).&lt;/p&gt;

&lt;p&gt;What makes anyone think that something different is going to happen here?&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Schradeblog?a=n1M8HI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Schradeblog?i=n1M8HI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Schradeblog?a=0AYrUI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Schradeblog?i=0AYrUI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Schradeblog/~4/303981450" height="1" width="1"/&gt;</description>
      <pubDate>Tue, 03 Jun 2008 10:20:00 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:67c903f9-10c8-4ec3-a169-0cf2ae66225c</guid>
      <comments>http://kurt.karmalab.org/articles/2008/06/03/exposure-to-new-things-still-good-more-on-maglev#comments</comments>
      <category>Ruby</category>
      <category>Tech</category>
      <category>Smalltalk</category>
      <category>Programming</category>
      <link>http://feeds.feedburner.com/~r/Schradeblog/~3/303981450/exposure-to-new-things-still-good-more-on-maglev</link>
    <feedburner:origLink>http://kurt.karmalab.org/articles/2008/06/03/exposure-to-new-things-still-good-more-on-maglev</feedburner:origLink></item>
  </channel>
</rss>
