<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-1807867701470950916</id><updated>2024-09-05T01:33:02.621-07:00</updated><category term="Entrepreneurial Lessons"/><category term="Observations"/><category term="Cool Stuff Others Have Said"/><category term="Op-Eds"/><category term="Product Development"/><category term="Coding"/><category term="Investment Theses"/><category term="Market Research"/><category term="KnolSoft"/><category term="News"/><category term="Web Development"/><title type='text'>Tech Road Trip</title><subtitle type='html'>The thoughts and experiences of an aspiring entrepreneur trying to change the way we do things</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://techroadtrip.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default'/><link rel='alternate' type='text/html' href='http://techroadtrip.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default?start-index=26&amp;max-results=25'/><author><name>Erol Toker</name><uri>http://www.blogger.com/profile/03989657428661052176</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgywQt-GIQtuN0LxL8wbJBmy8Mxx6KwH-0NSsE6tS62OBcsIYgWJIdpm6QxTKwQs4tGsta6rZLz1LYESqSW9jyUoNM3ophSNbFUmBsZM2euArZNv5W9GrjorV5Ykxjw-vo/s220/erolprofile.JPG'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>35</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-1807867701470950916.post-2749349089708087688</id><published>2012-11-21T15:08:00.001-08:00</published><updated>2012-11-21T15:08:24.122-08:00</updated><title type='text'>RedBeanPHP an amazing ORM</title><content type='html'>I want to share a little bit about my experience with a library called RedBeanPHP, since it&#39;s been a completely transformational tool for me in the prototyping process (and in fact, was a big contributor to the app that my teammate and I built at AngelHack NY, which we ended up winning).&lt;br /&gt;
&lt;br /&gt;
So, here&#39;s the general idea. &amp;nbsp;In the prototyping process, no matter how much you plan ahead, it&#39;s fairly likely that you will want to add a DB column or change the values you were planning on storing. &amp;nbsp;This generally means having to do a few things:&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Add a script to alter the existing schema&lt;/li&gt;
&lt;li&gt;Make changes to a central script that builds your DB from scratch (in case you need to recreate it on a new DB instance).&lt;/li&gt;
&lt;li&gt;Deal with backwards compatibility/consistency issues&lt;/li&gt;
&lt;/ul&gt;
&lt;div&gt;
When you&#39;re prototyping, this is incredibly distracting and annoying (especially if you are like me and you just want to push a version out to start measuring usage). &amp;nbsp;Enter RedBean. &amp;nbsp;Redbean is an ORM just like any other with a little trick up its sleeve- it alters the schema to accommodate whatever values you want to assign to a given object type on the fly. &amp;nbsp;So let&#39;s take the following examples:&lt;/div&gt;
&lt;div&gt;
&lt;ul&gt;
&lt;li&gt;Let&#39;s say I set foo.name = 1.&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;Redbean might set the schema for column &#39;name&#39; to be a TINYINT&lt;/li&gt;
&lt;/ul&gt;
&lt;li&gt;Let&#39;s say I then set foo.name = 1234&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;Redbean might set the schema for &#39;name&#39; to be an INT&lt;/li&gt;
&lt;/ul&gt;
&lt;li&gt;Let&#39;s say I then set foo.name = &#39;abcdefg&#39;.&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;Redbean might set the schema for &#39;name&#39; to be VARCHAR(250).&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt;
&lt;div&gt;
It gets better though. &amp;nbsp;While it builds your schema, you&#39;re free to mess with your DB as much as you want behind the scenes (change schema, add indexes, etc) and redbean will still cooperate. &amp;nbsp;And once you&#39;re happy with the DB, you push to production and you want to make sure RedBean doesn&#39;t alter your schema, you add one line of code to the top of your PHP script to ensure that doesn&#39;t happen (&#39;R::freeze()&#39;). &amp;nbsp;After that, if the DB is unhappy with what you&#39;re sending it, Redbean will just work as an ORM solution and pass back the error if the DB is unhappy with a given query.&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
Beyond that, check out the &lt;a href=&quot;http://redbeanphp.com/&quot;&gt;site&lt;/a&gt;. &amp;nbsp;The syntax is beautifully simple to understand and it&#39;s my ORM of choice at this point.&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://techroadtrip.blogspot.com/feeds/2749349089708087688/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1807867701470950916/2749349089708087688' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/2749349089708087688'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/2749349089708087688'/><link rel='alternate' type='text/html' href='http://techroadtrip.blogspot.com/2012/11/redbeanphp-amazing-orm.html' title='RedBeanPHP an amazing ORM'/><author><name>Erol Toker</name><uri>http://www.blogger.com/profile/03989657428661052176</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgywQt-GIQtuN0LxL8wbJBmy8Mxx6KwH-0NSsE6tS62OBcsIYgWJIdpm6QxTKwQs4tGsta6rZLz1LYESqSW9jyUoNM3ophSNbFUmBsZM2euArZNv5W9GrjorV5Ykxjw-vo/s220/erolprofile.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1807867701470950916.post-2472480238946909873</id><published>2012-11-19T12:07:00.000-08:00</published><updated>2012-11-19T12:07:09.489-08:00</updated><title type='text'>Jquery Mobile</title><content type='html'>Jquery Mobile is simply amazing. &amp;nbsp;If you haven&#39;t used it before, check out the demos/docs &lt;a href=&quot;http://jquerymobile.com/demos/1.2.0/&quot;&gt;here&lt;/a&gt;. &amp;nbsp;Here&#39;s why you want to use it:&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;It&#39;s HTML5. &amp;nbsp;This means that it will not only work as a mobile application site but it is directly portable to native apps on iphone, android, blackberry, etc through the PhoneGap framework (I&#39;ll write more on that at a later time).&lt;/li&gt;
&lt;li&gt;It comes with all of the basic widgets that you would expect any mobile app to have. &amp;nbsp;Pretty much nothing required from you except to embed the html5 tags.&lt;/li&gt;
&lt;li&gt;It is easier to build than a normal website. &amp;nbsp;This is because the structure of the framework is that you create every view of the application on a single html document. &amp;nbsp;This means that you have one document as the source of truth for pretty much everything, and if you get lazy (as I do, to my disappointment) and put all of your code in that document, there are no dependencies to worry about later.&lt;/li&gt;
&lt;/ul&gt;
&lt;div&gt;
Here are the key things to pay attention to, that took me a little while to get a hang of:&lt;/div&gt;
&lt;div&gt;
&lt;ul&gt;
&lt;li&gt;Since you have multiple views (each treated as it&#39;s own &#39;site&#39;), using $.(document).ready doesn&#39;t work the same. &amp;nbsp;The code loaded in that view gets loaded as soon as the entire html document is loaded to the page- NOT WHEN ANY SINGLE VIEW IS LOADED. &amp;nbsp;To have some JS executed when a view loads, you bind to the following events:&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;$(document).delegate(&quot;#my_patients_view&quot;, &quot;pageinit&quot;, function(){ //Your code here});&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;This will execute your JS code when the view is initialized for the first time (ie: first time the homepage view is shown&lt;/li&gt;
&lt;/ul&gt;
&lt;li&gt;$(document).delegate(&quot;#my_patients_view&quot;, &quot;pageshow&quot;, function(){ //Your code here});&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;This will execute every single time the view is shown&lt;/li&gt;
&lt;li&gt;This is an important distinction because if you do event binding in this block of code, you will attach bind multiple event handlers to an item, which can give you trouble down the line&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;Ex: You bind a click event to a button in a given view. &amp;nbsp;If the view is loaded twice, the second time you click the button it will issue 2 separate ajax call instead of one.&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt;
&lt;/ul&gt;
&lt;/ul&gt;
&lt;div&gt;
Seriously though, this is amazing. &amp;nbsp;Love everything about it. &amp;nbsp;Please use it.&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://techroadtrip.blogspot.com/feeds/2472480238946909873/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1807867701470950916/2472480238946909873' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/2472480238946909873'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/2472480238946909873'/><link rel='alternate' type='text/html' href='http://techroadtrip.blogspot.com/2012/11/jquery-mobile.html' title='Jquery Mobile'/><author><name>Erol Toker</name><uri>http://www.blogger.com/profile/03989657428661052176</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgywQt-GIQtuN0LxL8wbJBmy8Mxx6KwH-0NSsE6tS62OBcsIYgWJIdpm6QxTKwQs4tGsta6rZLz1LYESqSW9jyUoNM3ophSNbFUmBsZM2euArZNv5W9GrjorV5Ykxjw-vo/s220/erolprofile.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1807867701470950916.post-8935613865020658796</id><published>2012-06-13T06:20:00.000-07:00</published><updated>2012-06-15T12:47:17.567-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Coding"/><title type='text'>Installing Localtunnel on Mac OSX</title><content type='html'>&lt;a href=&quot;http://progrium.com/localtunnel/&quot;&gt;Localtunnel&lt;/a&gt; is a nifty little application that allows you to share your local webserver with the outside world. &amp;nbsp;The flow is pretty simple:&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Run your local webserver&lt;/li&gt;
&lt;li&gt;Localtunnel spits out a URL for you (ie: &#39;http://localtunnel.com/abcdefg&#39;)&lt;/li&gt;
&lt;li&gt;Share the localtunnel URL with anyone and they should be able to access your &#39;localhost&#39; remotely over the web, as long as localtunnel continues to run in the background.&lt;/li&gt;
&lt;/ul&gt;
&lt;div&gt;
This is ideal for sharing quick demos/prototypes. &amp;nbsp;It is not a good temporary hosting solution because localtunnel shuts you out after ~20 mins if the service is not actively used. &amp;nbsp;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
Installing this *should* be pretty easy but about a million posts online show that there is a little hidden step that makes this 10 minute process take 2 hours to figure out:&lt;/div&gt;
&lt;div&gt;
&lt;ul&gt;
&lt;li&gt;You need ruby to install localtunnel according to their documentation:&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;Download XCode through the app store&lt;/li&gt;
&lt;li&gt;Open XCode:&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;Navigate to XCode -&amp;gt;Preferences-&amp;gt;Downloads&lt;/li&gt;
&lt;li&gt;Install &#39;Command Line Tools&#39;&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt;
&lt;li&gt;Open up terminal and run &#39;sudo gem install localtunnel&#39;&lt;/li&gt;
&lt;li&gt;run &#39;localtunnel 80&#39;. &amp;nbsp;You should get a message saying &#39;Failed to authenticate.&#39; &amp;nbsp;To get around this, you need to upload a public key.&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;Make sure you have a public key&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;Run &#39;cd ~/.ssh&#39;&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;If the directory doesn&#39;t exist, created it by running &#39;mkdir ~/.ssh&#39; and navigate into it by running &#39;cd ~/.ssh&#39;&lt;/li&gt;
&lt;/ul&gt;
&lt;li&gt;If you do not have a private/public key pair (ie: id_rsa), create one by running &#39;ssh-keygen -t rsa -b 4096&#39;&lt;/li&gt;
&lt;/ul&gt;
&lt;li&gt;Run &#39;localtunnel -k ~/.ssh/id_rsa.pub 80&#39; and enter your passphrase.&lt;/li&gt;
&lt;li&gt;The service should now be running. &amp;nbsp;Take the url displayed and type it in your browser; you should be taken directly to your localhost index page.&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt;
&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://techroadtrip.blogspot.com/feeds/8935613865020658796/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1807867701470950916/8935613865020658796' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/8935613865020658796'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/8935613865020658796'/><link rel='alternate' type='text/html' href='http://techroadtrip.blogspot.com/2012/06/installing-localtunnel-on-mac-os.html' title='Installing Localtunnel on Mac OSX'/><author><name>Erol Toker</name><uri>http://www.blogger.com/profile/03989657428661052176</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgywQt-GIQtuN0LxL8wbJBmy8Mxx6KwH-0NSsE6tS62OBcsIYgWJIdpm6QxTKwQs4tGsta6rZLz1LYESqSW9jyUoNM3ophSNbFUmBsZM2euArZNv5W9GrjorV5Ykxjw-vo/s220/erolprofile.JPG'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1807867701470950916.post-8033212787844688326</id><published>2012-06-09T07:24:00.001-07:00</published><updated>2012-06-09T07:24:52.022-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Coding"/><title type='text'>Installing MySQL on OSX Lion</title><content type='html'>Setting up your dev environment can be a b*itch-and-a-half. &amp;nbsp;There are dozens of StackExchange articles about installing each tool/framework, but people change their setup so frequently that it&#39;s hard to tell which dependencies they have that you don&#39;t. &amp;nbsp;For my own benefit, I&#39;ve decided to document how I set up my own system after a clean install of Mac OSX Lion, so all dependencies are accurately captured. &amp;nbsp;Hope this is of use to someone else as well.&lt;br /&gt;
&lt;br /&gt;
Quick tips to set up MySQL on your intel Mac OSX Lion machine&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Download the MySQL .dmg file&amp;nbsp;&lt;a href=&quot;http://databases.about.com/gi/o.htm?zi=1/XJ&amp;amp;zTi=1&amp;amp;sdn=databases&amp;amp;cdn=compute&amp;amp;tm=1110&amp;amp;f=00&amp;amp;su=p284.13.342.ip_p504.6.342.ip_&amp;amp;tt=7&amp;amp;bt=1&amp;amp;bts=1&amp;amp;st=9&amp;amp;zu=http%3A//dev.mysql.com/downloads/mirror.php%3Fid%3D403421%23mirrors&quot;&gt;here&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Within the .dmg file:&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;Run the large MySQL .pkg file&lt;/li&gt;
&lt;li&gt;Run the MySQLStartupItem.pkg file&lt;/li&gt;
&lt;li&gt;Run MySQL.pref_Pane&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;Active MySQL server&lt;/li&gt;
&lt;li&gt;If you don&#39;t want to deal with this again, select the option to automatically start MySQL when your computer boots&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt;
&lt;/ul&gt;
&lt;div&gt;
Now, run the following commands in terminal&lt;/div&gt;
&lt;div&gt;
&lt;ul&gt;
&lt;li&gt;Add mysql to your PATH&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;Run &#39;sudo nano -S /etc/profile&#39;&lt;/li&gt;
&lt;li&gt;Add the line &#39;export PATH=$PATH:/usr/local/mysql/bin&#39; and save changes&lt;/li&gt;
&lt;li&gt;Open a new Terminal window for changes to take effect&lt;/li&gt;
&lt;/ul&gt;
&lt;li&gt;Enable a root password for your DB&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;Run &#39;mysqladmin -u root password&#39;, where &#39;password&#39; is your secure DB password.&lt;/li&gt;
&lt;/ul&gt;
&lt;li&gt;Run &#39;mysql -u root -p&#39;. &amp;nbsp;You should now have command-line access to your local MySQL DB.&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://techroadtrip.blogspot.com/feeds/8033212787844688326/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1807867701470950916/8033212787844688326' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/8033212787844688326'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/8033212787844688326'/><link rel='alternate' type='text/html' href='http://techroadtrip.blogspot.com/2012/06/installing-mysql-on-osx-lion.html' title='Installing MySQL on OSX Lion'/><author><name>Erol Toker</name><uri>http://www.blogger.com/profile/03989657428661052176</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgywQt-GIQtuN0LxL8wbJBmy8Mxx6KwH-0NSsE6tS62OBcsIYgWJIdpm6QxTKwQs4tGsta6rZLz1LYESqSW9jyUoNM3ophSNbFUmBsZM2euArZNv5W9GrjorV5Ykxjw-vo/s220/erolprofile.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1807867701470950916.post-751787196820996022</id><published>2010-04-30T05:07:00.000-07:00</published><updated>2010-04-30T05:08:26.331-07:00</updated><title type='text'>A Company&#39;s (First) Tipping Point</title><content type='html'>I like to think of the first sale as being the first major tipping point  for a startup.  It is the hardest sale to make, since little is known  about the product&#39;s efficacy or the company&#39;s stability in the  marketplace.  This is a classic lemon problem, where information  asymmetry between the seller and the market result in a breakdown of  trust and propensity to buy at fair price.  Overcoming this inertia is  extremely difficult but there are very clever ways to overcome this by  creating strong positive signals in the marketplace.  The following  (true) story, shared by Dr. Macmillan at Wharton, is a great example of  this:&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;A salesman came to pitch an industrial plant  manager on an innovative new water filter.  The filter was twice as  expensive as the next best alternative but lasted 5 times longer with  the same efficacy.  The investment would have justified itself but he  did not make the purchase, because he had to somehow justify why his  expenses had risen in the quarter to the company before any ROI from the  purchase was evident.  Having gotten this response, the salesman went  to one of Proctor and Gamble&#39;s factories and gave the filter away for  free.  In doing so, he created an invoice and had it signed on delivery  by the company.  He then went back to the manager and showed a signed  delivery slip (not showing that it was actually given for free).  The  fact that a major multinational had implemented the technology was all  the manager needed to justify the expense to his bosses so he purchased  the new filter product.&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;This is just one great  example of how one can leverage the trusted/positive image of a client  and create a strong signal in the marketplace that inspires confidence  in the company and product.  The key here was that the manager thought  that P&amp;amp;G had puts its trust in the product by purchasing it,  signaling to him that it was indeed a good investment (whether this is  withholding or clever positioning may be debatable, but the signaling  effect is clear).  Over the years, I have seen both good and bad  signaling strategies.&lt;br /&gt;&lt;br /&gt;Good ways to signal the market:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Get  a customer with a strong reputation in the marketplace.  If you work  with a company that is known to have very high standards in their  business relationships, you will benefit from this.  This could also be  the case with an adviser or investor who has a strong reputation.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Set  up free trial periods.  This will signal your confidence in your  product by shifting the risk to you, while  still not making the  client&#39;s purchase totally &#39;free&#39;.&lt;/li&gt;&lt;li&gt;Make use of great PR.  There  seems to be a positive signaling effect in peoples&#39; minds from reading  about a product in a reputable source (ie: &quot;as seen in the NY Times&quot;).&lt;/li&gt;&lt;li&gt;Collect  data.  Lots and lots of data.  Try to get the study conducted/verified  by an independent source.  Show where the product works best and where  it is least effective (this will show you are transparent and not only  showing the positive data).&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;Bad ways to signal the market:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Sign  up early customers for free.  While this can be great for collecting  data, it does not say much about whether the counter party actually sees  the value of your business.  Anybody will try something if it&#39;s free.   When you pitch the next company, it really does not send any valuable  signal.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Working to get &#39;the wrong&#39; early customers who do  not help you &#39;signal&#39; your product&#39;s value to your target customer base.   For example, if your target is a Tier 1 company do not waste too much  time going after Tier 3 companies.  This may in fact create a negative  signal (ie: Tier 3 companies use this product).&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;These are  just a few examples that come to mind from my last startup.  Obviously  there are cases where these rules will not apply but in general I think  this is a decent framework.</content><link rel='replies' type='application/atom+xml' href='http://techroadtrip.blogspot.com/feeds/751787196820996022/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1807867701470950916/751787196820996022' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/751787196820996022'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/751787196820996022'/><link rel='alternate' type='text/html' href='http://techroadtrip.blogspot.com/2010/04/companys-first-tipping-point.html' title='A Company&#39;s (First) Tipping Point'/><author><name>Erol Toker</name><uri>http://www.blogger.com/profile/03989657428661052176</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgywQt-GIQtuN0LxL8wbJBmy8Mxx6KwH-0NSsE6tS62OBcsIYgWJIdpm6QxTKwQs4tGsta6rZLz1LYESqSW9jyUoNM3ophSNbFUmBsZM2euArZNv5W9GrjorV5Ykxjw-vo/s220/erolprofile.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1807867701470950916.post-3714969369709230068</id><published>2010-04-25T19:02:00.001-07:00</published><updated>2010-04-25T19:36:49.704-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Web Development"/><title type='text'>Under the Googview Hood</title><content type='html'>I recently made an update to &lt;a href=&quot;http://www.googview.com&quot;&gt;Googview&lt;/a&gt;, my first web project.  The new functionality automatically updates the Googview background to current Bing search backgrounds from around the globe.  This exposed me to a few new web technologies that I thought I would share here.&lt;br /&gt;&lt;br /&gt;Search Functionality:&lt;br /&gt;&lt;ul&gt;&lt;li&gt; Made using &lt;a href=&quot;http://www.google.com/cse/&quot;&gt;Google Custom Search  Engine&lt;/a&gt;.  This tools has a wizard that makes it very simple to create custom Google search tools.&lt;/li&gt;&lt;/ul&gt;Bing Images:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Images are taken from Bing&#39;s global sites and put into an RSS feed by Long Zheng at &lt;a href=&quot;http://istartedsomething.com&quot;&gt;istartedsomething.com&lt;/a&gt;&lt;/li&gt;&lt;li&gt;This feed goes into &lt;a href=&quot;http://pipes.yahoo.com&quot;&gt;Yahoo Pipes&lt;/a&gt; and is modified to make the media asset URL the &#39;title&#39; of each item.&lt;/li&gt;&lt;li&gt;A simple PHP script on the Googview page runs on load, takes in the Yahoo Pipes feed using &lt;a href=&quot;http://magpierss.sourceforge.net/&quot;&gt;MagpieRSS&lt;/a&gt;, parses the media asset url and writes it down to the page as HTML.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;</content><link rel='replies' type='application/atom+xml' href='http://techroadtrip.blogspot.com/feeds/3714969369709230068/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1807867701470950916/3714969369709230068' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/3714969369709230068'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/3714969369709230068'/><link rel='alternate' type='text/html' href='http://techroadtrip.blogspot.com/2010/04/under-googview-hood.html' title='Under the Googview Hood'/><author><name>Erol Toker</name><uri>http://www.blogger.com/profile/03989657428661052176</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgywQt-GIQtuN0LxL8wbJBmy8Mxx6KwH-0NSsE6tS62OBcsIYgWJIdpm6QxTKwQs4tGsta6rZLz1LYESqSW9jyUoNM3ophSNbFUmBsZM2euArZNv5W9GrjorV5Ykxjw-vo/s220/erolprofile.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1807867701470950916.post-1500007298989809821</id><published>2010-04-14T19:52:00.000-07:00</published><updated>2010-04-14T20:43:17.301-07:00</updated><title type='text'>The Power of Instant Gratification</title><content type='html'>Today I was thinking about what it was in the fundamental design of web apps like Twitter, Facebook and Zynga that made them so successful in acquiring and keeping users (causing enormous changes in online behavior).&lt;br /&gt;&lt;br /&gt;I was reminded of an analysis that I did for a large social gaming company as part of their recruiting process. They asked me to play one of their Maffia games and determine what features were driving &#39;virality&#39;. At first, I had absolutely no idea how the game had become so popular. The GUI was limited to having a user click a handful of buttons that would instantly give them points and &#39;virtual goods&#39;.  There was no story-line, no mental challenge, no advanced visualization; just an instant reward for performing a simple action (for example, to rob a store, one would just click &#39;Commit Robery&#39;, and instantly see an increase in wealth points without any chance of failure).  It was the equivalent of flipping a series of light switches on and off and getting some psychological reward for it.  &quot;Strange&quot; I thought...&lt;br /&gt;&lt;br /&gt;After playing for an hour however, I was rather surprised. I had progressed quite far in the game and started to enjoy it.  I&#39;d built a mini &#39;empire&#39; and had no idea how I&#39;d gotten there.  Each click had given me some slight enjoyment and they had magically added up to an hour of gameplay.  Furthermore the game kept kicking me off every time I made progress so I never got to the point where I was bored of it.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Instant Gratification (aka the Bon Bon Theory)&lt;/span&gt;&lt;br /&gt;My theory on what has made web apps is that they deliver instant gratification in limited doses. In the game described above, I felt instant utility through building my collection of virtual goods. The game design allowed me to instantly enjoy small doses of pleasure, while forcing me to come back later for more.  In the case of twitter and Facebook, we are gratified by the emotional value of seeing a constant stream of information from those we value most.  Once again, this utility is enjoyed over time as updates/tweets trickle in small doses throughout the day.&lt;br /&gt;&lt;br /&gt;I call this the Bon Bon Theory because it reminds me of how quickly one goes through little wrapped sweets when they are lying around the house.  They are just the right size to give you instant satisfaction but never sizable enough to satisfy a craving (and the solution is always simple-- you just go back).&lt;br /&gt;&lt;br /&gt;This is an extremely powerful concept and should be considered key when looking at future web services as we become more and more connected (since being &#39;always on&#39; makes it easier to administer each &#39;dose&#39; of utility).</content><link rel='replies' type='application/atom+xml' href='http://techroadtrip.blogspot.com/feeds/1500007298989809821/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1807867701470950916/1500007298989809821' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/1500007298989809821'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/1500007298989809821'/><link rel='alternate' type='text/html' href='http://techroadtrip.blogspot.com/2010/04/power-of-instant-gratification.html' title='The Power of Instant Gratification'/><author><name>Erol Toker</name><uri>http://www.blogger.com/profile/03989657428661052176</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgywQt-GIQtuN0LxL8wbJBmy8Mxx6KwH-0NSsE6tS62OBcsIYgWJIdpm6QxTKwQs4tGsta6rZLz1LYESqSW9jyUoNM3ophSNbFUmBsZM2euArZNv5W9GrjorV5Ykxjw-vo/s220/erolprofile.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1807867701470950916.post-4663962189980281930</id><published>2010-03-25T19:23:00.000-07:00</published><updated>2010-04-18T19:32:19.829-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Investment Theses"/><title type='text'>ESAF Part I: Testing the Business Model</title><content type='html'>I will be writing a small series to provide further insight into the Early Stage Analysis Framework (ESAF).  I recently posted to the blog.  This will be somewhat out of order, as I will try to follow up based on discussions that I have with others in the blogosphere.&lt;br /&gt;&lt;br /&gt;Today I wanted to address the question of how to test the business model.  In ESAF, I suggest that there are 3 key steps to understanding whether a business model is sound:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Create a unit economic model of the business to understand the key revenue and cost drivers&lt;/li&gt;&lt;li&gt;Conduct break-even analysis on the unit level to see if the company can generate margins on each unit.  If this isn&#39;t the case, expand the model to take into account multiple units and see what scale is required for the company to reach break-even.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Conduct Crystal Ball analysis to understand expected profit values based on a Monte Carlo simulation and de-risk the business model&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;I devised this approach after working for quite some time with both entrepreneurs and investors in early stage companies.  I found that very often they spent a lot of time breaking down complex 3-5 year models and questioning key assumptions that the model makes.  This is often a highly time consuming (and subjective!) process and often means very little since both sides stand firm behind their own assumptions.  The challenge for me was to devise a way of testing business viability in an objective way without taking any position on what assumptions were &#39;reasonable&#39;.  This was key in getting buy-in from investors and entrepreneurs on the validity of my analysis.  I outline my approach below.&lt;br /&gt;&lt;br /&gt;First, creating a unit economic model is crucial because it strips the business down to its core revenue/cost drivers and eliminates the unnecessary complexity that most models have.  This model is created by identifying an economic unit for the business (whether it is a cookie, a box of cookies, a delivery truck of cookies or the daily supply an average supermarket purchases) and allocating all revenues and costs (both variable and allocated overhead) to that unit.&lt;br /&gt;&lt;br /&gt;Once we have this unit economic model, we simply ask the objective question of whether the business model is viable given the existing market size.  If the unit has a positive margin in the model, immediately we know that the business model is validated.  If the unit runs a loss, the model can be enhanced to account for multiple units to see if the company can break even as it scales up (and economies of scale lower overhead cost down across all economic &#39;units&#39;).  Once break-even volume is determined, this can then be compared to market size to judge whether or the business is viable.  For example, if you found that it would take 9 billion customers to sign up for an annual subscription to your web service, you have objectively proven that the business is not viable since there are some 6 billion people in the entire world.  When we conduct our break-even analysis , all we test is business viability.  This does not take into account whether the business can actually achieve the market share necessary to break even (we examine this question later).  It is an objective analysis that can be understood by everyone around the table.&lt;br /&gt;&lt;br /&gt;If the business seems viable from a unit economic model perspective, the next thing to test is whether it can actually meet the ROI targets necessary to make the business worthwhile to the entrepreneur and investor.  To do this, a Monte Carlo Simulation software such as Crystal Ball can be used.  This software allows you to create a basic financial model and designate &#39;ranges&#39; for inputs (ie: sales figures, resource costs, etc)  instead of coming up with distinct best/worst/expected case scenarios.  For example, if you think that salaries might be in the $40k-60k range with an average of $48k, it will allow you to input these ranges into the system.  Once this is complete the software will iteratively simulate thousands of possible scenarios across all model inputs and generate two key outputs.  The first output is a chart outlining results from the simulation with expected outcomes. Lets take this chart as an example:&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh_RUZlKd1tvvhnHldC2gsLrBWKAwk6xuzu_OewvS41uytm1wxqxnjrKtX1ygbLu1iDsyAw8xyUGSP-o8IRA3YHibOIWTJEhneux2YpMUBYXCwH7q4FsVz-Hhb_aYMqhvtZ2tudPFRbVKH4/s1600/Expected+Outcome.PNG&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 170px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh_RUZlKd1tvvhnHldC2gsLrBWKAwk6xuzu_OewvS41uytm1wxqxnjrKtX1ygbLu1iDsyAw8xyUGSP-o8IRA3YHibOIWTJEhneux2YpMUBYXCwH7q4FsVz-Hhb_aYMqhvtZ2tudPFRbVKH4/s320/Expected+Outcome.PNG&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5452767312147521714&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;This chart shows that across several thousand simulations performed on the input model , the business can indeed suffer a loss, although the expected value is a net income of $6K a year with an optimistic scenario of ~$12K.  This data can be extremely useful when trying to compute ROI targets and value a company.&lt;br /&gt;&lt;br /&gt;The second key output is a tornado chart that illustrates the key sensitivities of the business model.  While running random simulations, the software isolates the most sensitive drivers of profitability and presents them in the form below:&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiip__f8baT2GlaLafUFjDp-my95FizLdq3gOZ1Ctm-1f2NI1WhMBFVDP1ucseaN-JWVwgjxF2JskvhRkPzUeawoLsNETKS7C4bsNm8KUpdNQaimycM6yFwesKWwmUHf9n-tfxIPIshSKqv/s1600/Tornado+Chart.PNG&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 347px; height: 162px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiip__f8baT2GlaLafUFjDp-my95FizLdq3gOZ1Ctm-1f2NI1WhMBFVDP1ucseaN-JWVwgjxF2JskvhRkPzUeawoLsNETKS7C4bsNm8KUpdNQaimycM6yFwesKWwmUHf9n-tfxIPIshSKqv/s320/Tornado+Chart.PNG&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5452769907639899762&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;This tornado chart shows the most sensitive variable in the model is Website Development costs (which will in the best case be ~$12K and in the worst case ~$18K.)  Using this insight, entrepreneurs and investors can understand the key risks in the business and take steps to mitigate the key drivers of risk.&lt;br /&gt;&lt;br /&gt;My experience has shown me that &#39;objective&#39; analysis is crucial in the initial stages of discussing business models with early stage companies, as it ensures buy-in from both entrepreneurs and investors.   Otherwise, there is simply too much room for subjectivity when looking at assumptions one by one and debating whether they are reasonable.</content><link rel='replies' type='application/atom+xml' href='http://techroadtrip.blogspot.com/feeds/4663962189980281930/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1807867701470950916/4663962189980281930' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/4663962189980281930'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/4663962189980281930'/><link rel='alternate' type='text/html' href='http://techroadtrip.blogspot.com/2010/03/esaf-part-i-testing-business-model.html' title='ESAF Part I: Testing the Business Model'/><author><name>Erol Toker</name><uri>http://www.blogger.com/profile/03989657428661052176</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgywQt-GIQtuN0LxL8wbJBmy8Mxx6KwH-0NSsE6tS62OBcsIYgWJIdpm6QxTKwQs4tGsta6rZLz1LYESqSW9jyUoNM3ophSNbFUmBsZM2euArZNv5W9GrjorV5Ykxjw-vo/s220/erolprofile.JPG'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh_RUZlKd1tvvhnHldC2gsLrBWKAwk6xuzu_OewvS41uytm1wxqxnjrKtX1ygbLu1iDsyAw8xyUGSP-o8IRA3YHibOIWTJEhneux2YpMUBYXCwH7q4FsVz-Hhb_aYMqhvtZ2tudPFRbVKH4/s72-c/Expected+Outcome.PNG" height="72" width="72"/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1807867701470950916.post-7916266264524762965</id><published>2010-03-21T19:35:00.000-07:00</published><updated>2010-04-18T19:32:00.262-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Investment Theses"/><title type='text'>Early Stage Analysis Framework</title><content type='html'>This is a little project I developed over a weekend.  It is the culmination of 4 years of experience in working with bootstrapped and VC/PE backed early stage companies.  I welcome any and all feedback!&lt;br /&gt;&lt;br /&gt;&lt;a title=&quot;View Early Stage Analysis Framework v2 on Scribd&quot; href=&quot;http://www.scribd.com/doc/28721960/Early-Stage-Analysis-Framework-v2&quot; style=&quot;margin: 12px auto 6px; font-family: Helvetica,Arial,Sans-serif; font-style: normal; font-variant: normal; font-weight: normal; font-size: 14px; line-height: normal; font-size-adjust: none; font-stretch: normal; display: block; text-decoration: underline;&quot;&gt;Early Stage Analysis Framework v2&lt;/a&gt; &lt;object id=&quot;doc_127503690455303&quot; name=&quot;doc_127503690455303&quot; type=&quot;application/x-shockwave-flash&quot; data=&quot;http://d1.scribdassets.com/ScribdViewer.swf&quot; style=&quot;outline-color: -moz-use-text-color; outline-style: none; outline-width: medium;&quot; width=&quot;100%&quot; height=&quot;600&quot;&gt;  &lt;param name=&quot;movie&quot; value=&quot;http://d1.scribdassets.com/ScribdViewer.swf&quot;&gt;  &lt;param name=&quot;wmode&quot; value=&quot;opaque&quot;&gt;   &lt;param name=&quot;bgcolor&quot; value=&quot;#ffffff&quot;&gt;   &lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;   &lt;param name=&quot;allowScriptAccess&quot; value=&quot;always&quot;&gt;   &lt;param name=&quot;FlashVars&quot; value=&quot;document_id=28721960&amp;amp;access_key=key-2jgudu36wd0d17mlqcmc&amp;amp;page=1&amp;amp;viewMode=slideshow&quot;&gt;   &lt;embed id=&quot;doc_127503690455303&quot; name=&quot;doc_127503690455303&quot; src=&quot;http://d1.scribdassets.com/ScribdViewer.swf?document_id=28721960&amp;amp;access_key=key-2jgudu36wd0d17mlqcmc&amp;amp;page=1&amp;amp;viewMode=slideshow&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; wmode=&quot;opaque&quot; bgcolor=&quot;#ffffff&quot; width=&quot;100%&quot; height=&quot;600&quot;&gt;&lt;/embed&gt;  &lt;/object&gt;</content><link rel='replies' type='application/atom+xml' href='http://techroadtrip.blogspot.com/feeds/7916266264524762965/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1807867701470950916/7916266264524762965' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/7916266264524762965'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/7916266264524762965'/><link rel='alternate' type='text/html' href='http://techroadtrip.blogspot.com/2010/03/early-stage-analysis-framework.html' title='Early Stage Analysis Framework'/><author><name>Erol Toker</name><uri>http://www.blogger.com/profile/03989657428661052176</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgywQt-GIQtuN0LxL8wbJBmy8Mxx6KwH-0NSsE6tS62OBcsIYgWJIdpm6QxTKwQs4tGsta6rZLz1LYESqSW9jyUoNM3ophSNbFUmBsZM2euArZNv5W9GrjorV5Ykxjw-vo/s220/erolprofile.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1807867701470950916.post-5038318941012074946</id><published>2009-11-20T05:51:00.000-08:00</published><updated>2009-11-20T05:57:32.592-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Cool Stuff Others Have Said"/><category scheme="http://www.blogger.com/atom/ns#" term="Observations"/><title type='text'>Why Are Entrepreneurs That Way?</title><content type='html'>How does an entrepreneur think and what is that unscratchable itch that drives them?  From time to time I ask myself these very questions and when I need a little perspective, I turn to the wisdom of Thoreau.  These two paragraphs come from the &lt;a href=&quot;http://thoreau.eserver.org/walden18.html&quot;&gt;final chapter&lt;/a&gt; of his book Walden:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;I left the woods for as good a reason as I went there. Perhaps it seemed to me that I had several more lives to live, and could not spare any more time for that one. It is remarkable how easily and insensibly we fall into a particular route, and make a beaten track for ourselves. I had not lived there a week before my feet wore a path from my door to the pond-side; and though it is five or six years since I trod it, it is still quite distinct. It is true, I fear, that others may have fallen into it, and so helped to keep it open. The surface of the earth is soft and impressible by the feet of men; and so with the paths which the mind travels. How worn and dusty, then, must be the highways of the world, how deep the ruts of tradition and conformity! I did not wish to take a cabin passage, but rather to go before the mast and on the deck of the world, for there I could best see the moonlight amid the mountains. I do not wish to go below now.            &lt;p&gt;I learned this, at least, by my experiment: that if one advances confidently in the direction of his dreams, and endeavors to live the life which he has imagined, he will meet with a success unexpected in common hours. He will put some things behind, will pass an invisible boundary; new, universal, and more liberal laws will begin to establish themselves around and within him; or the old laws be expanded, and interpreted in his favor in a more liberal sense, and he will live with the license of a higher order of beings. In proportion as he simplifies his life, the laws of the universe will appear less complex, and solitude will not be solitude, nor poverty poverty, nor weakness weakness. If you have built castles in the air, your work need not be lost; that is where they should be. Now put the foundations under them. &lt;/p&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;input id=&quot;gwProxy&quot; type=&quot;hidden&quot;&gt;&lt;!--Session data--&gt;&lt;input onclick=&quot;jsCall();&quot; id=&quot;jsProxy&quot; type=&quot;hidden&quot;&gt;&lt;div id=&quot;refHTML&quot;&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://techroadtrip.blogspot.com/feeds/5038318941012074946/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1807867701470950916/5038318941012074946' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/5038318941012074946'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/5038318941012074946'/><link rel='alternate' type='text/html' href='http://techroadtrip.blogspot.com/2009/11/why-are-entrepreneurs-that-way.html' title='Why Are Entrepreneurs That Way?'/><author><name>Erol Toker</name><uri>http://www.blogger.com/profile/03989657428661052176</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgywQt-GIQtuN0LxL8wbJBmy8Mxx6KwH-0NSsE6tS62OBcsIYgWJIdpm6QxTKwQs4tGsta6rZLz1LYESqSW9jyUoNM3ophSNbFUmBsZM2euArZNv5W9GrjorV5Ykxjw-vo/s220/erolprofile.JPG'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1807867701470950916.post-4941580086656680564</id><published>2009-11-10T05:24:00.000-08:00</published><updated>2009-11-10T05:41:32.252-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Entrepreneurial Lessons"/><category scheme="http://www.blogger.com/atom/ns#" term="Observations"/><title type='text'>Why Start a Company When You Could...</title><content type='html'>There&#39;s a lot of opportunity out there and I&#39;ve been hearing some interesting insights from several entrepreneurs recently who&#39;ve been very much against the idea of someone starting their own company.  The argument is that there is so much risk in a pre-revenue venture (after all, creating something from nothing is the hardest part).  So then, they ask, why wouldn&#39;t you:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Join a revenue generating start-up?  A huge part of the risk has been taken away and the question isn&#39;t as much &#39;whether this will ever work &#39; but how we can now tweak the business to grow revenues.  You won&#39;t get anywhere near the same amount of stock but a lot of people have made good money this way (and built their networks through venture backed companies).&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Buy an existing business that&#39;s stagnant.  Again, the hard part has been done.  There are businesses out there that are profitable but stagnant making between $100k-5mm a year.  So rather than trying to start a business why not raise some private money and flip the company around? &lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;The moral is that there are a lot of undervalued assets out there that can use an individual&#39;s talents just as well as any bright new business idea.&lt;br /&gt;&lt;input id=&quot;gwProxy&quot; type=&quot;hidden&quot;&gt;&lt;!--Session data--&gt;&lt;input onclick=&quot;jsCall();&quot; id=&quot;jsProxy&quot; type=&quot;hidden&quot;&gt;&lt;div id=&quot;refHTML&quot;&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://techroadtrip.blogspot.com/feeds/4941580086656680564/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1807867701470950916/4941580086656680564' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/4941580086656680564'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/4941580086656680564'/><link rel='alternate' type='text/html' href='http://techroadtrip.blogspot.com/2009/11/why-start-company-when-you-could.html' title='Why Start a Company When You Could...'/><author><name>Erol Toker</name><uri>http://www.blogger.com/profile/03989657428661052176</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgywQt-GIQtuN0LxL8wbJBmy8Mxx6KwH-0NSsE6tS62OBcsIYgWJIdpm6QxTKwQs4tGsta6rZLz1LYESqSW9jyUoNM3ophSNbFUmBsZM2euArZNv5W9GrjorV5Ykxjw-vo/s220/erolprofile.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1807867701470950916.post-8095709558345190145</id><published>2009-11-03T12:04:00.001-08:00</published><updated>2009-11-03T12:56:30.914-08:00</updated><title type='text'>Viral Marketing &amp; Design on FaceBook</title><content type='html'>A very interesting area I&#39;m working on right now is Viral Marketing and Viral Design.  As progress on &lt;a href=&quot;http://triip.wordpress.com/&quot;&gt;Triip&lt;/a&gt; continues to move forward (predicting Launch in early December!) the team has been asking a lot of questions on &lt;span style=&quot;font-weight: bold;&quot;&gt;how to launch our FaceBook app &lt;/span&gt;&amp;amp; &lt;span style=&quot;font-weight: bold;&quot;&gt;how to add features that will optimize virality&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;The presentation below is a stripped down (sorry!) version of a deck I created to show our engineering team how Marketing and Viral Design are essentially the same thing on a social media platform.  &lt;span style=&quot;font-weight: bold;&quot;&gt;The objective is to logically break down the question of &#39;how to do we get 100000 users?&#39; into simpler parts and see what actionable steps we can take to reach success.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a title=&quot;View FB App Virality Drivers on Scribd&quot; href=&quot;http://www.scribd.com/doc/22077167/FB-App-Virality-Drivers&quot; style=&quot;margin: 12px auto 6px; font-family: Helvetica,Arial,Sans-serif; font-style: normal; font-variant: normal; font-weight: normal; font-size: 14px; line-height: normal; font-size-adjust: none; font-stretch: normal; display: block; text-decoration: underline;&quot;&gt;FB App Virality Drivers&lt;/a&gt; &lt;object codebase=&quot;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0&quot; id=&quot;doc_772859380129575&quot; name=&quot;doc_772859380129575&quot; classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; width=&quot;100%&quot; align=&quot;middle&quot; height=&quot;500&quot;&gt;  &lt;param name=&quot;movie&quot; value=&quot;http://d1.scribdassets.com/ScribdViewer.swf?document_id=22077167&amp;amp;access_key=key-1b4e6vu4ha9lrfaj0t77&amp;amp;page=1&amp;amp;version=1&amp;amp;viewMode=slideshow&quot;&gt;   &lt;param name=&quot;quality&quot; value=&quot;high&quot;&gt;   &lt;param name=&quot;play&quot; value=&quot;true&quot;&gt;  &lt;param name=&quot;loop&quot; value=&quot;true&quot;&gt;   &lt;param name=&quot;scale&quot; value=&quot;showall&quot;&gt;  &lt;param name=&quot;wmode&quot; value=&quot;opaque&quot;&gt;   &lt;param name=&quot;devicefont&quot; value=&quot;false&quot;&gt;  &lt;param name=&quot;bgcolor&quot; value=&quot;#ffffff&quot;&gt;   &lt;param name=&quot;menu&quot; value=&quot;true&quot;&gt;  &lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;   &lt;param name=&quot;allowScriptAccess&quot; value=&quot;always&quot;&gt;   &lt;param name=&quot;salign&quot; value=&quot;&quot;&gt;            &lt;param name=&quot;mode&quot; value=&quot;slideshow&quot;&gt;       &lt;embed src=&quot;http://d1.scribdassets.com/ScribdViewer.swf?document_id=22077167&amp;amp;access_key=key-1b4e6vu4ha9lrfaj0t77&amp;amp;page=1&amp;amp;version=1&amp;amp;viewMode=slideshow&quot; quality=&quot;high&quot; pluginspage=&quot;http://www.macromedia.com/go/getflashplayer&quot; play=&quot;true&quot; loop=&quot;true&quot; scale=&quot;showall&quot; wmode=&quot;opaque&quot; devicefont=&quot;false&quot; bgcolor=&quot;#ffffff&quot; name=&quot;doc_772859380129575_object&quot; menu=&quot;true&quot; allowfullscreen=&quot;true&quot; allowscriptaccess=&quot;always&quot; salign=&quot;&quot; type=&quot;application/x-shockwave-flash&quot; mode=&quot;slideshow&quot; width=&quot;100%&quot; align=&quot;middle&quot; height=&quot;500&quot;&gt;&lt;/embed&gt; &lt;/object&gt; &lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://triip.wordpress.com/&quot;&gt;&lt;/a&gt;&lt;input id=&quot;gwProxy&quot; type=&quot;hidden&quot;&gt;&lt;!--Session data--&gt;&lt;input onclick=&quot;jsCall();&quot; id=&quot;jsProxy&quot; type=&quot;hidden&quot;&gt;&lt;div id=&quot;refHTML&quot;&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://techroadtrip.blogspot.com/feeds/8095709558345190145/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1807867701470950916/8095709558345190145' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/8095709558345190145'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/8095709558345190145'/><link rel='alternate' type='text/html' href='http://techroadtrip.blogspot.com/2009/11/viral-marketing-design-on-facebook.html' title='Viral Marketing &amp; Design on FaceBook'/><author><name>Erol Toker</name><uri>http://www.blogger.com/profile/03989657428661052176</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgywQt-GIQtuN0LxL8wbJBmy8Mxx6KwH-0NSsE6tS62OBcsIYgWJIdpm6QxTKwQs4tGsta6rZLz1LYESqSW9jyUoNM3ophSNbFUmBsZM2euArZNv5W9GrjorV5Ykxjw-vo/s220/erolprofile.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1807867701470950916.post-7265801606330447065</id><published>2009-10-14T13:54:00.001-07:00</published><updated>2009-10-14T17:11:16.843-07:00</updated><title type='text'>A framework for success</title><content type='html'>What is success? If you can&#39;t set the vision, you&#39;ll never reach it.   that&#39;s why i came up with three criteria based against which the success of all current/future passion projects that I participate in will be based:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;it should challenge an existing paradigm and &lt;span style=&quot;font-weight: bold;&quot;&gt;make people think&lt;/span&gt;&lt;/li&gt;&lt;li&gt;it should&lt;span style=&quot;font-weight: bold;&quot;&gt; empower people&lt;/span&gt; to do something they otherwise wouldn&#39;t be able to do&lt;/li&gt;&lt;li&gt;it should engage and &lt;span style=&quot;font-weight: bold;&quot;&gt;inspire people to act &lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;&lt;br /&gt;&lt;input id=&quot;gwProxy&quot; type=&quot;hidden&quot;&gt;&lt;!--Session data--&gt;&lt;input onclick=&quot;jsCall();&quot; id=&quot;jsProxy&quot; type=&quot;hidden&quot;&gt;&lt;div id=&quot;refHTML&quot;&gt;&lt;/div&gt;&lt;input id=&quot;gwProxy&quot; type=&quot;hidden&quot;&gt;&lt;!--Session data--&gt;&lt;input onclick=&quot;jsCall();&quot; id=&quot;jsProxy&quot; type=&quot;hidden&quot;&gt;&lt;div id=&quot;refHTML&quot;&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://techroadtrip.blogspot.com/feeds/7265801606330447065/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1807867701470950916/7265801606330447065' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/7265801606330447065'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/7265801606330447065'/><link rel='alternate' type='text/html' href='http://techroadtrip.blogspot.com/2009/10/framework-for-success.html' title='A framework for success'/><author><name>Erol Toker</name><uri>http://www.blogger.com/profile/03989657428661052176</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgywQt-GIQtuN0LxL8wbJBmy8Mxx6KwH-0NSsE6tS62OBcsIYgWJIdpm6QxTKwQs4tGsta6rZLz1LYESqSW9jyUoNM3ophSNbFUmBsZM2euArZNv5W9GrjorV5Ykxjw-vo/s220/erolprofile.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1807867701470950916.post-5007623488417189953</id><published>2009-10-13T10:08:00.000-07:00</published><updated>2009-10-29T10:23:13.819-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Entrepreneurial Lessons"/><category scheme="http://www.blogger.com/atom/ns#" term="Product Development"/><title type='text'>Release Early &amp; Release Often</title><content type='html'>&lt;div&gt;&quot;Release Early, Release Often&quot; is a principle that is now adopted by some of the most successful companies in internet.  I&#39;ve known of it, incorporated it in the develop strategy of KnolSoft&#39;s internet product but I never actually knew how amazing it was until I started my little mashup experiment &lt;a href=&quot;http://www.googview.com/&quot;&gt;Googview&lt;/a&gt;.&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;br /&gt;&lt;div&gt;GoogView Started off with a simple question: &lt;span style=&quot;font-style: italic;&quot;&gt;if people like Google search yet they keep going to Bing for the daily image, what would happen if we combined the two?&lt;/span&gt;  The first iteration was simply the current Google Search with a background that I selected from Wikipedia picture of the day.  People who I gave the simple pitch to loved it but other people didn&#39;t quite get it.  After this I kept tweaking the site based on user suggestions daily.  The rapid changes kept even the people who weren&#39;t that into it at first interested and I was able to keep the communication going.  &lt;span style=&quot;font-weight: bold;&quot;&gt;The result was a significantly better website design, users participation and a lot of fun&lt;/span&gt;.  So, what were the lesson I got out of this?&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Iterative development is an extremely powerful tool and it must be incorporated into your product strategy.&lt;/li&gt;&lt;li&gt;You have to iterate fast and work hard to keep dialogue going and maintain user interest.&lt;/li&gt;&lt;li&gt;If you don&#39;t have the infrastructure in place to go through this cycle rapidly, you&#39;re not ready to launch.  If it means more manpower, get it.&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;&lt;input id=&quot;gwProxy&quot; type=&quot;hidden&quot;&gt;&lt;!--Session data--&gt;&lt;input onclick=&quot;jsCall();&quot; id=&quot;jsProxy&quot; type=&quot;hidden&quot;&gt;&lt;div id=&quot;refHTML&quot;&gt;&lt;/div&gt;&lt;input id=&quot;gwProxy&quot; type=&quot;hidden&quot;&gt;&lt;!--Session data--&gt;&lt;input onclick=&quot;jsCall();&quot; id=&quot;jsProxy&quot; type=&quot;hidden&quot;&gt;&lt;div id=&quot;refHTML&quot;&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://techroadtrip.blogspot.com/feeds/5007623488417189953/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1807867701470950916/5007623488417189953' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/5007623488417189953'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/5007623488417189953'/><link rel='alternate' type='text/html' href='http://techroadtrip.blogspot.com/2009/10/release-early-release-often.html' title='Release Early &amp; Release Often'/><author><name>Erol Toker</name><uri>http://www.blogger.com/profile/03989657428661052176</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgywQt-GIQtuN0LxL8wbJBmy8Mxx6KwH-0NSsE6tS62OBcsIYgWJIdpm6QxTKwQs4tGsta6rZLz1LYESqSW9jyUoNM3ophSNbFUmBsZM2euArZNv5W9GrjorV5Ykxjw-vo/s220/erolprofile.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1807867701470950916.post-8022880919889972993</id><published>2009-08-22T14:57:00.000-07:00</published><updated>2009-08-22T16:41:47.867-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Entrepreneurial Lessons"/><title type='text'>Evolutionary Economics &amp; How Small Business Can Survive Among Giants</title><content type='html'>Building  my company has made me think a lot  on how a potential entrant to a market dominated by giants should position itself.  After a  couple weeks of pounding my head against the wall, I thought of a Discovery special that I saw on the rain forest, where the canopy created by 300 ft trees stifled the growth of life on the ground.   This seemed to be a perfect analog to my conundrum, and&lt;span style=&quot;font-weight: bold;&quot;&gt; two questions came to mind: 1) How did certain species evolve to position themselves for growth when no sunlight was available and 2) In such a stifling environment, how did the Amazon become one of the most diverse ecological systems in the world?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Here were some of my findings (I came across a U.Michigan &lt;a href=&quot;http://www.globalchange.umich.edu/globalchange1/current/lectures/competition/competition.html&quot;&gt;website&lt;/a&gt; that summarized some fascinating studies on competition in the evolutionary biology context):&lt;br /&gt;&lt;ol&gt;&lt;li&gt;In answering the first question, it seems natural selection offers two answers.  Some plants did not compete with the big guys, simply adapting to living on the forest&#39;s floor with less sunlight.  Other plants actually used the gargantuan trees, and climbed up them towards the bright sun over the canopy.  These very elegant solutions reminded me of small business either positioning in a niche market or partnering with larger firms to leverage their distribution channels.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;The answer to the second question proved much more interesting, as it went to the heart of the studies summarized in the aforementioned website.  &lt;span style=&quot;font-weight: bold;&quot;&gt;Findings showed that whenever competition over limited resources existed within any system, all interactions were destructive (ie: no two species could co-exist)&lt;/span&gt;.  The dominant species always exterminated the subordinate one.  The key to survival in competition was always adapting to position a species in a way that minimized overlap in resource consumption with the dominant ones.  This suggests that adaptation is not &lt;span style=&quot;font-style: italic;&quot;&gt;a way&lt;/span&gt; of survival&lt;span style=&quot;font-weight: bold;&quot;&gt; &lt;/span&gt;but &lt;span style=&quot;font-style: italic;&quot;&gt;the only way&lt;/span&gt; to survive, and that diversity is an inevitable state in any perfectly competitive environment.&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;The lesson from this analog, in my opinion, seems to be that going after Microsoft P&amp;amp;G or any competing giant is suicide (no kidding!).  Yet evolution does seem to offer one glimmer of hope for small businesses that cannot afford an outright war with the big guys: &lt;span style=&quot;font-weight: bold;&quot;&gt;the vine&lt;/span&gt;.  Nature&#39;s solution to our problem was to adapt in a way that made partnership with the dominant player possible, and this should be a key option for any small business entering a multibillion dollar market should consider before taking the niche approach.</content><link rel='replies' type='application/atom+xml' href='http://techroadtrip.blogspot.com/feeds/8022880919889972993/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1807867701470950916/8022880919889972993' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/8022880919889972993'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/8022880919889972993'/><link rel='alternate' type='text/html' href='http://techroadtrip.blogspot.com/2009/08/evolutionary-economics-how-small.html' title='Evolutionary Economics &amp; How Small Business Can Survive Among Giants'/><author><name>Erol Toker</name><uri>http://www.blogger.com/profile/03989657428661052176</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgywQt-GIQtuN0LxL8wbJBmy8Mxx6KwH-0NSsE6tS62OBcsIYgWJIdpm6QxTKwQs4tGsta6rZLz1LYESqSW9jyUoNM3ophSNbFUmBsZM2euArZNv5W9GrjorV5Ykxjw-vo/s220/erolprofile.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1807867701470950916.post-8625720964079020061</id><published>2009-08-03T02:54:00.000-07:00</published><updated>2009-08-22T14:57:40.368-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Observations"/><title type='text'>The Consulting Question or the Entrepreneurial Question?</title><content type='html'>Over the past few weeks I&#39;d been working on a business problem with someone who had decades of experience in the consulting industry.  Our approaches towards solving the problem seemed to be notably different for the first part of the discussion, but at the end of the day the data uncovered by each ended up being the ying to each other&#39;s yang.  From this experience came two conclusions: 1) That the consulting and entrepreneurial mindset were different and that 2) neither necessarily proved superior to the other.  This made me wonder what it was that made our approaches so different, how our experiences played into it and whether a start-up or consulting practice could possibly survive without having both mindsets in the game.  These were some observations:&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Consultants are problem driven while entrepreneurs are opportunity driven.  Consultants are ready to delve into mountains of data until they start finding some kind of pattern and go from there.  It&#39;s guaranteed to work every time but risks missing out on the big picture.  &lt;span style=&quot;font-weight: bold;&quot;&gt;Think tuning an engine (figuring out the fuel to air mix, timing of each stroke, etc) instead of asking whether it&#39;s the right engine for the car, whether it&#39;s the right car for the user and what an alternate engine might be.&lt;/span&gt;  The entrepreneur is much more opportunity and customer driven and is eager to go out and start talking to customers, understanding the potential of the product and then looking at the numbers to see if their findings make sense.&lt;span style=&quot;font-weight: bold;&quot;&gt;  Think of a multi-function product like compressed air; sales to existing clients may be stagnant due to a price point issue but what else can you do with it?!  &lt;/span&gt;&lt;span&gt;The downside: &lt;/span&gt;&lt;span&gt;it can be hit or miss and might fail to consider small changes that can have big impacts (ie: changing the price would be so much easier/cheaper than chasing a new market.)&lt;/span&gt;&lt;/li&gt;&lt;li&gt;At the end of the day a winning solution is an innovative idea that is supported by evidence (or perhaps evidence that is supported by innovative ideas).  It is unclear to me which way of thinking is more likely to succeed but I did learn something very useful last week: &lt;span style=&quot;font-weight: bold;&quot;&gt;That the creative tension that results from having both on a team can not only be highly productive but essential&lt;/span&gt;&lt;span&gt;.&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;</content><link rel='replies' type='application/atom+xml' href='http://techroadtrip.blogspot.com/feeds/8625720964079020061/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1807867701470950916/8625720964079020061' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/8625720964079020061'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/8625720964079020061'/><link rel='alternate' type='text/html' href='http://techroadtrip.blogspot.com/2009/08/consulting-question-or-entrepreneurial.html' title='The Consulting Question or the Entrepreneurial Question?'/><author><name>Erol Toker</name><uri>http://www.blogger.com/profile/03989657428661052176</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgywQt-GIQtuN0LxL8wbJBmy8Mxx6KwH-0NSsE6tS62OBcsIYgWJIdpm6QxTKwQs4tGsta6rZLz1LYESqSW9jyUoNM3ophSNbFUmBsZM2euArZNv5W9GrjorV5Ykxjw-vo/s220/erolprofile.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1807867701470950916.post-3025994893095331793</id><published>2009-07-16T07:10:00.000-07:00</published><updated>2009-07-27T08:51:05.213-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Entrepreneurial Lessons"/><title type='text'>A Decision Rule To Live By</title><content type='html'>Over the past year I&#39;ve found my decision-making to have become much more sharp and it&#39;s really really been based on one decision rule.  It has been so powerful in my personal and professional life (ranging from R&amp;amp;D decisions, to managing employees and to maintaining relationships with my business partner.)&lt;br /&gt;&lt;br /&gt;I always ask myself the following:&lt;br /&gt;&lt;blockquote&gt;&quot;What is the worst possible case that could happen if I make this decision?  If it happened, would I be kicking myself or could I live with it?&quot;&lt;/blockquote&gt; If the answer is the former, can I do anything to mitigate the risk and make the worst state more acceptable?  If it&#39;s the latter, accept the decision because no matter what you&#39;re taking a calculated risk and the negative outcome will be out of your control.</content><link rel='replies' type='application/atom+xml' href='http://techroadtrip.blogspot.com/feeds/3025994893095331793/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1807867701470950916/3025994893095331793' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/3025994893095331793'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/3025994893095331793'/><link rel='alternate' type='text/html' href='http://techroadtrip.blogspot.com/2009/07/decision-rule-to-live-by.html' title='A Decision Rule To Live By'/><author><name>Erol Toker</name><uri>http://www.blogger.com/profile/03989657428661052176</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgywQt-GIQtuN0LxL8wbJBmy8Mxx6KwH-0NSsE6tS62OBcsIYgWJIdpm6QxTKwQs4tGsta6rZLz1LYESqSW9jyUoNM3ophSNbFUmBsZM2euArZNv5W9GrjorV5Ykxjw-vo/s220/erolprofile.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1807867701470950916.post-3740453730488925867</id><published>2009-07-16T06:56:00.000-07:00</published><updated>2009-07-16T07:37:51.912-07:00</updated><title type='text'>A New Day, A New Blog</title><content type='html'>I&#39;ve been gone from the blogosphere for a very long time.  Why?  To be frank, nothing good to say.  Over the past few months I&#39;ve found that in the start-up world all people do is talk about the theoretical when the field is purely about execution and results.  Therefore, I&#39;ve decided to move the blog in a new direction and will now make the following pledge to my readers:&lt;br /&gt;&lt;blockquote&gt;Anything read on this blog from here on will be original and a reflection of my personal experiences in the start-up world.  I will not regurgitate anything that&#39;s well documented elsewhere and all discussion will be result-oriented instead of theoretical.&lt;/blockquote&gt;</content><link rel='replies' type='application/atom+xml' href='http://techroadtrip.blogspot.com/feeds/3740453730488925867/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1807867701470950916/3740453730488925867' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/3740453730488925867'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/3740453730488925867'/><link rel='alternate' type='text/html' href='http://techroadtrip.blogspot.com/2009/07/new-day-new-blog.html' title='A New Day, A New Blog'/><author><name>Erol Toker</name><uri>http://www.blogger.com/profile/03989657428661052176</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgywQt-GIQtuN0LxL8wbJBmy8Mxx6KwH-0NSsE6tS62OBcsIYgWJIdpm6QxTKwQs4tGsta6rZLz1LYESqSW9jyUoNM3ophSNbFUmBsZM2euArZNv5W9GrjorV5Ykxjw-vo/s220/erolprofile.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1807867701470950916.post-4810589193610803015</id><published>2008-12-11T17:42:00.001-08:00</published><updated>2009-06-29T06:22:31.589-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="KnolSoft"/><title type='text'>Sourcerer Makes it into Wharton VIP!</title><content type='html'>The venture that I&#39;ve been developing with my partner Atish was recently admitted into the Wharton Venture Initiation Program.  We&#39;re extremely grateful for the opportunity and are looking forward to joining this entrepreneurial community.</content><link rel='replies' type='application/atom+xml' href='http://techroadtrip.blogspot.com/feeds/4810589193610803015/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1807867701470950916/4810589193610803015' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/4810589193610803015'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/4810589193610803015'/><link rel='alternate' type='text/html' href='http://techroadtrip.blogspot.com/2008/12/sourcerer-makes-it-into-wharton-vip.html' title='Sourcerer Makes it into Wharton VIP!'/><author><name>Erol Toker</name><uri>http://www.blogger.com/profile/03989657428661052176</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgywQt-GIQtuN0LxL8wbJBmy8Mxx6KwH-0NSsE6tS62OBcsIYgWJIdpm6QxTKwQs4tGsta6rZLz1LYESqSW9jyUoNM3ophSNbFUmBsZM2euArZNv5W9GrjorV5Ykxjw-vo/s220/erolprofile.JPG'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1807867701470950916.post-4537356733577438733</id><published>2008-09-27T12:32:00.000-07:00</published><updated>2009-06-29T06:23:05.619-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Op-Eds"/><title type='text'>Could Facebook Charge Money?</title><content type='html'>I&#39;ve been pondering our venture&#39;s pricing strategy lately, and it&#39;s sparked all kinds of thoughts about the free web 2.0 world. At a time when companies that serve free web apps, like Facebook, are having trouble monetizing (and having their valuations lowered as a result), &lt;span style=&quot;font-weight: bold;&quot;&gt;one of the questions that they are surely asking themselves is whether they &lt;span style=&quot;font-style: italic;&quot;&gt;could &lt;/span&gt;move to some kind of subscription model to create new revenue streams and increased profitability.  &lt;/span&gt;&lt;span&gt;Before discounting this idea completely with arguments of Koppelman&#39;s &#39;penny-gap&#39; theory and low switching costs between social networking services, let us consider the fundamental idea behind pricing and ask ourselves what price facebook could charge in exchange for their services, if anything.&lt;br /&gt;&lt;br /&gt;Price is a direct reflection of value.  The more something adds value to a customer&#39;s life, the more he is willing to pay for it.  Therefore the first question is &lt;span style=&quot;font-style: italic;&quot;&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;what value does Facebook add to my daily life?&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The ComScore results in march suggested that on average people spend a total of 20 minutes EACH DAY on the service.  &lt;span style=&quot;font-weight: bold;&quot;&gt;It is a tool for organizing our social lives, networking, chatting, organizing photos and, increasingly, a platform for sharing information; a center for all things Web 2.0 that has driven internet use through the roof.&lt;/span&gt;  Then we should have no doubt that Facebook adds considerable value to our lives. The question then is &lt;span style=&quot;font-style: italic;&quot;&gt;how does that translate to a price?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Though it may be a gross oversimplification, the price point would be the one we&#39;d be willing to pay just before switching to a rival service.  While some might argue that switching costs are negligible, Facebook has a number of competitive advantages that make these costs substantial.  These include the network effect, unwillingness to manage multiple profiles, loyalty, inability to transfer all photos and profile, etc.  So then let&#39;s imagine that Facebook were to implement a policy that either forced us to pay 1 cent per month or to watch an additional advertisement to receive 12 cents in revenue over the course of the year per customer.  That means that with 100+ million users, they increase revenue by over a million dollars each month!&lt;br /&gt;&lt;br /&gt;Now let&#39;s ask ourselves, is that &#39;charge&#39; that facebook imposes on its customer in exchange for a very useful service likely to drive people away?  Probably not.  What the ideal price point would be will require a lot of research but it does leave us wondering why they wouldn&#39;t consider implementing a comparable policy to boost their revenues and valuation.  What amazes me even more is the fact that they haven&#39;t created less invasive premium-service based revenue stream, such as bringing SmugMug type functionality to the photo app, which would certainly generate even more substantial revenues than charging subscription fees.&lt;br /&gt;&lt;br /&gt;All signs are now pointing to targeted advertisements not being an optimal revenue source for web 2.0 tech.  With companies like Facebook issuing equity valued at hundreds of millions of dollars, investors should really be pushing to develop the business in order to maximize shareholder value.  Whether they would is another story, but from the logic described above I believe that they could make a strong case to do so.&lt;br /&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://techroadtrip.blogspot.com/feeds/4537356733577438733/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1807867701470950916/4537356733577438733' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/4537356733577438733'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/4537356733577438733'/><link rel='alternate' type='text/html' href='http://techroadtrip.blogspot.com/2008/09/could-facebook-charge-money.html' title='Could Facebook Charge Money?'/><author><name>Erol Toker</name><uri>http://www.blogger.com/profile/03989657428661052176</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgywQt-GIQtuN0LxL8wbJBmy8Mxx6KwH-0NSsE6tS62OBcsIYgWJIdpm6QxTKwQs4tGsta6rZLz1LYESqSW9jyUoNM3ophSNbFUmBsZM2euArZNv5W9GrjorV5Ykxjw-vo/s220/erolprofile.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1807867701470950916.post-6426730828619220729</id><published>2008-07-24T08:59:00.000-07:00</published><updated>2009-06-29T06:24:17.195-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Entrepreneurial Lessons"/><title type='text'>Follow-Up to Yesterday&#39;s &quot;Solve Your Own Problems...&quot; Post</title><content type='html'>I got an email this morning from a close friend of mine, Anthony Orlando, who made the following comment in relation to yesterday&#39;s post, where I argued the importance of solving problems that you&#39;ve experienced in your own life when starting a business:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&quot;...what if you&#39;re not an expert on anything, i.e. you don&#39;t have a problem of&lt;br /&gt;your own to solve?&quot;&lt;/blockquote&gt;&lt;br /&gt;The question goes to the the heart of the point I was trying to make, since this is what so many young entrepreneurs with limited professional experience ask themeselves. While it&#39;s true that you might not have the &lt;em&gt;professional &lt;/em&gt;experience to cater to enterprises, you have plenty of experience as a &lt;em&gt;consumer &lt;/em&gt;to cater towards consumers like yourself&lt;em&gt;.&lt;/em&gt;&lt;br /&gt;&lt;em&gt;&lt;/em&gt;&lt;br /&gt;Everyone is a consumer, so there&#39;s no excuse to say that you don&#39;t have expertise in anything. For example, if you spend 3 nights a week going to restaurants and night clubs, you start to get some idea of what makes a good menu or entertainment venue. If you go to coffee shops a few times a week, you begin to develop some expertise in what people are looking for in terms of atmosphere, music, service quality and product offering. If you like to explore new bands, but have trouble locating these emerging groups in your local Virgin Megastore, you start to gain some idea of a need that exists for people looking to explore new music based on their current preferences. The list goes on and on. As a consumer there&#39;s a pretty big chance that you have some sort of consumption pattern that makes you knowledgable in some areas, and it&#39;s these areas you want to focus on (if you&#39;ll notice by the way, I&#39;m positive you can think of someone who has made money off each of the ideas I&#39;ve listed above in the last 12 months.)&lt;br /&gt;&lt;br /&gt;Of course the difficulty of innovating towards consumers like yourself is that consumers are innovating all the time. Our lives in the new millenium are so comfortable thanks to technology and e-commerce that we don&#39;t even have to get off our lazy backsides to purchase bread and milk (it&#39;s all delivered to your house! and if you don&#39;t like it, free return shipping!) But that does not change the fact that there&#39;s always room for improvement, and that there&#39;s always a pain point somewhere (it&#39;s human nature to never be satisfied!)&lt;br /&gt;&lt;br /&gt;I find it highly unlikely that anyone &#39;doesn&#39;t have any problems&#39; anywhere in their lives (if this is the case, my recommendation is not to bother reading this blog and starting a business, but rather taking it easy on a beach somewhere.) The trick is being persistent and always keeping your eyes open for a potential need. This means that you don&#39;t get much time to just shut down and lie down in the sun without analyzing the hell out of everything, but hey, that&#39;s the life you choose as an entrepreneur.&lt;br /&gt;&lt;br /&gt;And if you really are living a life where you can&#39;t find a single need as a consumer... start changing your lifestyle to open you up to some new experiences; you&#39;re bound to find something somewhere out there. Just make sure you live it before you act on it.</content><link rel='replies' type='application/atom+xml' href='http://techroadtrip.blogspot.com/feeds/6426730828619220729/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1807867701470950916/6426730828619220729' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/6426730828619220729'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/6426730828619220729'/><link rel='alternate' type='text/html' href='http://techroadtrip.blogspot.com/2008/07/follow-up-to-yesterdays-solve-your-own.html' title='Follow-Up to Yesterday&#39;s &quot;Solve Your Own Problems...&quot; Post'/><author><name>Erol Toker</name><uri>http://www.blogger.com/profile/03989657428661052176</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgywQt-GIQtuN0LxL8wbJBmy8Mxx6KwH-0NSsE6tS62OBcsIYgWJIdpm6QxTKwQs4tGsta6rZLz1LYESqSW9jyUoNM3ophSNbFUmBsZM2euArZNv5W9GrjorV5Ykxjw-vo/s220/erolprofile.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1807867701470950916.post-3352223545000758581</id><published>2008-07-22T12:32:00.000-07:00</published><updated>2008-07-23T14:25:07.721-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Product Development"/><title type='text'>Solve Your Own Problems, Not Someone Else&#39;s</title><content type='html'>&lt;div&gt;Creating value is all about solving a problem. Solving a problem means understanding the problem itself in every dimension (missing even one dimension can render the product/service that you develop utterly useless). &lt;strong&gt;The only true way to understand a problem fully is to experience it. That pretty much explains why some of the most successful businesses in the world stem from the entrepreneurs solving a pain point that they experienced and knew inside out&lt;/strong&gt;. Bankers identified opportunities in banking services/software, people having trouble working remotely developed collaboration software and college kids having trouble organizing their social lives built social networking.&lt;br /&gt;&lt;br /&gt;One of the biggest issues I&#39;ve faced over the past 6-7 months has been coming up with a great idea. Ordinary people find this difficult enough but it&#39;s infinitely harder for a young person who has such limited work and life experience and whose problems really are between the three realms of social life, student life and and consumer life.  &lt;span style=&quot;font-weight: bold;&quot;&gt;The result is often that young entrepreneurs try to learn about others&#39; problems&lt;/span&gt; in the hope of solving them for a premium.  Yet my recent experiences have shown that this is extremely difficult, since you keep learning some new information down the road which forces you to reevaluate everything.  &lt;span style=&quot;font-weight: bold;&quot;&gt;Uncertainty is always higher than you&#39;d like and there&#39;s a part of the story that you know you&#39;re always missing.&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt; &lt;/div&gt;&lt;br /&gt;&lt;div&gt;So what&#39;s my takeaway here?  &lt;strong&gt;Stick to solving your own problems&lt;/strong&gt;.  Don&#39;t try to build a business catering to outdoor sports enthusiasts if you&#39;ve never been camping once, just because you see some untapped niche.  If you think the opportunity is that huge, get a partner who IS an outdoor enthusiast so that you at least have some way of understanding what clients are telling you.  In other words, &lt;strong&gt;stick to what you (or someone on your team) know. &lt;/strong&gt;It&#39;ll take longer to find a great idea but pay off in the long run.&lt;br /&gt;&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://techroadtrip.blogspot.com/feeds/3352223545000758581/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1807867701470950916/3352223545000758581' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/3352223545000758581'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/3352223545000758581'/><link rel='alternate' type='text/html' href='http://techroadtrip.blogspot.com/2008/07/solve-your-own-problems-not-someone.html' title='Solve Your Own Problems, Not Someone Else&#39;s'/><author><name>Erol Toker</name><uri>http://www.blogger.com/profile/03989657428661052176</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgywQt-GIQtuN0LxL8wbJBmy8Mxx6KwH-0NSsE6tS62OBcsIYgWJIdpm6QxTKwQs4tGsta6rZLz1LYESqSW9jyUoNM3ophSNbFUmBsZM2euArZNv5W9GrjorV5Ykxjw-vo/s220/erolprofile.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1807867701470950916.post-7588185716243019907</id><published>2008-07-03T13:08:00.000-07:00</published><updated>2008-12-09T11:24:57.082-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Observations"/><title type='text'>Angry Employees (Updated)</title><content type='html'>&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjqHS7wIUnq2jpJi-fe63xb8WRzzFywbcJt4F8O0oA4DmkRC03rMwGE3zIG3ldqzrgoFW1JDC4DpRs17Emu9p1QKZp3ChTTmsvCQ9yxX1AmbYfVol74cIkY6zCkGxigsoZHYBRFjybdNiwl/s1600-h/milton.jpg&quot;&gt;&lt;img id=&quot;BLOGGER_PHOTO_ID_5218894486343129874&quot; style=&quot;FLOAT: left; MARGIN: 0pt 10px 10px 0pt; WIDTH: 190px; CURSOR: pointer; HEIGHT: 100px&quot; alt=&quot;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjqHS7wIUnq2jpJi-fe63xb8WRzzFywbcJt4F8O0oA4DmkRC03rMwGE3zIG3ldqzrgoFW1JDC4DpRs17Emu9p1QKZp3ChTTmsvCQ9yxX1AmbYfVol74cIkY6zCkGxigsoZHYBRFjybdNiwl/s320/milton.jpg&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;“A happy worker is a productive worker”; every company with a half decent HR department knows that’s true. An unhappy employee can be dangerous, not only because his productivity stalls but also because he can diffuse his dissatisfaction into the work environment and turn others against the company as well. &lt;strong&gt;Yet there is another area of your business in which an unhappy employee is even more dangerous; word of mouth marketing.&lt;/strong&gt; People tend to put twice as much trust in the word-of-mouth of an employee that trashes the business than a peer who recounts a bad experience. This is because of two reasons; firstly, we always consider the possibility that our peers’ bad experience is a one in a hundred occurrence, whereas the employee gives us a survey of the history of the company’s service quality. Secondly, we assume that a company has to be pretty bad if its employees are putting their livelihood at risk by scaring away potential clients.&lt;br /&gt;&lt;br /&gt;I was reminded of this fact last week when I was on a boat trip on the Aegean. The anchor broke and our captain, unable to get the proper guy to fix it since the owner of the business told him to go cheap, made us stay in the same spot for an entire day. The cook took the opportunity to trash the captain and the owner of the business, telling us about ‘the great boat’s he’s worked on before’. Suffice it to say, this really gave us a strong bias throughout the rest of our trip to everything that went wrong, and we were already talking about using one of the boats the cook was talking about next year. If this happens to every tour group that gets on board, I can’t imagine the business prospering. &lt;strong&gt;So what’s the bottom line: keep your employees happy, there’s more at stake than productivity!&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;UPDATE:  &lt;/strong&gt;A friend of mine who was on the boat with me shared some interesting information ysterday; apparently the cook did not stop at trashing the tour company but went so far as to give the contact numbers to other tour companies later that evening (I, of course, was asleep when this happened).  FYI</content><link rel='replies' type='application/atom+xml' href='http://techroadtrip.blogspot.com/feeds/7588185716243019907/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1807867701470950916/7588185716243019907' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/7588185716243019907'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/7588185716243019907'/><link rel='alternate' type='text/html' href='http://techroadtrip.blogspot.com/2008/07/angry-employees.html' title='Angry Employees (Updated)'/><author><name>Erol Toker</name><uri>http://www.blogger.com/profile/03989657428661052176</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgywQt-GIQtuN0LxL8wbJBmy8Mxx6KwH-0NSsE6tS62OBcsIYgWJIdpm6QxTKwQs4tGsta6rZLz1LYESqSW9jyUoNM3ophSNbFUmBsZM2euArZNv5W9GrjorV5Ykxjw-vo/s220/erolprofile.JPG'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjqHS7wIUnq2jpJi-fe63xb8WRzzFywbcJt4F8O0oA4DmkRC03rMwGE3zIG3ldqzrgoFW1JDC4DpRs17Emu9p1QKZp3ChTTmsvCQ9yxX1AmbYfVol74cIkY6zCkGxigsoZHYBRFjybdNiwl/s72-c/milton.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1807867701470950916.post-4869959962282405427</id><published>2008-06-13T15:19:00.000-07:00</published><updated>2009-06-29T06:31:10.177-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Op-Eds"/><title type='text'>3 Grievances on the VC Industry</title><content type='html'>The VC conference that I attended earlier this week gave me a very different view of venture capital.  I was expecting to hear a lot more from the fund managers regarding their investing strategies.  There were a few things that really got to me, and made me wonder whether some of the people in the room actually knew what they were talking about.  Here is a list of grievance that I have regarding the VC industry:&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;No&lt;/span&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt; Real Investment Strategy&lt;/span&gt;.  Quite a few VCs in the room were asked the question &quot;What kind of companies do you normally fund?&quot;  The answer that a lot of them gave was that they were looking for &#39;anything and everything&#39;, as long as they were &#39;disruptive technologies.&#39;  Now, there are A LOT of VC-backed companies out there that do not even mildly look disruptive.  Flash video technology was disruptive- it affected the movie and music industries and created a revolution in personal expression in the internet sphere.  The IPhone is being disruptive- Apple single-handedly changed the idea of what a phone should be and is on the way to beating RIM and other competitors into the ground.  A social network twist that allows you to share musical ideas  is NOT going to disrupt anything!  Yet VCs keep putting money into these start-ups, which in turn fuels more non-disruptive start-ups to emerge (no wonder there is &lt;span style=&quot;font-style: italic;&quot;&gt;too much money chasing too few good deals!&lt;/span&gt;)  This shows that either a) they don&#39;t have an investment strategy or b) they are not following their investment strategy.  This conclusion got me thinking and I arrived at my second grievance.&lt;/li&gt;&lt;li&gt; &lt;span style=&quot;font-weight: bold;&quot;&gt;They are essentially gambling.&lt;/span&gt;  If you set out at the start to get a success rate of 10-20% something is seriously wrong.  If your investment strategy is to make picks and get that low a rate I equate it to gambling (even a random toss of the die gives you a 16% chance of success.)  Now, I understand that the model has been proven to work, people have made money, etc. etc.  Yet I can&#39;t help but wonder how anyone could possibly think that this current model is the right one to use going forward.  Just because this has been the typical result historically doesn&#39;t justify it being a future goal.  This thought led me to yet another realization and, indeed, another grievance.&lt;/li&gt;&lt;li&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Misalignment of interests.&lt;/span&gt;  The objective of the fund is to make money in x years (typically 6).  This time constraint and the large funds that are raised forces VCs to make investments no matter what to make sure they get a large return for their investors (even if they haven&#39;t come across the next disruptive wonder)  I believe that this is a misalignment of interests, as VCs are pushed to use their money unwisely, resulting in the ridiculous 1/10 success rate.  Again, this system just doesn&#39;t seem right.&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;Now let&#39;s get back to the infamous complaint of there being &#39;too much money chasing too few good deals&#39;.  The first reaction that I had to this statement was that not enough innovation must be happening- after all, given the billions of dollars out thee one would expect innovation to increase.  Yet in retrospect I wonder whether this excess money is playing some role in stifling innovation by encouraging people to create moderate innovations in an effort to make a quick buck.  If this is true, it suggests that VCs are actually doing damage to themselves because of the aforementioned grievances.  Then what are some possible solutions to these problems?&lt;br /&gt;&lt;ol&gt;&lt;li&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Give VCs less money&lt;/span&gt;.  If they have less cash they will have to make every dollar count.   No more of this 1/10 success rate business.  Investment strategies will have to be clearly defined and followed to the letter.  With this much scrutiny, entrepreneurs will be pushed to create true breakthroughs&lt;/li&gt;&lt;li&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Make VCs set higher targets&lt;/span&gt;... if VCs attain higher success rates because they are no longer swimming in cash then losses should go down and expected returns should go up.  This means that LPs should demand higher returns on their capital and push the VC partners to invest their money better.&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;No VC at the conference really addressed these questions completely (admittedly, I only confronted 2 people on the topic) so I&#39;d be interested in hearing peoples&#39; thoughts on this.</content><link rel='replies' type='application/atom+xml' href='http://techroadtrip.blogspot.com/feeds/4869959962282405427/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1807867701470950916/4869959962282405427' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/4869959962282405427'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/4869959962282405427'/><link rel='alternate' type='text/html' href='http://techroadtrip.blogspot.com/2008/06/grievances-regarding-vc-industry.html' title='3 Grievances on the VC Industry'/><author><name>Erol Toker</name><uri>http://www.blogger.com/profile/03989657428661052176</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgywQt-GIQtuN0LxL8wbJBmy8Mxx6KwH-0NSsE6tS62OBcsIYgWJIdpm6QxTKwQs4tGsta6rZLz1LYESqSW9jyUoNM3ophSNbFUmBsZM2euArZNv5W9GrjorV5Ykxjw-vo/s220/erolprofile.JPG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1807867701470950916.post-7116106896621075744</id><published>2008-06-11T05:46:00.000-07:00</published><updated>2008-06-11T05:47:07.513-07:00</updated><title type='text'>My Two Favorite Web Generators</title><content type='html'>Over the past couple weeks of looking around the blogosphere, watching videos and talking to entrepreneurs I came across two great website that I wanted to share:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;&lt;a href=&quot;http://www.dotomator.com/&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;The Dot-o-mator&lt;/span&gt;&lt;/a&gt;: I published a &lt;a href=&quot;http://techroadtrip.blogspot.com/2008/05/naming-your-companyproduct.html&quot;&gt;post&lt;/a&gt; a while back about the importance of naming your company early on.  After not having followed my own advice for the past two weeks (and after suffering one of the pitfalls I&#39;d predicted at a VC conference) I decided to get it over with.  Enter the Dot-o-mator.  This is a fantastic web-app that helps you generate a list of names and then automatically check for domain name availability.  The programmer let&#39;s you specify the prefix/suffix and then lets you merge this with prefixes/suffixes from selected categories.  So for example, if you are creating a sports website an want a &#39;Tech&#39; name, you get results like soccercast, soccerfeed, soccerwire, etc. etc. etc.  The author did a great job in thinking up all of the popular suffixes that are out there and then categorizing them.  A lot of fun, very easy, give it a shot.&lt;/li&gt;&lt;li&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;&lt;a href=&quot;http://www.unitedmedia.com/comics/dilbert/games/career/bin/ms.cgi&quot;&gt;Dilbert Mission Statement Generator&lt;/a&gt;:&lt;/span&gt;  I get the feeling that I&#39;m one of the few people in the world who hadn&#39;t seen this before, but in case there are more of me out there this is a must-see web app.  Guy Kawasaki referred to this as a way to &#39;save $25,000&#39;, making fun of how inane corporate mission statements are.   I think it&#39;s really clever and amusing.  Enjoy.&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;</content><link rel='replies' type='application/atom+xml' href='http://techroadtrip.blogspot.com/feeds/7116106896621075744/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1807867701470950916/7116106896621075744' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/7116106896621075744'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1807867701470950916/posts/default/7116106896621075744'/><link rel='alternate' type='text/html' href='http://techroadtrip.blogspot.com/2008/06/my-two-favorite-web-generators_11.html' title='My Two Favorite Web Generators'/><author><name>Erol Toker</name><uri>http://www.blogger.com/profile/03989657428661052176</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgywQt-GIQtuN0LxL8wbJBmy8Mxx6KwH-0NSsE6tS62OBcsIYgWJIdpm6QxTKwQs4tGsta6rZLz1LYESqSW9jyUoNM3ophSNbFUmBsZM2euArZNv5W9GrjorV5Ykxjw-vo/s220/erolprofile.JPG'/></author><thr:total>3</thr:total></entry></feed>