Viewing profile — RustyRussell
RustyRussell
HN member- Joined
- Fri, May 20, 2011, 2:27 AM UTC
- HN karma
- 1,376
- Public activity
- 283 items
- HN profile
- View on Hacker News ↗
About RustyRussell
Recent public activity
-
comment
Comment #49142559
Always use -Wundef. For CCAN all config vars use #if and we lint for ifdefs of them, because you have to pick a side here, and sometimes using HAVE_X in C code is useful, so I pref…
-
story
Show HN: Great Spectations, the Spec Checker
I've worked on several projects writing and implementing specifications (particularly CLN): I've found the specs I write are much better when I quote them in the implementation, so…
-
comment
Comment #49117841
How embarrassing! It's greatspectations.org not .com! And I can't edit the URL. Thanks, I will resubmit, and let's pretend this never happened? Eeek...
-
story
Show HN: Great Spectations, the Spec Checker
I've worked on several projects writing and implementing specifications (particularly CLN): I've found the specs I write are much better when I quote them in the implementation, so…
-
comment
Comment #48772590
Nobody who would code this up would be entirely sane. But I can't help thinking "these are my people" when I read this...
-
comment
Comment #48740998
I hacked up a (not SMP-safe!) compressed loopback driver for a now-forgotten startup's "bootable business card" rescue disk. Over a year later I received an email from someone want…
-
comment
Comment #48685440
Um, the Linux Foundation is an industry body, not a user or community group. You seem confused?
-
comment
Comment #48538025
Yeah, but there's little culture of actually taking that time.
-
comment
Comment #48420803
It seems that wasn't the Claude part, though I haven't seen a full analysis of exactly what broke. I also only saw one report: are there multiple, or do you just perceive that? Rsy…
-
comment
Comment #48419628
For those commenting, I suggest you read the post linked by the rsync author: https://medium.com/@tridge60/rsync-and-outrage-d9849599e5a0 (Disclosure: while I haven't talked with h…
-
comment
Comment #48344354
I'm shocked that people are jumping on one of the most productive and powerful OSS maintainers in existence. The actual Claude "churn" is mainly test suite enhancement.
-
comment
Comment #47929220
"where intellectual property is not respected" This suggests to me the underlying concern is "but I won't get paid for my craft!". Hell hath no fury like a vested interest masquera…
-
comment
Comment #47906952
I agree: fork is fast, cheap and easy. If you're spawning something for significant work it tends to be in the noise. Linux kernel uses 8k stacks (TBH, it's been a while), but ther…
-
comment
Comment #47702825
Adam is not Satoshi. In early days of Blockstream I remember him and Greg Maxwell spitballing ideas about Bitcoin, and he was clearly intellectually feeling out the constructions a…
-
comment
Comment #47632993
As with many comments here: use a build-time assertion that the system is little-endian, and ignore it. Untested code is broken code . I was at IBM when we gave up on big endian fo…
-
comment
Comment #47482321
In the small, it's still a meritocracy. A patch like this is obviously correct and I expect to get in first try (maybe with a formatting fix by the maintainer). For large works, th…
-
comment
Comment #47303069
I share this frustration, but a downvote is probably a better reaction than a reply here.
-
comment
Comment #46928987
You're writing this from a dystopian future where punctuation is banned? :) For those like me who still require parsing assistance : - We are Bob - Red Rising - Murderbot
-
comment
Comment #46486139
On the other hand, I once implemented something to be told later it was novel and probably the optimal solution in the space. An AI might be more likely to find it...
-
comment
Comment #46426835
I'm thinking early April?
-
comment
Comment #45874143
A goid friend of mine worked on decimal floating point for IBM Power chips (I think it was Power 7 which had hardware support). Anyway, he insisted on calling it just "Decimal Floa…
-
comment
Comment #45456401
I want signal to act as a transport bus. In particular, I want to give certain contacts permission to ask my phone for its location, so I can give my wife that ability without shar…
-
comment
Comment #45001774
I want to implement this. My code is in C. How does this help me check my implementation? I guess I could ask ChatGPT to convert your tests to my code, but that seems the long way …
-
comment
Comment #44999865
Did anyone else find the use if ABNF annoying? unicode-assignable = %x9 / %xA / %xD / ; useful controls %x20-7E / ; exclude C1 controls and DEL %xA0-D7FF / ; exclude surrogates %xE…
-
comment
Comment #44664307
Andrew Tridgell's KnightCap did this differently: it's a network chess server, and it would dump its data to a file and re-exec. The trick here is that it would keep the (network) …