HackerTrans
トップ新着トレンドコメント過去質問紹介求人

ThierryBuilds

no profile record

投稿

Rapid: Property-Based Testing for Go

github.com
1 ポイント·投稿者 ThierryBuilds·2 か月前·0 コメント

[untitled]

1 ポイント·投稿者 ThierryBuilds·3 か月前·0 コメント

[untitled]

1 ポイント·投稿者 ThierryBuilds·3 か月前·0 コメント

Basic C programming facts worth knowing

buildsoftwaresystems.com
1 ポイント·投稿者 ThierryBuilds·4 か月前·0 コメント

A Program Binary Becomes a Running Process

buildsoftwaresystems.com
2 ポイント·投稿者 ThierryBuilds·4 か月前·1 コメント

The friction between AI coding agents and developer flow

medium.com
1 ポイント·投稿者 ThierryBuilds·5 か月前·0 コメント

Proptest: Property-based testing for Rust (inspired by Hypothesis)

github.com
3 ポイント·投稿者 ThierryBuilds·6 か月前·0 コメント

The spectrum of isolation: From bare metal to WebAssembly

buildsoftwaresystems.com
97 ポイント·投稿者 ThierryBuilds·6 か月前·34 コメント

Exponential Backoff and Jitter

tylercrosse.com
4 ポイント·投稿者 ThierryBuilds·6 か月前·0 コメント

Bash Script Skeleton Template

github.com
2 ポイント·投稿者 ThierryBuilds·7 か月前·0 コメント

Go Scripting with Expr Lang

buildsoftwaresystems.com
1 ポイント·投稿者 ThierryBuilds·7 か月前·1 コメント

コメント

ThierryBuilds
·4 か月前·議論
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
ThierryBuilds
·4 か月前·議論
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 process.

I tried to contrast the POSIX fork/exec model with the Windows CreateProcess approach. I’d love to hear from anyone who has had to deal with the more obscure parts of these system calls, like clone() flags or Windows process attributes.
ThierryBuilds
·5 か月前·議論
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.
ThierryBuilds
·5 か月前·議論
A human will still be needed to review the AI generated PR, no?
ThierryBuilds
·5 か月前·議論
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.
ThierryBuilds
·5 か月前·議論
Which book is presented in the article?
ThierryBuilds
·6 か月前·議論
Then why is there a need for a developer, that supposedly writes poorer code, to check it?
ThierryBuilds
·6 か月前·議論
Do AI really write better React/JSX than devs?
ThierryBuilds
·6 か月前·議論
The article is not only about security. Thanks
ThierryBuilds
·6 か月前·議論
Agreed. Beyond security, we must consider other critical factors such as cost, ease of maintenance, and operational overhead.
ThierryBuilds
·6 か月前·議論
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.
ThierryBuilds
·6 か月前·議論
Thank you for the feedback. I will definitely add them as example solutions for serverless.
ThierryBuilds
·6 か月前·議論
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 differences between common execution environments—from physical bare metal and VMs to containers, process sandboxes, and virtual environments—to create a mental model of where the "isolation boundary" actually sits for each tool.
ThierryBuilds
·6 か月前·議論
Great article! Thank you for sharing. Could these same strategies be applied to C programs?
ThierryBuilds
·6 か月前·議論
Insightful. Many thanks.

Flat buffers is know to bloat client code. Was any trick used to mitigate that?
ThierryBuilds
·6 か月前·議論
Thanks for the clarification. Happy new year
ThierryBuilds
·6 か月前·議論
C++ Has changed so much since C++11. It feels like it is picking features from every other language
ThierryBuilds
·6 か月前·議論
I am curious to know what was the contribution of switching to FlatBuffers in that improvement.
ThierryBuilds
·6 か月前·議論
Thanks for your response. Wouldn't using the `_` in the enums somehow make almost all integers index "cartable" to the enums?
ThierryBuilds
·6 か月前·議論
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 for core logic to avoid 'auto-pilot' bias, while utilizing them for the high-friction work of documentation and unit testing.