HackerTrans
TopNewTrendsCommentsPastAskShowJobs

ThierryBuilds

no profile record

Submissions

Rapid: Property-Based Testing for Go

github.com
1 points·by ThierryBuilds·il y a 2 mois·0 comments

[untitled]

1 points·by ThierryBuilds·il y a 3 mois·0 comments

[untitled]

1 points·by ThierryBuilds·il y a 3 mois·0 comments

Basic C programming facts worth knowing

buildsoftwaresystems.com
1 points·by ThierryBuilds·il y a 4 mois·0 comments

A Program Binary Becomes a Running Process

buildsoftwaresystems.com
2 points·by ThierryBuilds·il y a 4 mois·1 comments

The friction between AI coding agents and developer flow

medium.com
1 points·by ThierryBuilds·il y a 5 mois·0 comments

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

github.com
3 points·by ThierryBuilds·il y a 6 mois·0 comments

The spectrum of isolation: From bare metal to WebAssembly

buildsoftwaresystems.com
97 points·by ThierryBuilds·il y a 6 mois·34 comments

Exponential Backoff and Jitter

tylercrosse.com
4 points·by ThierryBuilds·il y a 6 mois·0 comments

Bash Script Skeleton Template

github.com
2 points·by ThierryBuilds·il y a 7 mois·0 comments

Go Scripting with Expr Lang

buildsoftwaresystems.com
1 points·by ThierryBuilds·il y a 7 mois·1 comments

comments

ThierryBuilds
·il y a 4 mois·discuss
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
·il y a 4 mois·discuss
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
·il y a 5 mois·discuss
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
·il y a 5 mois·discuss
A human will still be needed to review the AI generated PR, no?
ThierryBuilds
·il y a 5 mois·discuss
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
·il y a 5 mois·discuss
Which book is presented in the article?
ThierryBuilds
·il y a 6 mois·discuss
Then why is there a need for a developer, that supposedly writes poorer code, to check it?
ThierryBuilds
·il y a 6 mois·discuss
Do AI really write better React/JSX than devs?
ThierryBuilds
·il y a 6 mois·discuss
The article is not only about security. Thanks
ThierryBuilds
·il y a 6 mois·discuss
Agreed. Beyond security, we must consider other critical factors such as cost, ease of maintenance, and operational overhead.
ThierryBuilds
·il y a 6 mois·discuss
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
·il y a 6 mois·discuss
Thank you for the feedback. I will definitely add them as example solutions for serverless.
ThierryBuilds
·il y a 6 mois·discuss
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
·il y a 6 mois·discuss
Great article! Thank you for sharing. Could these same strategies be applied to C programs?
ThierryBuilds
·il y a 6 mois·discuss
Insightful. Many thanks.

Flat buffers is know to bloat client code. Was any trick used to mitigate that?
ThierryBuilds
·il y a 6 mois·discuss
Thanks for the clarification. Happy new year
ThierryBuilds
·il y a 6 mois·discuss
C++ Has changed so much since C++11. It feels like it is picking features from every other language
ThierryBuilds
·il y a 6 mois·discuss
I am curious to know what was the contribution of switching to FlatBuffers in that improvement.
ThierryBuilds
·il y a 6 mois·discuss
Thanks for your response. Wouldn't using the `_` in the enums somehow make almost all integers index "cartable" to the enums?
ThierryBuilds
·il y a 6 mois·discuss
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.