Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
lea
searching PlanetScale…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
4 ms
·
1.
▲
by
lea
15y ago
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.
2.
▲
by
lea
15y ago
I would write something like this: function handler(yes, no) { return function (err, data) { if (data) { yes(err, data); } else { no(err, data); } } }
3.
▲
by
lea
15y ago
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: Currently bootstrapping a startup, but i'm willing to work on
4.
▲
by
lea
15y ago
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 "spotify free" accounts.
5.
▲
by
lea
15y ago
a simple and efficient method for finding memory leaks is replacing malloc/free with house-keeping macros when debugging: #include <stdlib.h> #include <stdio.h> void *(*_malloc_old) (size_t size) = malloc; void (*