So we all know it's important to go public as fast as possible. I was wondering.. how clean is your code?
Do you have 10 php files with 5000 lines each? Or some ruby codes with lots of tests? Do you comments a lot? How is your inter documentation? What if someone joins your startup.. how easy will it be for him/her to catch up and understand the code?
That makes it all the more important to write clean, well-documented code. I'm an OO PHP developer, I use an MVC framework I developed myself (similar to Symfony, based on the Doctrine ORM, using Smarty for templates). I tend to write self-documenting code, e.g. Website::listAllByUser($id), but I comment extensively anyway. It would be very easy to get a decent programmer up to speed on any of my projects in under an hour.