Viewing profile — lea
lea
HN member- Joined
- Wed, Jun 15, 2011, 11:36 AM UTC
- HN karma
- 2
- Public activity
- 5 items
- HN profile
- View on Hacker News ↗
About lea
Recent public activity
-
comment
Comment #2901185
Around 50, But the count can easily go up to 100+ with the help of firefox extensions like Tree Style Tabs and multiple browser windows.
-
comment
Comment #2849790
I would write something like this: function handler(yes, no) { return function (err, data) { if (data) { yes(err, data); } else { no(err, data); } } } function get() { function don…
-
comment
Comment #2833149
SEELKING WORK - Remote node.js, redis, mongodb Willing to do complex back-end in node.js (load balancing, caching for search engine, websocket server, crawling, etc). Other info: C…
-
comment
Comment #2817444
Mixcloud ( http://www.mixcloud.com ), which I am suprised is not on the list. After that, youtube and a bit of grooveshark. And I have not used spotify since their removal of "spot…
-
comment
Comment #2695788
a simple and efficient method for finding memory leaks is replacing malloc/free with house-keeping macros when debugging: #include #include void *(*_malloc_old) (size_t size) = mal…