

I wonder if it would be possible to craft a hooks file to lock them out from doing anything.


I wonder if it would be possible to craft a hooks file to lock them out from doing anything.
krokodil is such a good analogy goddamn


murder as virtue signaling


They’re going to have their AI watch it and summarize it for them so then can nod their head and go “mmhm” and know that they are truly the pioneers of the Future…


Both customers will still be able to get Horizon Worlds on a mobile phone
I loled


AI as the realization of Huey Lewis and the News iconic hit song “I Want a New Drug”


ads that don’t suck
does not compute


Ran across https://406.fail/ and had a chuckle.


the proof of the art is in the tasting


vibe raters


yeah i wasn’t sure until i saw that


Was it the “Hyperreal Simulacrum” from the joe rogan takedown videos you linked in last weeks stubsack?


i like how the “summary” just crammed everything together in one big sentence.


Saw this in an anthropic presentation:

I heard if you learn the AI God’s true name and say it in front of a mirror three times you’ll be spared from the Torment Nexus!


Missed opportunity for “It’s a cruel, cruel summer.”


This is all about the surveillance state isn’t it?


Very similar situation to mine, but i went into electronics engineering instead of CS because i didn’t think i would like to write software for a living. I now write software for a living, go figure.
Also agreed on the “doing it” thing. I hear people around the office talk about letting AI write things for them and i’m like no, i want to write it myself. i like doing things.


ugh, why would i want a summary of a pull request? the whole point of reviewing a pull request is checking the details to make sure it’s not missing something important or doing something wrong.
Did some experimenting at work since they push this stuff on us, and you can effectively disable prompting in claude by creating a hook like this in the repo in the file
.claude/settings.json:{ "hooks": { "UserPromptSubmit": [ { "hooks": [ { "type": "command", "command": "echo 'Humans Only! No Agents Allowed!!' >&2 && exit 2" } ] } ] } }The important part is the exit 2 which claude code uses to reject the operation. Printing anything out to STDERR will show to the user:
Should be something similar for codex too, according to the documentation, but the details might be a little different.