<?xml version="1.0" encoding="utf-8"?>
<feed xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xml:lang="en-us" xmlns="http://www.w3.org/2005/Atom">
  <title>Bitz Blog</title>
  <link rel="alternate" type="text/html" href="http://www.pashabitz.com/" />
  <link rel="self" href="http://www.pashabitz.com/SyndicationService.asmx/GetAtom" />
  <icon>favicon.ico</icon>
  <updated>2012-05-09T14:05:04.0136062-07:00</updated>
  <author>
    <name>Pasha Bitz</name>
  </author>
  <subtitle>Thoughts on Software and Some Other Stuff</subtitle>
  <id>http://www.pashabitz.com/</id>
  <generator uri="http://www.dasblog.net" version="1.9.6264.0">DasBlog</generator>
  <entry>
    <title>Apache with PHP on a Windows Machine</title>
    <link rel="alternate" type="text/html" href="http://www.pashabitz.com/2012/05/09/Apache+With+PHP+On+A+Windows+Machine.aspx" />
    <id>http://www.pashabitz.com/PermaLink,guid,aee085fb-2e42-4016-aa98-506946fbfaaf.aspx</id>
    <published>2012-05-09T14:04:05.6690000-07:00</published>
    <updated>2012-05-09T14:05:04.0136062-07:00</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <i> The program can't start because LIBPQ.dll is missing from your computer. Try reinstalling
the program to fix this problem. </i>
        </p>
        <p>
If you're getting the above error when starting Apache after installing Apache and
PHP on your Windows machine, go to your PHP install directory (e.g. c:\Program Files
(x86)\PHP) and copy the file libpq.dll into the bin directory under the Apache install
directory (e.g. C:\Program Files (x86)\Apache Software Foundation\Apache2.2\bin).
</p>
        <img width="0" height="0" src="http://www.pashabitz.com/aggbug.ashx?id=aee085fb-2e42-4016-aa98-506946fbfaaf" />
      </div>
    </content>
  </entry>
  <entry>
    <title>The Finnish Education System</title>
    <link rel="alternate" type="text/html" href="http://www.pashabitz.com/2012/01/03/The+Finnish+Education+System.aspx" />
    <id>http://www.pashabitz.com/PermaLink,guid,87bf9d88-70ce-4b97-869d-835e5979e3e6.aspx</id>
    <published>2012-01-03T02:12:04.5310000-07:00</published>
    <updated>2012-01-03T02:12:27.1250000-07:00</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
A <a href="http://www.theatlantic.com/national/archive/2011/12/what-americans-keep-ignoring-about-finlands-school-success/250564/#.Tv4NA-e7HkY.mailto">thought
provoking article in the Atlantic</a> about the education superpower Finland: 
</p>
        <blockquote>The small Nordic country of Finland used to be known -- if it was known
for anything at all -- as the home of Nokia, the mobile phone giant. But lately Finland
has been attracting attention on global surveys of quality of life -- Newsweek ranked
it number one last year -- and Finland's national education system has been receiving
particular praise, because in recent years Finnish students have been turning in some
of the highest test scores in the world.</blockquote>
        <p>
The thesis is the egalitarian approach is the main reason for the success:
</p>
        <blockquote> In fact, since academic excellence wasn't a particular priority on the
Finnish to-do list, when Finland's students scored so high on the first PISA survey
in 2001, many Finns thought the results must be a mistake. But subsequent PISA tests
confirmed that Finland -- unlike, say, very similar countries such as Norway -- was
producing academic excellence through its particular policy focus on equity. </blockquote>
        <p>
Not sure if applicable to some other countries, but definitely mind blowing. 
</p>
        <img width="0" height="0" src="http://www.pashabitz.com/aggbug.ashx?id=87bf9d88-70ce-4b97-869d-835e5979e3e6" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Using Better Naming to Clarify Code</title>
    <link rel="alternate" type="text/html" href="http://www.pashabitz.com/2011/12/27/Using+Better+Naming+To+Clarify+Code.aspx" />
    <id>http://www.pashabitz.com/PermaLink,guid,e732e9c0-ec33-4133-b9fb-0b3f4ea247b1.aspx</id>
    <published>2011-12-27T05:34:39.0780000-07:00</published>
    <updated>2011-12-27T05:35:51.1406250-07:00</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <style>
.code{font-family:Lucida Console, Courier New;background:#ffdf73;}
</style>
        <p>
I'm a big fan of good naming in code, here's a recent example:
</p>
        <p>
Suppose you have a unique index in a database table and you're trusting that index
to enforce no more than one record with the key.
</p>
        <p>
So you're using an <i>insert ignore into...on duplicate key update</i> statement.
</p>
        <p>
So you end up calling something like <i>DataAccess.InsertRecord(data)</i> or <i>DataAccess.AddRecord(data)</i>.
Looking at such code it's very unclear that what really happens is an insert/update
and you're only left with one record.
</p>
        <p>
You can go the way of making your code explicit my moving the logic into your app
and doing something like
</p>
        <p class="code">
var record=DataAccess.GetRecord(key);<br />
if(record == null)<br />
  DataAccess.InsertRecord(data); 
</p>
        <p>
But then you'll be losing the power of using the database do that for you.
</p>
        <p>
So what I'm suggesting is just making your naming better, for example: <i>DataAccess.ReplaceRecord(data)</i>.
</p>
        <img width="0" height="0" src="http://www.pashabitz.com/aggbug.ashx?id=e732e9c0-ec33-4133-b9fb-0b3f4ea247b1" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Make the Ugly Scrollbars on your Facebook App Disappear</title>
    <link rel="alternate" type="text/html" href="http://www.pashabitz.com/2011/12/26/Make+The+Ugly+Scrollbars+On+Your+Facebook+App+Disappear.aspx" />
    <id>http://www.pashabitz.com/PermaLink,guid,1387a11d-1f32-4357-aafd-ca6cdf34615f.aspx</id>
    <published>2011-12-26T12:50:42.6710000-07:00</published>
    <updated>2011-12-26T12:51:02.8125000-07:00</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
If you have annoying scrollbars around your Facebook app's canvas, here's what you
need to do: 
</p>
        <p>
First, go to your app's settings, click "Edit App" and then "Advanced" on the right. 
</p>
        <p>
Scroll all the way down to "Canvas Settings" and change "Canvas Height" to "Settable".
</p>
        <p>
Second, add a call to <strong>FB.Canvas.setSize()</strong> (<a href="http://developers.facebook.com/docs/reference/javascript/FB.Canvas.setSize/">http://developers.facebook.com/docs/reference/javascript/FB.Canvas.setSize/</a>).
Make this call inside <strong>window.fbAsyncInit</strong>, after calling <strong>FB.init</strong>.
</p>
        <p>
That's it! Gorgeous app, no scrollbars!
</p>
        <img width="0" height="0" src="http://www.pashabitz.com/aggbug.ashx?id=1387a11d-1f32-4357-aafd-ca6cdf34615f" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Adaptive Payments Error This transaction has already been approved</title>
    <link rel="alternate" type="text/html" href="http://www.pashabitz.com/2011/12/18/Adaptive+Payments+Error+This+Transaction+Has+Already+Been+Approved.aspx" />
    <id>http://www.pashabitz.com/PermaLink,guid,f89fe5bb-adf3-4631-bb66-6ccf2c48abce.aspx</id>
    <published>2011-12-18T04:09:59.5150000-07:00</published>
    <updated>2011-12-18T04:10:34.4218750-07:00</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
If you're using the PayPal Adaptive Payments API in sandbox mode, redirecting the
user to https://www.sandbox.paypal.com/cgi-bin/webscr and getting the following error:
</p>
        <blockquote> This transaction has already been approved </blockquote>
        <p>
The problem may be that you're using an incorrect sandbox user as the "sender" in
the transaction.
</p>
        <p>
You need to go to the sandbox (<a href="https://developer.paypal.com/">https://developer.paypal.com/</a>)
and then to "test accounts" on the left.
</p>
        <p>
You need to create a test account. Click "preconfigured" next to "new test account"
and then make sure you select "buyer" under "account type".
</p>
        <p>
Now use the email of this account that you've just created as the "senderEmail" in
the call to the "Pay" API operation.
</p>
        <img width="0" height="0" src="http://www.pashabitz.com/aggbug.ashx?id=f89fe5bb-adf3-4631-bb66-6ccf2c48abce" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Jack Abramoff on How to Own The System</title>
    <link rel="alternate" type="text/html" href="http://www.pashabitz.com/2011/12/17/Jack+Abramoff+On+How+To+Own+The+System.aspx" />
    <id>http://www.pashabitz.com/PermaLink,guid,8bf28b90-4b53-44f6-8875-a37011f83ffd.aspx</id>
    <published>2011-12-17T07:34:34.1710000-07:00</published>
    <updated>2011-12-17T07:34:59.7187500-07:00</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <blockquote style="font-style:italic;"> “When
we would become friendly with an office,” he explained, “and they were important to
us, and the chief of staff was a competent person, I would say or my staff would say
to him or her at some point, ‘You know, when you’re done working on the Hill, we’d
very much like you to consider coming to work for us.’ Now the moment I said that
to them or any of our staff said that to ‘em, that was it. We owned them.” </blockquote>
        <p>
Amazing stuff on the <a href="http://www.rawstory.com/rs/2011/11/06/jack-abramoff-the-whole-system-is-corrupt/">Jack
Abramoff story</a>. 
</p>
        <img width="0" height="0" src="http://www.pashabitz.com/aggbug.ashx?id=8bf28b90-4b53-44f6-8875-a37011f83ffd" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Configure Basic Authentication on IIS7.5 on Windows Server 2008</title>
    <link rel="alternate" type="text/html" href="http://www.pashabitz.com/2011/12/17/Configure+Basic+Authentication+On+IIS75+On+Windows+Server+2008.aspx" />
    <id>http://www.pashabitz.com/PermaLink,guid,92c5b2ee-bd0c-4c7a-afea-1d666b4c0d2c.aspx</id>
    <published>2011-12-17T07:12:13.4375000-07:00</published>
    <updated>2011-12-17T07:12:13.4375000-07:00</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
First you need to go to Server Manager, expand "Roles", right-click "web server" and
choose "add role services". 
</p>
        <p>
Then under "security" choose "basic authentication". 
</p>
Now go to IIS Manager, click "Authentication" and enable "basic authentication". 
<p>
Last, set up a local user: go to Server Manager, expand "configuration"-&gt;"local users
and groups". Right-click "users" and click "new user...". Set up a user/password. 
</p><p>
Voila, now user the user/password you've set up when browsing to your website. 
</p><img width="0" height="0" src="http://www.pashabitz.com/aggbug.ashx?id=92c5b2ee-bd0c-4c7a-afea-1d666b4c0d2c" /></div>
    </content>
  </entry>
  <entry>
    <title>Hiking the Fjordruta in Norway</title>
    <link rel="alternate" type="text/html" href="http://www.pashabitz.com/2011/09/26/Hiking+The+Fjordruta+In+Norway.aspx" />
    <id>http://www.pashabitz.com/PermaLink,guid,2951d627-c55a-455f-b250-bec7bb878509.aspx</id>
    <published>2011-09-26T04:46:23.5390000-07:00</published>
    <updated>2011-09-26T04:53:53.6192778-07:00</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <img border="0" src="http://www.pashabitz.com/content/binary/IMG_3962-small.JPG" />
        <p>
The Fjordruta is a great multi-day hike in the west of Norway. It has a little bit
of everything: fjords, forests, mountains. The whole trail can take about two weeks
but you can do as little as a couple of days.
</p>
        <p>
The best time is summer. I did 3 days in late September: the conditions weren’t perfect
but not too bad either. I had two overcast days with some rain and one sunny day.
The ground is very wet so waterproof hiking boots will really be worthwhile.
</p>
        <p>
The trail is well marked and there are unmanned, fully stocked cabins along the way.
What the cabins have: food, gas, cooking gear, fireplace, beds with pillows and blankets,
shower, toilet, water. This means that you don’t need to carry anything with you.
</p>
        <p>
You need a special key to open the cabins. You can buy this key from the Norwegian
Trekking Association (DNT) and from some tourist information offices. I don’t know
how much it costs because I got mine from a friend. The price of the key is just a
deposit so you can return it and get your money back.
</p>
        <p>
You pay for the stay in the cabin and for the food you consumed by filling out a form
and leaving it in a box in the cabin. They charge your credit card. A night costs
290NOK for non-members of DNT and 190NOK for members. It may be worthwhile signing
up for DNT if you plan on spending more than a few nights, I didn’t check.
</p>
        <h2>Getting there
</h2>
        <p>
From Oslo, you need to get to Kristiansund. You can either take a bus via Molde or
a flight to Molde, then a bus to Kristiansund. Norwegian has some cheap flights and
often a morning flight to Molde will be cheaper than the bus. The bus costs 690NOK
from Oslo to Molde and when I went there I found a morning flight for 500NOK from
Oslo to Molde. The flight is about 40 minutes, the bus is about 8 hours. The Oslo-Molde
bus goes twice a day, in the morning and in the evening.
</p>
        <p>
The bus from Molde to Kristiansund costs 140NOK and takes about an hour and a half.
It also stops at the Molde airport and leaves every hour. After getting to Kristiansund
you need to get to Tommervag to start the trail. You do this by taking a bus from
the Kristiansund bus station (Traffikterminal) to Tommervag. This bus uses a fairy
to get to Tommerweg and also leaves about once an hour. It takes about 1 hour to get
to Tommervag.
</p>
        <h2>The trail
</h2>
        <p>
I used a trail map for the Fjordruta that you can get at the DNT offices. It’s from
2004 and it doesn’t have some newly built cabins which I will describe here. The whole
trail is pretty strenuous in my view so take this into consideration.
</p>
        <p>
The first cabin is Trollstua. It takes about 2 hours to reach from Tommervag. I didn’t
stay there and continued directly to the next cabin, Gullsteinvollen. This took about
5 hours of very fast and hard hiking from Trollstua, so take this into consideration.
Both Trollstua and Gullsteinvolen were built in 2006 and do not appear on the 2004
map.
</p>
        <p>
On the second day I continued from Gullsteinvolen to Imarbu. This also took about
5 hours of fast and strenuous walking. Imarbu is right on the fjord and it’s really
pretty. This was my favorite cabin.
</p>
        <p>
On the third way I hiked from Imarbu to Nersetra. This also took about 5 hours. Nersetra
is not as nice but it has hot water for shower because it’s next to some administrative
building of the KNT (Kristiansund trekking association) that has electricity.
</p>
        <p>
From Nersetra you can hike to Aure in about 2 hours and then take the bus back to
Kristiansund. I didn’t do this because I was lucky to get a ride from Nersetra back
to Kristiansund with a KNT employee that happened to also spend the night at Nersetra.
</p>
        <p>
Don’t worry about getting back at any point between Tommervag and Aure because there
are bus stops in many places where the hiking trail crosses a road. I don’t know about
the rest of the trail, from Aure and on, but I assume it’s similar.
</p>
        <img width="0" height="0" src="http://www.pashabitz.com/aggbug.ashx?id=2951d627-c55a-455f-b250-bec7bb878509" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Launching Cohaico Beta</title>
    <link rel="alternate" type="text/html" href="http://www.pashabitz.com/2011/07/26/Launching+Cohaico+Beta.aspx" />
    <id>http://www.pashabitz.com/PermaLink,guid,107382c5-119c-4b1f-9e7a-0398eef8a961.aspx</id>
    <published>2011-07-26T08:46:19.8660000-07:00</published>
    <updated>2011-07-26T08:46:46.8671693-07:00</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
A little less than three months ago I started working on my new project, <a href="http://cohai.co">Cohaico</a>,
and today I'm launching the public beta of the website. From the <a href="http://blog.cohai.co/launching-cohaico-beta">announcement
post on the Cohaico blog</a>:
</p>
        <blockquote style="font-style:italic">
          <p>
Let us fix that for you.
</p>
          <p>
Guess what - your friends are already sharing everything they know about stuff. They
do it on social networks like Twitter.
</p>
          <p>
But if you get on Twitter - you'll just see what was said in the last few hours or
so. It's hard to see what all your friends said about a particular thing.
</p>
          <p>
This is what Cohaico does.
</p>
        </blockquote>
        <p>
Exciting times!
</p>
        <img width="0" height="0" src="http://www.pashabitz.com/aggbug.ashx?id=107382c5-119c-4b1f-9e7a-0398eef8a961" />
      </div>
    </content>
  </entry>
  <entry>
    <title>San Francisco</title>
    <link rel="alternate" type="text/html" href="http://www.pashabitz.com/2011/07/20/San+Francisco.aspx" />
    <id>http://www.pashabitz.com/PermaLink,guid,f7a082fb-e378-4095-818a-1cd5d709f2e7.aspx</id>
    <published>2011-07-19T18:14:58.0460000-07:00</published>
    <updated>2011-07-22T11:35:42.6192750-07:00</updated>
    <content type="html">&lt;h3&gt;People are zombies
&lt;/h3&gt;
&lt;div style="overflow:hidden"&gt;
&lt;p style="width:360px;padding-right:10px;float:left;"&gt;
Everybody's on their iPhone, all the time. I find it kind of troubling. We're soooo
headed at The Matrix. And when it happens, 5-10 years from now, it won't be all violent
skynet-style-war-with-the-machines-kind-of-thing. When Steve Jobs comes up with the
iThing that plugs via USB directly into your brain - people will just line up to get
that $499 piece of crap. 
&lt;/p&gt;
&lt;img src="http://farm3.static.flickr.com/2583/4072167587_736aaa2fd2.jpg" alt="People on their iPhones" /&gt; 
&lt;/div&gt;
&lt;h3&gt;Bubble
&lt;/h3&gt;
&lt;p&gt;
This place is a bubble. And I don't mean "startups are being funded too easily" bubble.
Which is also true. I mean that people are just so into everything internet, that
any kind of stupid idea flies. Which is pretty dangerous because the rest of the world
just &lt;i&gt;don' work dat way&lt;/i&gt; ™.
&lt;/p&gt;
&lt;p&gt;
I mean, homeless people ask you for help with Twitter API here...
&lt;/p&gt;
&lt;h3&gt;Dress
&lt;/h3&gt;
&lt;div style="overflow:hidden;"&gt;
&lt;p style="float:left;width:360px;padding-right:10px;"&gt;
I mean I knew about the (fake) &lt;a href="http://www.snopes.com/quotes/twain.asp"&gt;Mark
Twain quote&lt;/a&gt; and everything, and still I came dressed as if this is Israel. Please
remember: San Francisco is cold. So get your warm (a.k.a. in Israel "winter") clothes,
even in the summer. 
&lt;/p&gt;
&lt;img border="0" src="http://www.pashabitz.com/content/binary/IMG_3189 small.JPG"&gt; 
&lt;/div&gt;
&lt;p&gt;
On the other (better) hand: South Bay is warm.
&lt;/p&gt;
&lt;h3&gt;Getting around
&lt;/h3&gt;
&lt;div style="overflow:hidden;"&gt;
&lt;p style="float:left;width:360px;padding-right:10px;"&gt;
The San Francisco bus/tram system is really useful. You should get yourself a &lt;a href="https://www.clippercard.com/ClipperWeb/index.do"&gt;"clipper"&lt;/a&gt; which
is a rechargeable card to save the trouble of trying to find change and all. Clippers
are sold at Walgreens. I don't know why. I guess it's because they're everywhere.
But then again so are Starbucks. I guess Starbucks said "fuck off".&lt;br /&gt;
Get yourself a monthly one for $62 which is the best deal for anywhere from 2 weeks
and up.
&lt;/p&gt;
&lt;img border="0" src="http://www.pashabitz.com/content/binary/IMG_3436 -small.JPG"&gt; 
&lt;/div&gt;
&lt;p&gt;
Getting down to the South Bay (Palo Alto, Mountain View and the such) is trickier.
You can take the Caltrain but then you're most likely need a cab too. I really recommend
signing up for &lt;a href="http://www.zipcar.com/"&gt;Zipcar&lt;/a&gt;. They have &lt;a href="http://www.zipcar.com/sf/find-cars"&gt;cars
everywhere&lt;/a&gt; and is the best-value option for when you need a car for a few hours.
If you have an Israeli driver's license you'll need to produce some papers from the
Ministry of Transport. I am in the process of doing it, will update...
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.retailmenot.com/view/zipcar.com"&gt;Use a coupon&lt;/a&gt; for some free
hours too.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.getaround.com/"&gt;Getaround&lt;/a&gt; sadly don't work with Israeli licenses
at this point.
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Update (July 22nd):&lt;/strong&gt; Getting to meetings specifically in Palo Alto
is doable with a Caltrain as the station is within 10 minutes walking of most locations
on University Ave (this is where your meeting is going to be). Pro tip: schedule for
half-past as Southbound trains &lt;a href="http://www.caltrain.com/schedules/weekdaytimetable.html"&gt;get
to Palo Alto at :03&lt;/a&gt; past every hour between 10am and 4pm which gives you a good
30 minutes to walk there, then if you manage to end your meeting in 50 minutes you
have 20 minutes to walk back to the train back that leaves at :41 past every hour
(tip by &lt;a href="http://twitter.com/#!/rutipo"&gt;@rutipo&lt;/a&gt;).
&lt;/p&gt;
&lt;h3&gt;Hitting the meetups
&lt;/h3&gt;
&lt;p&gt;
Finding geeks/founders/investors/hackers in a social environment is super easy. Check
out &lt;a href="http://startups.meetup.com/cities/us/ca/san_francisco/"&gt;Meetup.com&lt;/a&gt; and &lt;a href="http://startupdigest.com/sf-bay-area-startup/"&gt;Startup
Digest&lt;/a&gt; for a ton of events. After a week you'll start recognizing faces...
&lt;/p&gt;
&lt;h3&gt;Working space
&lt;/h3&gt;
&lt;p&gt;
The city is full of &lt;a href="http://wiki.coworking.info/w/page/16583935/SanFranciscoCoworking"&gt;coworking
spaces&lt;/a&gt;. I am working out of &lt;a href="http://nextspace.us/contact/nextspace-san-francisco/"&gt;Next
Space&lt;/a&gt; which is great - nice people, &lt;a href="http://maps.google.com/?ll=37.788884,-122.401141&amp;spn=0.009581,0.021136&amp;z=16"&gt;great
location&lt;/a&gt; and good facilities. Lots of activities (kind of like The Junction back
home :)). I didn't do any extensive research but some people I talked to did and they
settled on Next Space so I guess it's fine. Reasonably priced too, at $285/month.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pashabitz.com/aggbug.ashx?id=f7a082fb-e378-4095-818a-1cd5d709f2e7" /&gt;</content>
  </entry>
  <entry>
    <title>Some Early Lessons Learned Working on Cohaico</title>
    <link rel="alternate" type="text/html" href="http://www.pashabitz.com/2011/07/05/Some+Early+Lessons+Learned+Working+On+Cohaico.aspx" />
    <id>http://www.pashabitz.com/PermaLink,guid,6cb21101-c173-462d-af4d-e2cdbf65e14e.aspx</id>
    <published>2011-07-05T04:04:42.3360000-07:00</published>
    <updated>2011-07-05T04:05:55.4798990-07:00</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
Over on the Cohaico blog, I wrote about some things I learned during the first months
of working on a new startup: 
</p>
        <blockquote style="font-style:italic;"> Products that succeed? They are the ones that
got the crazy distribution by getting people to use their service, other companies
to partner with them etc. On the outside, this often looks like "destiny" or "force
majore". You built such a kick-ass product that people are just magically drawn to
it. Bullshit. Nothing happened by itself. Every successful product came to be because
somebody, deliberately, carefully and thoughtfully kicked ass doing sales and did
it better than the competition. </blockquote>
        <p>
          <a href="http://blog.cohai.co/startup-early-days-things-i-learned">Read more</a>. 
</p>
        <img width="0" height="0" src="http://www.pashabitz.com/aggbug.ashx?id=6cb21101-c173-462d-af4d-e2cdbf65e14e" />
      </div>
    </content>
  </entry>
</feed>
