Top
Best
New

Posted by david927 1 day ago

Ask HN: What are you working on? (August 2026)

What are you working on? What have you been curious about lately?
307 points | 1122 commentspage 44
wbnns 1 day ago|
I left my job at the end of June; I'm tired of playing someone else's music and want to write my own songs (build my own apps)

So I'm building an app a week and focusing on solving niche problems I've experienced in my own life to start

I think it's never been easier to build prototypes, but because of all of the slop, building community and finding users around them are harder than ever before

This latter part I think is going to be the hardest part of going out on my own

But going to try

Things I'm working on right now:

https://a2ciple.pt/ - testing prep for a language exam required for residency & citizenship in Portugal

https://basehub.org/ - a docs site for agents to get the latest context on Base, an Ethereum L2

https://playgokab.com/ - a vocab game to learn words in diff languages

https://mru.space/ - a protocol to run software that gracefully degrades across failing hardware

https://shiponeshot.com/ - a framework to help me ship prototypes more quickly

Anyhow, cheers :)

josters 1 day ago||
Working on making an old Nokia 3210 use 4G because 2G is being shut down within the next two years in most European countries.

As it currently looks I need to design my own PCB with a modern LTE module and make it connect to all the peripherals. Thought it would be a nice project to get into electronics, soldering etc. Also really enjoying the constraints of an 84x48 LCD screen and how to implement "modern" technology like GPS navigation or design the UI for a music player.

sp1982 1 day ago||
https://corvi.careers/reports/technology-stack-trends/

It tracks explicit mentions of ~ 181 languages, technologies, vendors, etc as seen in job postings. The motivation was that GitHub activity and developer surveys describe what people use or enjoy, but not necessarily what employers are requesting.

eliasson 1 day ago||
I have had fun building a small test-framework in Gleam recently.

https://github.com/eliasson/garanti/

Just this friday I wrote an article that took a look under the hood.

https://markuseliasson.se/article/under-the-hood-of-a-gleam-...

ahmedxuhri 1 day ago||
Thread visualization web tool https://sudolaps.top/postroom/ > Show HN/Reddit/Youtube comments as 2d Auditorium (comments clustered into sections, summarized via ai) -> Free
mial 1 day ago||
I'm building Prospex (https://prospex.ch), a lead-generation tool for B2B salespeople in Switzerland. This is just a side-project as I have a full-time job.

Basically, I'm collecting public data (official registries, job boards, company websites, linkedin etc) to surface sales opportunity signals, like leadership change, new branch/market entry, funding rounds, etc.

jakegmaths 1 day ago||
I'm building a photo book system that respects privacy via no tracking, not sending anything to the server until you go to print (all stored in indexeddb until then) and even then requires as few details as possible (eg email address optional), and no sign up at all. Then everything deleted within a month. It's at https://www.rgbloom.com/ and UK only for now.
plasticsoprano 1 day ago||
Had a problem this week helping a customer troubleshoot some SAML interactions. They couldn't install SAML Tracer in their environment and I got tired of digging through HAR files and manually decoding SAML assertions and the like so I made https://hartosaml.com/.

Just drop in your HAR file and get immediate insights into the SAML related events.

hamilton_app 1 day ago||
A vibe-coded front-end to Google Health Connect that displays all health metrics that Health Connect holds in one gui.

It's an attempt to get round the fact that various health apps and vendors pick and choose what they share or show from other sources.

SamPatt 1 day ago|
I have a Pebble Time 2, which is an open source watch. I built a voice operated AI assistant for it.

It's hosted on a VPS, connected over Tailscale, and has a realtime TTS server (Piper).

The Pebble has built in transcription, so my app takes the transcript, hits the server endpoint with three possible paths:

1. Deterministic response

The server looks for certain triggers from the transcript like "Add task," "Complete task," "Set a timer," etc that will run a simple function on server and write / retrieve to a database, no LLM call needed. It then responds with the TTS output and the watch speaks. This path is nearly instant.

2. Fast response

If no trigger is found, then it hits a gpt5.6 Luna endpoint, which decides if it can answer the query itself, or if it needs to defer to the big brother model. If it can handle a query itself, it usually responds to simple questions in less than 8 seconds. It's also good about properly deferring, very close to 100% after a few weeks.

3. Deferred response

The VPS hosts a Hermes installation, and for more complicated tasks or for ongoing projects the Luna router sends it to the Hermes agent. This is typically quite slow, as you'd expect, but remarkably capable. I built the voice app to cache a few lines like "this will take some time" which will automatically trigger if the router indicates it's deferring, and then will respond with the full response from Hermes once it's finished (sometimes minutes later).

Pebble has a quiet mode, and my app will only display the text response if it's on, otherwise all responses are run through the TTS. Piper is so fast that this adds almost no time to the response.

In only a few weeks this has become the primary way I set up tasks, review and close them, set timers and reminders, log my weight, check in on the progress of projects I'm running on Hermes, and ask simple day to day AI questions.

Since Pebble is open source, AI tools are very good at building it, and it's trivially easy to set it up so that you can just ask the model to deploy it live. It's an awesome experience to tell it to change something, and two minutes later, that change is on your wrist.

Very fun project!

namanyayg 1 day ago|
I had no idea you could do something like this through the Pebble!

I pre-ordered mine last year but it looks like it's not going to come before September :(

As soon as it gets here I think this is the first project I'm going to attempt. It'll be helpful you've got any resources or source code for the Pebble STT and TTS parts. (I already have my own hermes that I want to hook it up to)

SamPatt 1 day ago||
The Pebbble transcription is part of their SDK and very easy to use programmatically, also it's quite accurate (not perfect but good enough that I turned confirmation off).

The TTS is Piper installed on the same VPS as Hermes.

Happy to answer questions or share code. I might publish the device app eventually. I hope your Pebble arrives soon, it's a great device.

More comments...