HackerTrans
TopNewTrendsCommentsPastAskShowJobs

angelmm

no profile record

Submissions

Local and GitHub Code Review TUI

tuicr.dev
3 points·by angelmm·15 วันที่ผ่านมา·1 comments

Show HN: In-browser real LLM token counter and cost estimation

holaclaw.ai
3 points·by angelmm·เดือนที่แล้ว·1 comments

Maintain your E2E test suite with Claude

twitter.com
2 points·by angelmm·4 เดือนที่ผ่านมา·0 comments

Open-source voice cloning app using Qwen3-TTS

github.com
4 points·by angelmm·5 เดือนที่ผ่านมา·0 comments

Claude prefers JSON over Markdown

capsule.endor.dev
2 points·by angelmm·5 เดือนที่ผ่านมา·0 comments

Rebuilding our documentation site using AI

endor.dev
2 points·by angelmm·7 เดือนที่ผ่านมา·0 comments

A simple open-source OIDC provider that only support passkeys

pocket-id.org
2 points·by angelmm·9 เดือนที่ผ่านมา·0 comments

Rover: Coding Agent Manager

endor.dev
8 points·by angelmm·9 เดือนที่ผ่านมา·4 comments

comments

angelmm
·16 วันที่ผ่านมา·discuss
Quite happy I moved away from LastPass long time ago. There are many options out there you can use.
angelmm
·เดือนที่แล้ว·discuss
Hey, I'm Angel, one of the people behind HolaClaw. We recently had to optimize different prompts for local inference and understanding how much tokens the system and user prompts consume were quite important.

I found several token counters around, but most of them were using estimations. In this tool, all the calculations are real. The website loads the public tokenizer.json files from those models and encode them to count. Everything happens in your browser.

For models / families that don't publish their tokenizer, we had to do an estimation. If you are curious, it worked by compiling the tokenizers library from HuggingFace to Wasm (they already have a demo).

Hope you like it! We plan to add some extra visualizations and stats. Also, feel free to suggest any missing model.
angelmm
·4 เดือนที่ผ่านมา·discuss
Even though I'm not that familiar with the synth world, I always found it a really interesting field. Websites like this that helps me exploring and learning are amazing :)
angelmm
·9 เดือนที่ผ่านมา·discuss
This is why I uninstalled Cursor and moving to the terminal with Claude Code. I felt I had more control to reduce the noise from LLMs. Before, I noticed that some hours were just wasted looking at the model output and iterating.

Not sure if I improved using agents over time, or just having it in a separate window forces you to use them only when you need. Having it in the IDE seems the "natural" way to start something and now you are trapped in a conversation with the LLM.

Now, my setup is:

- VSCode (without copilot) / Helix

- Claude (active coding)

- Rover (background agent coding). Note I'm a Rover developer

And I feel more productive and less exhausted.
angelmm
·9 เดือนที่ผ่านมา·discuss
Also, Codex Cloud and similar services require you to give fully access to your repository, which might trigger some concerns. If you can run it locally, you still have the control, same development environment, and same permissions.
angelmm
·9 เดือนที่ผ่านมา·discuss
Hey! Angel from Endor / Rover :)

Thanks for your feedback! I faced this in the past. As you mentioned, monorepos are more common these days, but multi-repo is an established approach in many teams. The way I "solved" this situation was to move all the related projects into a single folder with a parent AGENTS.md file (CLAUDE.md, etc.). Then, I run Rover / Claude / Gemini on this folder.

However, this is not ideal. Due to the amount of code, it usually misses many things to do. We are currently exploring specific workflows for these use cases, trying to help agents to prepare a complete plan.

Another similar case we are working on is to support spawning the same task across different repositories. This would help teams to apply refactor or changes in different projects at the same time.