• Building web apps since 2001 • Started Singapore PHP User Group in 2006 • Co-founded iOS Dev Scout (2012) • Worked in startups: Foound (2010) and mig33 (2012) • Joined Neo Innovation Inc. in March 2014 3
public function __construct(){ $this->water = true; $this->milk = true; } public function is_good(){ return true; } } class Tea < Beverages def initialize @water = true @milk = true end def good? true end private def secret “hello” end end
code (other people’s code - learn best practices) • Tooling • IDE / text editor • TDD/BDD • Get help • Google, StackOverflow, Screencasts • Pair programming with a senior • Books 13