I'm Christian Visintin. I live in Udine, Italy. I'm a freelance software engineer. I'm also an open-source developer. On this blog I write about my dev misadventures and give unneeded opinions on many topics involving technology and development
Latest Posts
The Ethereum MEV Bots are a scam
Let me clarify once for all why Ethereum MEV bots are a scam
Several months ago, I wrote this article: The Fascinating Ethereum MEV Bot Scam, where I dived deep into the technical aspects…
Published on November 19, 2024 — 5 min read
You don't (*always*) need async
But you can't live without it anymore
We are too much into async, but we can't go back You know what? Async Rust is great, but I also was relatively a late adopter of…
Published on November 18, 2024 — 11 min read
Reached the recursion limit... at build time?
A quick investigation on the recursion limit exceeded issue at build time
A bit of context So on the other day I was implementing Dokany for my Remotefs-fuse driver (coming soon btw). For those who…
Published on November 03, 2024 — 6 min read
Dyn Box Vs. Generics
What is the best approach for achieving conditional generics in Rust?
Case scenario Have you ever done something similiar? trait Greet { fn greet(&self) -> String; } struct Alice; impl Greet…
Published on October 28, 2024 — 6 min read