Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
coffeeaddict1
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
coffeeaddict1
8d ago
This has to be one of the most important moments in the history of mathematics. We now have a non-human intelligence capable of solving one of the most difficult problems in mathematics.
2.
▲
NoGraphicsAPI
(github.com)
5 points
by
coffeeaddict1
11d ago
|
0 comments
3.
▲
WindFoil – algorithm for computing winding and anti-aliasing of 2D vector shapes
(github.com)
10 points
by
coffeeaddict1
20d ago
|
1 comments
4.
▲
Scaling Memory Safety: AI-Assisted Rewrites of C/C++ Dependencies to Rust
(bughunters.google.com)
2 points
by
coffeeaddict1
21d ago
|
0 comments
5.
▲
A Tour of Differentiable Rasterization
(srush.github.io)
2 points
by
coffeeaddict1
22d ago
|
0 comments
6.
▲
Warnock: Harnessing GPU geometry amplification for vector graphics
(dl.acm.org)
45 points
by
coffeeaddict1
22d ago
|
4 comments
7.
▲
Carbon memory safety: a first deep dive
(chandlerc.blog)
2 points
by
coffeeaddict1
28d ago
|
1 comments
8.
▲
by
coffeeaddict1
28d ago
Video link: https://drive.google.com/file/d/1tQlzpnbWZfn2WtTFMoJgF93QteB...
9.
▲
Blend2D – High Performance 2D Vector Graphics
(blend2d.com)
2 points
by
coffeeaddict1
1mo ago
|
0 comments
10.
▲
The mathematical beauty of hyperbezier curves
(linebender.org)
4 points
by
coffeeaddict1
1mo ago
|
1 comments
11.
▲
by
coffeeaddict1
1mo ago
This is a beyond remarkable achievement. Finding this lower bound within a few days of prompting is absolutely crazy.
12.
▲
Reducing Graphics API Complexity: A Clean Slate Design for Modern GPUs
(youtube.com)
2 points
by
coffeeaddict1
1mo ago
|
0 comments
13.
▲
Hot Take: LLM can 'jump'
(yongzx.github.io)
4 points
by
coffeeaddict1
1mo ago
|
0 comments
14.
▲
by
coffeeaddict1
2mo ago
No. This is not what I meant. I absolutely agree that std::indirect is an improvement. My point is that when dealing with C++ code, now there is yet another way of doing the same thing. I will have to remember both ways, because people will
15.
▲
by
coffeeaddict1
2mo ago
Because I will still encounter people who use the old of writing pimpl. So I now I'm forced to remember the old way + new way. People aren't magically switching to use std::indirect. I bet that even in 10 years, half of projects w
16.
▲
by
coffeeaddict1
2mo ago
This is actually useful, but despite it is another extra thing you will have to remember when reading C++ code. I guess with LLMs things aren't so bad.
17.
▲
by
coffeeaddict1
2mo ago
> Novel mathematical methods precede their application by at least a decade and widespread use by about a century. This isn't really a good argument. The assumption here is that the "applications" were possible because of
18.
▲
by
coffeeaddict1
2mo ago
For beginners that's irrelevant. WebGPU has more than enough features for beginners to learn about graphics programming. Not just that, once you're used to WebGPU, going to Vulkan will be much easier than the transition from OpenG
19.
▲
by
coffeeaddict1
2mo ago
> The core problem with the modern apis is that they are so incredibly complicated that they will kill any newbie on the spot. I would agree if by modern you mean DX12 or Vulkan, but WebGPU (and maybe even Metal) are quite decent.
20.
▲
by
coffeeaddict1
2mo ago
Honestly, in 2026 I would not really bother with OpenGL. Just start with WebGPU, it's much nicer. You can use it easily on most modern browsers or better can even use native libraries like Dawn or WGPU.
21.
▲
by
coffeeaddict1
2mo ago
> It might then seem reasonable to think that writing with a stylus on an iPad or similar would be best, since no force is needed and friction is minimized. I don’t think this is true. A small amount of friction is actually desirable. I
22.
▲
by
coffeeaddict1
2mo ago
> Has anything really important been solved by AI yet Alphafold essentially solved the protein folding problem and it's arguably one of the biggest (if not the biggest) scientific achievements of the 21st century.
23.
▲
A Cross-Platform Rust UI Framework with Qt
(qt.io)
1 points
by
coffeeaddict1
2mo ago
|
0 comments
24.
▲
by
coffeeaddict1
2mo ago
C++ would also introduce a myriad other subtle safety problems that would require years of expertise to even notice.
25.
▲
We recommend Highway over std::simd
(github.com)
4 points
by
coffeeaddict1
3mo ago
|
0 comments
26.
▲
Semantics for 2D Rasterization
(arxiv.org)
4 points
by
coffeeaddict1
3mo ago
|
0 comments
27.
▲
by
coffeeaddict1
3mo ago
I disagree. Not all skills are useless. For example, I sometime use Qt for GUI projects and I have found their skills [0] very useful to improve the quality and performance of my projects. I their absence, I would each time have to direct t
28.
▲
by
coffeeaddict1
3mo ago
An interesting opinion on this by Chandler Carruth: https://hachyderm.io/@chandlerc/116694268329657881 .
29.
▲
by
coffeeaddict1
4mo ago
This is what you can with Qt: #include <QApplication> #include <QWidget> #include <QPainter> class widget : public QWidget { void paintEvent(QPaintEvent*) override { QPainter(this).drawEllips
30.
▲
by
coffeeaddict1
4mo ago
I use AI mostly to prototype features in my existing projects. If I have an idea, I use the AI to implement it and try out different ways in which it could be implemented. Then I throw away the code and mostly write the code manually, wit
More ›