Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
ThierryBuilds
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
Rapid: Property-Based Testing for Go
(github.com)
1 points
by
ThierryBuilds
5mo ago
|
0 comments
2.
▲
Basic C programming facts worth knowing
(buildsoftwaresystems.com)
1 points
by
ThierryBuilds
6mo ago
|
0 comments
3.
▲
by
ThierryBuilds
7mo ago
What really enabled Python to spread so much into scientific computing and AI is C/C++. Most if not all performance critical libraries are not really Python. They just expose a Python API
4.
▲
by
ThierryBuilds
7mo ago
I spent some time digging into the internal mechanics of process creation. It's one thing to call gcc or click 'Run', but I wanted to document the actual transition from a static binary on disk to the memory layout of a live
5.
▲
A Program Binary Becomes a Running Process
(buildsoftwaresystems.com)
2 points
by
ThierryBuilds
7mo ago
|
1 comments
6.
▲
by
ThierryBuilds
7mo ago
That is the only way to represent the empty slice (similar to &s[10..10]). Interesting though to see how LLMs are fooled by that edge case.
7.
▲
The friction between AI coding agents and developer flow
(medium.com)
1 points
by
ThierryBuilds
7mo ago
|
0 comments
8.
▲
by
ThierryBuilds
8mo ago
A human will still be needed to review the AI generated PR, no?
9.
▲
by
ThierryBuilds
8mo ago
I never had similar bug caused by hardware or compiler issue. But I had cases where I thought it could be the compiler. This article shows that those cases are possible, even though they are very rare.
10.
▲
by
ThierryBuilds
8mo ago
Which book is presented in the article?
11.
▲
by
ThierryBuilds
8mo ago
Then why is there a need for a developer, that supposedly writes poorer code, to check it?
12.
▲
Proptest: Property-based testing for Rust (inspired by Hypothesis)
(github.com)
3 points
by
ThierryBuilds
8mo ago
|
0 comments
13.
▲
by
ThierryBuilds
8mo ago
Do AI really write better React/JSX than devs?
14.
▲
by
ThierryBuilds
8mo ago
The article is not only about security. Thanks
15.
▲
by
ThierryBuilds
8mo ago
Agreed. Beyond security, we must consider other critical factors such as cost, ease of maintenance, and operational overhead.
16.
▲
by
ThierryBuilds
8mo ago
Thanks for the feedback. These are typical use cases where the convenience of higher level abstractions may be less important than the benefits of direct access to the hardware.
17.
▲
by
ThierryBuilds
8mo ago
Thank you for the feedback. I will definitely add them as example solutions for serverless.
18.
▲
by
ThierryBuilds
8mo ago
I wrote this because I kept seeing developers (myself included) confuse language-level isolation like Python venv with OS-level isolation like Docker. I wanted to trace the actual technical boundaries between them. The article maps out the
19.
▲
The spectrum of isolation: From bare metal to WebAssembly
(buildsoftwaresystems.com)
97 points
by
ThierryBuilds
8mo ago
|
34 comments
20.
▲
by
ThierryBuilds
8mo ago
Great article! Thank you for sharing. Could these same strategies be applied to C programs?
21.
▲
by
ThierryBuilds
9mo ago
Insightful. Many thanks. Flat buffers is know to bloat client code. Was any trick used to mitigate that?
22.
▲
by
ThierryBuilds
9mo ago
Thanks for the clarification. Happy new year
23.
▲
by
ThierryBuilds
9mo ago
C++ Has changed so much since C++11. It feels like it is picking features from every other language
24.
▲
Exponential Backoff and Jitter
(tylercrosse.com)
4 points
by
ThierryBuilds
9mo ago
|
0 comments
25.
▲
by
ThierryBuilds
9mo ago
I am curious to know what was the contribution of switching to FlatBuffers in that improvement.
26.
▲
by
ThierryBuilds
9mo ago
Thanks for your response. Wouldn't using the `_` in the enums somehow make almost all integers index "cartable" to the enums?
27.
▲
by
ThierryBuilds
9mo ago
Balancing developer satisfaction with raw productivity is a critical trade-off. While the 'joy of coding' maintains long-term engagement, LLMs provide a necessary lift in throughput. I prefer a surgical approach: disabling LLMs fo
28.
▲
by
ThierryBuilds
9mo ago
Nice Article. However I fail to understand how using the enum prevents the usage of the wrong index in a data structure. Can you explain further?
29.
▲
Bash Script Skeleton Template
(github.com)
2 points
by
ThierryBuilds
9mo ago
|
0 comments
30.
▲
by
ThierryBuilds
9mo ago
Nice article. And the `Into` trick also accept &String
More ›