Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
plq
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
plq
3mo ago
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. all recorded in the web interface. So maybe just switch to a c
2.
▲
by
plq
3mo ago
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.
3.
▲
by
plq
6mo ago
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. End result is by default `nproc` parallel jobs for comp
4.
▲
by
plq
7mo ago
Certificates need expiration dates to be able to garbage collect certificate revocation lists.
5.
▲
by
plq
9mo ago
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.
6.
▲
by
plq
9mo ago
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 example. Today, if I were setting up a blog to host just some te
7.
▲
by
plq
9mo ago
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 type. https://news.ycombinator.com/i
8.
▲
by
plq
10mo ago
ICE meaning in-circuit emulator in this instance, I assume?
9.
▲
by
plq
11mo ago
The (non-existing) license doesn't say it was to be "published in the web"
10.
▲
by
plq
11mo ago
> 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 and gone forever.
11.
▲
by
plq
1y ago
> 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.
12.
▲
by
plq
1y ago
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 available kernel threads to process these system calls. eg. XFS can
13.
▲
by
plq
1y ago
%70 faster = you wait less 35x less system calls = others wait less for the kernel to handle their system calls
14.
▲
by
plq
1y ago
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: https://
15.
▲
by
plq
1y ago
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 the sci-fi ideas of that era. Neuromancer is the first i
16.
▲
by
plq
1y ago
> 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 every single class found in the standard library. Wi
17.
▲
by
plq
1y ago
> 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 multiplication it should not be using the * ope
18.
▲
by
plq
1y ago
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 the Compile method.
19.
▲
by
plq
1y ago
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 correct implementations when ran on different processors? Ho
20.
▲
by
plq
1y ago
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.
21.
▲
by
plq
1y ago
Unless you mutter the magic incantation "C compatibility" while doing it
22.
▲
by
plq
1y ago
"Force" upgrades? What do you mean?
23.
▲
by
plq
1y ago
https://explainxkcd.com/3081
24.
▲
by
plq
2y ago
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 worst case scenario you have to decode about 248 sequentia
25.
▲
by
plq
2y ago
To my knowledge, meili is free software (MIT license) so theoretically, it should be possible to embed it to an IOS app.
26.
▲
by
plq
2y ago
Why not?
27.
▲
by
plq
2y ago
What if there were a standard <BlogEntry> object that everybody rendered to their taste? To some, these are nice features, to others it's just bloat that causes a 5mb download for 1kb of text.
28.
▲
by
plq
2y ago
They have a computation to do, and they want to do it using a particular instruction. That's the only reason they are fiddling with the compiler. You would have to do so too, if you had decided to solve a problem at hand using a simila
29.
▲
by
plq
2y ago
> The whole idea of the internet (and even some of our infra, like suburbs or highways/rail) is that there's no one single point of failure. Like designed-to-survive-nuclear-war redundant. Sure, the routing algorithms can quick
30.
▲
by
plq
2y ago
Sqlite calls this an "amalgamation" build Details here: https://sqlite.org/amalgamation.html It's also touted as an easy way to embed sqlite.
More ›