Viewing profile — codyps
codyps
HN member- Joined
- Wed, May 01, 2013, 11:29 PM UTC
- HN karma
- 51
- Public activity
- 33 items
- HN profile
- View on Hacker News ↗
About codyps
No profile information was provided.
Recent public activity
-
comment
Comment #14942176
When drives are never replaced, yes. In the case where the chassis lasts longer than the drives (which I'd imagine is often), extra cost in drives adds up.
-
comment
Comment #14728541
The idea with having eBPF in the kernel is that we can limit the amount of trust given to a particular user-space task. Accepting compiled stuff in the form of a kernel module requ…
-
comment
Comment #14178667
`alloca` is a simple addition to the stack pointer, so a single instruction, presuming it isn't folded into the normal bump of the stack pointer to allocate the fixed size local va…
-
comment
Comment #13816943
So the only things I'm seeing in the linked circonus code that differ from illumos: 1. no use of a kernel supplied page, determines skew/etc itself in userspace 2. stores informati…
-
comment
Comment #13816483
For those actually curious about the implementation on solaris/illumos, heres a quick rundown (from looking at current illumos source): - comm_page (usr/src/uts/i86pc/ml/comm_page.…
-
comment
Comment #13669574
I end up using it when fixing up local changes which had broken due to upstream modifications. It's generally not seen as very good to send things upstream that conflict with exist…
-
comment
Comment #13639039
A bit clearer with the full quote: > Although limiting liability online was intended to protect sites hosting digital content, it carried over to service platforms
-
comment
Comment #13019173
distcc is not a cache. It doesn't keep the output of the compiler around after it builds things. It (only) distributes running the compiler around (and to do that handles some deta…
- comment
- comment
-
comment
Comment #12623733
There is a per-user limit to the number of inotify handles available (max_user_watches) and the default value is 8192. The limit exists because there is a ~1KiB kernel memory overh…
-
comment
Comment #12623681
regarding "out of tree": I'm not quite sure about your explanation here (just looks like a list of source files), but presuming you mean "creates output files in a seperate directo…
-
comment
Comment #11228483
The author also doesn't cover autoconf/automake, which operates in the same vein as cmake (generating files for use by another build tool). I agree, it would be useful to evaluate …
-
comment
Comment #11228477
ninja? tup? Article doesn't note the property of being able to depend upon the entire command that generates an output (ie: re-generate when compiler flags change). This is somethi…
-
comment
Comment #11056802
Well, the front page did recently have people complaining about a bunch of paid products (github, twitter, everything IBM does). I'd expect us to treat open source projects like an…
-
comment
Comment #11056767
iirc, apt has support for it (it will only download a single thing at a time from a given host, but does appear to download different things from different hosts at the same time).…
-
comment
Comment #11056759
I don't think it would be. Parallel downloads would simply mean that more of the client's bandwidth is consumed by connecting to multiple mirrors at once. Each individual mirror wi…
-
comment
Comment #11050378
I was interested in your comparison in #1, wrt "HN community overreacted". I've been searching through old HN stories about Eich, but can't seem to find any where the comments gene…
-
comment
Comment #10408992
I believe the key phrase is "being used by". If they weren't reporting it, they could use the stronger "being reported to Google Analytics". Or "being collected by". Also note that…
-
comment
Comment #10095660
I wonder if anyone has submitted patches to dbus-daemon adding support for non-systemd "daemon managers". If the article is to be believed it should be really easy. Maybe that coul…
-
comment
Comment #9729487
Now we just need branch restricted keys & keys that aren't allowed to force push (both of these would make me feel a lot better about using certain 3rd party automation in combinat…
-
comment
Comment #9729486
Now we just need branch restricted keys & keys that aren't allowed to force push (both of these would make me feel a lot better about using certain 3rd party automation in combinat…
-
comment
Comment #9117097
Competitive pressure isn't just useful for commercial projects, it is also useful for open source projects.
-
comment
Comment #8860953
I don't understand why you need a bootstrap toolset in C. Does go not support being cross compiled/cross compiling?
-
comment
Comment #8791111
FYI: git supports rewrites to the implicit root commit with `git rebase --root` (and similar), there isn't a need for an extra empty commit.