Live data from Hacker News

Viewing profile — tne

tne

HN member
Joined
Mon, Sep 15, 2014, 8:04 AM UTC
HN karma
9
Public activity
8 items

About tne

No profile information was provided.

Recent public activity

  1. 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…

  2. 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 …

  3. 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…

  4. 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…

  5. comment
    Comment #9427168

    Related: Screeps https://screeps.com/

  6. 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…

  7. 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 $(!!…

  8. story