Joined February 2012
·
Posted to
The Concept of Pointers
over 1 year
ago
@shabbirh thanks!! :)
Posted to
The prototype is your friend (if you care about perf)
over 1 year
ago
Nice write up!
One trick that I like to do with prototype is something like this.
https://gist.github.com/6799520
Posted to
The Concept of Pointers
over 1 year
ago
That is a pretty good way of explaining it!
I wrote the article over a year ago and just posted it on coderwall, I feel that pointers can be a little confusing at first but once you understand them, the concept is quite simple.
Posted to
Using NPM modules in Meteor
over 1 year
ago
Love this!
Posted to
Star Wars In a way you've never seen before
over 1 year
ago
old but fun!
Posted to
Lazy front-enders are lazy
over 1 year
ago
If I am using jQuery already as my library
I would write this over
$('<div>');
over this
$(document.createElement('div'));
Code readability/Code familiarity is a lot more important then performance.
Posted to
Run the last command in Vim
over 1 year
ago
What about using the '.' command ?
Achievements
862 Karma
33,569 Total ProTip Views
Lab
Have at least one original repo where C# is the dominant language
Honey Badger
Have at least one original Node.js-specific repo
Nephila Komaci
Have at least one original repos where PHP is the dominant language
Bear 3
Have at least three original repos where Objective-C is the dominant language
Bear
Have at least one original repo where Objective-C is the dominant language
Python 3
Have at least three original repos where Python is the dominant language
Python
Would you expect anything less? Have at least one original repo where Python is the dominant language
T-Rex 3
Have at least three original repos where C is the dominant language
Altruist
Increase developer well-being by sharing at least 20 open source projects
Walrus
The walrus is no stranger to variety. Use at least 4 different languages throughout all your repos
T-Rex
Have at least one original repo where C is the dominant language
Mongoose 3
Have at least three original repos where Ruby is the dominant language
Mongoose
Have at least one original repo where Ruby is the dominant language
Charity
Fork and commit to someone's open source project in need
Forked
Have a project valued enough to be forked by someone else
@haiqus - I wanted to explain the concept of pointers and what they mean instead of explaining how to use them.