HACKER Q&A
📣 eisleggje

What Are You Working On?


It's been a while since the last thread, and I am a curious bee.


  👤 ifh-hn Accepted Answer ✓
A hand written LAMP webapp to replace an MS Access application at work. Only needs to run locally.

👤 A_D_E_P_T
Modern game development has become slow, expensive, and fragile. Teams are larger, timelines are longer, budgets are higher, and even highly produced games still frequently fail. I think one reason is that content production has not scaled well enough. The industry still relies heavily on bespoke hand-authored content, even in genres where structure, variation, and validation could be much more systematic. What's more, the authored content rarely appeals to everybody, which often results in commercial disaster. (See, e.g., Veilguard.)

I'm working on a procedural authoring system for party-based cRPGs. The idea is to treat RPG content as structured, validated data rather than loose text or one-off scripting. A procedurally generated location has encounters, hazards, NPCs, rewards, state changes, and a validation report. A generated quest has a hook, possible approaches, consequences, rewards, and failure states. Main campaign questlines, which can be modeled on the old "Adventure Path" system from Dungeon Magazine, are typically revealed in a stepwise way. The system automatically plays through and rejects content that is logically broken, unrewarding, or impossible to complete.

The broader goal is to build better authoring tools for RPGs: Tools that help small teams create large, reactive games very quickly, without giving up structure or design control.

So I'm starting a new company to push the boundaries of procedural generation and related technologies in games.


👤 NiallBunting
I've been working on a in-browser PDS (personal data server) for the ATProtocol.

It runs as a chrome extension and stores all the browser locally. A server is needed for some of the public connections. Early days but interesting:

https://localpds.at https://tangled.org/niallbunting.com/localpds/


👤 kvh00
I keep saving blogs and articles but almost never revisit them.

So I’m building an Android app designed to help me actually read what I save. You only get one saved article per day. Finish today’s read to unlock the next one. You can also save Twitter, Reddit, etc. posts separately and revisit them anytime.

Right now I’m mainly validating whether people would actually want something like this. If there’s enough interest, I’ll run a small closed beta for Android.

Join the waitlist for beta access: https://forms.gle/xgrXKoTkigYFcg6r7


👤 brynet
Making rent as an open source developer.

Shamelessly trying to attract new monthly sponsors and people willing to buy me the occasional pizza with my crap HTML skills.

https://brynet.ca/wallofpizza.html


👤 goyozi
No links to share but:

- a self-hosted PaaS with CI-driven deployments, managed by terraform (and possibly other IaC in the future) - think Coolify but with IaC or Komodo but easier to run full-stack apps (databases, queues and OTEL support built in)

- a benchmark for AI agents where they have to iteratively build an application - it shows how bad design decisions compound over time


👤 vinhnx
I have been building tools, VT Code is my latest, and I'm very proud of it.

VT Code: https://github.com/vinhnx/VTCode > An open-source coding agent with LLM-native code understanding and robust shell safety. Supports multiple LLM providers with automatic failover and efficient context management. => Recently I got 500th tagged release. The project has been started since August 2025, and the coding agent VT Code itself I believe to be stable and ready to use. Thankfully I got helps from the community recently we pushed quite a lot of releases and enhancements and bug fixes.

VT Chat: https://github.com/vinhnx/vtchat > A modern, privacy-first AI chat application with security.

VT.ai: https://github.com/vinhnx/vt.ai > Multimodal AI chat app with dynamic conversation routing.


👤 sermakarevich
AI:

- spec driven development workflow: https://github.com/sermakarevich/sddw

- fleet, orchestrator for running many coding agents: https://github.com/sermakarevich/fleet

- chunker, which builds smart chunks of the documents with hierarchical organization: https://github.com/sermakarevich/chunker

- ai knowledge wiki, a collection of ai papers and articles organized in hierarchical Wiki

- hierarchical organization of all passed Kaggle competition solutions (write ups and notebooks) - https://github.com/sermakarevich/kaggle_wiki

- claude code workflows, plugin to build custom claude code workflows based on ssd idea: https://github.com/sermakarevich/ccw


👤 sillysaurusx
I'm working toward making a Hacker News simulator in the vein of https://reddit.com/r/subsimulatorgpt2 (but using HN's code instead of a subreddit).

To do that, I'm building sharc, a port of Hacker News that runs on Common Lisp, implementing all the latest features of HN. (That last bit is the hard part.) https://github.com/shawwn/sharc

I just implemented collapsing comments and root/next/prev/context nav links. Also (sitename "https://x.com/jsrailton") now returns "x.com/jsrailton" instead of "x.com". (About to implement HN's "from" endpoint, e.g. https://news.ycombinator.com/from?site=twitter.com/jsrailton)

You can read the entire changelog here: https://github.com/shawwn/sharc/tree/main/docs/agents/handof...


👤 sandreas
https://github.com/nanowave-player/nanowave-ui

A tiny RISC-V linux-based (buildroot) portable audio player hardware with Software written in Rust / Slint.

Inspired by the iPod Nano 7g and totally WIP.

Will probably never be finished but it is a neat learning project


👤 rimmontrieu
https://raizensoft.com - Game development tutorials and resources for code-centric frameworks (libGDX, LWJGL, MonoGame, etc). All articles are written by me and I've been running the site for 10 months to share my passion and technical knowledge. 200+ articles so far and I'm planning to add more.

👤 boricj
Personally, a voxel space renderer for the PlayStation (Comanche terrain style rendering).

In theory, it's really not suited for this because (at least back then) this was designed for computers with:

- relatively large amounts of RAM (uncompressed color+heightmap data takes a lot of space),

- fast CPUs with data caches (it's a 2D trapezoidal walk of a top-down projected fustrum with plenty of additions, multiplications and divisions),

- memory-mapped linear framebuffers (for software rendering).

The PlayStation has none of these things: only 2 MiB of main RAM; an in-order scalar 33 MHz MIPS III processor without a FPU or a data cache, where any CPU load from main RAM stalls the pipeline for 5 cycles, multiplications have a 6 to 13 cycles latency and divisions have a 36 cycles latency; and the only way to touch VRAM is to send commands to the 2D GPU.

What it does have is 4 KiB of I-cache (direct-mapped), 1 KiB of scratchpad with no wait states and a fixed-point GTE coprocessor which is mostly geared towards projecting 3D points onto a 2D screen and not general matrix/vector processing. Meaning that if I get my hot loop within 1024 instructions (and no function calls), fit my working set+stack within 1 KiB and can pipeline the GTE for transformations and the CPU for map scanning/GPU submissions, it might just work.

So far I'm getting decent framerates (like 10-15 FPS at 256x240) with just software projection and GPU line rendering. Right now I'm wrestling with the GTE and various ways to trick it into transforming more points than it's supposed to be able to do, by looking at the fixed-hardware math equations for the various instructions and trying to fit my equations into them (doing stuff like putting relative altitude into X/Y vector registers instead of coordinates and massaging the rest of the values to get screen Y coordinates out of it).

Kind of a hardcore topic to pick for my first homebrew ever, but I craved a simpler, low-level optimization challenge as a pipe cleaner, after working on ghidra-delinker-extension for so long.


👤 vivid242
Leash, a low-dopamine mobile browser replacement:

https://leash.ax


👤 ChrisMarshallNY
I’ve been working on a bottom-to-top rewrite of an app that’s been shipping for the last couple of years. The initial version took over two years to write.

It’s coming along great. I’ve only been working on it since February, and it’s very complete, functionally. I’ve been using an LLM, extensively.

The original server took over seven months to write, but with the LLM, I had it done in about a month. The PHP code is great quality.

It’s not all bunnies and flowers, though. I’m spending the next few days, rewriting a Swift viewcontroller that the LLM wrote. It works, but the code is awful. It looks like it was written by a jargon-addled high schooler on Adderall. I just can’t bear to have that level of junk in my app. I asked it to refactor the code to improve the quality, and reduce the size, and it removed all the documentation and logging.

The good news is, is that I’m so far ahead of schedule (a position that I’ve never been in, in forty years of development), that I can afford to do this.


👤 lylejantzi3rd
A system for instrumenting GPS routes.

A user reports a location bug on their morning commute. You're 2,000 miles away. Instead of flying out to reproduce it, you replay their exact GPS trip on your simulator. Same route. Same speed. Same timing.

Record & replay real GPS routes for iOS.

Video here: https://x.com/LyleMakes/status/2064438713124270233


👤 oliwary
https://motionparty.net/ - motion controlled web games, by analyzing the Webcam feed locally. In the vein of eye toys for ps2. Works quite well I think, but some elements need improvement. Want to add more games as well.

👤 tao_oat
I've been working on https://favs.blue/ -- lets you see the top posts from any Bluesky user.

I missed favstar.fm so I tried making something similar on an open social network!


👤 izietto
https://github.com/mdesantis/ssr-deno Embed Deno JS runtime into Ruby to perform SSR / render JS views without spawning additional JS processes. It's even 100% working, and Deno just merged a PR which allows me to continue working on it: https://github.com/denoland/rusty_v8/pull/1970#issuecomment-...

👤 opticsketch
A 3D optical simulator - https://opticsketch.github.io/opticsketch/.

I sometimes need to have a quick but realistic model of an optical system without paying a few thousand for some of the well known commercial offerings, so I've been building this.


👤 Agoreddah
Gnoseed.com - https://gnoseed.com flashcards for learning. I like to learn the topics in a way the aws certification was done. I started with kubernetes topics and slowly adding more (docker atm). It's free to use, no registration. You can check and give me a feedback of you want.

👤 devmax1
https://zenduxai.com - a tool that helps users generate and launch ad creatives across multiple angles, messages, formats, and aspect ratios in 10 minutes or less.

👤 ahuth
https://prismstudio.dev. A GitHub and GitLab PR inbox and review UI. Built it to help me tame GitHub notification fatigue and see which PRs really need my attention.

Next I’m working on making reviewing large AI-generated PRs easier, but haven’t gotten there yet.


👤 mcapodici
https://www.useorganizer.com/ helps you organize stuff primarily but can also double as photo album and private log. Open source and local storage. Not so much working on. It is complete and does what I wanted it to.

👤 keizo
https://grugnotes.com same thing for almost 4 years, a dead simple notes app and ai multitool

👤 dgellow
Anyone working on non-AI things? Human making software for fellow humans?

👤 stonecharioteer
https://merrilin.ai, the best damned reading app for every platform with an AI chat that's spoiler safe by design. BYOB - bring your own books.

👤 atoav
A rental managment system for university workshops that rent out equipment. Since I have been doing this for 5 years I know all the realworld edge cases and what I have is already better than most competitors.

👤 brianmz
Tech Talks Weekly

It's a weekly email with all the recently published software engineering conference talks. I also pick a few ones that are featured and write short TLDRs. This month, I'll should hit 10,000 readers, fingers crossed!


👤 wegfawefgawefg
I work too much.

We've got: a language that looks like python but lowers to cpp: https://github.com/wegfawefgawefg/dudu; a site that tracks power outtages in canada: https://www.outagehub.ca/ ; a clone of spelunky in cpp with multiplayer and mods: https://github.com/wegfawefgawefg/splonks-cpp; a shadertoy clone but you code in asm: https://github.com/wegfawefgawefg/asm-shader-toy; a fixed point math lib: https://github.com/wegfawefgawefg/gfxp; a sexpr based json replacement with good perf: https://github.com/wegfawefgawefg/gsexp;

Outside of personal stuff, I'd like to shill my consultancy, G&K Software. (IDK if this is even allowed, but its what i'm working on so I think its fair.) We had: an ai asset generation site; a trading tool for a fund in dubai; an endorsed sales data tool;

Those are all out of business now due to global market craziness, tarrifs, and AI advancements... so I guess we've got nothing right now. (Please somebody give us business lol) gibson@gnk.software


👤 minajevs
https://teamday.lv/en

We are building local (Baltics) marketplace for teambuilding events.

Ever since I took on teamlead responsibilities in my daily job, it's been a recurring challenge to organize fun and engaging activities for a team. Providers are usually small businesses, so they all handle enquires, booking and payments to the best of their ability. That usually means exhausting back and forth to get and compare multiple offers.

Instead, we provide curated list of activity providers to choose from, and then handle communication, invoicing and disputes\returns, if needed.

We have got overwhelmingly good feedback from HRs, responsible for team event bookings, and now trying to grow vendors to launch publicly.


👤 quintu5
I've been deep in the IntelliJ plugin rabbit hole.

My primary project is Mermaid Studio, an IDE grade Mermaid diagram authoring experience for both humans and agents built for JetBrains IDEs. Semantic highlighting, refactoring, 120+ inspections covering everything from common rendering issues and foot-guns to obscure syntax quirks, contextual completions, interactive (drag-and-drop) diagram editing and styling. A suite of included MCP tools surfaces the plugin's intelligence and rendering capabilities, so your preferred agent (even using relatively small local models) can generate correct diagrams, even the newest or more obscure ones with ease.

https://mermaidstudio.dev/ | https://plugins.jetbrains.com/plugin/29870-mermaid-studio

Tinkering with several other IntelliJ plugin ideas that may or may not end up being released.

Still occasionally pushing up new features Tachi Code, my browser extension that brings a feature rich, highly customizable, Monaco Editor based code editor to the browser surfaces you always wished would be less of a pain to read. These days, I mostly use it for reading and printing Markdown files.

https://tachicode.com/


👤 babuskov
Angel Investor Simulator:

https://store.steampowered.com/app/4771830/Angel_Investor_Si...

You bid against other investors in a show similar to the Shark Tank and then you assign advisors to help the startup grow and finally cash out after IPO.

The ideas that startups have are wacky for the fun factor, but the economic simulation underneath is realistic.

There will be a free playable demo soon.


👤 AG342
I've been working on a minimal, keyboard-driven Mac app that records and transcribes your meetings on device, similar to MacWhisper but way more minimal and simple. I originally built it for myself because I kept forgetting to start MacWhisper before calls. It uses Apple APIs to capture the mic and system audio, diarises it, and gives you a markdown transcript at the end. What I quite like about it is that during the call you can mark key moments, which then get inserted into the transcript at the right time. So if you do hand it to an LLM to summarise, it knows what was important.

https://traceapp.info

https://apps.apple.com/app/trace-on-device-transcripts/id676...


👤 jtwaleson
I'm building a context engine for all the code and docs in your company, and expose it via a collaborative zoomable UI + CLI , where you can collaborate with your co-workers and agents.

We map technical debt, agent readiness, code complexity, security scanning, bus factor so you can easily see how all the software in your company runs.

Got the top spot in What Are You Working On in Feb 2025 and then started a company around it at https://getcomper.ai . We got a pre-seed investment, then got some ex-Miro folk on board and are building the product at breakneck speed.

One of the coolest things is that we've got an incremental git blame engine built on top of GitOxide as our backend is fully built on Rust.


👤 ianbutler
https://www.usenym.com/

Everyone is working on personal agents but their identity model is wrong. They act as you, risk your reputation, your data and more. Nym is a personal agent that has (and can make) all of its own accounts and only gets selective read only access to yours.

The goal is to make reliable agents that are able to operate safely in the world to help you do what you want, without exposing your accounts and personal identity to potential harms.

For instance nyms have their own e-mail addresses at nym-mail.com, you can CC them on chains and they can only respond to people on that chain with a lease of 5 days, or permanently for people you specifically add.


👤 qrush
Still working on WORDTRAK, a Scrabble/Wordle esque game. I’ve got 25-30 people playing the daily game and trying to grow it!

I wrote about how I built the game’s dictionary and how hard the problem is: https://wordtrak.com/blog/2026-06-05-how-i-built-a-new-dicti...

The most surprising thing from the last month has been building a Discord app/activity has driven the most amount of engagement. Once it’s in your chat it tends to become a daily habit!

Give it a shot here: https://wordtrak.com/daily


👤 palpfiction
https://getkakeibo.com - an extremely simple app to get your finances in order, based on the kakeibo method. You make a plan for your month (income, fixed expenses) and then you track your expenses daily, categorising them into simple buckets: wants, needs, culture and unexpected.

At the end of the month, the app guides you through a reflection flow where you can learn about your habits and think about what you want to improve. 100% offline, fully private, no AI.

The app is paid, but I actually made a page for HN readers to get it for free, I'm having a lot of trouble with distribution: https://getkakeibo.com/hn/


👤 plamere
https://smarterplaylists.playlistmachinery.com/

Build complex Spotify playlists by wiring together components in a visual editor. Mix, filter, and sort tracks from any source (with Last.fm and Musicbrainz support). Combine multiple playlists, saved tracks, and recommendations. Filter by genre, audio features, popularity, and more. Schedule programs to keep playlists updated automatically.


👤 grzracz
https://cotect.dev

I was frustrated with not being able to properly review code changes that agents make, looking for a middle ground between VSC and Claude Code. So I built one. Still in early development but its working (mostly) and I hope dogfooding will get me all the way to something great :)


👤 killme2008
Working on a personal project: langfuse on GreptimeDB, try to make S3 optional.

https://github.com/tma1-ai/openfuse


👤 chunqiuyiyu
I developed an AI agent (https://github.com/chunqiuyiyu/sekrun) from scratch using DeepSeek V4 Flash to complete some simple tasks. I'll continue to improve it over the weekend.

👤 tommypham
I made an AI tool to help founder validate their startup ideas base on the user's complain on reddit and analyze their competitor to find the gap in the market - https://painbase.space/

👤 kilroy123
Working on a better way to watch YouTube:

https://channelsurfer.tv


👤 rpastuszak
A wooden / e-ink version of enso.sonnet.io (working title "writer's log" or "writer's block")

👤 jareklupinski
whenever i want to play a video game with someone, theres no way to just pick up a couple of controllers and jump into a game without waiting for something to start, or update, or sync, or...

im building a tiny handheld video game (think GBA) where simply turning it on starts the game and you can immediately start playing. no os to boot, bios checksum screen to wait through, or scripts between you and the game. if another person turns their handheld on, they join your game and it becomes multiplayer seamlessly

esp32-s3 based for dual cores (screen updates / game loop) and bluetooth for "local" wireless multiplayer matchmaking, currently making the game itself be like a cross between puyo pop and tetris (an actual mashup of the rules, not just two games in one cartridge)


👤 asim
Personal AI. Step by step evolving something I worked on for 10 years from an open source Go framework to APIs to apps and now agents. It's been an interesting journey. It's not finished yet. It's also not going to be a billion dollar company or have breakout success like OpenClaw but when you tackle personal problems I think they turn into more valuable opportunities. The opportunity to learn or have something that benefits a few people. I can't take off my entrepreneurial hat though. I keep trying to figure out how to make it work for everyone but I think that's the trap. Build for yourself. The rest will come.

👤 stfurkan
https://duckville.town

You play a duck in a small shared town. You pick a job, pay rent, post on a Twitter-style feed, vote in local elections. The simulation keeps running when you close the tab. No PvP, no loot boxes, no combat. Playtime is a few minutes a day by design.


👤 nicbou
I have made a batch of elderflower syrup from trees in my area, and now I'm trying it in different summer drinks.

Next I want to try making booze out of the berries.


👤 JKCalhoun
Finished my little hobbyist, analog computer project. It consists of PCB modules that you plug into a breadboard and wire inputs and outputs together in order to program it.

Kind of an open, learning platform to satisfy my curiosity about what analog computing was all about.

This month I am putting together a couple of dozen kits, preparing some YouTube videos, and generally trying to roll it out by July.

Just a little example here, wired up (programmed) for Lotka-Volterra simulation:

https://youtu.be/CjvM9tRrSNU


👤 3stacks
To blow off steam I'm working on a self-hosted language learning app, primarily for Afrikaans, but soon expanding into German and Spanish down the line. I was sick of paying for Lingq and Clozemaster and resources for learning Afrikaans online are very sparse. I also wanted something that tightly integrated with Anki: https://github.com/heuwels/lector/

It's a lot of fun


👤 iwhalen
Implementing Tierra [1] in Zig a learning exercise. Trying to push all allocations to compile time and not use LLMs for coding. Repo: https://github.com/iwhalen/zierra

[1]: https://en.wikipedia.org/wiki/Tierra_(computer_simulation)


👤 sloped
I built my own version of Kill the Newsletter. Been testing it with various newsletters. Learning that a lot of the popular email newsletters are horrific, but if you have any, popular or ones only two people read that you like, I want to know!

I also bought some steel table legs and rebuilt our kitchen table and bench yesterday. The table came with wooden legs that always seemed unstable, I would confidently stand on my table now.


👤 jamesponddotco
While waiting for another developer to finish something for a project I’m working on, I’m working on an MCP server in Go that provides a Home Assistant voice assistant with basic functionality that is missing from the default feature set, like telling jokes, flipping a coin, choosing between N options, making equations, and other things I consider essential for a voice assistant.

I’ll probably go further and include things like Apple Weather support[1], and Plex, YouTube, and Kagi search, if I have the time.

[1]: Because in Home Assistant you can only ask about the weather in the location you have configured, not in other locations. At least that’s how it works here at home.


👤 robkam
YtreeNova an XTreeGold-inspired, FOSS, keyboard-first Linux file manager built for fast, precise file work. Developed with AI assistance, but it does not run AI itself. https://github.com/robkam/ytreenova

👤 abstractspoon
An Eisenhower Matrix plugin for my to-do app.

https://github.com/abstractspoon/ToDoList_Dev/tree/9.3---New...