Viewing profile — plq
plq
HN member- Joined
- Fri, Apr 02, 2010, 8:51 PM UTC
- HN karma
- 1,366
- Public activity
- 408 items
- HN profile
- View on Hacker News ↗
About plq
Recent public activity
-
comment
Comment #48501484
With Gerrit, you have the patch that lands on master and then you have the stages that that patch went through to get to that point, reviews on older versions of the patch, etc. al…
-
comment
Comment #48501349
I don't get this. No I did not write that code but I paid money to eg. Anthropic to buy that code. To me it sounds like I own it just the same.
-
comment
Comment #47573475
ninja supports separate build groups and different max number of parallel jobs for each. CMake's ninja generator puts compilation and linking steps in their own respective groups. …
-
comment
Comment #47074544
Certificates need expiration dates to be able to garbage collect certificate revocation lists.
-
comment
Comment #46495266
Sure but you have to learn to use it. I'm saying that just have AI generate a SvelteKit project instead and you'll get better mileage out of it.
-
comment
Comment #46491379
My impression is that tools that grew complex only because they want to serve every use case under the son got obsoleted by AI, and static site generators like Hugo are a good exam…
-
comment
Comment #46270828
Type inference is when you try to infer a type from its usage. ``auto`` does no such thing, it just copies a known type from source to target. Target has no influence over source's…
-
comment
Comment #46030808
ICE meaning in-circuit emulator in this instance, I assume?
-
comment
Comment #45832758
The (non-existing) license doesn't say it was to be "published in the web"
-
comment
Comment #45559016
> What's stopping the rogue node from saving all your stuff forever? Nothing. You must always have this in mind when posting online: It's impossible to ensure that data is deleted …
-
comment
Comment #44606142
> Again, this just isn't true. Again, it just is true. More fs-related operations mean less kthreads available for others . More syscalls means more OS overhead. It's that simple.
-
comment
Comment #44605841
More system calls mean more overall OS overhead eg. more context switches, or as you say more contention on internal locks etc. Also, more fs-related system calls mean less availab…
-
comment
Comment #44605281
%70 faster = you wait less 35x less system calls = others wait less for the kernel to handle their system calls
-
comment
Comment #44551006
Ursula K. Leguin has a thought-provoking piece in this vein about why she wrote sci-fi: https://web.archive.org/web/20191119030142/http://theliterar... EDIT: Here's a better link: …
-
comment
Comment #44549294
Man, I loved Neuromancer when I read it as a kid. Yes, it's a tough book to read, especially today where there are too many distractions as well as too many works of art built on t…
-
comment
Comment #44535873
> the lack of standardization for name-mangling I don't see the point of standardizing name mangling. Imagine there is a standard, now you need to standardize the memory layout of …
-
comment
Comment #44423038
> So whilst the result isn't a direct multiplication it should still be an acceptable use since the resulting code will actually be doing multiplications. First, nope, if it's not …
-
comment
Comment #44420761
This line is part of the code that creates an AST-like structure that is then fed into the compiler. The actual multiplication is done by calling the function handle returned from …
-
comment
Comment #44318405
When implementing the lock-free stuff, was portability (across processors) a goal? If yes, did you have to deal with anything specific? Do you notice any difference in behavior of …
-
comment
Comment #44288029
AFAICT the consensus is to say that an uninitialized variable (eg. int i;) has "garbage value". I'd say it's rather a technical term than profanity.
-
comment
Comment #44284357
Unless you mutter the magic incantation "C compatibility" while doing it
-
comment
Comment #43873251
"Force" upgrades? What do you mean?
-
comment
Comment #43819349
https://explainxkcd.com/3081
-
comment
Comment #41281214
Quote from that thread: > It can be added in theory, but there would be certain problems. Like said earlier codec frame access is very problematic (I, P and B frames), because in w…
-
comment
Comment #41210628
To my knowledge, meili is free software (MIT license) so theoretically, it should be possible to embed it to an IOS app.