Viewing profile — tne
tne
HN member- Joined
- Mon, Sep 15, 2014, 8:04 AM UTC
- HN karma
- 9
- Public activity
- 8 items
- HN profile
- View on Hacker News ↗
About tne
No profile information was provided.
Recent public activity
-
comment
Comment #18359562
#include #include static const char str[] = "fizzbuzz"; static inline void out(int i, size_t offset, size_t sz) { if (sz) { fwrite(str + offset, sz, 1, stdout); } else { fprintf(st…
-
comment
Comment #13496587
There is no concept of an integer on an argument vector. Quoting in bash just escapes IFS characters (usually whitespace) to control whether to include them in a given argument on …
-
comment
Comment #11390651
I would look at asm.js, do some tests with major browsers and beef it up. It would make it painful under user agents that don't JIT (or compile AOT) by leveraging asm.js convention…
-
comment
Comment #9464117
This is the approach taken by LY-Linux ("patch leap year"), although better implemented IMO. In fact, I typically only have to restart my servers once every 4 years (at most). Look…
-
comment
Comment #9427168
Related: Screeps https://screeps.com/
-
comment
Comment #9269849
AFAICT both Haxe and AS3 consistently put types on the right, including argument declarations. Other languages consistently put it on the left. Most languages make a choice like th…
-
comment
Comment #9183721
Same here, except I typically use $(!!) to re-run the previous command. I find it faster than command-line editing. $ find . -name "*blarg*.cpp" $ grep -i "blooey" $(!!) $ vim $(!!…
- story