Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
fweimer
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
8 ms
·
1.
▲
by
fweimer
3d ago
I expect that UD2 stops instruction fetching (beyond the current block) and conversion to µops. A software interrupt or supervisor call should probably do neither because most of the time, these instructions eventually return and continue e
2.
▲
by
fweimer
6d ago
The leakage wouldn't be from training, but from other uses of Personal Data. As far as I understand it, users can opt out from the training aspect, but they cannot stop their conversations (“User Content”) being used “[t]o improve and
3.
▲
by
fweimer
9d ago
If it actually exists, the protection would like go into the other direction: prevent playback of arbitrary MIDI files on the digital piano, instead of protecting the MIDI data against playback on other devices.
4.
▲
by
fweimer
10d ago
Public email and IRC archives/logs usually work just fine without Javascript.
5.
▲
by
fweimer
11d ago
ihtabs preserve iteration order and have performance competitive with swiss tables (while not requiring as high a load factor): https://github.com/vnmakarov/ihtab
6.
▲
by
fweimer
15d ago
As far as I understand it, the other efforts have not reported most of their findings to upstream developers, focusing on critical findings only. This is understandable because upstream interactions at scale are difficult.
7.
▲
by
fweimer
18d ago
It's still beneficial on some x86-64 implementations to rewrite indirect jumps (as used in PLT stubs) to direct jumps when feasible. For example, AMD says this about the Zen 4 architecture: > Only a limited number of indirect target
8.
▲
by
fweimer
19d ago
Why do you think these volunteers supported the attack? I don't think there's a published statement to the effect. Even the U.S. government does not claim that (at least not in its written communication). The perpetrators very lik
9.
▲
by
fweimer
19d ago
> It doesn’t fully explain why Congress has allowed the expansion of executive power for nearly a century, resulting in more and more major issues being pushed to the Supreme Court. It's not just about executive power. In recent tim
10.
▲
by
fweimer
19d ago
The TUI version of Claude Code just isn't very good, though. The default keybindings do not work in the majority of terminals (because they generate the same byte sequences for key sequences assigned to different commands). Editing lar
11.
▲
by
fweimer
19d ago
These builtins of course exist, it's how compilers keep track of the behavior of these functions. For GCC, there is -minline-all-stringops: https://gcc.gnu.org/onlinedocs/gcc-16.2.0/gcc/x86-Options.ht...
12.
▲
by
fweimer
20d ago
Cases are infrequent, but not extremely unlikely. There's even a term for it, airport malaria: https://www.eurosurveillance.org/content/10.2807/1560-7917.E...
13.
▲
by
fweimer
25d ago
Are you sure this is actually makes a difference in your build? Mine doesn't have the SB-INTERPRETER package, so I doubt binding the variable has an effect.
14.
▲
by
fweimer
25d ago
Compiling to bytecode is still compilation. An interpreter would operate directly on the S-expressions. Obviously, this makes some constructs (such as TAGBODY) very inefficient.
15.
▲
by
fweimer
25d ago
But 2 isn't a list, and the argument to unqoute-splicing must be a list: > If an (unquote-splicing <expression> ...) form appears inside a <qq template>, then the <expression>s must evaluate to lists; the opening a
16.
▲
by
fweimer
25d ago
Isn't at least one of them undefined? `(1 ,@2) It's always surprising to me how many things Scheme leaves undefined. Other examples are evaluation order (in some rather surprising places) or the value of: (make-bytevector 4)
17.
▲
by
fweimer
25d ago
I wonder what the intent is behind releasing the weights under a CC-BY-NC license. Is it about restricting any commercial use of the weights, including for inference?
18.
▲
by
fweimer
25d ago
Not in typical builds of SBCL: all code is compiled before evaluation.
19.
▲
by
fweimer
1mo ago
I think we'd need something different to make that a reality today. It's likely that decentralized compute eventually wins out here as well. It usually does. But without architectural changes, it will take a couple of years before
20.
▲
by
fweimer
1mo ago
Centralized inference can easily increase batch size, leading to huge efficiency gains in the usual scenario where most users have just one or very few session. Using local resources efficiently requires some way to increase the batch size.
21.
▲
by
fweimer
1mo ago
This is the relevant law: https://www.buzer.de/8_TDDDG.htm (It used to be §90 TKG.) It's specifically about bug-like devices which transmit the recording. A typical consumer camera does not provide simultaneous uploadi
22.
▲
by
fweimer
1mo ago
There are far more cases. Some ABIs use callee-saved registers for parameter-passing under certain circumstances, for example. Usually, there are compatibility restrictions on the signatures of the current and tail-called functions beyond t
23.
▲
by
fweimer
1mo ago
It's not really about a monorepo, but how many changes you can have in flight in parallel. Desirability of merge-and-rebase-and-check depends on more factors: the rate of change, the number of developers, the time the pre-merge checks
24.
▲
by
fweimer
2mo ago
> interfaces still can’t declare type-parameterized methods What would an implementation look like? Wouldn't it be quite different from the existing one because it has to rely heavily on indirection because (limited) monomorphimizat
25.
▲
by
fweimer
2mo ago
I can see it happening if people start depending AI-generated proof libraries for the work they are interested in. Not because the libraries are proprietary, but because they are impenetrable. AI usage wouldn't result in this directly,
26.
▲
by
fweimer
2mo ago
I remember enhancing the F-PC visual editor to display the checksum for the current line because I did not have access to whatever method the magazine recommended (maybe OCR with Logitech Scanman?).
27.
▲
by
fweimer
2mo ago
Recent glibc uses the correctly rounded tanh from CORE-MATH, so it returns different values than what's quoted in the article. It's unclear today if it's possible to achieve reasonable performance for other transcendental fun
28.
▲
by
fweimer
2mo ago
There's Naïve Bayes (although it's sometimes labeled in more explicit terms). The problem with “unconventional” is that these works are anything but. As far as I can tell, the most of the paintings presented on the site follows a
29.
▲
by
fweimer
2mo ago
It's still bad for emergency services if everyone does it on the same day.
30.
▲
by
fweimer
3mo ago
We have plenty of functions that convert one byte array to another byte array. Both arrays have specified bounds. The functions are total (an error return indicates if the input or output arrays are incomplete). Most of them do not even hav
More ›