Web Development

Tunneling to connect to IRC

Just a quick note to self on how to do tunneling to connect to an IRC server.
For instance I needed to connect to irc.freenode.com via my dreamhost account.

ssh -L 6667:irc.freenode.net:6667 user@my.dreamhost.account.com

Now open the irc client and connect to host localhost and port 6667

Interesting presentation on Business models for web 2.0

Usually I mostly write about web technologies at API level but this presentation got my attention as it is pretty insightful especially in identifying if an idea is worth interesting. Usually people choose an idea which is just an incremental improvement on an existing idea or something that has very little cost of switching. [...]

Memory Management and Doctrine 1.2/php 5.2.x

Recently part of the a project that I am working on required me to import about a 1 million lines of records from csv format into the mysql database. Sounds like a straight forward job, though it was slightly complicated considering that the data structure was obviously not normalized.
I added a new task to my [...]