Joined June 2012
·
Posted to
Speeding up AngularJS's $digest loop
over 1 year
ago
Awesome stuff, thanks for the tip! Instead of:
watchers = undefined;
you should do
watchers = void 0;
This is because undefined
is simply a variable on the window object that hasn't been defined yet while void 0
will always return undefined.
Posted to
Clean Postgres on Mac Mavericks
over 1 year
ago
Why would people do development on their main machine when they can just spin up vagrant with premade buildVagrant.sh files? 5 minutes and bam, you've got yourself a clean environment to work in without polluting your main machine.
Achievements
77 Karma
1,164 Total ProTip Views
Forked
Have a project valued enough to be forked by someone else
Honey Badger
Have at least one original Node.js-specific repo
Epidexipteryx
Have at least one original repo where C++ is the dominant language
Walrus
The walrus is no stranger to variety. Use at least 4 different languages throughout all your repos
Komodo Dragon
Have at least one original repo where Java is the dominant language
Charity
Fork and commit to someone's open source project in need
Why would you want to create the error partial in the view helper? All you're doing is inlining the ERB and creating technical debt.