Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
anonymouscowar1
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
anonymouscowar1
13y ago
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 other con-men; but, it turns out that tha
2.
▲
by
anonymouscowar1
13y ago
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.
▲
by
anonymouscowar1
13y ago
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 being punished by the courts, it's that
4.
▲
by
anonymouscowar1
13y ago
20% (4.8 hrs)? I don't know about you, but for me it's closer to 33%.
5.
▲
by
anonymouscowar1
13y ago
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, anyway.
6.
▲
by
anonymouscowar1
13y ago
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.
▲
by
anonymouscowar1
13y ago
Linux is hard, let's go shopping!
8.
▲
by
anonymouscowar1
13y ago
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 redhat bugzilla to try and motivate them to update package
9.
▲
by
anonymouscowar1
13y ago
Presumably if you want syslogd's features, it's for something other than the text log files (logging to SQL, network logging, ...).
10.
▲
by
anonymouscowar1
13y ago
Can you suggest a good one for Android? I am missing ABP sorely.
11.
▲
by
anonymouscowar1
13y ago
Not if the tax bracket gets lower at 20-50x the median income. Tax brackets should be monotonically increasing.
12.
▲
by
anonymouscowar1
13y ago
> 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 googled it). I'm not very familiar with x86 mneumon
13.
▲
by
anonymouscowar1
13y ago
> 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 packet can contain a single byte.
14.
▲
by
anonymouscowar1
13y ago
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 below there. Edit: Oh! Just got to footnote 2. Thanks, autho
15.
▲
by
anonymouscowar1
13y ago
More and more, like this. In the bad old days, it was more of the latter.
16.
▲
by
anonymouscowar1
13y ago
Do people try and optimize Haskell programs? This is a part of Haskell that terrifies me.
17.
▲
by
anonymouscowar1
13y ago
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 CPU). Granted, buf is only 1000 bytes, but that's
18.
▲
by
anonymouscowar1
13y ago
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 of having compiler warnings catch bugs early is w
19.
▲
by
anonymouscowar1
13y ago
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.
▲
by
anonymouscowar1
13y ago
Some of those auto-camera-targetting laser cannons from Pirate Cinema would be awesome.
21.
▲
by
anonymouscowar1
13y ago
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 benchmarks. Large files or multiple clients will bench this s
22.
▲
by
anonymouscowar1
13y ago
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' is a wonderful program that is downloaded
23.
▲
by
anonymouscowar1
13y ago
This is not a very fast webserver. Anything using sendfile() and threads/processes will beat it handily.
24.
▲
by
anonymouscowar1
13y ago
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 advantages, the author just did this for fun. The TCP part
25.
▲
by
anonymouscowar1
13y ago
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. No, composing processes is not great for all things, and c
26.
▲
by
anonymouscowar1
13y ago
The client side of the VPN is pretty straightforward. It's a closed source program that basically creates a `tun` device. So I run it in a VM so it can't harm my home machine, and just use iptables to route work traffic to it. No
27.
▲
by
anonymouscowar1
13y ago
My company uses a Cisco VPN and Cisco jabber video chat for remote workers. I run the VPN client in an Ubuntu VM on VMware Workstation.