Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
yuriks
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
1.
▲
by
yuriks
13d ago
This feature seems really valuable for commandline tools! However this paragraph gave me pause: > Currently, disabling lazy imports disabled the syntax keyword, which means that you can’t use it for circular imports, type checking, etc.
2.
▲
by
yuriks
14d ago
Embassy can (these days, not sure if this is more recent than the article) do preemption, but it works by setting up multiple task pools and executors for each priority level: https://docs.embassy.dev/embassy-executor/g
3.
▲
by
yuriks
22d ago
> it's also the sort of condition that might sometimes has an instant miracle cure I assume that by this you mean figuring out some kind of dietary restriction? I also struggle with a lot of those things (also ADHD) plus other infla
4.
▲
by
yuriks
2mo ago
My read of the "side projects and experiments" part of the blog post is that, in the context of LLM projects , if your project does not use resources and isn't looking to attract a community then, if only due to the practica
5.
▲
by
yuriks
4mo ago
I think more to the point, if 0 doesn't represent 0.0, and 255 doesn't represent 1.0, congratulations you've just lost your additive and multiplicative identities and most of the math used in colors falls apart. The argument
6.
▲
by
yuriks
4mo ago
Both types have the `From` conversion traits implemented between each other, so in most cases interoperating with APIs using the old type should be as simple as doing `(1...4).into()`. And, probably because of the warts of the old types, I
7.
▲
by
yuriks
4mo ago
That's part of the error enum. enum AllocError { SizeTooLarge { size: usize }, // etc. } This enum has a known size and doesn't require any dynamic allocations.
8.
▲
by
yuriks
4mo ago
I mean, yeah, that was the point of my original reply: health care, education and housing have been getting less accessible in general, not just that poster's country. (Or wherever they're from. I checked the comment history and i
9.
▲
by
yuriks
4mo ago
I don't have concrete metrics/sources to give right now, but my general perception from reading the news is that there's been staffing issues pushing healthcare systems in the US towards increasing workloads in individual pro
10.
▲
by
yuriks
4mo ago
Health care, education and housing have been getting worse and more expensive in the US over the decade also. Must be all that nationalization.
11.
▲
by
yuriks
4mo ago
In what ways do version pining/lockfiles not solve this problem?
12.
▲
by
yuriks
5mo ago
I love corruption!
13.
▲
by
yuriks
6mo ago
No, they're implying that you need a lot of coins to pay for parking. If you need $6 to pay for parking, and the largest commonly available coin is a quarter, that means you need 24 coins to pay. If the value of currency was such that
14.
▲
by
yuriks
9mo ago
Games are not fungible.
15.
▲
by
yuriks
9mo ago
> Is this actually useful in practice? It's required to do any intialization, particularly for compound futures (e.g. a "join" or "select" type of combinator), since you need to be able to move the future from wh
16.
▲
by
yuriks
9mo ago
For 1, I think it's hard to make a distinction between swapping an object, vs. swapping/mutating all of its fields such that it becomes equivalent to a different object. For 3, some objects only need to be pinned under certain cir
17.
▲
by
yuriks
9mo ago
People aren't complaining about that. What you do in the privacy of your own computer is only your problem. The issue is people pouring a whole "arduous" 2 hours into vibecoding a project, then advertising it and posting to c
18.
▲
by
yuriks
9mo ago
This post mirrors my sentiment and the reasons I dislike these sorts of "projects" much more closely than the main site does, deserved to be the main submission, in retrospect.
19.
▲
by
yuriks
9mo ago
The author of the patch does mention that the better thing to do in the long run is to replace the data structure with one that is possible to better encapsulate: https://lore.kernel.org/all/20251111-binder-fix-list-rem
20.
▲
by
yuriks
9mo ago
I thought that the implication was that the shader compiler produces a second shader from the same source that went through a dead code elimination pass which maintains only the code necessary to calculate the position, ignoring other attri
21.
▲
by
yuriks
9mo ago
I was lost when it suddenly jumped from a long retrospective on GPUs to abruptly talking about "my allocator API" on the next paragraph with no segue or justification.
22.
▲
by
yuriks
9mo ago
A 'static lifetime does not live for the rest of the program. It rather is guaranteed to live for as long as anyone is able to observe it. Data allocated in an Rc for example, lives as long as there are references to it. The ref count
23.
▲
by
yuriks
9mo ago
That is not a memory leak though! That's using/exposing an uninitialized buffer, which can happen even if you allocate and free your allocations correctly. Leaking the buffer would prevent the memory region from being allocated by
24.
▲
by
yuriks
9mo ago
...yes?
25.
▲
by
yuriks
9mo ago
Needs a (2020) in the title. I don't think anything major is outdated, but in particular in section 10, one of the desired syntaxes is now supported as an unstable feature but there wasn't any mention of that: #![feature(clo
26.
▲
by
yuriks
10mo ago
And after digging through the comments... Yup it's private equity again. PE buyouts should be considered criminal fraud.
27.
▲
by
yuriks
1y ago
The world today is just crooks all the way down (or up, depending on how you look at it).
28.
▲
by
yuriks
1y ago
It relaxes the contract required for an existing type with derive(Clone) to implement Clone, which might allow types in existing code to be cloned where they couldn't before. This might matter if precluding those clones is important fo
29.
▲
by
yuriks
1y ago
The rules for what locations/checks can be reached in what situations and with what items are painstakingly encoded in a machine readable format: https://github.com/OoTRandomizer/OoT-Randomizer/tree/Dev&#
30.
▲
by
yuriks
1y ago
Ironically, testosterone in theory is harder to get. Since it is widely used for sports doping, it's considered an anabolic steroid, and is a scheduled substance in the US, and so has a bit more oversight to prescribe and dispense. (
More ›