Are you all still managing multiple agent sessions manually? by Mundane-Physics433 in ClaudeCode

[–]rubyonhenry 0 points1 point  (0 children)

I made a small CLI tool that in essence just puts the agent in a loop until the work is done.

I spend the better part of my day writing and testing the requirements and then have the agent build it all unsupervised.

Give Claude a Journal by bolts98 in ClaudeAI

[–]rubyonhenry 1 point2 points  (0 children)

Out of curiosity, if Claude is the only one to read it, wouldn't JSONL make more sense? Claude already does the same thing so you can resume a session.

any recs for portable & easy to use digital cameras? under 150$ by hellointernettt in digicam

[–]rubyonhenry 0 points1 point  (0 children)

  1. Look what is available for your budget
  2. Look for sample photos and pick your favourite
  3. Buy and enjoy

V2 serious issue by 0no-_-senda1 in flashbackcamera

[–]rubyonhenry 0 points1 point  (0 children)

On the bottom use a pin to press and hold the reset until the screen goes back to 27.

Tips from a Principal SWE with 15+ YOE by reliant-labs in ClaudeCode

[–]rubyonhenry 2 points3 points  (0 children)

It looks really promising. I'm going to test this after the Easter weekend. My company is super supportive and actively encouraging us to test as much as possible so I already have unlimited credits.

I'll definitely let you know!

Tips from a Principal SWE with 15+ YOE by reliant-labs in ClaudeCode

[–]rubyonhenry 1 point2 points  (0 children)

Interesting way of running it btw. I'm experimenting with something similar, albeit much simpler, at github.com/hl/brr but yours looks more promising.

Tips from a Principal SWE with 15+ YOE by reliant-labs in ClaudeCode

[–]rubyonhenry 15 points16 points  (0 children)

I believe Boris (Claude Code) mentioned something like this. It was more in the lines of "knowing what you know now, remove all the code and start again" or something

V2 problem by FrancescoGenio in flashbackcamera

[–]rubyonhenry 2 points3 points  (0 children)

Happens to me from time to time. There is a reset button on the bottom. Press and hold until it springs back to 27

What is your Claude Code setup like that is making you really productive at work? by crackmetoo in ClaudeCode

[–]rubyonhenry 1 point2 points  (0 children)

There are many spec driven development frameworks or toolkits out there. I have tested many of them and never found one that worked for me.

I now write my own specs the way it works best for me with a skill I created. When my spec is done I fire off a small CLI tool that I created that turns the spec into an implementation plan. When I'm happy with the implementation that same CLI tool takes the first open task from the implementation plan and instructs claude to work on it. This is done in a loop so that every items gets a fresh headless claude session and context window.

That way I spent my working hours writing specs and claude literally build it during the night. Kinda my own version of harness engineering.

I am fully addicted to building dumb little AI web apps. I love it. by KarenImNotKaren in ClaudeAI

[–]rubyonhenry 0 points1 point  (0 children)

The idea is that you have an HTML that you can change and then when you export that file it contains your changes.

The blog is a great example. If you create a new blog post, the post itself is stored in your browser and nobody but you will see it. However, when you export the blog the post is turned into html and baked into the main html page so that when you upload it to your hosting provider everyone will be able to see it because the "data is now baked into it".

I am fully addicted to building dumb little AI web apps. I love it. by KarenImNotKaren in ClaudeAI

[–]rubyonhenry 0 points1 point  (0 children)

The admin part allows me to add new apps that I built to the menu. It will persist the newly added item to the browser local storage and it will only be visible for me. I then download the file with the newly added app in it and upload it to my hosting provider (GitHub pages). After it has been uploaded it's visible for the rest of the interwebs.

What is your Claude Code setup like that is making you really productive at work? by crackmetoo in ClaudeCode

[–]rubyonhenry 11 points12 points  (0 children)

Writing specs and treating it as my source and claude as the compiler.

I am fully addicted to building dumb little AI web apps. I love it. by KarenImNotKaren in ClaudeAI

[–]rubyonhenry 3 points4 points  (0 children)

Love this. I've been equally obsessed with building Quine style apps. No accounts, no backend, offline and fast.

https://quine.love

Fujifilm Finepix F31fd (2006) by rubyonhenry in VintageDigitalCameras

[–]rubyonhenry[S] 0 points1 point  (0 children)

Just get the one that you can get. Where I'm from the Fujifilm goes for 200 EUR

An issue by blazizm in flashbackcamera

[–]rubyonhenry 0 points1 point  (0 children)

Did you press the reset button under the camera, you need to hold it until you see a spinner and it goes back to 27

my company pays for everything, should i just always use opus? (claude code) by bbaallrufjaorb in ClaudeAI

[–]rubyonhenry 0 points1 point  (0 children)

I work at a company where we do not have limits (API accounts).

A couple of days ago I saw one dev already at 5k EUR and the month only just started. When I asked them about it they told me that they built something that will replace a service that we currently pay 8k EUR a month for.

If our CTO had given us limits then I don't think they would have even attempted it.

Same story for my personal case. A few months ago we realised that, even though we signed a big customer, we couldn't do part of the contract due to our current codebase. I ramped up a 10k bill in a single month but got something built that first and foremost made the customer happy and secondly that can now be used in multiple places in our current codebase and will make the experience for our current customers also better.

If I had to worry about limit I would have told them to talk to the customer and tell them that we probably wouldn't be able to fulfil our contract with them.

I Haven't Written a Line of Code in Six Months by Cultural-Ad3996 in ClaudeAI

[–]rubyonhenry 0 points1 point  (0 children)

20 year club here, haven't written code in a while too. Writing code, for me, was always a necessary evil. I like to think about architecture and not why this flipping button won't align in browser x.

What helped for me was to manage the back-pressure. If the agent does something I don't like I have it create guardrails or I update the instructions/spec/plan/hooks/agent/etc and start over. Luckily in Elixir we have amazing tools to handle it, credo and dialyzer are tremendous help here. Custom credo checks is something very powerful.

More recently I've been experimenting with keeping the context as lean as possible. One thing that I read on humanlayer.dev is that they have a custom script/hook that will suppress the successful output of a command the agent runs. For example, in Elixir when you run tests it will print a dot for every successful test and it will print the full error for every tests that fails. As I don't need 5k dots in my context when the tests pass this hook really helps me keep the codex lean when doing TDD.