Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
iTokio
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
iTokio
6d ago
The trillon dollars question is more, will the current GPUs still be relevant in 3 years? 5? 10? Will incredibly efficient new GPUs appear? will custom ASIC, models burned in silicons, take off? Will unified memory systems become usable? Th
2.
▲
by
iTokio
10d ago
Type confusion, leads to using an object in memory with the wrong type, that means accessing memory with a different layout, like an out of bounds buffer. So I think memory safety does matter in that case.
3.
▲
by
iTokio
15d ago
Thank you, I will watch these interviews!
4.
▲
by
iTokio
16d ago
It’s like principal component analysis, the main axis, I don’t mean reduction in a negative way.
5.
▲
by
iTokio
16d ago
Numbers Algebra Geometry Probability Analysis Dynamics I loved this talk, but these concepts are like an attempt at dimensional reduction of math research, science, the academics knowledge. I would have loved to have his thoughts on the mat
6.
▲
by
iTokio
20d ago
It’s fascinating to live through a the emergence of a new technology and to see people trying to make sense of it as they go. I personally think that a lot of the words used around AI, harness, SKILLS, agents, RAG.. are make up words or clo
7.
▲
by
iTokio
1mo ago
I love to combine assertions with « restartability ». If you’re program has entered an unknown, failed state, just restart it from a known state. Even better if you can divide a complex system in sub modules that can recover independently w
8.
▲
by
iTokio
2mo ago
That’s a hn filter to avoid clickbait titles I think
9.
▲
by
iTokio
3mo ago
It’s also an old devops trick to put some GB files on the FS of critical systems (databases, ..) when there are no way to dynamically add more space/volumes and monitoring is not trusted. Bit hard to explain though.
10.
▲
by
iTokio
3mo ago
That’s a good point. Usually when people say to prefer composition over inheritance, that does not apply to the inheritance found in GUI, but as an alternative way to share behaviors as a property, « has a » instead of « is a », like has a
11.
▲
by
iTokio
3mo ago
I did have a look at bevy ECS approach and find it very verbose and really foreign, it’s in « not rust anymore» territory. Macros are a dangerous tool in terms of long term maintainability and are hurting compilation times. But it’s still r
12.
▲
by
iTokio
3mo ago
I almost never use inheritance beside using some kind of interfaces/traits to declare a contract. However, the only time where I’m missing code/data reuse through inheritance is with GUI. Some mostly flat hierarchies of widgets ar
13.
▲
by
iTokio
4mo ago
No, IPO pops, and honey moon periods are common. And there are plenty of ways to manipulate the price, such as issuing a low float to a hyper hyped stock..
14.
▲
by
iTokio
4mo ago
Feature flags are often ridiculously over engineered. Check a config, bdd value, env var to dynamically go one path or the other. That’s all, you must either have a small feature or refactor the code to easily switch at a high level. If you
15.
▲
by
iTokio
4mo ago
Well, maybe for simple web apps, but for complex applications there is a noticeable slowdown, I am not even talking about monsters such as jira, but well optimized apps such as vs code, there is a performance ceiling which is lower than for
16.
▲
by
iTokio
4mo ago
On complex problems with lengthy proofs, the first step that I would have done is to ask 5.5 pro in a new, unrelated, session, to be very critical, to try to find flaws in the arguments. And certainly not to send it to a fellow colleague to
17.
▲
by
iTokio
5mo ago
The most interesting exchange, related to disclosure, is this one: https://www.openwall.com/lists/oss-security/2026/05/01/3 > Nope, sorry, we are NOT allowed to notify anyone about anything "
18.
▲
by
iTokio
7mo ago
Indeed, but the author left a note: > there are newer GPU-accelerated font rendering systems that use the vectors. I have not yet explored these.
19.
▲
by
iTokio
9mo ago
That’s because React started as a small, focused library and evolved as even more than a framework, a whole ecosystem, complete with its own best practices
20.
▲
by
iTokio
9mo ago
You just have to read his blog, it is short and he answered everything. > he used python and xelatex > https://github.com/ttmc/hello-world-ways
21.
▲
by
iTokio
1y ago
OpenAI definition: > a highly autonomous system that outperforms humans at most economically valuable work
22.
▲
by
iTokio
1y ago
Mounting Volume and dealing with FS permissions. They are many different workarounds but it’s a known pain point.
23.
▲
by
iTokio
1y ago
That’s very interesting, but as a counter point, it seems that the major spain blackout was partially caused by such a voltage increase that was not mitigated properly. So yes there are mitigations but it still is a major cause of concern I
24.
▲
by
iTokio
1y ago
Well yes, but this is not a competing technology but a complementary one. You can use this to improve the efficiency of a regular solar panel and as a way to still produce electricity when there is less direct light but enough temperature d
25.
▲
by
iTokio
1y ago
Cars are an obvious application. Some parts get very hot, and any electricity produced without engine or fuel add to range / efficiency.
26.
▲
by
iTokio
1y ago
Yes I wonder if with the current trend, solar might become the real alternative, less expensive, less risky. But to be fair, you have to consider your « aside », because nuclear has the tremendous advantage of working when it’s cloudy, dark
27.
▲
by
iTokio
1y ago
Sorry I didn’t mean implementing a raw http server like nginx, but just writing a backend.
28.
▲
by
iTokio
1y ago
Go has transparent async io and a very nice M:N threading model that makes writing http servers using epoll very simple and efficient. The ergonomics for this use case are better than in any language I ever used.
29.
▲
by
iTokio
1y ago
You can can also run a detailed explain plan and with a suitable visualizer it’s trivial to see where the query fell apart. You get to see the actual data distribution this way.
30.
▲
by
iTokio
1y ago
K3s is light in terms of resources, but heavy in operational complexity, I’m not looking for a smaller version of kubernetes but for a simple way to run container backed services when you’re not google but a small company, something that ha
More ›