Damus
jonny (nonvenomous) profile picture
jonny (nonvenomous)
@jonny (nonvenomous)

known or reasonably foreseeable hazard

Digital infrastructure 4 a cooperative internet. social/technological systems & systems neuro as a side gig. writin bout the surveillance state n makin some p2p.

information is political, science is labor.

science/work-oriented alt of @jonny
This is a public account, quotes/boosts/links are always ok <3.

Relays (1)
  • wss://relay.ditto.pub – read & write

Recent Notes

jonny (nonvenomous) profile picture
lets goooooo

Alperin alleges he learned insider details about APC pricing as a member of the Open Access Scholarly Publishing Association, including “outright unlawful conduct” and “conspiratorial discussions” among the publishers, the complaint states. This included strategies by the companies to shield the viability of free open access options to ensure U.S. grantee institutions continued paying unnecessary APCs, according to his complaint.

https://retractionwatch.com/2026/07/31/federal-lawsuit-major-publishers-article-processing-charges-false-claims-act/
jonny (nonvenomous) · 1w
Really the only things you need to say to a cat are asking them if they are a big kitty telling them that they are a big kitty telling them you're going to eat their belly if they leave it hanging ou...
jonny (nonvenomous) profile picture
saw a woman block both lanes of a street for a full light cycle because a tiny dog stopped to take a shit in the middle of the road. The dog had this positively maniacal look on its face that made it seem like shitting in the middle of the road was its favorite thing to do and should be ours too. I have never taken a shit in such defiance. Could learn something. Maybe the only time I have not seen traffic causing everyone to max out on horn in LA because me and the ppl in the front row of traffic were laughing too hard.
jonny (nonvenomous) profile picture
Really the only things you need to say to a cat are

asking them if they are a big kitty
telling them that they are a big kitty
telling them you're going to eat their belly if they leave it hanging out there like that
asking them what they are doing

But you need to say them basically constantly when you're around them
1
jonny (nonvenomous) · 1w
saw a woman block both lanes of a street for a full light cycle because a tiny dog stopped to take a shit in the middle of the road. The dog had this positively maniacal look on its face that made it seem like shitting in the middle of the road was its favorite thing to do and should be ours too. I ...
jonny (nonvenomous) profile picture
I had never top to bottom vibe coded something before - like full on "do not look at the code, just keep rolling the dice" - and I was sort of confused about how people in forums would say they were "working for months" on vibe coding something. like what does that look like, what is the work like, what takes time, etc. So I have been trying it in the background when I take breaks from normal work, and while I have had lots of exposure to and used LLMs a lot before in existing projects, but this is the most profoundly frustrating and mind blowingly bad LLM experiment I have ever done and I am coming away with even less understanding of how people can think this rocks.

I had an old idea for a game I never followed through on, and the game is extremely simple (and actually pretty fun, unlike my other games): mechanical core is basically the game board is a graph, and moves consist of hops between the nodes.

The LLM was able to get a playable prototype running in like an hour, and I was like "whoa maybe this is good!" But none of the actual game part worked - there are invalid moves, but those were allowed. There were valid moves that were blocked, the game board was wrong, etc. OK, no problem, I can just refine from here. Just work through it and keep prompting until its done.

The moving target is unbelievable - every single change would bring with it new, unpredictable bugs. Since I hadn't been looking at the code, the LLM had made dozens of assumptions and hardcoded rules I never asked for and made no sense, and was re-reading those implicitly on every command so that internally it was fighting against me, trapped in a prison of its own wrongness.

Initially it handrolled its own graph layout algo which was terrible. I intervened and said "just use d3-force" since what I need for the game is at the level of something you could literally copy/paste from the docs examples. It did that, but the layout was still inexplicably bad - successive chains of nodes would hop back and forth across the whole board despite being connected to nothing else. Monday morning I started with prompting for a fix for the "chains of nodes always crisscross the board" problem. I checked in every few hours between work to find some new elaborate explanation of the problem, a few thousand more lines written, and claims it was fixed, and the problem being even worse somehow. Finally at the end of the day I got frustrated and broke the rule of the experiment and went and looked at the code - how could this be so hard, this should be a couple dozen lines.

In about 30 seconds of skimming, I found an elaborately commented function whose entire purpose was to guarantee that connected nodes were placed on opposite sides of the board. What??? There is absolutely nothing about what I wrote or could be implied from the structure of the game that would have suggested this as a thing to do. The nodes in the graph correspond to words, and the function specifically made sure that words that started with an even numbered ascii character were on one side and odds were on another. this was allegedly to "help with spacing between the nodes in layout."

It had been churning for a full day and generated thousands of lines of code to counteract a function that should not exist and makes no sense but was nonetheless clearly labeled as doing the exact thing I was telling it was a bug and should be fixed. if you told even the most inexperienced programmer to "fix the do x bug, the program should not do x," and in 30 seconds of skimming they found def always_do_x(), their first instinct would probably be to remove it. I looked at its tool use log and it had ingested this whole file, and this specific function dozens of times. The graph layout code was now like 3000 lines of spaghetti trying to counteract the function. I removed it and the problem immediately disappeared. Every single thing the LLM had said, elaborate, jargon heavy, math sounding excuses was 100% wrong, not even close.

The LLM dutifully made a memory about "always read the code to see if there is a function for doing the thing it is told not to do."

The gaslighting is mind blowing. Later, I told it to adjust the forces on the layout to make clusters clump up more and to spread out low degree nodes. This is an absolutely base level thing that force directed graph layouts do. This was fiddling with two or three constants. The LLM invented entire graph theory concepts and metrics to tell me that it was provably not possible to have less space around hubs and more space between them. It showed me series of fake fucking equations calculating some made up phrase like "unit density" in graph neighborhoods. IT TURNS OUT that it had just been redefining the force direction simulation in a LOOP such that for each node added, the ENTIRE GRAPH was excluded from the force direction calculation - only the newly connected node had any kind of layout forces applied and the rest were static. I removed that and it worked perfectly - as I knew it does, because I have done this a thousand times before.

I have never been more convinced that the driving force here is gambling addiction. I did indeed feel the addictive pull of just pulling the bar over and over and something happening. The code jittered, window refreshed... Dang not this time. Roll again. And when it finally sort of worked, here is the reward, this is amazing. I think that this game is good enough that ive been going in and trying to clean it up and make it actually playable, and credit where credit is due, it did program it so badly that I am now working on it out of anger in my free time rather than letting it languish.

Anyway, I wasn't planning on writing a blog post about this, but after its done and ive cleaned it up from the slop I will break out the raw message logs and write it up because this has been a completely perplexing look into the present and future of what people are telling me programming will work like forever now.

edit since it's been asked twice: claude code with opus 5, and yes i've tried the plugins and the skills and all the whoopsiedoozles that are supposed to make it good and not bad.
jonny (nonvenomous) profile picture
There is a long running thread on the grapheneOS forums about having the panic mode log you in to a segmented off partition that looks like a fully plausible OS, doesn't wipe, but doesn't unlock the main storage. The concerns about being charged for destroying evidence are raised there iirc. The maintainer raised some technical challenges and why they aren't pursuing this, but I wonder if that changes now

https://www.404media.co/the-government-hopes-to-set-a-precedent-an-interview-with-the-man-charged-for-allegedly-wiping-his-grapheneos-phone/
Phantasm · 2w
nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyd968gmewwp6kyqpq4d70xk632yuqshz7hdrnnj79j3yufrphy4u7ryekmpr7vztwvf5qdtqj99 nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyd968gmewwp6kyqpqqh097tfm3kv0nwffd9ggptn255d3fuqdcy3wauw5p4gz5z45s92qjctsag I've read the whole blogpost hours before even replying here. There is n...
jonny (nonvenomous) profile picture
We love you @nprofile1q...

https://blog.codeberg.org/protecting-our-floss-commons-from-llms.html

As an association, we believe that these technologies are incompatible with responsibly creating and maintaining free & open source software. [...]
The development team of none: [...] To us, it seems ridiculous to see projects with a single developer and virtually no users consuming as much or even more resources than some of the largest community projects on Codeberg, which operate frugal with CI/CD and storage resources. We do not believe it is reasonable for Codeberg to invest our precious donation money into hosting of large ghost projects. [...]
The free/libre software ecosystem, of which we consider Codeberg an important part of, is a social phenomenon centered on collaboration. Working in this way is only possible thanks to free sharing and mutual learning. [...] by adopting LLMs people tend to code single-use software from scratch. While this leads to an increase in 'shared' code, it is mostly code that not only has not been 'written' by anyone but is also not maintained by anyone. [...]

The widespread use of LLMs in FLOSS is instead becoming a multidimensional attack on the trust between contributors and the very idea of convivial collaboration itself. [...]
Together, these forces make collaboration not only harder but also less rewarding: With the transaction cost of collaboration increasing, people are becoming less likely to contribute to creating high-quality software projects and more likely to 'vibecode' a one-off software that is specific to your need, and won't evolve beyond. We get a vicious cycle where collaboration is becoming less and less rewarding, while the amount of single-use software that's unmaintained and never sees any improvements is going up.

Although often well intentioned, sharing the result of an prompt and calling it "libre software" does not make the world a better place. Codeberg is not and does not want to be a place to dump such generated single-use software that no one else will ever look at. We are a place for people to collaborate and improve software together

jonny (nonvenomous) · 3w
gutting public schools and replacing them with AI is just about the worst thing i think you could do to a society, and the predictability of the order of where it gets rolled out first is sickening
jonny (nonvenomous) profile picture
RealDoll the sex doll parent company bought by the roving husk of a cryptocurrency/metaverse capital demon pivots to selling hyper-realistic silicoid AI teaching robots to public schools on the Seneca Nation reservation, causing the state to spend $60k per doll they don't have to perform generational damage to already marginalized kids. That's a real consequence of the kind of world all the AI ghouls with a kind face are running cover for.
thread: https://bsky.app/profile/jgcarpenter.com/post/3mqptnudhmk2b
Blog post: https://jgcarpenter.com/blog.html?blogPost=a-companion-robot-company-just-landed-a-classroom
1
jonny (nonvenomous) · 3w
This shit would not be possible without the kind of passive boosterism that lets this nightmare seep into the water supply and keeps the bubble afloat.