Koke’s

My English alter-ego

Procrastination

Posted by Jorge Bernal April 28, 2008

This is me today:

AddThis Social Bookmark Button   AddThis Feed Button

A secret to make money online

Posted by Jorge Bernal April 23, 2008

I’ve found at 37signals’ blog the presentation by David Heinemeier Hanson called The secret to making money online. I know it sounds like cheap unrealistic marketing, but it’s actually quite simple:

  1. Great application
  2. Price
  3. Profit

The second and key point is price. It may sound obvious, but if you look around the second round of the tech bubble is coming strong about free, with advertising as the only revenue model. Some have even declared the web 2.0 to be dead.

Another key point is: instead of aiming to become a billion dollar company, settle for a million, maybe even less. Solve a real problem, do what you love and charge for it

We both know some people who own more than a billion (dollars) and they’re not any the happier


By the way, with this video I’ve discovered omnisio, which lets you upload videos and synchronize them with slides. The result is great as you might see.

AddThis Social Bookmark Button   AddThis Feed Button

Mercurial is great for personal projects

Posted by Jorge Bernal April 15, 2008

First, I hope this doesn’t become a flamewar about version control, it’s just what I’ve found useful.

Sometimes I feel the need to be able to go back in time when doing small changes. I don’t want to set up an external repository, creating branches or anything like that: just plain file revision control.

Whenever I feel that need I do:

$ hg init
$ hg add
$ hg commit -m "Initial import"

And I’m ready to go

The only thing I have to care about is the .hgignore file, to skip logs, cache files and so on.

If I don’t need version control anymore, I just have to remove the .hg directory and everything is like it was before.

By the way, I’m working on my new personal site: stay tuned for more!

AddThis Social Bookmark Button   AddThis Feed Button

I love to hack my phone

Posted by Jorge Bernal April 03, 2008

koke@warhol:~/tmp$ sqlite3 sms.db
SQLite version 3.4.0
Enter ".help" for instructions
sqlite> select rowid,date,text from message where rowid = 2;
2|1206801673|arr. Habemus iPhone
sqlite>
AddThis Social Bookmark Button   AddThis Feed Button