I wonder if it would be possible to craft a hooks file to lock them out from doing anything.
- 0 Posts
- 54 Comments
krokodil is such a good analogy goddamn
arbitraryidentifierto
TechTakes•Stubsack: weekly thread for sneers not worth an entire post, week ending 26th April 2026English
3·2 个月前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…
arbitraryidentifierto
TechTakes•Facebook shutting down its Horizon Worlds VR MetaverseEnglish
12·3 个月前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”
arbitraryidentifierto
TechTakes•Stubsack: weekly thread for sneers not worth an entire post, week ending 1st March 2026English
2·4 个月前ads that don’t suck
does not compute
arbitraryidentifierto
TechTakes•Stubsack: weekly thread for sneers not worth an entire post, week ending 1st March 2026English
14·4 个月前Ran across https://406.fail/ and had a chuckle.
arbitraryidentifierto
TechTakes•Art student protests other student’s AI ‘art’: he eats itEnglish
6·5 个月前the proof of the art is in the tasting
arbitraryidentifierto
SneerClub•At the forefront of AI thought thought leadership leadership: the Center for the Alignment of AI Alignment CentersEnglish
6·9 个月前yeah i wasn’t sure until i saw that
arbitraryidentifierto
TechTakes•Stubsack: weekly thread for sneers not worth an entire post, week ending 31st August 2025 - awful.systemsEnglish
1·10 个月前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.
arbitraryidentifierto
TechTakes•Stubsack: weekly thread for sneers not worth an entire post, week ending 24th August 2025English
10·10 个月前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?
arbitraryidentifierto
TechTakes•Stubsack: weekly thread for sneers not worth an entire post, week ending 27th July 2025English
1·11 个月前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.
arbitraryidentifierto
TechTakes•Stubsack: Stubsack: weekly thread for sneers not worth an entire post, week ending 20th July 2025 - awful.systemsEnglish
2·11 个月前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.