Viewing profile — anonymouscowar1
anonymouscowar1
HN member- Joined
- Sat, Dec 14, 2013, 7:59 PM UTC
- HN karma
- 64
- Public activity
- 27 items
- HN profile
- View on Hacker News ↗
About anonymouscowar1
No profile information was provided.
Recent public activity
-
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…
-
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.
-
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 …
-
comment
Comment #7045133
20% (4.8 hrs)? I don't know about you, but for me it's closer to 33%.
-
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…
-
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?
-
comment
Comment #6921901
Linux is hard, let's go shopping!
-
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…
-
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, ...).
-
comment
Comment #6921813
Can you suggest a good one for Android? I am missing ABP sorely.
-
comment
Comment #6921396
Not if the tax bracket gets lower at 20-50x the median income. Tax brackets should be monotonically increasing.
-
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…
-
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…
-
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 …
-
comment
Comment #6915575
More and more, like this. In the bad old days, it was more of the latter.
-
comment
Comment #6912640
Do people try and optimize Haskell programs? This is a part of Haskell that terrifies me.
-
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 …
-
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…
-
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))
-
comment
Comment #6910105
Some of those auto-camera-targetting laser cannons from Pirate Cinema would be awesome.
-
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…
-
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…
-
comment
Comment #6908213
This is not a very fast webserver. Anything using sendfile() and threads/processes will beat it handily.
-
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…
-
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…