<?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>Jake N&#039; Bake</title>
	<atom:link href="http://jakenbake.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jakenbake.com</link>
	<description>Jake Gold on startups and the web</description>
	<lastBuildDate>Wed, 12 Dec 2012 02:04:45 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5</generator>
		<item>
		<title>The little architecture that could</title>
		<link>http://jakenbake.com/the-little-architecture-that-could/</link>
		<comments>http://jakenbake.com/the-little-architecture-that-could/#comments</comments>
		<pubDate>Wed, 12 Dec 2012 02:04:07 +0000</pubDate>
		<dc:creator>jakegg</dc:creator>
				<category><![CDATA[hacking]]></category>

		<guid isPermaLink="false">http://jakenbake.com/?p=582</guid>
		<description><![CDATA[I&#8217;m always amazed at how many times this simple architecture can handle just about any common situation that arises. It&#8217;s hugely scalable, super flexible, and unbelievably simple. +------------------+ &#124; &#124; +---------+&#124; Job Queue +--------------+ &#124; &#124; &#124; &#124; +---------------+ +----+-----+ +------------------+ +---------+--------+ &#124; &#124; &#124; &#124; &#124; &#124; &#124; Client App +---+&#124; Web App &#124; [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m always amazed at how many times this simple architecture can handle just about any common situation that arises. It&#8217;s hugely scalable, super flexible, and unbelievably simple.</p>
<pre>
                                       +------------------+
                                       |                  |
                            +---------+|    Job Queue     +--------------+
                            |          |                  |              |
  +---------------+    +----+-----+    +------------------+    +---------+--------+
  |               |    |          |                            |                  |
  |  Client App   +---+| Web App  |                            |  Worker Daemons  |
  |               |    |          |                            |                  |
  +---------------+    +-----+----+    +------------------+    +---------+--------+
                             |         |                  |              |
                             +---------+     Database     |+-------------+
                                       |                  |
                                       +------------------+

</pre>
]]></content:encoded>
			<wfw:commentRss>http://jakenbake.com/the-little-architecture-that-could/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Campuses are Starfleet HQ</title>
		<link>http://jakenbake.com/google-campuses-are-starfleet-hq/</link>
		<comments>http://jakenbake.com/google-campuses-are-starfleet-hq/#comments</comments>
		<pubDate>Fri, 25 May 2012 00:54:08 +0000</pubDate>
		<dc:creator>jakegg</dc:creator>
				<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://jakenbake.com/?p=524</guid>
		<description><![CDATA[Bay area. Utopian. &#160;]]></description>
				<content:encoded><![CDATA[<p>Bay area. Utopian.</p>
<p>&nbsp;</p>
<p><img src="http://i.imgur.com/gPsTC.jpg" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://jakenbake.com/google-campuses-are-starfleet-hq/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dropbox/Google Drive &#8212; Data portability for the web</title>
		<link>http://jakenbake.com/dropbox-google-data-portability/</link>
		<comments>http://jakenbake.com/dropbox-google-data-portability/#comments</comments>
		<pubDate>Fri, 11 May 2012 19:15:32 +0000</pubDate>
		<dc:creator>jakegg</dc:creator>
				<category><![CDATA[Dropbox]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[ideas]]></category>

		<guid isPermaLink="false">http://jakenbake.com/?p=503</guid>
		<description><![CDATA[One of the &#8220;Cloud Drive&#8221; providers should create a series of standards for storing user data and start convincing sites to adopt it. They could create a Photos standard, for example: $ ls Dropbox/sites/picturesharingly.io/Photos 1.json familyvacation1.jpg $ cat Dropbox/sites/picturesharingly.io/Photos/familyvacation1.jpg.json { 'doctype' : 'Photos/v1.0', 'created' : '2011-02-14 21:58:13', 'title' : 'Us and the kids swimming', 'album' [...]]]></description>
				<content:encoded><![CDATA[<p>One of the &#8220;Cloud Drive&#8221; providers should create a series of standards for storing user data and start convincing sites to adopt it. They could create a Photos standard, for example:</p>
<pre>$ ls Dropbox/sites/picturesharingly.io/Photos

1.json
familyvacation1.jpg

$ cat Dropbox/sites/picturesharingly.io/Photos/familyvacation1.jpg.json
{
  'doctype' : 'Photos/v1.0',
  'created' : '2011-02-14 21:58:13',
  'title' : 'Us and the kids swimming',
  'album' : 'Family Vacation 2011',
  'filename' : 'familyvacation1.jpg',
  ...
}

$ ls Dropbox/sites/news.ycombinator.com/Comments
1.json

$ cat 1.json

{
  'doctype' : 'SocialComments/v1.0',
  'created' : '2012-04-01 12:34:53',
  'parent' : '2131295',
  'body' : 'Chocolate milk is rather delicious...',
  ...
}</pre>
<p>Obviously these are just quick examples that I came up with in 2 minutes. You would have to put a decent amount of thought into the standards. Maybe it would be better to store data and metadata separately, for example.</p>
<p>The basic ideas are.</p>
<p>1. Anyone could be your &#8220;Cloud Drive&#8221; provider. Dropbox, Google Drive, etc. You would OAuth your preference when you sign up for a new service.</p>
<p>2. Sites would store data in pre-defined standard formats (&#8220;Photos&#8221;, &#8220;Comments&#8221;, &#8220;Votes&#8221;, &#8220;FriendsList&#8221;, etc).</p>
<p>3. Sites could normally only access data they wrote to your drive, but you could optionally give them read-write or read-only access to other site&#8217;s data.</p>
<p>4. Sites would still store their own additional data themselves and keep their own copies of your data &#8212; or at the very least cache your data for performance/simplicity.</p>
<p>There are some obvious objections anyone would have to this idea, the value is so great to users though that it should be possible to overcome them.</p>
<p>Someone smart will need to figure out all the details. Personally I think <a href="http://bradfitz.com/">Brad Fitzpatrick</a> is ideal person to do it, <a href="http://code.google.com/apis/socialgraph/">he</a> <a href="http://code.google.com/p/pubsubhubbub/">seems</a> <a href="http://code.google.com/p/webfinger/">to</a> <a href="https://plus.google.com/u/0/115863474911002159675/posts/5jVttEPvjKD">have</a> a knack for this kind of thing. It looks like he&#8217;s working for Google these days.  Hopefully Google or Dropbox will get on this.</p>
]]></content:encoded>
			<wfw:commentRss>http://jakenbake.com/dropbox-google-data-portability/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HN Nugget: Heros</title>
		<link>http://jakenbake.com/hn-nugget-heros/</link>
		<comments>http://jakenbake.com/hn-nugget-heros/#comments</comments>
		<pubDate>Mon, 19 Mar 2012 04:38:59 +0000</pubDate>
		<dc:creator>jakegg</dc:creator>
				<category><![CDATA[HN Nugget]]></category>

		<guid isPermaLink="false">http://jakenbake.com/?p=484</guid>
		<description><![CDATA[Just saw a 60 Minutes piece on Elon Musk, creator of SpaceX (and Tesla Motors). In it he chokes up when the reporter asks him about some of his heros &#8220;casting stones&#8221; in his direction. User bane posted this nugget on Hacker News: There&#8217;s a time, a sad time, when up and comers ping on the radar of [...]]]></description>
				<content:encoded><![CDATA[<p>Just saw a 60 Minutes <a href="http://www.cbsnews.com/video/watch/?id=50121782n">piece</a> on <a href="http://en.wikipedia.org/wiki/Elon_Musk">Elon Musk</a>, creator of SpaceX (and Tesla Motors).</p>
<p>In it he chokes up when the reporter asks him about some of his heros &#8220;casting stones&#8221; in his direction.</p>
<p>User <a href="http://news.ycombinator.com/user?id=bane">bane</a> <a href="http://news.ycombinator.com/item?id=3722304">posted this</a> nugget on Hacker News:</p>
<p style="padding-left: 30px;">There&#8217;s a time, a sad time, when up and comers ping on the radar of their heroes and find them to not be the men they imagined.</p>
<p style="padding-left: 30px;">It shouldn&#8217;t diminish the respect they have for their heroes, but it is the sign that they should now move out from behind them and chart their own course&#8230;except now they are on their own&#8230;there is nobody to guide them.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://jakenbake.com/hn-nugget-heros/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why I respect Kevin Rose more for killing Oink</title>
		<link>http://jakenbake.com/kevin-rose-oink-oink/</link>
		<comments>http://jakenbake.com/kevin-rose-oink-oink/#comments</comments>
		<pubDate>Wed, 14 Mar 2012 21:07:43 +0000</pubDate>
		<dc:creator>jakegg</dc:creator>
				<category><![CDATA[startups]]></category>

		<guid isPermaLink="false">http://jakenbake.com/?p=470</guid>
		<description><![CDATA[Kevin Rose is a high profile Silicon Valley figure. Anything he does is going to get attention. Even things that aren&#8217;t very good. The same is true for anyone like him. That means that he could launch something totally lame and some small number of people will actually use it. I&#8217;m not saying Oink was [...]]]></description>
				<content:encoded><![CDATA[<p>Kevin Rose is a high profile Silicon Valley figure. Anything he does is going to get attention. Even things that aren&#8217;t very good. The same is true for anyone like him.</p>
<p>That means that he could launch something totally lame and some small number of people will actually use it. I&#8217;m not saying Oink was totally lame, but I think it&#8217;s fair to say it was not totally awesome (yet).</p>
<p>It&#8217;s very possible Oink could have been built up into something big. Almost certain in my mind. It&#8217;s solving a real problem (finding good Things at local merchants). It would have taken 2+ years probably to bear fruit.</p>
<p>My guess at why he decided to close it down is because he&#8217;s just not passionate about it and that is the single best reason to kill a startup idea.</p>
<p>Passion is a prerequisite. You can be passion about the <em>idea</em> or even just passionate about the idea of <em>running a company</em>. Either way seems to work.</p>
<p>For someone like Kevin Rose though, he probably needs to be passionate about the <em>idea.</em> He&#8217;s already got some cash and has already started a company. It&#8217;s a given for him that he can have his own company. Investors will give him a million dollars per year every year until he tells them to stop. So he need an exciting idea to get him out of bed in the morning.</p>
<p>The easy thing to do would have been to keep Oink alive on life support. Just assign one or two junior guys on the team to keep working on it. He didn&#8217;t do that. He took the harder route. He knew he&#8217;d take flack for it too.</p>
<p>I&#8217;m just disappointed at how much flack he seems to be receiving. As if he did something wrong or evil.</p>
<p>Some of those chastising him are using the idea of users getting hurt as the reason. The ol&#8217;  &#8221;think of the children&#8221; chestnut. Users will be perfectly okay. Oink wasn&#8217;t an integral part of anyone&#8217;s life yet. <em>No one</em> is getting hurt.</p>
<p>One of the biggest differentiators of The Silicon Valley Way is the reduced consequences of failure. Kevin Rose should be praised for doing the right thing &#8212; not admonished.</p>
<p>He&#8217;s a notch up in my book.</p>
]]></content:encoded>
			<wfw:commentRss>http://jakenbake.com/kevin-rose-oink-oink/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sending Billions to the RIAA &amp; MPAA &#8211; Stats &amp; Update</title>
		<link>http://jakenbake.com/sending-billions-to-the-riaa-mpaa-stats-update/</link>
		<comments>http://jakenbake.com/sending-billions-to-the-riaa-mpaa-stats-update/#comments</comments>
		<pubDate>Wed, 14 Mar 2012 20:00:38 +0000</pubDate>
		<dc:creator>jakegg</dc:creator>
				<category><![CDATA[copyright]]></category>
		<category><![CDATA[Send Them Your Money]]></category>

		<guid isPermaLink="false">http://jakenbake.com/?p=456</guid>
		<description><![CDATA[Just thought I&#8217;d post some info here, since I&#8217;ve received the same questions from a few people. Two days ago I had an amusing idea, inspired by a thread on HN about PG&#8217;s latest essay on property. SendThemYourMoney.com In less than 20 minutes after posting the idea in a comment I registered the domain and put up the page. [...]]]></description>
				<content:encoded><![CDATA[<p>Just thought I&#8217;d post some info here, since I&#8217;ve received the same questions from a few people.</p>
<p>Two days ago I had an amusing idea, inspired by a thread on HN about PG&#8217;s <a href="http://paulgraham.com/property.html">latest essay</a> on property.</p>
<p><a href="http://sendthemyourmoney.com/">SendThemYourMoney.com</a></p>
<p>In less than 20 minutes after posting the idea in a comment I registered the domain and put up the page. Then I had to wait a bit for the domain to finish processing so I could submit it to Hacker News. That&#8217;s all I did.</p>
<h2>Stats</h2>
<p>Stats after 24 hours:</p>
<p style="padding-left: 30px;">Reddit front page (<strong>1416 comments</strong>)</p>
<p style="padding-left: 30px;">Hacker News front page (<strong>132 comments</strong>)</p>
<p style="padding-left: 30px;">Sites linking in: <strong>~400</strong></p>
<p style="padding-left: 30px;">Tweets: <strong>~1500</strong></p>
<p style="padding-left: 30px;">Facebook likes: <strong>~2900</strong></p>
<p style="padding-left: 30px;">Visitors: <strong>~250,000</strong></p>
<p>From an amusing little idea, 20 minutes worth of effort, and a $9 domain an idea can spread to a quarter-million people in less than 24 hours. Pretty eye-opening to me to get a such a clear benchmark of just how powerful the web has become.</p>
<p>&nbsp;</p>
<h2>The Idea</h2>
<p>A very small number of people seem to have taken the idea a little too seriously.</p>
<p>I only meant it as an <strong>amusing</strong> idea. A little friendly internet trolling against some not-so-nice behemoths. Teasing the RIAA &amp; MPAA? Can&#8217;t pass that up! At best I thought it might be thought-provoking and keep people thinking about the continuing fight against things like SOPA &amp; PIPA.</p>
<p>I<em> know</em> the analogy the site uses is flawed and the language is imprecise. Even I don&#8217;t agree with it.</p>
<p>It still makes me chuckle though &#8212; and that was the point.</p>
]]></content:encoded>
			<wfw:commentRss>http://jakenbake.com/sending-billions-to-the-riaa-mpaa-stats-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Send Them Your Money: A campaign to send the RIAA/MPAA billions</title>
		<link>http://jakenbake.com/send-them-your-money-a-campaign-to-send-the-riaampaa-billions/</link>
		<comments>http://jakenbake.com/send-them-your-money-a-campaign-to-send-the-riaampaa-billions/#comments</comments>
		<pubDate>Mon, 12 Mar 2012 22:53:08 +0000</pubDate>
		<dc:creator>jakegg</dc:creator>
				<category><![CDATA[copyright]]></category>
		<category><![CDATA[funny]]></category>

		<guid isPermaLink="false">http://jakenbake.com/?p=453</guid>
		<description><![CDATA[Created a funny site today: http://sendthemyourmoney.com/]]></description>
				<content:encoded><![CDATA[<p>Created a funny site today: <a href="http://sendthemyourmoney.com/">http://sendthemyourmoney.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jakenbake.com/send-them-your-money-a-campaign-to-send-the-riaampaa-billions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Probably the most important lesson I learned working at Apple&#8221;</title>
		<link>http://jakenbake.com/probably-the-most-important-lesson-i-learned-working-at-apple/</link>
		<comments>http://jakenbake.com/probably-the-most-important-lesson-i-learned-working-at-apple/#comments</comments>
		<pubDate>Wed, 07 Mar 2012 09:53:38 +0000</pubDate>
		<dc:creator>jakegg</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Hacker News]]></category>
		<category><![CDATA[startups]]></category>

		<guid isPermaLink="false">http://jakenbake.com/?p=434</guid>
		<description><![CDATA[Saw an awesome little nugget of wisdom on Hacker News. DHH, from 37 signals, was explaining why the new version of Basecamp doesn&#8217;t have some features of the previous/alternate version: &#8220;We weren&#8217;t happy with the time tracking integration in Classic. It was usable, but it wasn&#8217;t great. We want to take our time to either come [...]]]></description>
				<content:encoded><![CDATA[<p>Saw an awesome little nugget of wisdom on Hacker News. DHH, from 37 signals, was explaining why the new version of Basecamp doesn&#8217;t have some features of the previous/alternate version:</p>
<blockquote><p><em>&#8220;We weren&#8217;t happy with the time tracking integration in Classic. It was usable, but it wasn&#8217;t great. We want to take our time to either come up with a better built-in solution or an integration with another tool or something else.</em></p>
<p><em>This is a big part of why we&#8217;re keeping Basecamp Classic around for a very long time. Basecamp Next was not going to launch with all the features that Classic already has. So it&#8217;s OK that it&#8217;s not a perfect fit for all existing customers on Day 1.</em><br />
<em> The iPhone didn&#8217;t have copy&#8217;n'paste for a while, either. There&#8217;s just so much you can do for launch, if you want to ship.&#8221;</em></p></blockquote>
<p><a title="jballanc" href="http://news.ycombinator.com/user?id=jballanc">jballanc </a>chimed in with this:</p>
<blockquote><p><em>&#8220;The iPhone anecdote is such an important one. Probably the most important lesson I learned working at Apple was: people don&#8217;t remember that a feature was missing once you implement it, but they remember broken features long after you&#8217;ve fixed them.&#8221;</em></p></blockquote>
<p><a href="http://news.ycombinator.com/item?id=3671971">Comment thread</a></p>
<p>This is the kind of thing I have a ton of sympathy for. DHH is creating a new product the correct way: releasing a minimal (but useful) version 1.0 and beginning the iteration cycle.</p>
<p>To do iterative development you have to build up a thick skin for exactly this type of negative feedback.</p>
<p>Users will suggest obviously-good features, like time tracking or copy/paste(!), but for whatever reason it&#8217;s not going to be your highest priority. Either there are simply too many more important things to do or there&#8217;s no good way to implement the feature yet.</p>
<p>One impulse to this kind of legitimate feedback is to let it control you. Users are complaining! And you agree with their complaints! Quick &#8212;  whip something up!</p>
<p>If you do that though, you&#8217;ve probably made mistake: by implementing something that&#8217;s less important than other things, or by doing a half-assed job.</p>
<p>There are definitely times when you have to do things like that. Sometimes your judgement is wrong and users are shouting until you listen. But most of the time you have the clearer picture &#8212; you can see what decisions will have the biggest pay off for the most users.</p>
<p>Apple seems to have the toughest skin of just about any company. Sometimes they even take it too far, straight into denial. &#8220;The antenna is fine &#8212; stop acting crazy!&#8221;</p>
<p>It&#8217;s tough to develop software in public with real users. Sometimes their feedback can be negative <em>and</em> correct, but you can&#8217;t do anything about it yet other than accept it gracefully.</p>
<p>You have to be responsive to feedback and able to stick to your guns &#8212; and know when to do which one.</p>
]]></content:encoded>
			<wfw:commentRss>http://jakenbake.com/probably-the-most-important-lesson-i-learned-working-at-apple/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google&#8217;s Web Search Quality. A picture is worth a 1000 words</title>
		<link>http://jakenbake.com/googles-web-search-quality-a-picture-is-worth-1000-words/</link>
		<comments>http://jakenbake.com/googles-web-search-quality-a-picture-is-worth-1000-words/#comments</comments>
		<pubDate>Sat, 03 Mar 2012 23:13:31 +0000</pubDate>
		<dc:creator>jakegg</dc:creator>
				<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://jakenbake.com/?p=425</guid>
		<description><![CDATA[Saw this on Reddit (I think) a week or two ago. Just blew my mind. To anyone who thinks Google hasn&#8217;t been innovating in web search: &#160; &#160; &#160; I thought Microsoft bought Powerset, not Google? &#160; Hacker News Comments  &#160;]]></description>
				<content:encoded><![CDATA[<p>Saw this on Reddit (I think) a week or two ago. Just blew my mind. To anyone who thinks Google hasn&#8217;t been innovating in web search:</p>
<p>&nbsp;</p>
<p><a href="http://jakenbake.com/wp-content/uploads/2012/03/google-web-quality.png"><img class="alignnone  wp-image-426" title="google-web-quality" src="http://jakenbake.com/wp-content/uploads/2012/03/google-web-quality.png" alt="" width="507" height="500" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>I thought Microsoft bought Powerset, not Google?</p>
<p>&nbsp;</p>
<p><a href="http://news.ycombinator.com/item?id=3661397">Hacker News Comments </a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://jakenbake.com/googles-web-search-quality-a-picture-is-worth-1000-words/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Y Combinator is sort of a Proprietary Investor-only Launch Conference</title>
		<link>http://jakenbake.com/y-combinator-launch-conference/</link>
		<comments>http://jakenbake.com/y-combinator-launch-conference/#comments</comments>
		<pubDate>Sat, 03 Mar 2012 22:44:00 +0000</pubDate>
		<dc:creator>jakegg</dc:creator>
				<category><![CDATA[Y Combinator]]></category>

		<guid isPermaLink="false">http://jakenbake.com/?p=412</guid>
		<description><![CDATA[Y Combinator has started funding so many companies per round (60+) and getting so much investor attention that they&#8217;ve had to move their &#8220;Demo Day&#8221; event (where companies present to investors) into a larger building and make it an all-day event. Y Combinator Demo Day Brings The Future To Computer History Museum It got me [...]]]></description>
				<content:encoded><![CDATA[<p>Y Combinator has started funding so many companies per round (60+) and getting so much investor attention that they&#8217;ve had to move their &#8220;Demo Day&#8221; event (where companies present to investors) into a larger building and make it an all-day event.</p>
<p><a href="http://techcrunch.com/2012/03/03/y-combinator-demo-day-3/">Y Combinator Demo Day Brings The Future To Computer History Museum</a></p>
<p>It got me thinking. I&#8217;ve never thought of Y Combinator as a species of conference, yet the parallels are fairly striking.</p>
<p>They accept applications from startups, coach them, and help them pitch investors on stage. The biggest difference between them and conferences is that they also invest and take equity. In addition they spend <em>3 months</em> coaching the startups instead of the 3 days or 3 hours that a conference would.</p>
<p>They&#8217;re sort of like a very expansive and very intensive conference. They&#8217;re on the startup&#8217;s side during the entire process: they handle incorporation, introductions, product advice &#8212; pretty much any kind of help they can.</p>
<p>The goal of all of that work though is ultimately to turn those startups into something VCs will find worthy of investment when they present it to them on Demo Day.</p>
<p>Even the name, Demo Day, is necessarily similar to &#8220;DEMO Conference&#8221; which was the first major startup launch conference.</p>
<p>Just imagine if they charged every investor $3000-$5000 to attend (they wouldn&#8217;t mind). It might reduce YC&#8217;s costs to almost nothing.</p>
<p>I don&#8217;t think I&#8217;m belitting YC or its value by drawing this analogy. It&#8217;s far from perfect, and at some point analogies like this always break down &#8212; I was just surprised at how far this one goes.</p>
<p>People have always struggled to label YC. They&#8217;ve been called an incubator, VC firm, angel investor, and accelerator. They&#8217;re really a cross between all of those. I think you could add &#8220;conference&#8221; to the mix and would make for an even more accurate description.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://jakenbake.com/y-combinator-launch-conference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
