Viewing profile — 1amzave
1amzave
HN member- Joined
- Fri, Jan 22, 2010, 4:20 AM UTC
- HN karma
- 494
- Public activity
- 163 items
- HN profile
- View on Hacker News ↗
About 1amzave
No profile information was provided.
Recent public activity
-
comment
Comment #34408523
If the servers in question happen to be on the list of supported hardware, quite possibly. (I don't know of any up-to-date online list, but running `source setup` in the root of th…
-
comment
Comment #15590077
"The wise man speaks because he has something to say. The fool speaks because he has to say something." (See also: comments by idlewords, pkw2017.)
-
comment
Comment #13092937
Really? If you're going to do that, it seems like you might as well just merge all those users into a single account anyway, considering how trivial it would be for any one of them…
-
comment
Comment #13091025
Until I can, as an unprivileged user, watch my own process's syscalls with dtruss, it's not an alternative to strace. Requiring root is a major hindrance.
-
comment
Comment #12491379
Also (more specifically to one of the given examples), enabling `-A` on all your ssh invocations likewise seems like a pretty bad idea.
-
comment
Comment #12472318
> When using little-endian, you imagine that the bits are in little-endian order, to be consistent with the bytes, and then everything is nice and consistent. But isn't that kind o…
-
comment
Comment #11897809
According to their documented "Current Limitations" ( https://developer.apple.com/library/prerelease/content/docum... ): > Case Sensitivity: Filenames are currently case-sensitive …
-
comment
Comment #11315530
Fails to mention what is in my opinion the most devious, subtle potential pitfall with `set -e`: assigning (or even just a bare evaluation of) an arithmetic zero. `foo=0` won't do …
-
comment
Comment #11148891
While this is a legitimate complaint, it also applies (though in fewer ways) to C. How do you parse this? (x)(y); Is that a call of function (or function pointer) `x` with argument…
-
comment
Comment #11147495
I don't think the problems with that advice are singular. Perhaps the most ultimately-relevant is that looping exactly N times without a "ceremonial" counter is really only very ra…
-
comment
Comment #11036323
Perhaps I should clarify -- I am (happily) not involved in web development, and from the developer's side browsers may very well be in pretty good shape these days (I wouldn't real…
-
comment
Comment #11035837
> For example, "back in the day" browsers sucked, like really bad. I'm reminded of Mitch Hedberg: "I used to do drugs. I still do, but I used to too."
-
comment
Comment #11018096
If I'm reading N1256 right (not sure how far back it actually dates, but that's a C standard draft dated 2007), section 6.7.2.3 also explicitly allows a trailing comma in that cont…
-
comment
Comment #10647314
> So why the quad i7, 32GB RAM, and 480GB SSD? It's right there in your quote: > ...a web browser...
-
comment
Comment #10568162
I'm reminded of an excellent quote from Bertrand Russell: "Everything is vague to a degree you do not realize till you have tried to make it precise."
-
comment
Comment #10521960
Why are they using MIPS as a metric for comparing integer CPU performance? When you're looking at two different compiler backends targeting two (very) different ISAs, it seems pret…
-
comment
Comment #10363356
See other reply: https://news.ycombinator.com/item?id=10363281
-
comment
Comment #10363281
Realistically it's not going to be that simple though. The filesystem proper (e.g. ZFS) may verify checksums when pulling in data from a storage device, but then it's going to sit …
-
comment
Comment #10362776
I think a reasonable argument could be made that if it's in the filesystem it's not end-to-end.
-
comment
Comment #10207078
> I don't get what the word "libre" has with the "great free software nomenclature war" or why that would make people avoid LibreOffice. Personally, I avoid "office suites" in gene…
-
comment
Comment #10195017
Is that really the definitive metric though? Seems like you'd want to compare overall program-text size between equivalent binaries for x86[-64] and $otherarch (i.e. x86 may be abl…
-
comment
Comment #10187274
Neat...and on a somewhat similar note (bash enable -f hacks), some bash FUSE bindings I wrote a few years back: https://github.com/zevweiss/booze I initially wrote it basically jus…
-
comment
Comment #10151294
Looks neat, though I can't help but wonder if you'd be better off with DRBD (run it disconnected by default, then just connect and let it sync naturally when you feel like it).
-
comment
Comment #9673878
I haven't actually used it myself and am certainly willing to believe it's immature, but how do you mean it has "little in common with RCU"? Comparing personnel between that librar…
-
comment
Comment #9673474
Yes, this essentially just a form of RCU. Note however that RCU isn't just for the kernel anymore though: http://urcu.so/