I am working on the little book of algorithms: https://github.com/little-book-of/algorithms A project to implement 1000 algorithms. I have finished around 400 so far and I am now focusing on adding test cases, writing implementations in Python and C, and creating formal proofs in Lean. It has been a fun way to dive deeper into how algorithms work and to see the differences between practical coding and formal reasonin…
Ask HN: What are you working on? (October 2025)
461–470 of 1001 posts
Re: Ask HN: What are you working on? (October 2025)
#462From there, users can either send funds to another wallet or spend directly using a pre-funded debit card. It’s still early, but we’re testing with a small group of users who want to receive payments faster and avoid PayPal or wire fees.
If you’re a freelancer or digital nomads interested in trying it out, you can check it out here: https://useairsend.com
Re: Ask HN: What are you working on? (October 2025)
#463Re: Ask HN: What are you working on? (October 2025)
#464Re: Ask HN: What are you working on? (October 2025)
#465Link: https://ohyahapp.com
Interesting challenge was designing for minimal distractions while keeping setup simple for parents. Timer-locked navigation so kids can see what's next but can't start other tasks or switch profiles. Also refactored from schedule-centric (nightmare to maintain) to task-definitions as first-class citizens, which made creating schedules way easier
React Native/Expo + Firebase. On the App Store after months of dogfooding with the family
Re: Ask HN: What are you working on? (October 2025)
#466It works by specializing for the common case of read-only workloads and short, fixed-length keys/includes (int, uuid, textCurrently, it's "starting to work" with 100% code coverage and performance that usually matches/beats btree in query speed. Due to compression, it can consume as little as 99.95% less memory (!) and associated "pressure" on cache/ram/IO. Of course, there are degenerate cases (e.g. all unique UUID, many INCLUDEs, etc) where it's about the same size. As with all indexes, performance is limited by the PostgreSQL executor's interface which is record-at-a-time with high overhead records. I'd love help coding a FDW which allows aggregates (e.g. count()) to be "pushed down" and executed in still requires returning every record instead of a single final answer. OTT help would be a FDW interface where substantial query plans could be "pushed down" e.g. COUNT().
The plan is to publish and open source this work.
I'd welcome collaborators and have lots of experience working on small teams at major companies. I'm based in NYC but remote is fine.
- must be willing to work with LLMs and not "cheat" by hand-writing code.
- Usage testing: must be comfortable with PostgreSQL and indexes. No other experience required!
- Benchmarking, must know SQL indexes and have benchmarking experience - no pgsql internals required.
- For internals work, must know C and SQL. PostgreSQL is tricky to learn but LLMs are excellent teachers!
- Scripting code is in bash, python and Makefile, but again this is all vibe coded and you can ask LLMs what it's doing.
- any environment is fine. I'm using linux/docker (multi-core x86 and arm) but would love help with Windows, native MacOS and SIMD optimization.
- I'm open to porting/moving to Rust, especially if that provides a faster path to restricted environments like AWS RDS/Aurora.
- your ideas welcome! but obviously, we'll need to divide and conquer since the LLMs are making rapid changes to the core and we'll have to deal with code conflicts.
DM to learn more (see my HN profile)
Re: Ask HN: What are you working on? (October 2025)
#467I built a routine management app for my kids (7 and 10) called "Oh Yah!" after their constant "Oh yah! I forgot" responses about homework Link: https://ohyahapp.com Interesting challenge was designing for minimal distractions while keeping setup simple for parents. Timer-locked navigation so kids can see what's next but can't start other tasks or switch profiles. Also refactored from schedule-centric (nightmare to ma…
Re: Ask HN: What are you working on? (October 2025)
#468Live demo: https://play.tirreno.com/login (admin/tirreno)
Re: Ask HN: What are you working on? (October 2025)
#469I'm working on a mini-project which monitors official resources on the web and sends email notifications on time. Currently covering around 15000 inhabitants.
Re: Ask HN: What are you working on? (October 2025)
#470I've been suffering from migraines for the last month, so have channeled my (non-migraine) time into a migraine tracker to try and find the root causes. All the tracking apps I tried all have nice complex forms, which is all well and good, unless...you are having a migraine. Rough idea is easy to use voice mode to record data, then analyze unstructured data with AI later on. I want to track all relevant life informat…