What I am most proud of is that I got the solution in the corse of apporx 1 week working on this!
Ask HN: What are you working on? (January 2026)
741–750 of 914 posts
Re: Ask HN: What are you working on? (January 2026)
#742Started as a side project but has become my full time focus since leaving a FAANG job ~6months ago
So far we've added:
- Code typing practice with any language: https://typequicker.com/code-typing-practice - SmartPractice: analyzes your history stats to find weak areas and generates exercises for them: https://typequicker.com/app/text - TargetPractice: lets you interact with any of your stats; for example, clicking on a certain bigram that you typed slowly will create a natural practice text that targets that two character sequence - TypeAnything: let you create a typing exercise about anything; AI for typing pretty much - Advanced stas: we measure every character, 2,3 charcter sequences (delay to click in ms), every word, and even breakdown speed/accuracy per finger - Real-time hand/finger indicators: show you exactly where to place your fingers to type based on standard touch typing practices - Keyboards supported: QWERTY, QWERTZ (German keyboard) ISO, British ISO (adding Dvorak and Colemak soo).
Re: Ask HN: What are you working on? (January 2026)
#743Command languages are underrated, and being able to add a Bash-like REPL for agents and users alike is something I want to see more of.
Feather solves the "rest of the Owl" problem: agents/users get loops, conditionals, online help for free from Feather, as the embedder you only need to add application-specific commands.
Feather itself has no GC (uses the host's), no own data structures (uses the host's, e.g. JavaScript arrays for lists in the js version), and no I/O.
The core is implemented in stdlib-less C
Re: Ask HN: What are you working on? (January 2026)
#744I have a version 1.0, and now working on how to sell and market in a crowded product space!
Re: Ask HN: What are you working on? (January 2026)
#745Re: Ask HN: What are you working on? (January 2026)
#746I bought a 300 litre aquarium about 6 weeks ago for the living room. Added soil, plants and water. Have spent the last 6 weeks watching plants grow, and snails that smuggled in on plants, multiply. I over fertilised it and left the light on accidentally for a couple of days whilst I was away and experienced an algae bloom, which was interesting. Added some cardinal tetras and amano shrimp yesterday and have spent a l…
That's amazing. I've been looking at getting my first fish tank lately with my kids. Seems like a lot to learn. Any tips for a newbie?
Re: Ask HN: What are you working on? (January 2026)
#747Re: Ask HN: What are you working on? (January 2026)
#748Re: Ask HN: What are you working on? (January 2026)
#749The philosophy behind it is: instead of providing a bunch of tools to the LLM, you simply provide a single tool: run_python(). The Agent just generates code to do whatever it needs, to inspect local files, to carry edits, to run commands.
https://github.com/flipbit03/caducode
It worked surprisingly well, even with a very small 30b local model.