Viewing profile — tmp43522
tmp43522
HN member- Joined
- Sun, May 15, 2011, 10:45 AM UTC
- HN karma
- 37
- Public activity
- 7 items
- HN profile
- View on Hacker News ↗
About tmp43522
No profile information was provided.
Recent public activity
-
comment
Comment #2838542
I hate to depart from the group think, but there's another explanation aside from a smart engineer getting carried away with their own brilliance: They remarked how they spent a co…
-
comment
Comment #2814931
No they're not that good, if the arrests are correct then they're actually pretty bad. For the little value that they are worth, they're worth far more as an example to be made for…
-
comment
Comment #2782545
It's actually not a bad suggestion #define BUF_INITIAL 1024 char buf[BUF_INITIAL]; int main(int argc, char** argv) { char* p; ... p = len > BUF_INITIAL ? malloc(len) : buf; ... wri…
-
comment
Comment #2726894
So one of the first languages with closures to get huge mainstream popularity hasn't helped? right...
-
comment
Comment #2638980
I've just ordered a beagleboard-xm, and though I was initially looking for an ARM computer purely for the sake of owning one, it now seems like the perfect device for use as a pers…
-
comment
Comment #2554663
I used to mv the old files, but now I just rm. Host- specific files I handle by doing if [ -f ~/.host-bashrc ]; then . ~/.host-bashrc; fi I also use proper extensions on my files l…
-
comment
Comment #2549731
#define FALSE 0 is the common one