HackerTrans
TopNewTrendsCommentsPastAskShowJobs

EmptyDrum

no profile record

Submissions

[untitled]

1 points·by EmptyDrum·2 months ago·0 comments

Maybe we can keep on coding? pseudo code project

9 points·by EmptyDrum·4 months ago·12 comments

Press-One: Auto-accept every Claude Code prompt

github.com
7 points·by EmptyDrum·4 months ago·2 comments

Show HN: Context-compact – Summarize agent context instead of truncating it

github.com
6 points·by EmptyDrum·4 months ago·2 comments

Show HN: key-carousel - Key rotation for LLM agents

github.com
5 points·by EmptyDrum·4 months ago·2 comments

comments

EmptyDrum
·4 months ago·discuss
That's not the point of the skill.
EmptyDrum
·4 months ago·discuss
I agree - in the end we have some fuzzy turing machine when writing in pseudo code. I think it is inherently hard to get this right. I also think that these decisions about control flow etc should stay with the developer given I find it very rewarding and LLMs are not very good at it yet (even though they have promised us the improvements for the past 5 years lol).
EmptyDrum
·4 months ago·discuss
I feel like that this is fundamentally impossible to solve for. Approximately the effort = planning + checking correctness seems to be constant.
EmptyDrum
·4 months ago·discuss
Spam
EmptyDrum
·4 months ago·discuss
https://github.com/HalfEmptyDrum/Pseudo-Code-Flow

the link again
EmptyDrum
·4 months ago·discuss
Btw, I got inspired by this: https://www.williamjbowman.com/blog/2026/03/05/against-vibes...

Really useful read!
EmptyDrum
·4 months ago·discuss
True (will fix) - but then still, Claude will still not change my pseudo code, but directly translate. I liked that part particularly.
EmptyDrum
·4 months ago·discuss
I kept mashing 1 to accept changes in Claude Code, so I automated it. It spawns your command in a PTY and pipes "1" into stdin on a loop.

  npm install -g press-one
  press-one --delay 3000 claude "fix all the bugs"                                                                                                                                                                                                                                        
                  
  Known "features": a slow stream of 11111 appears while the model is thinking, and you can't type because stdin belongs to the machine now. Zero dependencies (just Node + Python for PTY allocation). MIT licensed.
EmptyDrum
·4 months ago·discuss
Yes, I partially used their approach which I found very smart. Added a few improvements which you can find on the GitHub.
EmptyDrum
·4 months ago·discuss
fyi - this was built inspired by how OpenClaw manages llm-keys. I liked their idea and improved on it. Feedback is welcome.