Live data from Hacker News

Viewing profile — anonymouscowar1

anonymouscowar1

HN member
Joined
Sat, Dec 14, 2013, 7:59 PM UTC
HN karma
64
Public activity
27 items

About anonymouscowar1

No profile information was provided.

Recent public activity

  1. comment
    Comment #7052864

    Ok, Sir Snark-a-lot. Yes, he was clearly good at other things. I don't mean to shit on this guy's skills. The article goes to a lot of trouble to claim that he has an "edge" over o…

  2. comment
    Comment #7052485

    So apparently the only thing this guy had going for him was that he could print checks with magnetic ink and fake a caller id. Both are trivial. Wow.

  3. comment
    Comment #7045136

    Oh, this guy is an asshole, and what he writes definitely falls into a defamation and slander. The First amendment doesn't protect this kind of speech. The problem isn't that he's …

  4. comment
    Comment #7045133

    20% (4.8 hrs)? I don't know about you, but for me it's closer to 33%.

  5. comment
    Comment #6934727

    It wasn't a hack us contest, just a bug bounty that applied to a limited number of domains (not including whatever site the dropbox password went to). That's what I remember, anywa…

  6. comment
    Comment #6931613

    Then you can just create a new, younger start-up and acquire the older one. Taxes fixed at 0. Is NY trying to race to the bottom?

  7. comment
    Comment #6921901

    Linux is hard, let's go shopping!

  8. comment
    Comment #6921895

    Package repository may bump versions without warning, and lags behind gems. There is no typical lag time, it's updated whenever the packager feels like it. You can file bugs at red…

  9. comment
    Comment #6921874

    Presumably if you want syslogd's features, it's for something other than the text log files (logging to SQL, network logging, ...).

  10. comment
    Comment #6921813

    Can you suggest a good one for Android? I am missing ABP sorely.

  11. comment
    Comment #6921396

    Not if the tax bracket gets lower at 20-50x the median income. Tax brackets should be monotonically increasing.

  12. comment
    Comment #6916551

    > before the repne scasb. Did I screw that up? Ah, it's possible repne scasb halts when ecx drops to zero (that would explain some of the string length asm code I found when I goog…

  13. comment
    Comment #6916536

    > four million packets per second (well, one million until I parallelize), which is about 85 megabytes per second Why is this more than 4 million bytes per second (4 MB/s)? A packe…

  14. comment
    Comment #6916000

    So, question: what sits in memory below the bottom of the framebuffer? It seems like if a sound interrupt occurs while drawing the lowest-address tile, you might corrupt something …

  15. comment
    Comment #6915575

    More and more, like this. In the bad old days, it was more of the latter.

  16. comment
    Comment #6912640

    Do people try and optimize Haskell programs? This is a part of Haskell that terrifies me.

  17. comment
    Comment #6910940

    It's hard to be vulnerable to XSS and CSRF with all-static content, no? So, not only will a trickle DoS other clients, each byte will also force an O(n) traversal of $buf (burning …

  18. comment
    Comment #6910139

    Sure, sometimes they warn about totally valid behaviors. The "all warnings must be fixed" dogma arises not out of the belief that all warnings are errors, but rather that the value…

  19. comment
    Comment #6910126

    The BSD solution to this problem is __DECONST(), a macro which basically casts through `uintptr_t`. #define __DECONST(type, var) ((type)(uintptr_t)(const void*)(var))

  20. comment
    Comment #6910105

    Some of those auto-camera-targetting laser cannons from Pirate Cinema would be awesome.

  21. comment
    Comment #6910053

    Me too. You could probably find a single-threaded, small file benchmark where they compare similarly (or this even compares better — it does almost nothing). But this is not most b…

  22. comment
    Comment #6909884

    Yeah, the problem with OpenConnect is that every time they bump the 'cstub' binary on the cisco remote end, OpenConnect stops working until you grab the new one somehow. ('cstub' i…

  23. comment
    Comment #6908213

    This is not a very fast webserver. Anything using sendfile() and threads/processes will beat it handily.

  24. comment
    Comment #6908149

    This is a simple, single-threaded single-process accept-read-respond-loop web server. It's vulnerable to trivial trickle DoS attacks and probably has other issues. There are no adv…

  25. comment
    Comment #6907531

    Are you kidding me? This is pretty fucking arrogant. My $DAYJOB is FreeBSD kernel hacking. Reusable piped programs are great for some things, especially a productive shell language…