<?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>22 idea street &#187; External</title>
	<atom:link href="http://22ideastreet.com/blog/category/external/feed/" rel="self" type="application/rss+xml" />
	<link>http://22ideastreet.com/blog</link>
	<description></description>
	<lastBuildDate>Thu, 17 May 2012 13:00:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>What I&#8217;ve Learned From RailsThemes So Far</title>
		<link>http://22ideastreet.com/blog/2012/05/14/railsthemes-progress-update/</link>
		<comments>http://22ideastreet.com/blog/2012/05/14/railsthemes-progress-update/#comments</comments>
		<pubDate>Mon, 14 May 2012 19:00:51 +0000</pubDate>
		<dc:creator>Anthony Panozzo</dc:creator>
				<category><![CDATA[External]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[colocation]]></category>
		<category><![CDATA[fakefs]]></category>
		<category><![CDATA[Peopleware]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[railsthemes]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://22ideastreet.com/blog/?p=1317</guid>
		<description><![CDATA[I brought up RailsThemes in an earlier post, and figured I&#8217;d post an update about how we are working on it and what I have learned so far. RailsThemes is a project that I&#8217;m working on with Eliza Brock and Luke Flener. It is like WordPress themes, but for Ruby on Rails applications. Basically you [...]<p><br/><br/>Original article:  <a href="http://22ideastreet.com/blog/2012/05/14/railsthemes-progress-update/">What I&#8217;ve Learned From RailsThemes So Far</a></p>
]]></description>
			<content:encoded><![CDATA[<p>I brought up <a href="https://railsthemes.com">RailsThemes</a> in <a href="http://22ideastreet.com/blog/2012/02/23/what-large-amounts-of-caffeine-can-do/">an earlier post</a>, and figured I&#8217;d post an update about how we are working on it and what I have learned so far.</p>
<p>RailsThemes is a project that I&#8217;m working on with <a href="twitter.com/elizabrock">Eliza Brock</a> and <a href="http://www.lukeflener.com/">Luke Flener</a>. It is like WordPress themes, but for Ruby on Rails applications. Basically you purchase a theme on our website, and then you can install it on the command-line and have a site that is easy on the eyes in a matter of minutes. Traditionally, you would have to spend a lot of time and money to get a good looking theme.</p>
<h4>What day of the week is it again?</h4>
<p>Eliza lives in Nashville. I live in Indianapolis. Yet we were able to spend about two weeks together in the same location working on the project over the course of a couple of months due to some creative scheduling.</p>
<p>The benefits of working in close physical proximity are fairly well documented (see <a href="http://www.amazon.com/Peopleware-Productive-Projects-Teams-Second/dp/0932633439">Peopleware</a>). For me it is speed of getting feedback, better design sessions, and general morale boosts.</p>
<p>When the project first started, we talked on the phone and I said that I needed to find a weekend to come down there so we could work together. Eliza reminded me that I can work whenever I want to, so I could come down for a few days in the middle of the week and that would work. I said that made sense, and then five minutes later, said, &#8220;OK, well I&#8217;ll find a weekend that works and then I&#8217;ll come down,&#8221; and then immediately re-realized that I could come down on a weekday. Old habits die hard I guess. <img src='http://22ideastreet.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So I picked a Monday through Wednesday trip and drove down and back while listening to audio books (a good use of the dead time.) Later iterations of the &#8220;work weekend&#8221; as we came to call them had me riding on the <a href="http://us.megabus.com/">Megabus</a> to free up time to work on things or read or relax. We would get a lot of work done during those periods, so it was worth the cost of traveling. I went down to TN, she came up here for a week or so, we met in the middle in a Kentucky state park and used a <a href="http://en.wikipedia.org/wiki/MiFi">MiFi</a> to get internet, and I went down there again right before RailsConf to finish up some things. So overall, a pretty productive way to get things done. We could also work on things outside of these blocks, but they were very effective in staying on task and ensuring that the time was used well. The opportunity cost of traveling made it really unappealing to waste time.</p>
<p>Scheduling things like this does take its toll. At some point in the last month, I tried to order the Wednesday lunch special and after a puzzled look by the waitress, was informed that it was Friday&#8230;</p>
<h4>The installer</h4>
<p>The installer is what I&#8217;ve most been working on for this project. I also worked heavily on the payment gateway and backend tools to help us create and manage themes. We came up with the idea of a command-line installer to allow devs to quickly get up and running with installing a new theme (<a href="https://github.com/railsthemes/railsthemes_installer">full source and history here</a>). The idea is that the installer does most of the heavy lifting of looking at your project and determining what files you want, and then asks the server for the right set of files and installs them correctly.</p>
<p>I researched how to make a gem, and used Bundler to generate the scaffolding. Then went through and developed it using (mostly) test-first development. Sometimes there were issues that were easier to track down by running the installer on my machine, and then I could make the appropriate changes to the tests afterward. I think this is a good example of <a href="http://www.markhneedham.com/blog/2011/01/19/coding-spike-driven-development/">&#8220;spike and stabilize&#8221;</a>.</p>
<p>One cool thing that I ended up using was <a href="https://github.com/defunkt/fakefs">fakefs</a>. This allows you to stub out file system calls and thereby test things without needing to actually touch the file system. This makes for more repeatable tests, reduces the need for cleanup, and possibly speeds up the specs as well. Before using it, I had functions that I was invoking that would operate on the filesystem, and then would mock those calls. However, fakefs works by setting up a fake filesystem (hence the name!) that you can run your tests on and then make assertions about the state of the filesystem. Overall a much cleaner solution.</p>
<h4>Progress update: Early-access beta</h4>
<p>We still have a few kinks to work out, but we have themes and people are starting to help us test them out. If you work with Rails projects and you haven&#8217;t signed up yet, check out <a href="https://railsthemes.com">RailsThemes</a> and we&#8217;ll let you know when things are rolling.</p>
<p>We are planning on coming out with a new theme every month, and some extensions like themes for emails that you end up sending out through your app.</p>
<h4>General thoughts</h4>
<p>It&#8217;s too early to say whether RailsThemes will be a financial success or not. I think the next couple of months will shed some light on this. However, I&#8217;m glad that I worked on it so far. I had been wanting to work with Eliza on a side project of some sort for a few years. I think we made an ambitious but achievable schedule and really executed on it. My confidence to be able to do projects has gone up. I better understand how hard it can be to make something.</p>
<p>I think regardless that we are creating value, and that good Rails themes is something that I wanted to have in the world. If things don&#8217;t work out, I also think it will be a good data point for me to refine future business ideas.</p>
<p><br/><br/>Original article:  <a href="http://22ideastreet.com/blog/2012/05/14/railsthemes-progress-update/">What I&#8217;ve Learned From RailsThemes So Far</a></p>
]]></content:encoded>
			<wfw:commentRss>http://22ideastreet.com/blog/2012/05/14/railsthemes-progress-update/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>RR for Test Doubles Presentation</title>
		<link>http://22ideastreet.com/blog/2012/01/13/rr-for-test-doubles-presentation/</link>
		<comments>http://22ideastreet.com/blog/2012/01/13/rr-for-test-doubles-presentation/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 14:00:40 +0000</pubDate>
		<dc:creator>Anthony Panozzo</dc:creator>
				<category><![CDATA[External]]></category>
		<category><![CDATA[doubles]]></category>
		<category><![CDATA[mocks]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[rr]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[spies]]></category>
		<category><![CDATA[Testing]]></category>

		<guid isPermaLink="false">http://22ideastreet.com/blog/?p=1243</guid>
		<description><![CDATA[Here is a presentation that I gave to the Indy.rb Ruby user group in Indianapolis. It covers the advantages of using RR (double Ruby) for concise mocking and stubbing and gives some real-life use cases to inspire thinking about testing using test doubles. (Having trouble seeing the slides? Try here.) Original article: RR for Test [...]<p><br/><br/>Original article:  <a href="http://22ideastreet.com/blog/2012/01/13/rr-for-test-doubles-presentation/">RR for Test Doubles Presentation</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Here is a presentation that I gave to the <a href="http://indyrb.org/">Indy.rb</a> Ruby user group in Indianapolis. It covers the advantages of using RR (double Ruby) for concise mocking and stubbing and gives some real-life use cases to inspire thinking about testing using test doubles.</p>
<p><iframe src="https://docs.google.com/present/embed?id=dhbvg2sf_110hck33xc6" frameborder="0" width="410" height="342"></iframe></p>
<p>(Having trouble seeing the slides? <a href="https://docs.google.com/present/embed?id=dhbvg2sf_110hck33xc6">Try here</a>.)</p>
<p><br/><br/>Original article:  <a href="http://22ideastreet.com/blog/2012/01/13/rr-for-test-doubles-presentation/">RR for Test Doubles Presentation</a></p>
]]></content:encoded>
			<wfw:commentRss>http://22ideastreet.com/blog/2012/01/13/rr-for-test-doubles-presentation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making Recommendations with Apache Mahout Presentation</title>
		<link>http://22ideastreet.com/blog/2011/10/17/making-recommendations-with-apache-mahout-presentation/</link>
		<comments>http://22ideastreet.com/blog/2011/10/17/making-recommendations-with-apache-mahout-presentation/#comments</comments>
		<pubDate>Mon, 17 Oct 2011 15:00:00 +0000</pubDate>
		<dc:creator>Anthony Panozzo</dc:creator>
				<category><![CDATA[External]]></category>
		<category><![CDATA[machine learning]]></category>
		<category><![CDATA[Mahout]]></category>
		<category><![CDATA[presentations]]></category>
		<category><![CDATA[recommendations]]></category>

		<guid isPermaLink="false">http://22ideastreet.com/blog/?p=1239</guid>
		<description><![CDATA[Last month I gave a presentation about making recommendations with Apache Mahout. Since the presentation, Manning books has released the final version of their book, Mahout in Action, which should be an even better resource than the book that I was using for my slides and presentation. Here are the slides: (Having trouble seeing the [...]<p><br/><br/>Original article:  <a href="http://22ideastreet.com/blog/2011/10/17/making-recommendations-with-apache-mahout-presentation/">Making Recommendations with Apache Mahout Presentation</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Last month I gave a presentation about making recommendations with Apache Mahout. Since the presentation, Manning books has released the final version of their book, <a href="http://www.manning.com/owen/">Mahout in Action</a>, which should be an even better resource than the book that I was using for my slides and presentation. Here are the slides:</p>
<p><iframe src="https://docs.google.com/present/embed?id=dhbvg2sf_118hschjsdj" frameborder="0" width="410" height="342"></iframe></p>
<p>(Having trouble seeing the slides? <a href="https://docs.google.com/present/embed?id=dhbvg2sf_118hschjsdj">Try here</a>.)</p>
<p><br/><br/>Original article:  <a href="http://22ideastreet.com/blog/2011/10/17/making-recommendations-with-apache-mahout-presentation/">Making Recommendations with Apache Mahout Presentation</a></p>
]]></content:encoded>
			<wfw:commentRss>http://22ideastreet.com/blog/2011/10/17/making-recommendations-with-apache-mahout-presentation/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Think Like an Agilist Challenge</title>
		<link>http://22ideastreet.com/blog/2011/09/28/think-like-an-agilist-challenge/</link>
		<comments>http://22ideastreet.com/blog/2011/09/28/think-like-an-agilist-challenge/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 13:50:32 +0000</pubDate>
		<dc:creator>Anthony Panozzo</dc:creator>
				<category><![CDATA[External]]></category>
		<category><![CDATA[Agile]]></category>
		<category><![CDATA[experiment]]></category>
		<category><![CDATA[expert]]></category>
		<category><![CDATA[methodology]]></category>

		<guid isPermaLink="false">http://22ideastreet.com/blog/?p=1214</guid>
		<description><![CDATA[If you have worked on Agile teams, I was wondering if I could get your help on a small project I am starting. I am working with Jason Yip to better understand how people think about solving problems. Specifically we are interested in the differences between &#8220;experts&#8221; and less expert people in a methodology. For [...]<p><br/><br/>Original article:  <a href="http://22ideastreet.com/blog/2011/09/28/think-like-an-agilist-challenge/">Think Like an Agilist Challenge</a></p>
]]></description>
			<content:encoded><![CDATA[<p>If you have worked on Agile teams, I was wondering if I could get your help on a small project I am starting.</p>
<p>I am working with Jason Yip to better understand how people think about solving problems. Specifically we are interested in the differences between &#8220;experts&#8221; and less expert people in a methodology.</p>
<p>For this first step, we are looking to collect challenging Agile scenarios. These should be the hairiest, most difficult, most challenging Agile situations you&#8217;ve found yourself in. The preference is for scenarios that you have directly experienced yourself rather than hearsay or hypothetical scenarios. It&#8217;s not important whether you were successful in meeting the challenge; it might even be better if the scenario is one where you failed. We&#8217;ll then pose these scenarios to different people and see how they think about solving the problem.</p>
<p>We are doing this to try to improve everyones&#8217;s understanding of how mindsets change with experience and potentially to help people gain mastery faster in the future. Also, it could help with debugging mental models, which would be useful in other contexts (lean/agile adoption, lean startups, etc.)</p>
<p>Here are the three specific things that I am asking. I am hoping that it will take ten minutes or less. Thank you!</p>
<p><iframe src="https://docs.google.com/spreadsheet/embeddedform?formkey=dFNLTlZRNTdwUndtcjlvU2JUdUR6Mmc6MQ" width="760" height="810" frameborder="0" marginheight="0" marginwidth="0">Loading&#8230;</iframe></p>
<p>(Having problems seeing the form? <a href="https://docs.google.com/spreadsheet/viewform?hl=en_US&#038;formkey=dFNLTlZRNTdwUndtcjlvU2JUdUR6Mmc6MQ#gid=0">Click here</a>.)</p>
<p>The method to the madness can be seen <a href="http://jchyip.blogspot.com/2011/09/think-like-expert.html">here</a>.</p>
<p><br/><br/>Original article:  <a href="http://22ideastreet.com/blog/2011/09/28/think-like-an-agilist-challenge/">Think Like an Agilist Challenge</a></p>
]]></content:encoded>
			<wfw:commentRss>http://22ideastreet.com/blog/2011/09/28/think-like-an-agilist-challenge/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>April 2011 Customer Discovery Day</title>
		<link>http://22ideastreet.com/blog/2011/05/20/april-2011-customer-discovery-day/</link>
		<comments>http://22ideastreet.com/blog/2011/05/20/april-2011-customer-discovery-day/#comments</comments>
		<pubDate>Fri, 20 May 2011 14:00:36 +0000</pubDate>
		<dc:creator>Anthony Panozzo</dc:creator>
				<category><![CDATA[External]]></category>
		<category><![CDATA[business model generation]]></category>
		<category><![CDATA[customer discovery]]></category>
		<category><![CDATA[lean startup]]></category>

		<guid isPermaLink="false">http://22ideastreet.com/blog/?p=1119</guid>
		<description><![CDATA[If you read through this post, you&#8217;ll see some sweet pictures and figure out a potential new way to get cookies and brownies. I got together with Alex Toumey, Kyle Shipley and Wes Winham on April 16 for an event practicing lean startup concepts. We started off by pitching ideas that we thought were interesting [...]<p><br/><br/>Original article:  <a href="http://22ideastreet.com/blog/2011/05/20/april-2011-customer-discovery-day/">April 2011 Customer Discovery Day</a></p>
]]></description>
			<content:encoded><![CDATA[<p>If you read through this post, you&#8217;ll see some sweet pictures and figure out a potential new way to get cookies and brownies.</p>
<p>I got together with <a href="http://twitter.com/#!/atoumey">Alex Toumey</a>, <a href="http://twitter.com/#!/kyleashipley">Kyle Shipley</a> and <a href="http://twitter.com/#!/weswinham">Wes Winham</a> on April 16 for an event practicing lean startup concepts.</p>
<p>We started off by pitching ideas that we thought were interesting and needed some validation. At one point, we riffed on one of the ideas by coming up with &#8220;Etsy for baked goods.&#8221; The idea seemed kind of hokey at first, but the more we talked about it, the better it seemed. We put aside the other ideas for future exploration, and talked about our thoughts on the idea. We came up with a quick description to make sure everyone was on the same page: a marketplace for people to buy and sell <i>local</i> baked goods. Seemed good. What better time to test this idea against cold, harsh reality? <img src='http://22ideastreet.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h4>Brownies, or bullshit?</h4>
<p>Next, we sketched out some basic hypotheses and some questions to test these hypotheses, and contacted friends and family to get some feedback. Someone took pictures of these, I&#8217;m sure, but I can&#8217;t seem to find them, or I&#8217;d post them.</p>
<p>Two keys that I thought we did quite well at this point were:</p>
<ul>
<li>not sticking to a set script</li>
<li>and asking for references at the end of the conversation</li>
</ul>
<p>At this point in the process, asking for too specific of feedback would have hampered the quality of learning that we were getting. This is something I learned when doing <a href="http://22ideastreet.com/blog/2011/03/22/my-lean-startup-machine-boston-experience-report/">Lean Startup Machine Boston</a>, and Ash Maurya also references this in <a href="http://www.runningleanhq.com/"><i>Running Lean</i></a>.</p>
<p>By asking for references, we expanded the number and quality of people that we were able to contact in a short period of time. It was a bit surprising how well we did just by calling people we thought <i>might</i> know a lot about baking.</p>
<ul>
<li>Person 1
<ul>
<li>Left voicemail</li>
</ul>
</li>
<li>Person 2
<ul>
<li>Tried to start up a basic Christmas cookie selling business &#8212; ran into VA licensing issues and didn’t pursue further</li>
<li>Researched commercial kitchen rental opportunities &#8212; too much hassle</li>
<li>Some temporary licenses available in VA</li>
<li>farmer&#8217;s markets have vendor licensing
<ul>
<li>produce vs. baked goods difference?</li>
<li>produce can be sold easily; processed food is regulated</li>
</ul>
</li>
<li>Recommended checking our local county web sites</li>
</ul>
</li>
<li>Person 3
<ul>
<li>Had read about a tangentially-related case study involving South American women selling baked goods that were shipped to America</li>
<li>Feels like cookies are more of an impulse buy item</li>
<li>Warmed up to the idea of &#8220;ethnic food in your neighborhood&#8221;</li>
<li>Has a sister who is a pastry chef if further research needed/desired</li>
</ul>
</li>
<li>Person 4
<ul>
<li>Will contact again later &#8212; some hearing issues over-the-phone</li>
<li>Has been encouraged to sell at farmer&#8217;s markets, but hasn&#8217;t taken the plunge</li>
</ul>
</li>
<li>Person 5
<ul>
<li>Liked the idea</li>
<li>Wasn&#8217;t very worried about food safety, going to someone&#8217;s house</li>
<li>Liked the idea of local food that was not going out to eat, seemed healthy and would save her time (no preservatives)</li>
<li>could see using night-time meals as well</li>
<li>wonders about FDA or other regulators</li>
</ul>
</li>
<li>Person 6
<ul>
<li>Thinks she would have been excited about the idea when she was a stay-at-home mom</li>
<li>Would only consider participating if she could pre-fill orders (guaranteed purchases before she started baking)</li>
</ul>
</li>
</ul>
<p>After lunch, we worked on a <a href="http://www.businessmodelgeneration.com/">business model canvas</a> for the idea. This is something that I had wanted to do for awhile, so I brought my Business Model Generation book and we took a crack at it. I thought that the process gave us good insight into the challenges of the business.</p>
<div class="wp-caption aligncenter" style="width: 610px"><a href="http://d3r8zbeodql2nc.cloudfront.net/2011-04-16%2017.22.38.png"><img alt="After fleshing out a couple of sections" src="http://d3r8zbeodql2nc.cloudfront.net/2011-04-16%2017.22.38.png" title="business-model-generation-1.png" width="600" height="450" /></a><p class="wp-caption-text">After fleshing out a couple of sections (click picture to enlarge)</p></div>
<div class="wp-caption aligncenter" style="width: 610px"><a href="http://d3r8zbeodql2nc.cloudfront.net/2011-04-16%2018.21.07.png"><img alt="The &quot;finished&quot; business model" src="http://d3r8zbeodql2nc.cloudfront.net/2011-04-16%2018.21.07.png" title="business-model-generation2.png" width="600" height="450" /></a><p class="wp-caption-text">The &quot;finished&quot; business model  (click picture to enlarge)</p></div>
<p>If we were to continue working with this idea, a solid next step would be to take the most risky assumptions on the business model canvas and start testing them for validity. In my mind, getting a little more perspective on the demand from buyers and sellers for our chosen idea might be a good plan. I&#8217;d probably label the riskiest hypotheses with hot pink sticky notes to make them stand out a bit.</p>
<p>In the process, we came up with a few directions that we could head with the baked goods idea that were slightly different (ingredient label maker, targeting more professional services), and also have a list of other backup ideas that seem useful.</p>
<p>I had a really good time going through the process with everyone. I thought we got a lot done in a day going from just an idea to getting a lot of thought on the problem, and building up our customer discovery skill.</p>
<p>Afterwards, we played some Halo 3 and it was a ton of fun! <img src='http://22ideastreet.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Our next time doing this will be Sunday, May 22nd, 2011. Contact me at <a href="mailto:panozzaj@gmail.com">panozzaj@gmail.com</a> for more details.</p>
<p><br/><br/>Original article:  <a href="http://22ideastreet.com/blog/2011/05/20/april-2011-customer-discovery-day/">April 2011 Customer Discovery Day</a></p>
]]></content:encoded>
			<wfw:commentRss>http://22ideastreet.com/blog/2011/05/20/april-2011-customer-discovery-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Startup Weekend Patterns</title>
		<link>http://22ideastreet.com/blog/2011/05/13/startup-weekend-patterns-2/</link>
		<comments>http://22ideastreet.com/blog/2011/05/13/startup-weekend-patterns-2/#comments</comments>
		<pubDate>Fri, 13 May 2011 17:00:42 +0000</pubDate>
		<dc:creator>Anthony Panozzo</dc:creator>
				<category><![CDATA[External]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[lean startup]]></category>
		<category><![CDATA[startup weekend]]></category>
		<category><![CDATA[teamwork]]></category>

		<guid isPermaLink="false">http://22ideastreet.com/blog/?p=1112</guid>
		<description><![CDATA[Summary: I have done a few startup weekends and customer discovery events in total and have found some common patterns. Pregame Make sure you have alerted friends and acquaintances about the weekend so that they know they probably won&#8217;t see much of you. This helps clear any potential distractions. It definitely helps to clear your [...]<p><br/><br/>Original article:  <a href="http://22ideastreet.com/blog/2011/05/13/startup-weekend-patterns-2/">Startup Weekend Patterns</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Summary: I have done a few startup weekends and customer discovery events in total and have found some common patterns.</p>
<h4>Pregame</h4>
<p>Make sure you have alerted friends and acquaintances about the weekend so that they know they probably won&#8217;t see much of you. This helps clear any potential distractions. It definitely helps to clear your plate as much as possible. At one of the competitions I had to fix something at work that couldn&#8217;t wait, and it took half of Saturday up. As you can imagine, it was frustrating for me and I wasn&#8217;t much help to the team.</p>
<p>Before the event might be a good time to start eliciting help for electronic voting. Something along the lines of, &#8220;hey, I&#8217;m doing a business competition this weekend, and part of our final score comes down to people texting a certain number.&#8221;</p>
<p>For the sake of everyone at the event, if you are pitching an idea, do some basic groundwork on the idea. Nobody wants to hear your pitch if the idea has already been done or is way too big for a startup weekend or is mumbled. You are just wasting everyone&#8217;s time. If you have an original take on an existing idea, fine. Just make sure you know enough about the environment you are considering working in to actually know about prior art. An hour of your time saves sixty people from hearing and voting on a minute pitch. It might sound equivalent, but it&#8217;s a net gain in terms of attention and energy. There were about forty pitches at the last startup weekend that needed to later be voted on, which took time.</p>
<h4>Pitches</h4>
<p>Along the same lines, when at the pitches, listen for ideas that are pretty well-defined and that preferably have some sort of validation already. About the worst thing you can do is spend half of the weekend figuring out what you actually want to work on. About as bad is trying to do something for awhile and then basic research suggests that the idea has already been executed well by someone else. At that point the team flails for a few hours. Not a good start.</p>
<p>I generally pitch something that meets the criteria above and/or look for an idea and team leader that I think I will be able to work well with. I also check out the people who are joining the team and try to make sure that they are an impedance match. Talking with people before the event gives an idea of who I can most easily work with. You don&#8217;t have much time to butt heads, so picking a good team is really useful. Plus, nobody wants to spend the whole weekend working without having a little fun. I want a good story to tell, and picking a bad team, even if only for a weekend, is not a fun story to relive.</p>
<p>If you are just doing a small event, the same pitching process happens, and you can just pick the best idea out of the ones that you have come up with. Make sure to write down the other good ones in the event that you are going to do another event and want some ideas.</p>
<h4>A New Team</h4>
<p>Being productive with a team of strangers works best when you get off to a good start. Here are some patterns that I&#8217;ve observed.</p>
<p>Go around and introduce yourself and explain why you are interested in working on this idea. This lets everyone get to know each other, notice any biases or preconceived notions, and generally start forming around the idea of working on a shared project together. You can see why everyone picked this idea and team as the one they wanted to work on, and it leads effortlessly into the next time block.</p>
<p>This time period is always interesting because people may still join or leave the team. Just stay focused on the process, and the introductions and problem solving will work themselves out.</p>
<p>Next, everyone goes around and says at a high level what they think the idea is as they heard it from the person who pitched it. This puts the idea out there in a few different forms. After this comes a period of adjusting to the different viewpoints and emphases. Hopefully everyone is generally on the same page, and gelling occurs as you work out the key things that need to happen.</p>
<p>Generally at this point, it makes sense to solidify the <b>problem</b> you are trying to solve. Any talk of product or solution should be written down on a separate sheet of paper, preferably at the other side of the room. You must figure out the problem you are trying to solve before you can reasonably attempt to solve it. This will help marketing and development efforts greatly. You may identify many different problems or potential stakeholders, but for the sake of time it makes sense to focus only on the most valuable or easiest segment.</p>
<p>At this point in the process, I think it makes sense to take a step back and do some administrivia. Figure out who will be your team communicator that talks with advisors or other teams and communicates at startup weekend status update meetings. These can consume a lot of time, so it&#8217;s best to have one person to handle this. This person is still involved in the workings of the startup, and also has this extra role.</p>
<p>Keeping with administrative tasks, one person should be the head time keeper, in charge of letting everyone know when the next meal or meeting is. At this time, go over the whole weekend and get a lay of the land. You want to budget enough time for everything that you want to do during the weekend. Ask everyone if they are free for the whole weekend. Maybe someone has a soccer game that they need to watch, maybe someone has a party that will take a couple of hours. It&#8217;s useful to know these because then it isn&#8217;t a surprise and everyone feels that they can do what they need to do without being &#8220;that guy&#8221;.</p>
<h4>Are We At The Solution Part Yet?</h4>
<p>Well, if you are using a lean startup methodology (generally most applicable to Lean Startup Machine events), now is the time to validate that this is actually a valuable problem to solve. It&#8217;s part of producing the value that you need to produce (validated learning.)</p>
<p>Next, figure out a potential solution path. This should include what specifically you are going to build next, what the goal is for the weekend, and extensions. It&#8217;s good to start with a vision of greatness and then taper it down so you can show some progress. For more tips on defining the solution, check out Jared Brown&#8217;s post on <a href="http://jaredbrown.me/post/4662587285/startup-step-1-answering-what-is-it">defining the message of your startup</a>.</p>
<p>If you are using lean startup techniques, at this time you should validate as you are building the solution to ensure that you are building the right thing and that it resonates with people.</p>
<p>Iteratively build until you just about run out of time. I suppose not much needs to be said about this.</p>
<p>Finally, work on the pitch to make sure that you don&#8217;t blow your time. Often you will only get a few minutes to describe what you did during the whole weekend to a group of people that has heard nothing of your idea. I&#8217;ve seen way too many teams blow this with irrelevant information. You are completely wasting your time if you talk about any of the people on your team unless they happen to be super-famous. The judges don&#8217;t care about who is on your team, they want to see what you got done or learned during the weekend.</p>
<p>Although I recommend practicing the final presentation a few times, it&#8217;s definitely not enough to have a good pitch and no product. A demo is worth a thousand words, which happens to save you quite a bit of time. You need to have something to show. If you can&#8217;t make a full product, make a prototype. If you can&#8217;t get to a prototype, lay out some screenflows. Any artifact that represents your thinking and the conversations you&#8217;ve had is better than just words. Arguably the screenflows should come before the prototype so that at any point you have something that best represents your product.</p>
<h4>Random Thoughts And Question</h4>
<p>I&#8217;d enjoy seeing some more non-tech startups at startup weekends, and even working on one. Also, some more non-profit or philanthropic companies would be interesting. The key here is coming up with a business model and proving the validity. It seems like this would be doable in a weekend.</p>
<p>Have you done a startup weekend? Does this experience relate to what you have seen? I haven&#8217;t won any, so maybe I&#8217;m going about this all wrong&#8230;</p>
<p><br/><br/>Original article:  <a href="http://22ideastreet.com/blog/2011/05/13/startup-weekend-patterns-2/">Startup Weekend Patterns</a></p>
]]></content:encoded>
			<wfw:commentRss>http://22ideastreet.com/blog/2011/05/13/startup-weekend-patterns-2/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>My Lean Startup Machine Boston Experience Report</title>
		<link>http://22ideastreet.com/blog/2011/03/22/my-lean-startup-machine-boston-experience-report/</link>
		<comments>http://22ideastreet.com/blog/2011/03/22/my-lean-startup-machine-boston-experience-report/#comments</comments>
		<pubDate>Tue, 22 Mar 2011 13:50:38 +0000</pubDate>
		<dc:creator>Anthony Panozzo</dc:creator>
				<category><![CDATA[External]]></category>
		<category><![CDATA[lean startup]]></category>
		<category><![CDATA[leap]]></category>
		<category><![CDATA[pivot]]></category>

		<guid isPermaLink="false">http://22ideastreet.com/blog/?p=1089</guid>
		<description><![CDATA[Lean Startup Machine weekends are a chance to apply the lean startup methodology by trying to build a startup in 48 hours. One of the key goals is demonstrating a process of learning. Learning takes various forms, and might include testing hypotheses through conversations, collecting qualitative and quantitative indicators of interest through surveys, creating MVPs [...]<p><br/><br/>Original article:  <a href="http://22ideastreet.com/blog/2011/03/22/my-lean-startup-machine-boston-experience-report/">My Lean Startup Machine Boston Experience Report</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Lean Startup Machine weekends are a chance to apply the lean startup methodology by trying to build a startup in 48 hours. One of the key goals is demonstrating a process of learning. Learning takes various forms, and might include testing hypotheses through conversations, collecting qualitative and quantitative indicators of interest through surveys, creating <a href="http://en.wikipedia.org/wiki/Minimum_viable_product">MVPs</a> to test acquisition methods and value propositions, getting signed <a href="http://leanstartup.pbworks.com/w/page/15765212/Case-Study-One">letters of intent</a> to buy a conceptual product, and maybe getting some cold hard cash in hand. Throughout the weekend, teams iterate and pivot as they learn more about their idea and the market through interacting with their customers. A panel of mentors works with the teams when they get stuck, and judge presentations at the end of the weekend to determine a winner.</p>
<p>When I first heard about the LSM in Boston, I signed up. I asked <a href="https://twitter.com/#!/weswinham">Wes Winham</a> from Indy to join me, and we set off to Boston. This post talks about what I did and saw, and what I learned in the process.</p>
<h4>My experience</h4>
<p>I had been reading the various resources of the lean startup community for over a year, and was excited to actually put the principles to the test and test out my skills. Doing is a different beast from reading. My personal goal was to work with the team I joined up with to demonstrate that we could work through various difficulties and learn more about the lean startup methodology. I thought whatever team I joined had a chance to win, although it was not my focus.</p>
<p>Our <a href="http://22ideastreet.com/blog/TheFrogs_LSMBoston.pdf">final presentation</a> (PDF) gives a good overview of what we ended up doing over the course of the weekend.</p>
<p>The energy and intelligence of the people at this event was a little intimidating at first. There were fifty extremely smart and capable people present. I was a bit out of my element in a city halfway across the nation, but then just started talking with people and things seemed to go well. I enjoyed the networking before the event began. It was clear that everyone was feeling each other out a bit to figure out who they wanted to work with. A weekend is not a huge time commitment, but everyone wanted to have a good experience.</p>
<p>After a round of pitches, everyone cast votes for the different ideas. The top ten idea presenters were chosen as temporary team representatives, and everyone walked around and tried to form into teams. It was a bit chaotic. <img src='http://22ideastreet.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>There were a few ideas and people that seemed most interesting to me, so I walked around for a minute or two getting a sense of the room. I settled on a pitch that was billed as a last minute appointment filler. This could be something that slotted people in for busy service providers, or something that filled up empty slots for not so busy service-providers. It might have been something for service providers, or something more for end users. It seemed open-ended and valuable enough that we could explore some different solutions in the space throughout the course of the weekend. I was excited to work with the team of guys that were interested in the problem as well. It ended up that I was the only &#8220;developer&#8221; on the team. The rest of the guys billed themselves as &#8220;marketers&#8221;. (LSM also had the distinction of &#8220;designer&#8221;. These roles were pretty open and just served to try to get a range of skillsets at the conference.)</p>
<h4>[In]validating our initial assumptions</h4>
<p>We immediately sat down to meet each other, clarify the idea in our head, and try to explore the general space around the problem. We came up with some assumptions about the problem space and started coming up with ways to test them. Our goal for the night was to come up with a survey that we could send to end users (clients of dentists, doctors, spas, etc.) of a last minute appointment filler system to see what their problems were with scheduling appointments. We mapped assumptions to questions in a way that reminded me of software requirements traceability.</p>
<p>I was out the next morning due to a short-term illness and the fact that my production server at work wasn&#8217;t feeling that great either. When I felt good enough to fix the server problems, I headed back to the meeting place. The team had learned in the meantime that clients of service providers did not perceive the problem of scheduling appointments with service providers to be a large pain point, and that they were likely unwilling to change doctors or other differentiated service providers for a quicker appointment turnaround time or for a discount (these were some related ideas that we toyed with.)</p>
<p>So our assumption at this point was that the service providers would need to drive the adoption of this tool, and we sought out to find what problems they had with the appointment process. We accomplished this by calling people we knew in fields that had appointments, and by cold-calling various dentists and spas because we guessed they might be open on a Saturday.</p>
<p>One of our initial assumptions on the service provider side was that our idea would probably only be useful if doctors had 95% or less utilization, and they cared about utilization. If these were true, then we had a problem that needed fixing and an angle to sell a solution. What the specific solution was would have been determined later in our process. However, we learned two final things&#8230;</p>
<p>It turned out most service providers did not have a problem with people cancelling at the last moment. Most people give at least eight hours cancellation notice, partly because of late cancellation penalties and partly because of common courtesy. Also, basically everyone we talked to had a manual system in place to put people down on a list and call them in the event that an appointment filled up. So they actually have really high utilization. Further, the two or three unfilled appointments&mdash;per week&mdash;don&#8217;t really concern the people at the office. We proposed an email or test messaging system to one provider who had a few openings per week, and she replied that they actually had that feature in the schedule management software that they used, but <i>didn&#8217;t care enough about the problem to figure out how to use it!</i> This was pretty damning evidence that we were not on the right track.</p>
<p>We decided to take what we learned and pivot to a different market: high-end salons. We reasoned that these places might have appointment woes similar to what we ruled out for doctors and dentists. However, it was much the same, and was compounded by a slightly different problem. Most high-end salons actually employ independent contractors that are responsible for driving in their own work.</p>
<p>Reeling at this point, we talked with a few people around home base. The team decided to leap. While a pivot would be grounded in the learning that we had already obtained, a leap implies that there is not much salvageable from our initial exploration of the problem space. We had a moment of despair, then started a huge brainstorming session.</p>
<p>At this point, the weekend gets a bit fuzzier. The sheer volume of ideas that we had was very large, and we took action on a few of them to try to see if there was any easy viability. Time definitely played a role at this point. We didn&#8217;t want to show up to the final presentation with the worst presentation by showing little learning. We discussed a lost key retrieval service, used facebook to explore an online university lead generation idea, walked around MIT asking people about their caffeine preferences for a new product based on green tea, and called a couple of unsavory businesses. For me as an admittedly extroverted software person, I definitely needed to get out of my comfort zone to do this. I think coming in with a mindset of exploring people&#8217;s problems and genuinely trying to help enabled me to get over any hangups about talking to people about ideas that I had no intention of implementing that weekend. After the leap point, we mostly stuck to the customer discovery portion of the customer development process.</p>
<p>Toward the end of the weekend, I talked with a few people and tried to understand the process that they took and the key things that they learned. It would have been interesting to have a networking session before the final presentation. Our presentation went well overall, with LSM judges <a href="http://twitter.com/#!/brantcooper/status/41983752926281728">tweeting</a> out some <a href="http://twitter.com/#!/Pv/status/41985376990011392">key findings</a> we had. Our team <a href="http://twitter.com/#!/HackerChick/status/42015281559764992">won the &#8220;Old Yeller&#8221; award</a> for taking our initial idea out in the back and shooting it. <img src='http://22ideastreet.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So that was the narrative, next comes the reflection.</p>
<h4>My Biggest takeaways</h4>
<p>Steve Blank says that no business model survives first contact with the customer. I now more clearly see the reason for this: people in the business have mental models that probably conflict with reality. Assumptions build a structure to view the basic details of a business. With a given unvalidated mental model, like a Platonic ideal, a number of valid businesses seem possible. However, once inaccuracies in the model itself are revealed, companies must learn how to adapt to this new knowledge. The key is figuring out invalid assumptions as quickly as possible to learn as quickly as possible.</p>
<p>I realized that validating ideas quickly was useful for staying detached. If I stay inside the building and do nothing but think or talk to others, I just get further from reality while becoming more certain of my idea. Boyd posited the spiraling confusion in his work on the OODA loop, and this idea clicked for me this weekend. Getting out and trying to quickly invalidate an idea through experiments seems to be a good way to let go of small ideas that I have every day with a clean conscience. &#8220;Kill your darlings&#8221;, I guess.</p>
<p>Seeking failure gave me unnatural feelings. There were several times throughout the weekend that were very high, and several that were very tough. At one point, we realized that our initial idea had very little validity, and so we chose to start from basically square one after doing some massive brainstorming. The emotions probably resembled a startup on a micro scale. I liked that the teams were pretty laid back though; everyone seemed to have a good sense of humor while learning a whole lot.</p>
<p>We ended up exploring about six ideas to some degree throughout the weekend, with many more than that killed during the idea generation process. With our total waking time of 24 hours, this meant the cycle time of our ideas was about four hours each. The way we accomplished this was by having a lot of parallelism after our initial idea did not seem to work out. This was partly because of the time format of the weekend. When we chose to leap, we only had half the weekend left. It was also partly because we didn&#8217;t really have a strong direction to head in.</p>
<p>Everyone agreed though&mdash;it was much better that we spend <b>less than a day</b> figuring out that our initial idea didn&#8217;t make much sense because of lack of demand then to spend <b>months or years</b> developing a solution that nobody actually wanted. This was the kind of success story that I went to Boston to get. We had an idea that, on paper to us, seemed great, but when exposed to reality broke down.</p>
<p>Toward the end of the weekend when we did a bit of retrospection, I realized that the quick exploration process seems to be a useful way to start a company. You start with a few seed ideas and some smart people that all want to use the process to find a viable idea, and you put the ideas through a customer discovery and customer development pipeline. Ideas that seem squashed are discarded and replaced with other ideas. Others are iterated and pivoted until they become more viable. In this way, you quickly learn what doesn&#8217;t work, and try to find some pain. It seems that everyone should stick to the same general process. The nice thing about the parallelism is that most of the time it takes a little while to get feedback that is actionable. So instead of waiting around, you can explore another idea at the same time.</p>
<h4>Useful Tactics</h4>
<p>Calling the west coast or Hawaii is a good way to &#8220;extend&#8221; customer development time when businesses on the east coast are closed. This is something that we wouldn&#8217;t have thought of without the time constraints imposed by the weekend format.</p>
<p>Finding the ultimate purchaser of the service has a lot of value. If you are talking with someone that does not know the value of a potential service to the business, then you are likely wasting time. We got value out of talking to receptionists and friends in the industries we targeted, but had we progressed much further we would have needed to talk to the ultimate purchasers of the system. I think Steve Blank talks about this in Four Steps to the Epiphany, but it was one of those things that I forgot about until it was a problem for us.</p>
<h4>The next LSM</h4>
<p>In retrospect, it might have been valuable to choose some of the related ideas that we generated during our initial approach of validating the ideas. When we came to the time when we leaped, we might instead have chosen another angle of attack on the problem. Some ideas included more general inventory expiration problems: unused machinery rental, donuts that the donut seller wants to get rid of, a table in a restaurant that they are willing to fill up for a 10% discount.</p>
<p>The team right next to us (Wes&#8217;s team) seemed to have a really organized process. One of the team members was an agile meeting facilitator, and they used <a href="http://22ideastreet.com/blog/2009/02/16/the-pomodoro-technique/">pomodoros</a> and personas and use-case mapping to work through the process. They actually ended up making $60 by the end of the weekend with no actual software product, with an additional $120 that came in by the end of Sunday! But I&#8217;ll let him tell that story.</p>
<p>I think there were times when we could have been more organized in our process of writing down assumptions, exactly how to test them, and what we would look at as a validated or invalided assumption. Having clear assumptions with clear ways to measure seems important. If you talk to fifty people and get a fantastic response to your problem, it&#8217;s a clear green light to continue with the idea. What&#8217;s harder is making that decision when the data is fuzzy. At that point, you need to try to change how things are worded in order to calibrate the questions asked with. Talking with people directly gives really quick feedback on what people respond to and what things they don&#8217;t seem to care about, as I found out when wandering MIT&#8217;s campus and talking to people.</p>
<p>I felt like the presentations at the end were potentially the most interesting portion of the weekend, but in Boston&#8217;s case they were cut short. While typically six minutes with three minutes of Q&amp;A, each team only had six minutes of <i>combined</i> presentation and Q&amp;A. I didn&#8217;t fully understand why the presentations were cut short when it was the best time for each team to present what they learned and the process that they took to get that knowledge. The process was important, and I would imagine that some of the teams came up with some really useful insights they didn&#8217;t have time to share. Oh well, I guess that&#8217;s how it goes.</p>
<p>On the whole, I was glad that we got a chance to do some idea validation / invalidation over the course of the weekend. I&#8217;m quite glad that I went.</p>
<p>If you read through this article, thanks! This is the kind of experience report that I wish everyone gave when they go to interesting conferences. At the least, hopefully it&#8217;s a good starting off point for conversations that we have in the future.</p>
<p><br/><br/>Original article:  <a href="http://22ideastreet.com/blog/2011/03/22/my-lean-startup-machine-boston-experience-report/">My Lean Startup Machine Boston Experience Report</a></p>
]]></content:encoded>
			<wfw:commentRss>http://22ideastreet.com/blog/2011/03/22/my-lean-startup-machine-boston-experience-report/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Interesting Links, Nascent Thoughts</title>
		<link>http://22ideastreet.com/blog/2009/10/01/interesting-links-nascent-thoughts/</link>
		<comments>http://22ideastreet.com/blog/2009/10/01/interesting-links-nascent-thoughts/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 19:00:40 +0000</pubDate>
		<dc:creator>Anthony Panozzo</dc:creator>
				<category><![CDATA[External]]></category>
		<category><![CDATA[Places I Create At]]></category>

		<guid isPermaLink="false">http://22ideastreet.com/blog/?p=705</guid>
		<description><![CDATA[Here are some threads that I&#8217;ve been reading or interested in from the last year or so. I typically find links tweet-worthy, not blog-worthy unless I have significant original thoughts to contribute. If you don&#8217;t think one link is valuable, the next one will likely be better. Many of these won&#8217;t be safe for work [...]<p><br/><br/>Original article:  <a href="http://22ideastreet.com/blog/2009/10/01/interesting-links-nascent-thoughts/">Interesting Links, Nascent Thoughts</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Here are some threads that I&#8217;ve been reading or interested in from the last year or so.  I typically find links tweet-worthy, not blog-worthy unless I have significant original thoughts to contribute.  If you don&#8217;t think one link is valuable, the next one will likely be better.  Many of these won&#8217;t be safe for work (although what does that really mean?)  I&#8217;m not saying that I agree with them.  Just think that they are interesting or resounded with me when I read them.  This is more than you can probably consume in a day, so feel free to Control-D.  I considered breaking it up, but whatever.  Consider it your Google Reader for a week.  Here goes.</p>
<p><a href="http://www.limitedwipsociety.org/?page_id=12">A ton of resources on lean software engineering</a> (I have not specifically investigated these sublinks, but seems like a recent, solid, quality page.  I&#8217;m pretty sure every other article on this post I&#8217;ve read fully.)</p>
<p>Of course, my favorite article since college: <a href="http://www.paulgraham.com/wealth.html">How to Create Wealth</a></p>
<p>One of my favorite blogs with an interesting topic and high signal post <a href="http://www.ribbonfarm.com/2007/12/16/sapir-whorf-lakoff-metaphor-and-thought/">here</a>.  Perhaps a bit verbose.</p>
<p>From the same blog, this article <a href="http://www.ribbonfarm.com/2009/08/24/the-pregnancy-metaphor/">parallels some thoughts that I have had recently</a> on children and creating products.  Perhaps more about this another time or in person.</p>
<p>And one more for good measure:  <a href="http://www.ribbonfarm.com/2007/12/05/the-fine-art-of-opportunism/">how to train yourself to spot opportunities</a></p>
<p>Of course, here&#8217;s a passionate article <a href="http://teddziuba.com/2009/05/-the-first-time-you.html">on a similar subject</a>.  I seriously think this article is epic.</p>
<p><a href="http://www.rebol.com/article/0381.html">Simplification and technology</a></p>
<p><a href="http://bit.ly/TUT6P">Browser adoption politics article</a></p>
<p>Detailed analysis of <a href="http://www.versatilemonkey.com/story.html">sales of an indie BlackBerry app, over time</a>.</p>
<p>For the statistics / math buffs, apparently you can <a href="http://www.billthelizard.com/2009/09/getting-fair-toss-from-biased-coin.html">algorithmically get a totally fair result from a biased coin</a>.</p>
<p>Chris Baggott chronicling his <a href="http://exacttarget.typepad.com/chrisbaggott/2009/08/progress-report-on-toaster-blogging-experiment.html">efforts at making a low-effort product blog</a>.  Seems replicatable, although I&#8217;m not sure of the value produced.</p>
<p>I&#8217;ve been <a href="http://jjinux.blogspot.com/2009/08/web-more-lost-than-ever.html">here</a>, unfortunately.  </p>
<p>How to make a difference in your field:  <a href="http://www.cs.virginia.edu/~robins/YouAndYourResearch.html">Hamming&#8217;s You and Your Research</a></p>
<p>Some great reading by Seth Godin (probably second to Paul Graham as my favorite blogger).  I am usually brimming with ideas after reading stuff like this:<br />
<a href="http://sethgodin.typepad.com/seths_blog/2009/08/the-bandwidth-sync-correlation-thats-worth-thinking-about.html">http://sethgodin.typepad.com/seths_blog/2009/08/the-bandwidth-sync-correlation-thats-worth-thinking-about.html</a><br />
<a href="http://sethgodin.typepad.com/seths_blog/2009/09/organizing-customers.html">http://sethgodin.typepad.com/seths_blog/2009/09/organizing-customers.html</a><br />
<a href="http://sethgodin.typepad.com/seths_blog/2009/06/textbook-rant.html">http://sethgodin.typepad.com/seths_blog/2009/06/textbook-rant.html</a><br />
<a href="http://sethgodin.typepad.com/seths_blog/2009/02/grave-new-world.html">http://sethgodin.typepad.com/seths_blog/2009/02/grave-new-world.html</a><br />
<a href="http://sethgodin.typepad.com/seths_blog/2009/01/beauty-as-a-sig.html">http://sethgodin.typepad.com/seths_blog/2009/01/beauty-as-a-sig.html</a><br />
<a href="http://sethgodin.typepad.com/seths_blog/2009/01/in-the-mood.html">http://sethgodin.typepad.com/seths_blog/2009/01/in-the-mood.html</a><br />
<a href="http://sethgodin.typepad.com/seths_blog/2008/12/the-making-chas.html">http://sethgodin.typepad.com/seths_blog/2008/12/the-making-chas.html</a><br />
<a href="http://sethgodin.typepad.com/seths_blog/2008/11/do-you-know-eno.html">http://sethgodin.typepad.com/seths_blog/2008/11/do-you-know-eno.html</a><br />
<a href="http://sethgodin.typepad.com/seths_blog/2008/11/blah-blah-blah.html">http://sethgodin.typepad.com/seths_blog/2008/11/blah-blah-blah.html</a></p>
<p>I&#8217;m interested in this blog which combines biology and computer science to a degree.  He is interested in open-source biology as well, which is a pretty interesting variation on a theme with many different things to consider.  <a href="http://88proof.com/synthetic_biology/blog/archives/268">Here&#8217;s an interesting post</a>.</p>
<p><a href="http://www.logarithmic.net/pfh/blog/01249470842">More biology + computers</a></p>
<p><a href="http://simula.no/research/engineering/publications/Jorgensen.2005.2">One of the more interesting papers I have read.</a>  Basically describes the &#8220;winner&#8217;s curse&#8221; (entity that wins auction likely overpays for item) as it applies to winning software contracting bids (winning entity most likely underbids, in this case, causing ruin in the near future.)  </p>
<p>I&#8217;d say the same things that make <a href="http://google-opensource.blogspot.com/2009/08/contact-early-contact-often.html">student software projects succeed or fail</a> can probably be applied to software contracting.  </p>
<p><a href="http://martinfowler.com/bliki/ComposedRegex.html">Martin Fowler on more readable regular expressions</a></p>
<p><a href="http://21ccw.blogspot.com/2009/07/erlang-factory-2009-new-kids-on-erlang.html">Exciting applications of Erlang</a></p>
<p>If you&#8217;re on the hunt for something to use your newest shiny tool on or have some interesting algorithmic ideas, you could do worse than <a href="http://www.datawrangling.com/some-datasets-available-on-the-web">messing with these data sets</a>.</p>
<p>And I can finally sleep at night because I <a href="http://myotherpants.com/2009/09/its-like-sports-center-but-not/">don&#8217;t need to know everything about cars</a>.</p>
<p>The paradigm shift that most people in software have seen coming for awhile.  <a href="http://www.shirky.com/weblog/2009/03/newspapers-and-thinking-the-unthinkable/">http://www.shirky.com/weblog/2009/03/newspapers-and-thinking-the-unthinkable/</a></p>
<p>If you need a kick in the ass or some passion:<br />
<a href="http://www.seoblackhat.com/2007/01/29/do-it-fucking-now/">http://www.seoblackhat.com/2007/01/29/do-it-fucking-now/</a><br />
<a href="http://weblog.raganwald.com/2004/07/if-you-want-to-write-software.html">http://weblog.raganwald.com/2004/07/if-you-want-to-write-software.html</a><br />
<a href="http://www.somethingsimilar.com/wordpress/2007/08/06/how-to-get-your-project-moving-or-my-ego-is-massive-and-you-should-listen-to-me/">Quite NSFW, but pretty interesting</a><br />
<a href="http://www.stevepavlina.com/articles/do-it-now.htm">http://www.stevepavlina.com/articles/do-it-now.htm</a><br />
<a href="http://www.37signals.com/svn/posts/1437-put-a-dent-in-the-universe">http://www.37signals.com/svn/posts/1437-put-a-dent-in-the-universe</a><br />
<a href="http://weblog.raganwald.com/2004/07/how-to-write-software-with-art.html">http://weblog.raganwald.com/2004/07/how-to-write-software-with-art.html</a><br />
<a href="http://www.youtube.com/watch?v=Cbk980jV7Ao">http://www.youtube.com/watch?v=Cbk980jV7Ao</a><br />
<a href="http://www.slash7.com/articles/2009/1/25/quick-note-about-shipping">http://www.slash7.com/articles/2009/1/25/quick-note-about-shipping</a><br />
<a href="http://www.37signals.com/svn/posts/1626-the-most-powerful-word-is-no">http://www.37signals.com/svn/posts/1626-the-most-powerful-word-is-no</a></p>
<p>My twitter statuses with links that are still useful:<br />
<a href="http://twitter.com/panozzaj/status/4134727472">http://twitter.com/panozzaj/status/4134727472</a><br />
<a href="http://twitter.com/panozzaj/status/4080359840">http://twitter.com/panozzaj/status/4080359840</a><br />
<a href="http://twitter.com/panozzaj/status/3458258161">http://twitter.com/panozzaj/status/3458258161</a><br />
<a href="http://twitter.com/panozzaj/status/3430020800">http://twitter.com/panozzaj/status/3430020800</a><br />
<a href="http://twitter.com/panozzaj/status/2344419495">http://twitter.com/panozzaj/status/2344419495</a></p>
<p><br/><br/>Original article:  <a href="http://22ideastreet.com/blog/2009/10/01/interesting-links-nascent-thoughts/">Interesting Links, Nascent Thoughts</a></p>
]]></content:encoded>
			<wfw:commentRss>http://22ideastreet.com/blog/2009/10/01/interesting-links-nascent-thoughts/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>iPhone Tech Talks:  Part 3 &#8211; Libraries and Performance</title>
		<link>http://22ideastreet.com/blog/2009/01/24/iphone-tech-talks-part-3-libraries-and-performance/</link>
		<comments>http://22ideastreet.com/blog/2009/01/24/iphone-tech-talks-part-3-libraries-and-performance/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 11:00:09 +0000</pubDate>
		<dc:creator>Anthony Panozzo</dc:creator>
				<category><![CDATA[External]]></category>
		<category><![CDATA[Conferences]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://22ideastreet.com/blog/?p=476</guid>
		<description><![CDATA[I said that I was going to post a third post about the iPhone conference, but the third part didn&#8217;t engage my interest enough to write about it. Just thought I should let you know. Now I feel relieved. The first two articles are here:  Part 1   Part 2 Original article: iPhone Tech Talks: [...]<p><br/><br/>Original article:  <a href="http://22ideastreet.com/blog/2009/01/24/iphone-tech-talks-part-3-libraries-and-performance/">iPhone Tech Talks:  Part 3 &#8211; Libraries and Performance</a></p>
]]></description>
			<content:encoded><![CDATA[<p>I said that I was going to post a third post about the iPhone conference, but the third part didn&#8217;t engage my interest enough to write about it.  <img src='http://22ideastreet.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   Just thought I should let you know.  Now I feel relieved.</p>
<p>The first two articles are here:  <a href="http://22ideastreet.com/blog/2008/11/17/iphone-tech-talks-part-1-overview/">Part 1</a>   <a href="http://22ideastreet.com/blog/2008/11/27/iphone-tech-talks-part-2-interface-design/">Part 2</a></p>
<p><br/><br/>Original article:  <a href="http://22ideastreet.com/blog/2009/01/24/iphone-tech-talks-part-3-libraries-and-performance/">iPhone Tech Talks:  Part 3 &#8211; Libraries and Performance</a></p>
]]></content:encoded>
			<wfw:commentRss>http://22ideastreet.com/blog/2009/01/24/iphone-tech-talks-part-3-libraries-and-performance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Testing Seminars</title>
		<link>http://22ideastreet.com/blog/2009/01/18/testing-seminars/</link>
		<comments>http://22ideastreet.com/blog/2009/01/18/testing-seminars/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 01:34:24 +0000</pubDate>
		<dc:creator>Anthony Panozzo</dc:creator>
				<category><![CDATA[External]]></category>
		<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Testing]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://22ideastreet.com/blog/?p=585</guid>
		<description><![CDATA[Passing along some information from Mike Kelly regarding the 2009 schedule for the Indianapolis Workshops on Software Testing (IWST.) It&#8217;s pretty short and dense, so I&#8217;ll just copy from here: We’ve posted the 2009 schedule for the Indianapolis Workshops on Software Testing. We’re looking for people willing to share experience reports and people who just [...]<p><br/><br/>Original article:  <a href="http://22ideastreet.com/blog/2009/01/18/testing-seminars/">Testing Seminars</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Passing along some information from Mike Kelly regarding the 2009 schedule for the Indianapolis Workshops on Software Testing (IWST.)  It&#8217;s pretty short and dense, so I&#8217;ll just copy from <a href="http://www.michaeldkelly.com/blog/archives/248">here:</a></p>
<blockquote><p>
We’ve posted the 2009 schedule for the Indianapolis Workshops on Software Testing. We’re looking for people willing to share experience reports and people who just have a general interest in the various topics and would like to attend and ask questions.</p>
<p>Here’s a summary of the lineup:</p>
<li>February 26, 2009: Presenting test results</li>
<li>March 27, 2009: Test-driven development</li>
<li>June 27, 2009: Test design and development</li>
<li>August 28, 2009: Testing mobile devices</li>
<li>September 26, 2009: Automation and performance logging</li>
<li>October 29, 2009: Time management for testers</li>
<li>November 21, 2009: Managing your focus while doing exploratory testing</li>
<p>If you’re interested in attending any of the workshops, please drop me a line at mike@michaeldkelly.com.
</p></blockquote>
<p>I sent him an email saying that I would be interested in the March and October sessions.  Perhaps you have some interest in the same/other sessions?</p>
<p><br/><br/>Original article:  <a href="http://22ideastreet.com/blog/2009/01/18/testing-seminars/">Testing Seminars</a></p>
]]></content:encoded>
			<wfw:commentRss>http://22ideastreet.com/blog/2009/01/18/testing-seminars/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

