Post #3364005
2026-05-18 16:11 UTC
How to spot #LLM generated #Rust #slop code:
for foo in bar {
if baz {
continue;
} else if quux {
continue;
} else {
continue;
}
}
to be continued... (no pun intended)
1/?
#LLMs #AISlop
Replies (1)
-
@guenther@chaos.social 2026-06-20 20:39
@janriemer@floss.social colleague who doesn't know any Rust let the AI rewrite some of his Python in Rust, for performance. It was a good idea. The AI proceeded not to use pyo3 or some sensible ffi framework, and instead used raw pointers to pass data around. Both on the Rust and on the Python side. I think he still believes this is the correct way to do this.