Julien Roncaglia
banner
vbfox.hachyderm.io.ap.brid.gy
Julien Roncaglia
@vbfox.hachyderm.io.ap.brid.gy
Software developer 🇫🇷 🇪🇺

Currently working at Waldo 🦙, previously Zenly 🍦(Snap 👻), Virtu Financial 💵 and Microwave Vision 📶

I like programming (F#, Rust […]

[bridged from https://hachyderm.io/@vbfox on the fediverse by https://fed.brid.gy/ ]
Sub7, BackOrifice 2000, lot of memories with these…
https://chaos.social/@gsuberland/115592932850617919
Graham Sutherland / Polynomial (@[email protected])
just heard a speedrunner say "sub 7" and my brain went to a very different place
chaos.social
November 22, 2025 at 2:59 PM
Reposted by Julien Roncaglia
Un ressenti ne fait pas le climat. Vous avez froid ? En réalité, d’un point de vue statistique… ce froid ne signifie absolument rien. Aucun record, même pas proche : on reste largement dans la zone normale de variabilité (la fameuse zone grise du graphique).
1/5
November 20, 2025 at 12:25 PM
Reposted by Julien Roncaglia
November 19, 2025 at 11:16 PM
Reposted by Julien Roncaglia
cloudflare themselves get it: blog.cloudflare.com/18-november-...

writing their code differently is only one of four steps here. because this kind of mistake should not be able to cause this much damage. that's approaching problems in a systematic way rather than via band-aids
Cloudflare outage on November 18, 2025
Cloudflare suffered a service outage on November 18, 2025. The outage was triggered by a bug in generation logic for a Bot Management feature file causing many Cloudflare services to be affected.
blog.cloudflare.com
November 19, 2025 at 5:02 PM
Reposted by Julien Roncaglia
“lazy use of unwrap blew up a process and took out the internet” bzzt. wrong. judicious use of unwrap blew up a process instead of allowing an Extremely Named CVE to happen and spraying your bank account credentials all over the public internet
People want a technical solution to what is ultimately a judgement problem.

People know that unwrap can cause a panic. That's the choice that's being made when you unwrap. Changing the name won't change that.
November 19, 2025 at 5:10 PM
CloudFlare postmortems are always interesting, even more than their services.
This time they didn’t disappoint, and as often the cause of the bug is a series of assumptions across systems that didn’t hold.

- A setting change to tighten security that assumed that all code paths were verified for […]
Original post on hachyderm.io
hachyderm.io
November 19, 2025 at 7:15 PM
Reposted by Julien Roncaglia
The 2025 State of Rust Survey: Which unimplemented (or nightly only) features are you looking for to be stabilized?

Me: YES

https://www.surveyhero.com/c/state-of-rust-2025
2025 State of Rust Survey
www.surveyhero.com
November 17, 2025 at 4:27 PM
Reposted by Julien Roncaglia
tier 1 is macbook
tier 2 is illumos
tier 3 is redox
tier 4 is win9x

I'm waiting for tier 5: abacus

https://github.com/rust9x/rust
GitHub - rust9x/rust: UNOFFICIAL "Tier 4" Rust target for Windows 9x/Me/NT/2000/XP/Vista.
UNOFFICIAL "Tier 4" Rust target for Windows 9x/Me/NT/2000/XP/Vista. - rust9x/rust
github.com
November 18, 2025 at 8:46 AM
Reposted by Julien Roncaglia
Today I am stepping down from my role as the CEO of #mastodon. Though this has been in the works for a while, I can't say I've fully processed how I feel about it. There is a bittersweet part to it, and I think I will miss it, but it also felt necessary. It feels like a goodbye, but it isn't—I […]
Original post on mastodon.social
mastodon.social
November 18, 2025 at 8:46 AM
Always nice to see an event I love to watch (Elden Ring Bingo Brawlers) being covered by a YouTube creator (Writing on Games) I watch.
Universes colliding 💥
https://www.youtube.com/watch?v=_D9WcozyESs
November 16, 2025 at 8:58 PM
Docker introduced checks at build time without a good way to suppress individual false positives...

So now I can either completely disable SecretsUsedInArgOrEnv or use a garbage name for my variable...

And I fear the day some #security goon will find they added warnings and enforce them […]
Original post on hachyderm.io
hachyderm.io
November 14, 2025 at 2:04 PM
Reposted by Julien Roncaglia
After King Gizzard and the Lizard Wizard left Spotify in protest earlier this year, something strange took their place. My investigation into what happened, which resulted in Spotify taking down a bunch of slop tracks https://www.platformer.news/king-gizzard-spotify-impersonators/
Spotify's doppelgänger problem
After King Gizzard and the Lizard Wizard left Spotify in protest earlier this year, something strange took their place
www.platformer.news
November 14, 2025 at 1:24 AM
Reposted by Julien Roncaglia
Parsing integers in C
In the standard libc API set there are multiple functions provided that do ASCII numbers to integer conversions. They are handy and easy to use, but also error-prone and quite lenient in what they accept and silently just swallow. ## atoi **atoi()** is perhaps the most common and basic one. It converts from a string to signed integer. There is also the companion **atol()** which instead converts to a long. Some problems these have include that they return 0 instead of an error, that they have no checks for under or overflow and in the atol() case there’s this challenge that _long_ has different sizes on different platforms. So neither of them can reliably be used for 64-bit numbers. They also don’t say where the number ended. Using these functions opens up your parser to not detect and handle errors or weird input. We write better and stricter parser when we avoid these functions. ## strtol This function, along with its siblings **strtoul()** and **strtoll()** etc, is more capable. They have overflow detection and they can detect errors – like if there is no digit at all to parse. However, these functions as well too happily swallow leading whitespace and they allow a + or – in front of the number. The long versions of these functions have the problem that _long_ is not universally 64-bit and the _long long_ version has the problem that it is not universally available. The overflow and underflow detection with these function is quite quirky, involves _errno_ and forces us to spend multiple extra lines of conditions on every invoke just to be sure we catch those. ## curl code I think we in the curl project as well as more or less the entire world has learned through the years that it is usually better to be strict when parsing protocols and data, rather than be lenient and try to accept many things and guess what it otherwise _maybe_ meant. As a direct result of this we make sure that curl parses and interprets data _exactly_ as that data is meant to look and we error out as soon as we detect the data to be wrong. For security and for solid functionality, providing syntactically incorrect data is not accepted. This also implies that all number parsing has to be exact, handle overflows and maximum allowed values correctly and conveniently and errors must be detected. It always supports up to 64-bit numbers. ## strparse I have previously blogged about how we have implemented our own set of parsing function in curl, and these also include number parsing. **curlx_str_number()** is the most commonly used of the ones we have created. It parses a string and stores the value in a 64-bit variable (which in curl code is always present and always 64-bit). It also has a max value argument so that it returns error if too large. And it of course also errors out on overflows etc. This function of ours does not allow any leading whitespace and certainly no prefixing pluses or minuses. If they should be allowed, the surrounding parsing code needs to explicitly allow them. The curlx_str_number function is most probably a little slower that the functions it replaces, but I don’t think the difference is huge and the convenience and the added strictness is much welcomed. We write better code and parsers this way. More secure. (curlx_str number source code) ## History As of yesterday, November 12 2025 all of those weak functions calls have been wiped out from the curl source code. The drop seen in early 2025 was when we got rid of all strtrol() variations. Yesterday we finally got rid of the last atoi() calls. libc number function call density in curl production code (Daily updated version of the graph.) ## curlx The function mentioned above uses a ‘curlx’ prefix. We use this prefix in curl code for functions that exist in libcurl source code but that be used by the curl tool as well – sharing the same code without them being offered by the libcurl API. A thing we do to reduce code duplication and share code between the library and the command line tool.
daniel.haxx.se
November 13, 2025 at 7:37 AM
Reposted by Julien Roncaglia
Today's Valve coverage continues with a new video covering hands-on impressions of Steam Frame. Lots to discuss here: the headset, the technology, the x86 to ARM translation layer and much, much more: youtu.be/TmTvmKxl20U
November 12, 2025 at 9:12 PM
Reposted by Julien Roncaglia
We went hands-on with Valve's Steam Machine and Steam Frame. Two videos in the pipeline, kicking off right now with this detailed discussion on Valve's beautiful PC/console hybrid - and the new Steam Controller: youtu.be/2rv83LgXiN0
November 12, 2025 at 6:07 PM
Steam Harware includign a full PC. Year of the Linux desktop finally ?

https://store.steampowered.com/hardware
Steam Hardware
The Steam Hardware family officially expands in early 2026.
store.steampowered.com
November 12, 2025 at 8:02 PM
Reposted by Julien Roncaglia
November 12, 2025 at 8:04 AM
Reposted by Julien Roncaglia
Je l'avais déjà plus ou moins annoncé il y a quelques semaines : je ne serai pas à Angoulême cette année. Et j'encourage à faire de même, que vous soyez auteur/trice ou si vous comptiez venir en visiteur.

De nombreux médias ont expliqué la situation, je les […]

[Original post on mastodon.social]
November 9, 2025 at 12:49 AM
Reposted by Julien Roncaglia
workin on a web component: `<color-input>`
October 27, 2025 at 6:09 AM
Going to @newcrafts conference today and tomorrow.

Let’s see how it changed as I’ve not been for years. Found my 2014 t-shirt for the occasion.

If anyone wants to meet ping me.
November 6, 2025 at 8:11 AM
Reposted by Julien Roncaglia
On arrive aux 950% et il reste encore 10 jours. Va-t-on arriver à 1000 ?
On a déjà 1800 livres pré-vendus, vous n'imaginez pas le nombre de 🥹, de 🧡 et de 🤯 qu'il y a sur notre group-chat.

https://www.exemplaire-editions.fr/exemplaire/projets/financement/les-nouilles-rampantes
November 5, 2025 at 2:35 PM
Reposted by Julien Roncaglia
You say FIPS, I say that's not my problem.
November 5, 2025 at 2:37 PM
I'm sad that they killed #affinity but their pricing model never looked very sane so 🤷‍♂️ at least the old versions will stay working
November 5, 2025 at 2:43 PM
Reposted by Julien Roncaglia
I wrote up some notes on two new papers on prompt injection: Agents Rule of Two (from Meta AI) and The Attacker Moves Second (from Anthropic + OpenAI = DeepMind + others) https://simonwillison.net/2025/Nov/2/new-prompt-injection-papers/
New prompt injection papers: Agents Rule of Two and The Attacker Moves Second
Two interesting new papers regarding LLM security and prompt injection came to my attention this weekend. Agents Rule of Two: A Practical Approach to AI Agent Security The first is …
simonwillison.net
November 2, 2025 at 11:11 PM