Ask HN: What Are You Working On? (Nov 2025)
413 points by david927 2 days ago
What are you working on? Any new ideas that you're thinking about?
413 points by david927 2 days ago
What are you working on? Any new ideas that you're thinking about?
A new ping pong paddle design.
My backhand is OK but my forehand sucks. Grip styles for standard handles usually end up favoring one side or the other. I'm making a handle shape that's easier to get the blade angle right on both sides. Hopefully a couple more iterations on the 3D printer and then I can have a functional prototype made.
Working on a low cost, miniature Bluetooth tracker. The inspiration was my parents keep losing (forget) their spectacles in the house. I wanted to build something that is very easy and simple to use and it was important to keep it small. SO the form factor is something like an airtag but 10x smaller which can be just stuck on to the spectacles and forget that it exists. Next step, obviously is to build a simple app that shows the location of this tracker with a range based on the Bluetooth signal strength.
I built a website (https://hpyhn.xyz) for hacker news users for reasons:
1. hn comments are valuable, I've spent a lot of time going through hn comments. I think there are valuable comments buried in the threads with fewer points, so it's not enough to just read top3 threads.
2. Sometimes a good post is ignored due to a bad title, sometimes I still have no idea what the post's theme even after I read a few paragraphs.
3. I want to filter out some posts I'm not interested in, but I realized I need read some other posts it's not a simple yes/no problem, so I gave every post a interesting score based on my own preference
so I want a tool to save my time while not missing out too much on hn
I’m working on an AI-assisted reminders app using on device models for iOS.
Things like, “get xyz a birthday gift”, and it finds the contact and sets the reminder for a few weeks before the birthday.
The source data is calendar and contact info, but the nice thing about local models is that no data gets sent to providers, and the app can be cheap
I made an LLM-assisted DnD character sheet tracker! It's up here:
And the repo is here:
https://github.com/igor47/csheet
If you play DnD, I would love feedback! Feel free to leave it as GitHub issues or discussion.
If you don't play DnD, you might still find the repo interesting. It's hono on bun, I render jsx server side and client side is all htmx. I use vercel's ai toolkit for the LLM interactions, which are super fun and work really well. I think this is a great use for AI actually. I've structured the code so the same services can be called either by the user via forms and routes, or via LLM tool use, so for every action in the code you can do it via either LLM or "manually".
The LLM usage is fun and interesting. What model are you using, and how much customization are you doing to integrate with the app and maintain character?
I suggest adding an export function to make the characters more portable. Maybe export to PDF as well as JSON.
Using haiku 4.5 right now. I think I could get away with even smaller models. The prompt is here: https://github.com/igor47/csheet/blob/main/src/ai/prompts.ts and my tool use is here but it's really all through the code: https://github.com/igor47/csheet/blob/main/src/tools.ts
A visual editor for creating video games on the browser and on Linux desktop: https://stickyfingies.github.io/g2ngine
I've done this with C++ in the past, but ran into substantial friction with the CMake toolchain, specifically w.r.t:
- cross-platform compilation with large dependencies (vcpkg ports)
- running multiple compiler chains in the same build step
That second point is necessary if, for example, there's some AOT asset processing work that uses a native tool, and you're building for web. Expressing that some targets should use the emscripten toolchain while others should use the native toolchain, and interleaving between them, was a mess. TBF, I haven't done that with cargo or build.rs yet and it may prove to be equally frustrating.
Other features:
- undo/redo using a stack of swappable states
- serialization to disk (native) and LocalStorage (web) with some integration tests in progress but I am not satisfied with the correctness of my implementation: I want to *guarantee* that all information is preserved round-trip, but I also want a Patek watch.
- OBJ, GLTF, GLB models are loaded as "blueprint scenes" which are distinct from the "world scene." I made this distinction at the type-level because "scenes" are groups of entities that use newtype IDs (`LightId(u64)`, `MeshId(u64)` etc.) as primary and foreign keys to refer to each other, and I wanted to make it impossible for an entity in scene A to hold an ID for an entity in scene B. Instantiating a blueprint requires creating new IDs for every object.
- W.I.P. Alpha rendering, depth sorting, overhauling the material system to support multiple shaders (tough) that may be compiled after the engine itself (even tougher, a lot of runtime dynamic state and schema validation stuff), physics, scripting - oh yeah!
- Scripting using JS on both web (runs in browser itself) and desktop (uses a packaged JS runtime `Boa`) but Boa doesn't perform well on desktop in debug mode so I'm exploring other options.
Creativity and game development clubs for kids:
https://breaka.club/blog/why-were-building-clubs-for-kids
Basically, I'm building tooling and providing these to community run clubs that help turn kids from consumers into creators. I'm focusing on game development initially, but have plans to expand into other areas of creativity.
We're using Godot + GodotJS (which I'm a maintainer of): https://breaka.club/blog/godots-most-powerful-scripting-lang...
I've much experience building software for creators. I'm a (core) developer of Tabletop Simulator. I worked at a now defunct startup which allowed people to create and distribute their own interactive fiction stories using partner third-party IPs.
I have a background in EdTech. I used to be Head of Engineering at Ender, where we ran custom Minecraft servers for kids: https://joinender.com/ and prior to that I was Head of Engineering at Prequel / Beta Camp, where we ran courses that helped teenagers learn about entrepreneurship: https://www.beta.camp/. During peak COVID I also ran a social emotion development book subscription service with my wife, a primary school teacher.
A structural biology viewer/editor/CAD-style application. Combines functionality similar to PyMol, Coot, VMD, and GROMACs. Open-source, standalone executable. Built in Rust and CUDA.
And the host of bio libs required to do it. The sort of thing that are mature in Python, for example, but I needed to build for Rust.
My friends and I have been hacking on http://dateit.com for a while. It's an event planning app (works best on iOS and android, but there is a web app) with lots of fun features:
- Calendar sync
- Photo upload
- post/comment/reactions
- Recurring events
- SMS notifications
- Greeting card maker
(and a lot more)
We started working on this all the way back during the Covid lockdown when we wanted to capture that "facebook events" experience without the facebook.It's grown into something much more than our original idea. Most of the features are free and we have a fair pricing model that doesn't nickel-and-dime you like many of the competing apps do. Would love your feedback!
I'm working on a (hopefully) better version of Spelltable to play Magic: The Gathering with my friends: https://cardcast.gg.
I think I got all of the important bits in place, now just working on improving the quality of life experience and bug hunting.
https://aykev.dev/webgpu-waveform/
https://github.com/mrkev/webgpu-waveform
Made some updates to this open-source library I wrote to render audio waveforms using the GPU on the browser (WebGPU).
Example on the site. Works without enabling flags on Chromium browsers. There's an example to scrub and zoom in real time on some audio. Feedback welcome!
What I am working on right now:
-https://salespark.app/apps/discount-spark: A Shopify app that allows merchants to create more powerful discount codes so they can create stronger offers for their customers.
What I recently built but didn't find a successful product market fit:
-https://wordazzle.com: A word game that's designed to expand your vocabulary with exceptional words.
-https://spicychess.com: Chess, meet boxing! Imagine playing chess BUT you can also smack your opponent. Now, if you smack em enough times to drain their health completely(yes, you have a health bar), you can steal their turn. It's fun, a little evil, but after thousands of $ spent on marketing, never found critical mass.
Assuming it’s just regular online chess but you’re forced to share your location in real-time
You press a button to smack- there's a 3 clip that shows this on the homepage so I am surprised you find it unclear!
I recently started a local chess club, and did a quick search for software to use to allow us to manage the club, but couldn't find anything open-source/free.
I wanted something that would allow us to record members, games, etc., and also allow us to be assigned a local club rating. Anyway, after doing some searching and only finding paid software, I decided to just build something. That lead to https://openchessclub.org
You can check it out on GitHub: https://github.com/OpenChessClub/openchessclub.
I plan on building a QR code generator that allows club members to check-in during meetings, which will then allow players to be matched, and some other features, although it is primarily aimed at smaller chess clubs, so don't know how far it'll go.
After one of my cyber security research caught some attention in media, am now working on -
Open Source Vacuum Robot firmware
Working on a free alternative to Masterclass - compiled from YouTube clips!
Currently have two binge-able mini courses on How to Start a Startup (could be relevant to folks in here)
Here it is: https://opencademy.com/
Building https://github.com/openrundev/openrun, a platform for declarative deployment of web apps.
OpenRun runs as a web server, which does GitOps driven app deployments. You can currently deploy apps on a standalone machine, on top of Docker/Podman. Working on adding support for deploying on top of Kubernetes. On Kubernetes, OpenRun will replace your build jobs (Jenkins/Actions etc), CD (ArgoCD etc) and IDP (Backstage etc). The same declarative config which works on a standalone machine will work on Kubernetes, with no YAML to maintain.
Making advanced multiphysics simulations and optimizations accessible through a simple web interface and AI chat agents. I’m building SimuPort (https://simuport.com ) to lower the barrier to running and iterating on complex simulations. I’m interested in hearing from anyone who has needed these kinds of simulations in practice (e.g., optimizing airflow in devices, analyzing thermal–structural interactions in prototypes) or who has experience with tools like Ansys, OpenFOAM, COMSOL, SimScale, or similar. What worked, what didn’t, and what’s still missing?
I have been working on https://easymiet.eu/ It is specific to the German rental market. Basically if you want to rent an appartment in Germany most landlords require you to fill out a non-standardized self-disclosure form. That can be annoying to the landlord because especially in larger cities you might have a couple of hundret applicants and it is also annoying to the possible renter since they have to fill out the same information for every apartment they apply for. This is where easymiet comes in. As a landlord you can generate a viewing, shared it through QR or a link. Interested renters can apply using their profile. It also has a application approve and dismissal workflow automatically sending emails to the applicant. My plan was to monitize it selling applicants the ability to add more info to their profile like a picture or relevant documents. However so far I haven't been able to generate much interest. The tech stack is Next JS with BetterAuth, Drizzle and Postgres. It is hosted on a Hetzner VPS using Kamal ( wrote a blogpost about that if you are interested: https://markow.dev/blog/complex-next-js-app-kamal )
Quick feedback: looks way too empty for me to look real. Could also just be a scam. Also: why would I as an applicant add more data for money? The landlord has the benefit, they should pay for that.
> Wir sind nicht bereit oder verpflichtet, an Streitbeilegungsverfahren vor einer Verbraucherschlichtungsstelle teilzunehmen.
Doesn't help haha. Maybe explain why?
To be fair, the thread is called "What are you working on", so it's by definition work-in-progress.
> Also: why would I as an applicant add more data for money? The landlord has the benefit, they should pay for that.
In many hot rental markets (My experience mostly with Berlin), you are mostly not in a position to say "the landlord should pay that" and everyone is desperate to supply the best, most complete and most convincing documents even if it feels bad to fork over that much personal data to a random stranger on a platform.
Working on a phone app that streamlines household management for unmotivated losers (like me) so that they stop wasting money (wasted food) and time (procrastination)
Working on an app that helps me (and other people) do household management on autopilot. It helps me manage things, food, expiration dates, shopping, chores, and I get notified periodically to review my lists. I waste way less food and I actually do my chores instead of procrastinating. https://okthings.app
It looks like you have to do a lot of data entry when you buy things, no?
Yes. How i tried to solve it: you have a shopping list where you can add things on the fly. These things will need to be categorized (food, household supplies etc) at a later date, which is when the review is due for the "Uncategorized" category.
Generally, i tend to buy the same things, so the "big" data entry job happens only once.
I wanted to see if I could use generative AI to build a whole business. Not just a digital product or an app — but the entire business from end to end:
(Spoiler: I did manage it and launched in just 75 days from start to first order)
- Three tier corporate structure with manager-managed LLCs and a private WY LLC as manager, complete with a knowledgebase-powered assistant that can write share registries, banking resolutions, meeting minutes, contribution contracts, loans and more
- Supply chain management with proprietary lot tracking that tracks PO line items from production to delivery
- Generated the base for all product images, helped write and research label design and text, wrote SEO titles and product descriptions
- Used Claude Code to build the entire Shopify theme for the site, all collections, product pages, legal pages and a COA database to boot
- Used Claude Code to build a custom Shopify app to integrate lot tracking into the shop so that when lots sell out the next lot is queued for sale and all lot-related metadata is synced to the product variant and displayed on the product page
- used Claude Code to build a super analytics platform that combines the data from GA4, Shopify orders, and Meta business suite into a single feature store where I can wrangle the data to ask/answer any question I can dream of about audience segments, product popularity, what’s working or not, and get insights on what to do next
If you care to check it out, the site is https://cosmicpeptides.com
Meta question:
Is there a cadence for these threads? I had in mind to "be prepared" to post in November's with what I'm working on, but I expected it to come around on the 15th (mid-month).
What I'm working on:
- skuilder - (skill builder) - https://github.com/patched-network/vue-skuilder - an AGPL framework / toolkit for SRS++ based interactive tutoring systems
- https://letterspractice.com - a low cost, hopefully high quality early literacy acquisition app, targeting ages 3-5.
- https://flutor.app - an app to learn the flute
(The proprietary apps are built with the toolkit).
I've struggled to pitch or articulate the vision here, but my latest pithy attempt is: scaling self-actualization by mechanizing the nested loops described by Anders Ericson's 'deliberate practice' - Inner loop: individual learners maximize their skill uptake velocity and performance peak by adhering to domain specific best practices - Outer loop: domain specific best practices get refined according to innovation or serendipitous discoveries from the inner loop (eg, someone is observed to beat out prior best practices)
As mentioned, I'm flat-foot posting here, so the pages aren't all prepped. https://flutor.app/dbg and https://letterspractice.com/dbg show some of the innards. Not linked, but I'm especially fond of https://letterspractice.com/dbg/juggling - the premise here that as child practices the letters, the letters exemplify the principles of effective practice in alliterative skill domains (juggling Js, batting Bs, flossing Fs (it's hard ok?))
I believe it is every other Sunday but I'm not 100% sure.
Learning that RCS is even more of a monstrosity and a lie than I thought a few years ago. Yikes. Lots of groundwork a decade ago setting the stage for "the carrier creates a common service anyone can interact with" (like sms/mms currently do, which would be great) but in practice it's pretty much 100% "only the carrier app or Google/Samsung messages has access to literally any of it".
Yeah I'm not gonna touch it and I'm going to actively encourage people to disable it. Use signal instead.
Been working on my programming language https://github.com/buzz-language/buzz for 4 years now (with some down periods). Currently mainly working on the tooling: LSP, DAP and formatter. Also managed to get fuzzing working with AFL++ and found a bunch of bugs with it.
Chipping away at trying to bring a total reform of American English.
https://reformeuropa.net/raea.html
Currently its at like 90% completion but there are some subtleties that probably need to be worked out a bit more. The PDF linked from that page explains all the details (although for reading just peeking at the charts on Page 4, 5, & 7 should get someone to reading it fine enough). Currently both Alice In Wonderland and Dr Jekyll are fully transcribed into the reform if someone wants to jump into seeing it in action. Certainly interested in thoughts and complaints of the system.
Also looking here sometime soon to playing around with an improved SI unit system. So if anyone has any new ideas here too I'd be very interested.
Examples of things to be touched upon would be like: - Make g (not kg) the base mass unit. Making 1 m^3 of water = 1 g - Bring commas to be the universal decimal point separator.
Working on https://libredesk.io/
It's a modern, open source, self-hosted customer support desk.
An AI relationship coach built on integrative therapy principles: https://reynote.com
An AI-powered social media management tool that creates, schedules, and publishes content automatically across Twitter/X, LinkedIn, Facebook, Instagram, and Threads.
*The problem:* As a solo founder, I was spending hours each week on social media - writing posts, scheduling them, managing multiple accounts. I wanted something that could handle the entire workflow automatically while still letting me stay in control.
*What PostSam does:* - AI generates content tailored to your brand voice (you provide initial brand info) - Creates full content campaigns with posting schedules - Calendar interface to review, edit, or reschedule posts before they go live - Auto-publishes to all connected accounts - Learns from your edits to improve future content
*Current status:* Live and working. Seeing good engagement rates from users who set it up once and let it run. The AI content quality has been surprisingly good - it adapts well to different brand voices.
>Twitter/X, LinkedIn, Facebook, Instagram, and Threads
All those have official API for creating posts? If not, there is a chance they will ban the tool.
The Daily Baffle, a site with all sorts of daily puzzles including one clued daily by NYT-published constructors.
Can check it out at https://dailybaffle.com
I'm still working on growing the audience. App coming soon!
This is awesome, shared with a few people I know would like this.
Historical public companies Merton Probabilities of Default.
A project just for fun and still having to finish a couple of things.
I plan to make the datasets public (everything but some raw market data as vendors don't allow that) and also about to add the explanation of what Merton PD is.
I'm building a Twitch streamer focused version of cameo. The first beta version is specifically for League of Legend streamers.
https://demo.replays.lol/clipper (recording the demo video today).
The idea is that a generic video message doesn't appeal to a fan of a video game streamer, instead what really would be cool would be watching them react to your best moment in a game.
Our software removes all friction from the journey, the fan doesn't even need to record their own gameplay, we have bots set up that can load up someone else's gameplay just from their username, record their highlight for them, upload it to our platform, then the streamer just needs to come in, watch a ~60 sec clip, give a genuine reaction, press 'submit' and its all done.
There's a few markets I'm trying to find product market fit in: ~1-2 minute coaching sessions, sports commentator style commentary over your clip from influencers, hyped up reactions from your favorite streamer, a community-focused segment on a stream of watching a compilation of your fan's best moments.
We're ready to launch, just trying and struggling to find the first few people to sign up.
I've working on an AI Thumbnail Generator for making YouTube thumbnails and social media images the last few months. https://thumbnail.ai/
Spent the last three months building a competitor/lookalike ML model + API. Started using plain embedding similarity and quickly realized you end up with similar noisy results as ocean.io. Ended up using similarity learning which works quite well with little data. Launched this as an API and small web app. Hardest part right now is to fend off scrapers honestly.
Examples:
- YC: https://markets.apistemic.com/companies/y-combinator-goaq9
- uber: https://markets.apistemic.com/companies/uber-com-ojj2j
- Anthropic: https://markets.apistemic.com/companies/anthropicresearch-yx...
Try it for any company here: https://markets.apistemic.com
Working on https://candevsdosomething.com and rebuilding https://Automatio.ai from scratch.
We developed a novel optimization pipeline for LLMs so large models can run on a standard laptop.
Our first prototype optimized an 80B model to run at full 256k context at 40 tokens/s while only taking up 14gb of RAM.
We are currently leveraging this tech to build https://cortex.build a terminal AI coding assistant.
Curing broken developer heads. Good software engineers are good, because they are non neurotypical with many downsides such bad emotion/feeling management with huge avoidance.
My point to help to build your own MentalOS that works for, to live smoother lives without huge up and downs.
MCP gateway: https://mintmcp.com
There's an agent monitor which intercepts requests either using a LLM proxy or hooks, that gives you full telemetry into the agents + MCPs used. And a MCP gateway that enables centralized deployment and securing of MCP.
Working with a group of friends on a "microcontroller-for-makers" kind of thing called the MakerPort. (https://makerport.fun) Sort of similar to an Arduino or micro:bit, but uses the MicroBlocks programming editor (https://microblocks.fun) created by John Maloney, who was the original team leader for Scratch at MIT for 11 years. The hardware includes an mp3 player, I2C ports, accelerometer and true capacitive touch sensors.
I'm working on Habitat. It's a free and open source, self-hosted platform for communities to discover and discuss their local area. The plan is for it to be federated. I've recently solved an issue with cron jobs that was driving me mad for ages. I feel that I'm pretty much nearing a first tagged release, but I feel that I need to work on branding and messaging a bit before I do. I can't tell if I'm procrastinating that final push to something that makes it more official or not.
- The idea: https://carlnewton.github.io/posts/location-based-social-net...
- A build update and plan: https://carlnewton.github.io/posts/building-habitat/
- The repository: https://github.com/carlnewton/habitat
- The project board: https://github.com/users/carlnewton/projects/2
https://github.com/ezeoleaf/mycorust - A mycelium network simulation after I started to get interested in fungi and mycelium. Learnt a lot of Rust and gain more knowledge of performance and resource usage.
We're building NextBunny.co - A visual development platform for Nextjs users.
if you build, design, or ship products in Nextjs this is something you must try. Amazing UI components ( shadcn, framer, tailwind) smooth builder and high quality code export.
Working on AI interpretability infrastructure! Starting with hallucination/failure mode detection and causal tracing in transformer-based foundation models. It's non-SAE, domain-agnostic, and works for any kind of tokens or sequence data (e.g. not just English text - biological sequences, physics data, etc). Some of our early tests indicate that this detection setup could broadly work well for any property, but we've mostly validated on hallucinations. If you have access to self-trained or open-weight models, would love to have you try out the alpha version - running it through HuggingFace!
I'm working on an TTRPG Toolset for managing universes
It's still early in development, but it has a large number of features that I've always wanted. A dynamic entity system so users can create their own entities with their own traits. Random tables. A madlibs still generator. All of these things work together, too. You can have tables that randomly pick other tables values, or you can reference your own custom entities. And all this can be tied to maps or a calendar. Again, all something users can create. And of course, all of this can be shared out so you can have a published gazetteer and encyclopedia of your world that is easy to manage.
Mostly done because existing systems were too clunky, and wikis don't offer the same level of control and reuse. For example, you can reference entities parameters in other entities allowing you to embed data in multiple places and have it have a single source of truth.
I’m currently creating a simple community where people can honestly share their emotions and empathize with others’ feelings (without comments). It’s a web community where users can receive a comforting message from AI based on emotion analysis of their text, emojis, and chosen colors.
If you have any ideas or comments for improvement, feel free to reply anytime! (For reference, this service is designed for Korean users — I’m Korean myself.)
This month I wrote a small Windows utility to keep a PC "always awake": prevents the PC from going to sleep (using a Windows API that exists just for that) and simulates invisible mouse movements every 60 seconds to keep apps like MS Teams happy, so that the user always appears active.
There is a PowerToy thingy that's similar but it's full of options and command-line flags. My version has no options, it's just a tray utility that can be toggled on (green) or off (orange) with double-click. There are also physical mouse jigglers but they're cumbersome, and many have visible mouse movements, which is extremely annoying (not all of them do this but many do!)
The full install file is just 100Kb, works on all versions of Windows starting with Win7, installs without admin rights. Can't live without it!
I need to make a website for it but I'm procrastinating on that one last step...
Working on therapy software, for porn addiction.
Built a web interface for Magic: the Gathering draft pick advice, trained on top player data.
Website: https://statisticaldrafting.com
Turns out to be a small niche, but I enjoy it!
I'm working on https://www.fluxmail.ai, a modern, AI-powered email client.
I think there's a lot of potential for AI to improve the way we organize and manage our inboxes, while still letting us keep control over it.
What I've learned is that there are a lot of little features that make up a good email client that you may not even think about when using one, like threading, quote blocks, even what email address(es) to autofill when you reply to an email. For an app you use potentially for hours a day, the polish and "last 20%" makes a huge difference - and takes a while to build!
If you have any feedback, especially on what features are most important to you in an email app, I'd love to hear it :)
Disclaimer: I'm making presumptions, since I haven't used the service. Correct me if I'm wrong.
I don't like the idea of a centralized system to flow all of my email accounts through. I think this would work better as a localized agent that runs against my account (more like an email reviewing system vs a centralized email monitor). That would be less of a privacy concern, in my opinion.
Currently building a suite of media inspection and encoding tools for video engineers: https://video-commander.com.
Still very much a work in progress, but expecting to release a first version by end of year. Built on Tauri, in case anyone is curious.
I've created various open-source and commercial tools in the multimedia space over the last 10+ years and wanted to put it all together into something more premium.
I'm still working on WithAudio (https://desktop.with.audio). A one time payment Text To Speech Desktop App. Because I think everything doesn't have to be a subscription.
In October I finished the PDF parser. It was a big challenge extracting PDF contect with correct paragraph breaks on user's computer locally. I'm gonna write about this soon.
Now I'm working on a web extension that talks to the app that run locally on your system so you can use WithAudio in your browser with very good performance, 100% local and private.
I'm working on boiling the ocean - we're building a new CRM to compete with some of the big players. I tried very hard to avoid doing this, but I've helped enough business owner friends set up CRMs to realize there's MUCH to be desired. My goal is to create a CRM that people rave about - something that is very rare. Pretty much everyone I help views CRMs as a necessary evil. Our bold challenge is - can we make a CRM that is delightful to use?
Of course we have to slap "AI" on it in this market, but we plan on adding AI features that are actually thoughtful and not just a glorified chatbot.
Sounds interesting! As someone who works in Revenue Operations the CRM space is ripe for disruption, especially around using CRM data to help sales teams explore the data.
I vibecoded a POC of what something I think would work (around the latter part around exploring the data). Need to complete it and start testing it.
Thanks! I totally agree. It starts with getting the basics right. I think this is where most CRMs get it wrong - getting users to correctly enter and maintain clean data is a challenge. We're trying to build smarter schemas for contacts, quotes, sales, etc. but we're also making a really intuitive UI for easily updating information. Further still, we're trying to automatically fill in data for the customer. Many fields can be automatically inferred based on the context of a deal.
Once we get this right, I think the next step is exactly what you said, building really good tools to explore the data. Making it easy for non-technical users to run machine learning on their data to make business decisions or see cool visualizations. We realize that so many of our customers want to know this stuff and have no way of getting at it! We've got a lot of ideas for both visualizing and analyzing the data. I think there's a ton of potential for cool things here. Heatmaps, spiderwebs, interactive charts, etc. Stuff that brings the data to life. One of the common asks from some of our early customers is a heatmap of the world to visualize their sales/reach and see changes over time. Visualizing progress per sales region, etc. I think sales especially has a lot of opportunities for better lead generation and qualification as well.
This would be awesome, we're in hardcore MVP build mode right now - when we get closer to launch I'll hit you up.
I'm a little delusional, but I think there's ground to steal back from Salesforce. Most folks I talk to hate how complicated Salesforce is (one even calls it Salesfarce). I've heard a story or two about smaller companies trying to adopt it and wasting a hundred thousand or two implementing Salesforce only to have it never get used. On top of that, you need to train your employees to use Salesforce effectively.
The key is simplicity, building a CRM that anyone can instantly understand just by looking at it. This is insanely hard but I think we'll pull it off. I'll show you more what I mean when I reach out. Thanks!
I'm building a coding agent, named VT Code [0]. VT Code is a Rust-based terminal coding agent with semantic code intelligence via Tree-sitter. Supports multiple LLM providers with automatic failover and efficient context management. Support OpenAI, Anthropic, Google Gemini, xAI, DeepSeek, OpenRouter, Z.AI, Moonshot AI, MiniMax, and Ollama (local & Cloud). Agent Client Protocol and Model Context Protocol fully support. VT Code supports a rich set of configuration options, with preferences stored in vtcode.toml. Has both Visual Studio Code and Open VSX extensions so that you can install in VS Code or Cursor, Windsurf, Eclipse.
I've been building it for several months now and enjoy the learning process, I also wrote a blog post and learnt a ton about terminal, ANSI processing. The learning has been immense for me, I now have working knowledge of ANSI escape codes, grapheme clusters, terminal emulators, Unicode normalization, VT protocols, PTY sessions, and filesystem operations, all the low-level details I would have never think about until I were implementing them. [1]
[0] https://github.com/vinhnx/vtcode [0.1] https://deepwiki.com/vinhnx/vtcode [1] https://buymeacoffee.com/vinhnx/vt-code
https://voicesinmyhead.co/ - AI-powered voice dictation. 5x faster than typing.
I've been building with local AI, on Apple Silicon. It's only 8mb, but runs 30% faster than Ollama.
did you really solo develop this entire application? including dinoki-ai which appears to be SAAS?
I'm currently working on a directory of apps and tools, created by indie makers and small teams: https://www.discoverindie.tools.
Only indie make products, fully bootstrapped.
The idea is to both give founders another space to showcase their products and for early adopters and general public to browse through bootstrapped alternatives.
Just published the Halo vision headphones [1]. Currently working on reducing parts where possible, tuning audio quality and video stabilization.
I'm working on Chatolia, an AI chatbot builder.
The goal is to let anyone create task‑specific agents, train with their own data and an embed it into any site.
Training is simple: paste text, upload files (PDF, DOCX, Markdown, CSV), or paste URLs and it will crawl/index them into a per‑agent knowledge base.
I'd love to know what you think.
I’m working on a platform to run a friendly competition in “who builds the best reasoning AI Agent”.
Each participating team (got 300 signups so far) will get a set of text tasks and a set of simulated APIs to solve them.
For instance the task (a typical chatbot task) could say something like: “Schedule 30m knowledge exchange next week between the most experienced Python expert in the company and 3-5 people that are most interested in learning it “
AI agent will have to solve through this by using a set of simulated APIs and playing a bit of calendar Tetris (in this case - Calendar API, Email API, SkillWill API).
Since API instances are simulated and isolated (per team per task), it becomes fairly easy to automatically check correctness of each solution and rank different agents in a global leaderboard.
Code of agents stays external, but participants fill and submit brief questionnaires about their architectures.
By benchmarking different agentic implementations on the same tasks - we get to see patterns in performance, accuracy and costs of various architectures.
Codebase of the platform is written mostly in golang (to support thousands of concurrent simulations). I’m using coding agents (Claude Code and Codex) for exploration and easy coding tasks, but the core has still to be handcrafted.
Yep, exactly the same concept. Except not live-streaming, but giving out a lot of multi-step tasks that require reasoning and adaptation.
Here is a screenshot of a test task: https://www.linkedin.com/posts/abdullin_ddd-ai-sgr-here-is-h...
Although… since I record all interactions, could replay all them as if they were streamed.
I've spent several years since Covid times solo-developing an ad-free website with 50+ solitaire/puzzle games.
I've gathered some feedback from users from HN already and now trying to fix things.
I'm looking to genuinely improve the experience so would be incredibly grateful for any feedback. I'm also wondering what it lacks – any particular games or modes?
Many projects active.
(1) For one product I am working, I have been working on a custom reporting language for producing high quality PDFs. I used hy.py as a basis to make it LISP-like.
(2) I need to make a Django postgres site that I am running more reliable. Earlier I was experimenting with making static HTML renderings of the pages. That is certainly nice, but it took several hours to reproduce the site. I am currently prototyping making read-only replica of the database in SQLite (the database is only 1 MB) and hosting it on CDN, and then pulling that for the read-only replicas. The database export takes only some seconds.
(3) I vibe coded a iOS app using that same SQLite database that fetches it from the same location. It was surprisingly simple. It seems much simpler than using Flutter or React native.
Working on a little project to make Spotify recommendations better.
You get to choose the genres you're interested in, and it creates playlists from the music in your library. They get updated every day - think a better version of the Daily Mixes. You can add some advanced filters as well, if you really want to customise what music you'll get.
Does this deal with, what I call the "Armin Problem?" I typically listen to EDM and there is an extremely popular DJ named Armin van Buuren, and he has other aliases (which exacerbates the issue). His sets end up directly on music platforms, and he pulls in a ton of EDM sub-genres (which makes him a great DJ!). Any recommendation algorithm that visits one of his aliases is doomed to be connected to every other sub-genre, so I might be listening to progressive trance, and be in the mood for that, and end up on deep house (as an extreme example). Within EDM, genres can be as different as blues is to metal.
Not directly, no. I still rely on the data that Spotify gives me that relates to artists' information; and it's not great a lot of the time. E.g. there are obvious cases where artists belong to genres that they should not belong to. I do have some ideas for improvement, but they are still WIP.
What it allows you to do, though, is create your playlists with extended filters. E.g. you can select genres, and at the same time exclude genres - that helps with the "cross-contamination". You also get a view of all the artists that match your selections and you can add exclusions for them as well. It is a bit of manual work, but it works pretty good for me personally.
I built a free (eventually free-mium) character card app for iOS: https://loreblendr.ai/app
These cards are super versatile prompts mediums and haven't been fully creatively explored.
Made a game: https://fourmula.awsum.info
I think it's too difficult in its current form.
How big of a threat is AI to your career? Upload your CV and it will be analyzed. You'll also get steps on how to reduce this risk.
Still working on this and some things will definitely change, but IMO the system prompt is already solid, so that the response isn't unnecessarily scary on one hand, but not too general on the other
Unfrotunatelly, it happens and I am aware of this. In that case:
a) you are lucky because your CV is not scannable by AI so it's good if you want to keepyoru carieer as far as possible from AI tools ;)
b) you are unlucky: most likely the software recruiters are using to pre-screen applications (and they are using it a lot) is not seeing your CV either so you will be dropped on the first stage, :( work on this if you consider finding new job nowadays
c) if you still want to use my tool consider extracting CV's text to .txt or reformat PDF (this will help you with point b)
I am building https://arabicworksheet.com, AI powered Saudi Arabic learning app for expats who work and live in saudi arabia. 100% FREE. It generates printable worksheets based on your level, dialect and topics.
I am also building an app for kids to make their arabic learning fun, rewarding and enjoyable. Do try and share your feedback. TIA
A game-agnostic social/legal/financial overlay for virtual worlds. Minecraft, Rust, Roblox, etc.: legal ownership claims (vs possession), titles (recognized by other players or not), laws, player-issued currencies. Smart contracts but with as little blockchain stuff as possible.
The iron rule is no direct interaction with the world. These are things that players can in theory always start on their own as long as they can communicate.
hosting a month-long residency for indie hackers in Da Nang, Vietnam!
we invited 10 of the best indie devs from around the world to live & build alongside us for a month at a beautiful villa. for free. (we have sponsors like OpenRouter, Cognition, n8n, and CodeRabbit!)
we're 10 days into our first batch – would love feedback :)
I wanted to visualize all my walks and runs on a single map. I built a native iOS app that fetches Apple Health and Strava workouts and visualizes them. Privacy was a major factor in building the app, so all the data stays on the device. Next version will have a time-lapse video option. Any feedback welcome.
Strava and Apple Health integration is cool! What was your main differentiator to build it vs something like https://fogofworld.app?
I’m working on Alaska, a serverless compute platform I built entirely from scratch — no Kubernetes, no existing orchestration layers. It can spin up dozens of containers in parallel in just a few seconds. The platform is designed around a fast feedback loop — you write code locally, test instantly, and run it remotely with minimal friction. There’s a Python SDK that uses decorators to define what runs on the platform, so your local functions become distributed services without extra boilerplate. I also built a custom filesystem using FUSE to handle code, data, and runtime synchronization cleanly across nodes. It started as a personal exploration of distributed systems, but it’s grown into something that feels genuinely exciting! It's created by a developer for developers. Planning to open it up for beta testing soon.
I’m working on a Chrome extension called Console Dock, which adds a floating dev console window directly inside the page. I built it as a fun side project because I often work on smaller screens and hate constantly switching or resizing panels. Still very experimental, but it’s already proving useful for quick debugging sessions.
https://chromewebstore.google.com/detail/console-dock/biplbp...
My friend and I working on PennyPost, financial analyst that solely focuses on your spending.
It looks at your spending across all your accounts, categorizes, identifies patterns, trends, runs predictions and sends weekly/monthly summary email.
No apps or dashboards, just insight.
Plug in once and forget. Takes 5 minutes to keep track of your spending.
We are still at early stages but you can check it out here
https://pennypost-landing.vercel.app/
Appreciate any feedback you might have!
I'm working on an app to display charts, analysis, and data on English football league games.
The real goal is to figure out how to use code gen AI (Cursor) effectively for data science projects and to figure out rapid deployment. I'm pushing things a bit harder than you typically see in demo apps (e.g. different chart types (e.g. violin plots, heatmaps, line charts), interactive charts, JavaScript widgets interacting with Bokeh charts, etc).
I'm trying to figure out all the skills, processes, and training you need to build a technical app very quickly. I'm at the deployment stage now.
I’m building a reward chart app for parents. See link below. I just submitted it yesterday for review the App Store and Google Play. Now I wait. Fingers crossed.
I'm working as a school teacher of Computer Science for Year 6..9. Currently I develop an online collection of exercises for intro to programming.
I have exercises:
- on turtle, using my DSL with three commands: 4[100 r90] draws a square
- on robot (blockly)
- a 2D replica of Replicube to teach conditions in JS.
I've started vibe-coding it two months ago and I add new stuff whenever I need it for my classroom.
I'll soon add signups.
The platform will be free forever, monetized via banner ads somewhere in the future. The target audience is middle school teachers of CS.
I am finally making my own blog. I have been only planning for ages. I found that I had a lot to say for the past years working on AI, and I want to record them somewhere. I do not expect a lot of visitors or at all in fact. The blog is going to be just for me to remember stuffs and to keep track of them.
I am using hugo to build suckless static pages. LLM helped me so that I don't need to read all their docs. I haven't finished it yet nor posted a single blog. But there will be one soon.
I’m starting a book club!
- Sixty books a year (five books a month)
- Self Chosen Books (no forced reading)
- Two recorded Salon style meetings monthly
- Bespoke software for the group including: shared embedding graph of highlights and annotations, IRC chat with @ for members and books and authors, collective bookshelf
- Six members max
Learn more here if interested!
I genuinely want to benchmark myself with fellow peers how on long they take to consume text book. I am not that into fiction or short fiction books - I generally loose interest.
How long would technical books take you to complete, say you have to read Effective Java 3rd Edition
I haven't read a technical book in a long time. I read "You Don't know JS," which is very very short, in about a week. I read "Cracking the Coding Interview" in 3 weeks.
As for non fiction, I read "Anarchist Communism" (fairly short) in a week, "Delivered from Distraction" in a month, "Masters of Doom" in about 2 weeks.
It depends on my interest more than anything. I obliterated the entire Robin Hobb "Assassin's" series, 12 books, in just about two months.
Building an ai powered threats deception proxy.
It's a honeypot system that uses AI to mess with attackers. When someone tries to hack your app, it detects them and serves up fake responses based on attack type.
The system learns from attackers behavior and creates convincing decoys to waste their time and frustrate their efforts. It's basically a trap that gets smarter the more attackers poke at it.
Resterm - Terminal client for HTTP/GraphQL/gRPC. It includes support for WebSockets, SSE, workflows, profiling, OpenAPI, response diffs and many more.
What I am working on is my masters thesis in bioinformatics supports/HPC: "Predicting the running time of bioinformatics tools", by running (initially) 5 tools 1000 times each with different parameters and then fitting a curve.
I am pretty sure I can get 70% predation rates +/- 10% . Unfortunately, I'm blocked by the lack of hardware. Kind of not-quite school affiliated (so I cannot really ask for national computing resources), so I am trying to build a single threaripper pro node on my own. Hurts the wallet, but if added to slurm as module, this can have implications.
Month three working on my game development resources website: https://raizensoft.com/tutorials/
I write almost daily article about libGDX - my most favorite code-centric game framework. There are now over 100 articles covering topics from basics to advances. I plan to post more because this is more or less a passionate project.
In the future I hope it evolves into a definitive resource for learning game development with Java and libGDX.
Bread and butter stuff. Pulling together all of the assorted algorithms and data structures I implemented in C over the years out of necessity - lists, trees, stacks, queues, hash tables, memory pools, etc. - aligning the APIs, cleaning up and merging into a library. It's a background project but super fun. This and several parsers - JSON, some config file formats, and parsers for some GPS / GNSS receiver data protocols. FSMs also always feel like nice, clean fun. And prematurely optimising every bit.
I was tired of repeat, sponsored, and "safe" music suggestions from Spotify, so I built a discovery engine that puts the control back in the user's hands.
The core idea is simple: You define a "Discovery Model" with explicit constraints (specific genres, release years, track popularity, etc.). The app then uses this blueprint to source tracks.
The results are fresh for two reasons:
- "Known" Track filtering: Excludes all songs saved in your library and recent listening history.
- Active Curation: Uses your custom model, not a vague, opaque algorithm.
It’s built with a local-first mentality and a focus on privacy. No black-box AI "vibe" mixes, just pure, objective discovery based on your criteria.
Hope ya'll find some new gems!
I canceled my Spotify subscription because it would not let me "reset" the algorithm to get fresh suggestions.
A "discovery algorithm" that I used (works great for jazz) consisted on looking up which musicians played on an album that I liked on discogs and searching for more albums from them.
I'm thinking a lot about the ARC-AGI ML benchmarks, especially the "shape" of the dataset and what that says about how it should be solved. I think there's good reasons to believe that deep learning - at least differentiable SGD backprop style - is a bad fit for this specific benchmark, due to the tasks being almost entirely discrete symmetries, and also having so little data to approximate the discrete symmetries with continuous ones (considering deep learning to be the learning of continuous symmetries). I think that a more explicit and discrete approach is the way to go, and it's possible to build something surprisingly general and not heuristic-based even without gradient descent, guided by minimum description length to search for both grid representations and solver functions. I'm looking for teammates for ARC-3 so hit me up if this sounds interesting, I'd love to chat!
I made a viewer on my website to build intuition for my preferred perception algorithm which is entropy filtering + correlation. Pretty neat to check out the heatmaps for random tasks, there is a lot of information inherent in the heatmap about the structure of the task: https://synapsomorphy.com/arc/
I'm working on a book about using WebViews for cross-platform music software GUIs. It has a particular focus on performance, which I gave a talk about at the Audio Developer Conference last year:
https://www.arthurcarabott.com/adc-2024/
As part of it I am building a code generator to generate shared type definitions in C++ and TypeScript (plus serialization, comparison and cloning).
We are building end-to-end accessibility compliance tool[1] that will take care of auditing, remediation, verification and generation of ACR/VPAT.
Because of the well bound nature of the problem space, we are able to unlock a lot of power from LLMs and put together a good end-to-end product that delivers the promise.
Still early days. I know there are lot of folks who care about a11y. I would love to chat and learn from your experience.
I’m building Sink It for Reddit (https://gosinkit.com), a browser extension to make Reddit usable on the web. It’s similar to RES with broader support for all the different Reddit UIs (there are 4).
It’s mostly free with only old Reddit features gated behind a one time $5 fee. The app has a few hundred thousand users on the Apple platforms but recently it was invited to join Mozilla’s Recommended Extensions program so I’m hoping to grow the non-Apple user base.
I’m working on a platform that makes it easy for people in West Africa to buy and sell cryptocurrencies (like USDT, USDC, ETH, BNB, POL, AVAX, etc.) directly with mobile money — the most popular payment method in the region.
The goal is to bridge crypptocurrencies and local mobile wallets to make crypto useful in everyday life — not just for trading, but also for online payments.
A few key features:
Mobile money integration (MTN, Moov, Orange, etc.)
Instant buy/sell of USDT, USDC, ETH, and other assets
Crypto payment gateway — businesses can now accept stablecoin payments directly on their websites
I’m currently focused on improving liquidity and expanding to more countries.
Would love feedback from the community — especially around :
- Liquidity and Marketing to find the first users.
Happy to share more details or collaborate with anyone working on similar problems.
Website : https://ciexchange.xyz/
I'm working on a performance review (PR) management platform that doesn't require a steep cost and deep integration into HRMS platforms.
It's a need I have for myself and the teams I run – It offers direct PR's, 360º reviews, recording of wins and lessons (something often overlooked), and aims to be a platform for team and individualised growth, that is accessible to small and large businesses alike.
I've been writing https://urbanismnow.com weekly for a year. The idea is to bring you the best ideas from around the world to inspire action where you (c)are.
It's been going well for a side project and now I'm thinking of expanding to have a directory of urbanists on a map so you can easily find people involved in the local discourse and how to get involved.
I’m working on a performance capture library for Python because I often need to know the performance of backend systems I maintain. I frequently build tooling to capture performance and save it for later analysis. I/O operations get costly when writing lots of data to disk and creating good real-time analytics tools takes a lot of my time. I wanted a library that captures real-time performance analytics from Python backends.
https://github.com/jakeroggenbuck/kronicler
This is why I wrote kronicler to record performance metrics while being fast and simple to implement. I built my own columnar database in Rust to capture and analyze these logs.
To capture logs, `import kronicler` and add `@kronicler.capture` as a decorator to functions in Python. It will then start saving performance metrics to the custom database on disk. You can also use the middleware for FastAPI.
You can then view these performance metrics by adding a route to your server called `/logs` where you return `DB.logs()`. You can paste your hosted URL into the settings of usekronicler.com (the online dashboard) and view your data with a couple charts. View the readme or the website for more details for how to do this.
I'm still working on features like concurrency and other overall improvements. I've added a lot since the last time I shared on HN. I would love some feedback to help shape this product into something useful for you all.
Thanks! - Jake
I am right now building a proactive coach on top of my AI work capture app. Concept is very simple: It takes a screenshot every few minutes and analyzes what you're working on. From there it identifies task blocks, and checks if it should start a chat based on your intentions (eg to tell you to move out of your rabbit hole, take a break, help with a task, ...)
https://donethat.ai Passively processing screenshots is obviously pretty sensitive, it has an option to bring your own (local or remote) LLM, otherwise I process with gemini and never store any data.
It's in beta right now so if you want to try it you have to enable "proactive chat" in settings.
I also made a list of similar tools out there: https://donethat.ai/compare
I created a media editing app that lets you do some of the most common video editing tasks (cut, resize, compress, blend audio etc). It's browser based so your files never leave your machine and is very fast (leveraging the latest and greatest libraries such as Media Bunny).
Website => https://vididoo.vercel.app/ Github => https://github.com/btahir/vididoo
Decompiling Snowboard Kids 2 for the Nintendo 64! https://github.com/cdlewis/snowboardkids2-decomp
The work is mysterious but important.
Currently building a service around the domain https://ScamAI.com
the service is a suite of online vetting and due diligence tools for website flippers, Fb marketplace sellers/buyers and Tiktok shoppers
The domain has an interesting backstory. I acquired if it n 2022 from Epik after they stole the $10,000 I had deposited into their Escrow service. The money was meant for acquiring a newish stable diffusion hosting website that was competing with civit.ai. When the Epik issue was discovered, the seller pulled out.
Acquiring that website could have changed my life.
Tritium, the IDE for legal: https://tritium.legal/preview
This week we're building out the UX around formatting and this month we're building a more robust set of integration tests and integrating with a large industry platform.
legal is definitely one the industry that interests me. is this a very front-end focus start up? or is it heavy on the back-end too?
Finally making a simulation of my heat engine. It's kind of like stirling engine, but working on entirely novel cycle, theoretically should be able to achieve over 80-90% efficiency (yes, more than Carnot theorem says). I had this idea for 15 years already, but didn't have enough free time to make prototype. Now I don't have much time, but thanks to AI I have kickstarted simulation program (it told me which equations to use and how, I do most of my programming myself), turns out it's not as hard as I've imagined when you know which equations to use. Still working on it at max several hours a week because I have two other programming jobs. If it works, it will noticeably bump humanity on Kardashev scale.
carnot theorem does not put an absolute limit , a carnot cycle can have any efficiency as long as you have reservoirs hot and cold enough ,
besides that if you could be more efficient than carnots cycle at two temperature you can spontaneously extract heat from a cold object and out it in a hot object without any input energy , this would mean you can have perpetual motion . we are not just going to bump a kardashev scale , were going to truly max out and go beyond.
fun fact the U S patent office has been bogged down by so many perpetual motion applications they have made it policy to outright reject such applications without a working model satisfactorily demonstrating it
It is not a carnot cycle. It will NOT be able to pump heat, it's not a reversible cycle (it's not even a single cycle, it's a series of open-ended heat and pressure transformations). And using a heat-pump will also not make it a perpetual motion. Heat pump can be used as a kind of heat-transformer here, so if you have a lot of low temperature air (but higher than your ambient temp), you could use heat pump to gather energy from that air and present a higher-temperature air for my engine (losing some small amount of heat in the process, but heat pump will reuse heat wasted in it's own electric engine).
It should achieve such efficiency with air heated to 150C and ambient temp of 20C. If you heat air so that it expands more than 2x, it will start to lose efficiency.
BUT - this is all theoretical, I work on simulation that will confirm if it works. It might not, I might have made some big error in thinking how it works, but I searched for 15 years on some way this should not work. I contacted two physics professors specializing in thermodynamics and they couldn't find a way this won't work, both said "Yeah, but to tell more, we need prototype or simulation".
A Chrome extension to replace the default new tab page.
My custom poker study tools:
https://poker-study.onrender.com/
I really like the range memorization tool from GTO Wizard, but want to be able to put in custom/arbitrary ranges to test. I also want to be able to import and simplify ranges from other sites. Work in progress, but every scenario is url encoded (warning: subject to future breaking changes) and I use those urls in for links in my Anki decks.
TinyETL. Fast, zero-config ETL in a single binary.
Transform and move data between any format or database instantly. No dependencies, no config files, just one command.
Really nice idea.
Have you tried tabsdata and they're implementing with Rust with Python binding, with around 100 MB standalone binary [1].
It advertised as pub/sub for tables but it can perform ETL as well.
[1] Tabsdata: Pub/Sub for Tables:
Thank you. I’ll check that out. Are you the developer? Are you in the data engineering space?
We've been tinkering with building realtime talking head models (avatar models, etc.) for a while now, and finally have something that works (well enough)! Operates at ~2x realtime on a 4090, significantly faster than that on enterprise grade GPUs.
You can try it yourself at https://playground.keyframelabs.com/playground/persona-1 and there's a (semi)technical blog post at https://www.keyframelabs.com/blog/persona-1
The main use case we designed for was language learning, particularly having a conversational partner -- generally we've found that adding a face to the voice really helps trigger the fight or flight response, which we've found to be the hardest part of speaking a new language with confidence.
But in building out the system around the model to enable that use case (tool use on a canvas for speaking prompts and images, memory to make conversations less stale, etc.), we think there's potential for other use cases too.
I'm building GhanaHousePlanner https://ghanahouseplanner.com/, a web platform to help people in Ghana/diaspora plan, estimate and manage house construction projects. It is free for individuals and only project management and using the floor planner ai agent needs subscription.
Current features include:
- Live material price list updated monthly (based on prices at local shops)
- Conceptual 2D/3D floor plan generation following Ghana Building Standards (development in several phases using procedural floor plan generation)
- Construction management dashboard to track project stages and conversations between project manager, mason, carpenter, etc.
- Printable material cost breakdown
TODO: A contact listing for local construction services
I would love to have feedback, thanks.
I’m building RootCX (https://rootcx.com). A customer "operating system" replacing dozens of SaaS tools.
As a second-time founder, I've watched the SaaS boom create an ocean of best-of-breed tools. Each solving one slice of the problem. One solving it end-to-end.
Now every company runs on a patchwork of apps, APIs, and workflow hacks just to keep customer context alive. It's insane how normalized that's become.
RootCX starts from the opposite premise: the customer is the core, not the app. Everything: CRM, support, billing, workflows, AI, ... plugs into one shared customer base. Less juggling tools, more actually running the business.
This looks cool. But that means people need to use your own apps right and you will have to provide apps for every niche? This sounds a bit like an ERP system, similar to what https://www.odoo.com does.
Using AI to predict professional sports outcomes.
For the first time in years I'm working somewhere that doesn't use JIRA or Trello and find myself without a Kanban system. I'm having serious withdrawals. I have limitations on using a non-approved IT system because I use customer data so I vibed a PWA Kanban system. Stores data in browser and only vanilla code. No external dependencies.
I'm trying to learn 3D scanning and printing: I have a few small projects that I want to do to develop the skill:
I want to 3D print a shell that goes over my car fob: I keep leaning on it and setting off the alarm. The shell would make sure the buttons never get pushed.
I want to 3D print a sleeve that keeps the NCAS dongle in my car charger. I really wish there was a dongle that stayed attached with screws or similar.
My website is in my profile. I'll try to remember to write a blog entry in a few months. (Fair warning, I redo my website every 5-10 years to keep up to date with web technologies.)
FWIW: I was playing with an inexpensive (for me) Revo Inspire over the weekend. It feels somewhere between learning an instrument and taking a daguerreotype. There's a lot of room for improvement in the equipment for someone like me who just wants to casually scan something so I can make an attachment part. (I kind of wish there was a box that I could clamp something in, and then have it be about as easy as a flatbed scanner.)
I ended up covering my key fob with blue painter's tape, which kinda-sorta got it to scan. (I tried dry shampoo and drawing on it with marker, but I could never get a big enough area to scan.) When I imported the scanned fob into Tinkercad, it really distorted.
I ended up ordering a set of digital calipers and I'm going to try skipping the 3D scan part and go directly to CAD.
An OpenAPI code generation framework for TypeScript called Skmtc (pronounced like "schematic")
It handles the complexities of parsing OpenAPI and rendering output code, while providing the end user with full control over generator code via string templates.
Imagine something like React but for code generation where each code generator can compose its own output using the outputs of other generators.
OpenSOHO: built to manage a small number (from 2 to ~20) OpenWRT 24.10 based network devices. https://github.com/rubenbe/opensoho
Local only meeting transcription and summarisation for MacOS.
Loads of similar products out there, but non that did all of: open source code with attested releases, recorded mic and system audio to work with any meeting app and used Apple Intelligence for private summarisation. In beta, and also just released a experimental version with self hosted Ollama support.
Working on https://greatreads.dev/
A place to find great blog articles by regular folks related to dev/tech world.
Wondering about the best way I can add a weekly newsletter built on top of the content currently being ingested and still looking for more sources to add to the database (let me know if you have any good recommendations).
I am working on something similar but with a different view. I like to get random essay to read whenever I am bored or in-between tasks. So I developed this: https://read2reflect.com/
I have added only about 35 essays for now. Might pick up some from your list too.
That's pretty cool. I also have a "random article" button at the top right, which is very fun to use. I've discovered a lot of great content by clicking on that button.
Currently working on training language models steered towards certain "states of consciousness".
I have a model trained on publics datasets tied to brainwaves and/eye tracking and text comprehension (have this working well enough to experiment). Now I am training an adapter for various llm architectures to generate text steered to certain neural oscillation patterns (let's call them "states of consciousness" for brevity). I also have a 'rephraser' that rephrases text to elicit these certain states of consciousness. Overall experimenting with creating an suite of tools off my findings with how text relates to the eigenmodes of consciousness. My theory is once I do this I'll be able to do some...interesting things with "AI" agents. lmk if you want to talk about it if you're someone with knowledge in neuroscience/ML. My background is as a Software/ML Engineer so I could use additional thoughts. I do wish I could send a Github/docs which I will soon but this is currently a private project seeking investment for various research/public/private sector applications.
I have been working on Buckaroo - my table display library for dataframes in notebook environments. Buckaroo adds table and analytics features like histograms, summary stats, sorting, and search to every dataframe. Recently I have been working to make it work better with large datasets.
This involves making it lazy for polars, allowing it to read arbitrarily large files no longer requiring loading the entire dataframe into memory. When a large dataframe initially displays, no summary stats will be available. Summary stats are computed in the background in groups of columns. Then results are cached per column. To accomplish this I wrote a polars plugin in rust that computes hashes of columns. Dealing with large data like this is tricky, operations sometimes crash, sometimes take all available memory, and sometimes they just run for a very long time. I have also been building an execution framework for Buckaroo. It uses multiprocessing based timeouts, and the caching to execute summary stats in the background.
Being able to control the execution, recover from timeouts, crashes and memory exhaustion opens up some interesting debugging tools. I have written methods that take arbitrary groups of polars expressions and produce a minimal reproduction test case through a git-bisect like process.
All of this assures that if individual columns of a dataframe fits into memory, summary stats will be computed for the entire dataframe in the background. And because it is cached, the next time you open the same dataframe, the stats will be display instantly. When exploring data I do this in an adhoc way manually (splitting up a dataframe by columns and rows), but it is error prone. This should all be automatic.
I will be presenting this at PyData Boston in December.
The Column's the limit: interactive exploration of larger than memory data sets in a notebook with Polars and Buckaroo
Been working on a native iOS client for Bluesky. Liquid glass design, and trying to make it feel much more native than the standard client.
Been posting some screenshots to my feed, if you want to see what it currently looks like: https://bsky.app/profile/cameronbanga.com
Have about 100 spots left on my current TestFlight if anyone is interested: https://testflight.apple.com/join/RRvk14ks
Unwound a couple of things from the stack!
Finished: the 100%-vibe-coded "GPT-5 reviews all my PRs on max reasoning" GitHub app (which is shockingly effective, https://github.com/Smaug123/robocop - probably nothing new for people who already use some product like this, but I like owning my own infrastructure as far as possible, and GPT-5 and perhaps Gemini are the only models smart enough to do this so I can't take this any further).
Currently: back on "write an immediate-mode TUI framework that uses a vdom as its fundamental abstraction" (https://github.com/Smaug123/WoofWare.Zoomies), in the hope that this is the first UI framework that I don't absolutely loathe.
Next: using the TUI framework, write a debugger to inspect the internal state of my deterministic .NET runtime (https://github.com/Smaug123/WoofWare.PawPrint) and to step forward and backward in time.
Next: get the deterministic .NET runtime to a point where a property-based testing framework can identify the deadlock in some very simple buggy multithreaded code. (The framework is not yet able to run Hello World - did you know that's an incredibly complicated program in .NET? - but it can solve a few Advent of Code problems right now, can perform some limited exception handling, limited virtual method dispatch, limited casting between types. Even getting to Hello World might take a year if I'm unlucky.)
SPLADE-easy: https://github.com/dleemiller/splade-easy
I wanted a simple retrieval index to use splade sparse vectors. This just encodes and serializes documents into flatbuffers and appends them into shards. Retrieval is just parallel flat scan, optionally with reranking.
The idea is just a simple, portable index for smaller data sizes. I’m targeting high quality hybrid retrieval, for local search, RAG or deep research scenarios.
SPLADE is a really nice “in-between” for semantic and lexical search. There’s bigger and better indexes out there like Faiss or Anserini, but I just kinda wanted something basic.
I was testing it on 120k docs in a simple cli the other day and it’s still as good as any web search experience (in terms of latency) — so I think it’ll be useful.
We’re still trying to clean up the API and do a thorough once over, so I’m not sure I’d recommend trying it yet. Hopefully soon.
I have been building music theory/midi related vst plugins in JUCE.
It's mostly targeted at me, or others that make music, but are not piano players.
There isn't much to show currently, but I have a rhythm generator, and have been working on a chord builder. The main thing that has taken time has been trying to decide which things to add to a user interface to make it worth actually building.
I continue to work on My Financé, my personal finance tool.
I’ve been struggling to find substantive traction, so I’m trying to niche down to make the tool really helpful for people who want to quit their jobs.
I built a rudimentary planning and forecasting engine, and am trying to run paid ads to see if the signals resonate with people. I don’t love ads, but maybe trying to understand them will further inform my opinion on them.
One thing I would love to come up with is a way to make the app fully local first, while continuing the ability to sync accounts via plaid. It would be great to not be able to see people’s data at all. Im trying to figure out if there is a good user experience I could provide while minimizing the amount of data I actually have access too. Maybe this feature won’t matter to my primary customers though, I’m not really sure.
I still have a ton of fun working on it, and if it never really makes any money I consider it a great success for my personal learning.
Link for the curious:
A database populated with audio metadata (including a link back to YouTube or Spotify or whatever) that includes vector embeddings for the audio. That way I can grab clips of music I like from YouTube, generate vectors for them, then find similar things in the database.
It's off to a rocky start though, as I've initially populated it with YouTube-8M and AudioSet, neither of which are music-specific. The search results can be... Weird.
Music player that can organize album collections from different services like Spotify, Apple Music and Bandcamp, Discogs, and show detailed and high quality information that can be searched and filtered.
Made a website to host a blog! Right now it's empty except for one post describing the process of setting up the blog. I plan to add more stuff once I finish this semester in college.
Website: https://ngonella.com/
I have a bunch of ideas and small projects I would like to write about, so I'm really excited about this.
I'm working on https://yap.town - an SRS based language learning app.
I would say it combines the best parts of Duolingo and Anki. Anki is great for memorizing words, but you don't see the words in the context of novel sentences. Duolingo is great for exposure to new sentences, but it's oriented around "lessons" and SRS is an afterthought. (Duolingo is also not designed for people serious about learning a language IMO, it's too easy and goes too slowly.)
Had to do quite a bit to get it to work well.
1. At first you would think that if you know all the words in a sentence, that should be enough to understand the sentence. But it doesn't work like that. For starters, words can have multiple meanings. The french word "bois" can mean "(you) drink" or "wood". You want to learn these separately. I trained an NLP model (a gemma3 finetune) that I use to understand the manner each word is used in each sentence: https://huggingface.co/collections/anchpop/lexide-nlp-models
2. Even then, what about a sentence like "you'd better not"? Even if you know the words "you" "had" "better" and "not", you still won't really get this. So I use the wiktionary "multiword terms" category for each language to get a huge list of terms like "'d better" , "you better believe it", etc, and teach these in addition to individual words. And then I only show sentences where you know all the individual words as well as all the terms.
This is awesome sir, I'm pretty sure this will get you very rich soon or later.
By the way, I have a suggestion, the examples on the answers could be listenable to keep the brain on a learning mode all the time even on side words
Great idea, done!
And I'm not planning to get rich off of it haha. Right now there's no monetization at all. If lots of people use it to learn a language and avoid wasting their time on duolingo, I'll be happy
Vibe coded a small chiptune tracker https://chippytune.com
I'm atm working on a couple of things, first the biz, a self-hosted home server OS that simplifies Docker management and provides a unified dashboard for running services at home. The goal is making self-hosting more accessible without sacrificing flexibility.
And also building as a hobbie a procedural universe generation engine that simulates galaxies, solar systems and planets in real-time. Everything is generated from a seed with actual orbital physics, seasonal changes and so... Built with Python/Flask backend too but Three.js for 3D visualization and React instead of Vue3 as in the prior one. Think No Man's Sky vibes but as an explorable simulation engine really D:
UI exploration for interacting with LLMs
https://www.youtube.com/watch?v=ldJTjwhqKy4
Currently popular AI chat interfaces feel restrictive when exploring or learning complex concepts/ideas. I often want to revisit earlier parts of a conversation, ask branching follow up questions, connect related concepts, compare and contrast between various chain of thoughts. This UI exploration aims to solve some of these limitations.
Tools to help my mental health tracking[0], and sharing with others how I manage my limited amount of energy[1]. They're kind of related, since mental health impacts my energy, so I've needed to prioritize and really make sure I'm spending my time and energy on things that matter. Usually, there's a good mix of things I enjoy doing with things I gain a lot out of. I've spent a lot of time thinking about this!
I've used my app in various forms for around 5 years, rewritten multiple times. But now I'm creating surrounding tooling to help others put my mental model for personal life prioritize to use. I'm writing in the "Saving Spoons" Substack as I go, trying to explain why and how I do things, with advice for others trying to do the same thing.
I'm working on _prompt injection_, the problem where LLMs can't reliably distinguish between the user's instructions and untrusted content like web search results.
Just published a blog post a few minutes ago: https://alexcbecker.net/blog/prompt-injection-benchmark.html
Stopping Agents [1] - LLM agents that stop conversations early and save time.
Because they're trained using imitation learning instead of RL, they're scalable and easy to deploy with your own data (also open-source!).
Mainly targeted at and tested on quickly disqualifying prospects in sales calls, but can be applied more broadly.
I've been exploring getting some deeper experience with Claude Code (my org only allows Copilot) and exploring vibe coding by using CC to design a functional programming language that transpiles to JS and build out a full language specification and the tooling to go along with it. I haven't pushed anything to Github yet but it's been very educational, and also a little terrifying to see how easy it is now to produce tens of thousands of lines of code that you totally don't understand.
I'm working on basi, an alternative/syntax to writing Playwright: https://github.com/zikani03/basi
Trying to keep it simple but I can already feel some "design pressure" to think about making the DSL more complete (language) by adding features like loops and variables. Still early days!
I have made a co-op roguelite tower defense game inspired by the old Warcraft III maps. A major inspiration was YouTD. You can play it here: https://defense-of-solaris.com/
- Zig bindings for AVIF/HEIF
- Local-first app for comparing hardware builds, down to the individual component feature level: specs, benchmarks, even cpu extension support, lanes, how many speakers in X laptop, dolby atmos? screen panel manufacturer(s), etc. Basically, no-nonsense real product comparison for transparent and fast decisions.
Curated LinkedIn topics + AI drafting: validating before building
I'm exploring building a weekly curation service for professionals who want to write on LinkedIn but struggle with "what's worth writing about."
The thesis: In the AI era, execution (writing) is commoditized. The real bottleneck is editorial judgment... knowing what topics matter before they're obvious.
The concept: Weekly email with 5-7 curated topics (tech trends, policy shifts, market movements). Each topic comes with sources, multiple angles, and context Choose your perspective, AI drafts a polished article
Why I think this could work: I've been manually doing this for myself for years. Pattern recognition at scale is hard to automate, but pairing human curation with AI execution might work.
Target market: ~30M professionals who should be building thought leadership but don't have time to spend on research.
Current status: Validating demand before building. The hard part isn't the AI, it's systematizing the trend-spotting and curation process without losing signal quality.
Two person Micro-SaaS which helps employers collect one way video interview screening responses from candidates at scale https://hirevire.com
Here's Hirevire’s #buildinpublic stats for October 2025!
$7,275 MRR (+13.74% MoM ▲)
3.2 years since launch
8.9K unique visitors, 2.5K from Organic Search
I'm working on aggregator of curated technical content https://devblogs.sh.
I started it a couple of years ago as personal project to help me study for interviews. Back then, it was simple RSS feed aggregator of big tech companies engineering blogs.
Recently I expanded content library to technical conferences and indie blogs, and implemented semantic search in all the library (for example, you can semantic search by all Strange Loop videos archive).
Give it a try!
I'm working on https://mimicmarketer.com It allows you to define different personas that you can then test marketing on. This allows you to see how different personas will interact with your marketing. Currently, it has a feature that allows you to define basic personas and test them against two types of copy, as well as a tool that grades your email subject lines and bodies against a generic persona, assessing the likelihood of user interaction with the content.
My other project is https://eggexplorer.com This is a site I wish I had when building out my flock of chickens. It allows you to see the different characteristics of chickens and which hatcheries sell each different breed. You can also see which hatcheries sell hatching eggs for each breed as well.
After creating the feature request for Claude Code hooks[1] a few months back, Cupcake is nearly ready for release.
Cupcake is a governance/policy-enforcement layer for agents. Its innovation is binding OPA/rego to agent runtimes (via hooks).
I do not believe we will every strictly rely on "better" models in the wild without deterministic guarantees or ways for enterprises to factor in their own alignment - system prompts dont cut it.
https://github.com/eqtylab/cupcake
Stay tuned for the formal release here in a couple of weeks.
[1] https://github.com/anthropics/claude-code/issues/712
Cupcake GitHub: https://github.com/eqtylab/cupcake
Working on a curated Hacker News x AI newsletter.
There’s so much nuance in HN threads that often gets missed elsewhere, so I decided to put start this newsletter.
Initially started as an experiment for 10 issues to see ig it gets traction, 6 issues in it’s at 68 subs and probably will continue for unlimited time period.
Link to the latest issue: https://eomail4.com/web-version?p=01b6f55e-bb2d-11f0-bcb3-f3...
Link to subsscribe: https://hnxai.eo.page/9h7q4
I'm trying to improve the UX of my time-zone converter. I started with my dedicated converter pages, like /est-to-ist. The goal was to make it easier to identify which times are best for scheduling meetings:
I’m working on Reflect [0], it’s a privacy-focused app for self-tracking and self-discovery. You can track metrics, run self-experiments, set goals, view correlations, visualize your data, etc.
[0] https://apps.apple.com/us/app/reflect-track-anything/id64638...
I built an AI-powered voice agent to help people prepare for the IELTS english exam -- specifically the speaking portion.
- Realistic exam conversations with natural follow-ups and questions to challenge your viewpoint
- Get scored on all 4 criteria (fluency, vocabulary, grammar, pronunciation)
- Instant feedback on where to improve
- Free credits to start
There are many existing resources to help prepare for the IELTS exam, however the options are very limited when it comes to practicing the speaking portion.
I am working on a time tracking app. I use it to keep track of time spent vs my estimates, and also just to check my actual working hours. It's fully local—everything is stored in localStorage — but I do have plans for some optional syncing so it can be used on multiple devices.
It has helped me a lot to keep focus while working and track distractions. It might be too tailored for my needs, but have a look: https://zookeeper.fyi
I'm working on SuperCurate (https://getsupercurate.com), which is geared towards note retrieval and curation rather than note creation. Think filing cabinet for your notes, web clippings, images and PDFs.
I wanted fast search and filters for my Evernote archive so I could drill down and surface exactly what I was looking for.
There's also a Web Clipper extension for Chrome.
Demos:
Search and curation: https://www.youtube.com/watch?v=z4QSIoUL4Uk
Web Clipper: https://www.youtube.com/watch?v=8F7QoC7X3fs
Search inside PDFs (jumps to page + highlights snippet): https://www.youtube.com/watch?v=t0X9sD-938Q
It's free while in beta, would love feedback if you try it.
I created a small / 20 line Jupyter notebook that uses the Nthesis api which shapes, tags, and makes the data searchable, chattable and allows you to visualize relationships / data clusters (yep lots of games this month!). https://nthesis.ai/public/hn-working-on
I've always loved the "What are you working on" post. So many niche and interesting projects!
I am building Mizu, a lightweight web framework for Go that aims to keep things simple and Go-first. Everything is written in plain Go with no hidden abstractions, and you can start with a single file then grow into a full project without changing your coding style. The name means "water" in Japanese; the framework tries to flow with your code rather than force its own patterns.
My booktube channel : https://www.youtube.com/@NevsBookChannel
Of relevance - my review of Code Complete: https://www.youtube.com/watch?v=QlY0EGWp7rw
Frontend framework in JavaScript that requires no build step, relies on DOM and SSR and can be used to build both SPA and hybrid apps without VDOM, js templates, hydration or putting HTML (or worse, css) inside JS code. It'll also have a very sophisticated declarative state manager which makes managing state and ui transitions a breeze. It's basically anti-React.
Sure: https://code.qount25.dev/qite/qite-js No docs yet, but I suggest you go to test/demo for examples. You can actually see them work if you run it with `node test/server.js`.
State manager isn't there yet, but it's coming.
I'm wrapping up a v0 of a personal website soon [1]. This has been kinda "coming soon" for almost 7 years now - every single time I attempted it in the past, I would stop it prematurely due to a lot of yak shaving and I could never finish it fully. Or more commonly, I would get bombarded with busy times as well.
I'm happy where it's landing so far but also appreciate any actionable feedback to make it better (!). Under the hood, it packs a Rust Axum API, plenty of ffmpeg, and some hobo infrastructure [2] here and there.
[1] - https://nid.nogg.dev
Me and my friends are working on a fitness companion app, used for tracking both nutrition intake and workouts. Taking the best from well known nutrition apps and workout apps like Hevy. In the core of it will be an AI Agent which can analyze the overall progress based on food and exercise logs and give personalized suggestions.
Maybe a bit too complex project for me to handle but hopefully will take it somewhere
Im working on hvacAI.ca, a website that can take a quote for an HVAC system and help understand in simple terms the differences in cost and ability of the proposed solutions.
https://yournextstore.com https://github.com/yournextstore/yournextstore
I'm building Your Next Store (YNS); it's a Shopify alternative built with React and Next.js.
We provide an opinionated boilerplate tailored for tools like Claude or Codex, so designers and developers can build storefronts faster and more easily. It enforces a clear structure to start from while keeping full control over design, animations, and the overall storefront experience. It’s built on top of Stripe, with our higher-level commerce abstractions, like "add to cart", "checkout", "pay", "browse products" etc; plus a Commerce CMS so merchants can manage everything smoothly once their store is live.
If youre planning to sell something online and want a modern solution, hit me up! :)
I’m working on an AI-powered page optimizer for SaaS & eCom sites: https://peakagent.ai
No complex setup – drop in a script, keep your existing stack
Auto-generates variants for hero, copy, CTAs, and social proof
Continuously tests and routes traffic to the best-performing variants
Optimized for key pages (pricing, signup, product, checkout)
Reports focused on conversion & revenue lift, not just clicks
Would love feedback, tear-downs, or ideas for must-have features before you’d trust this on your main pages.
PS: Deeper ad→page→revenue attribution + personalization by segment coming soon.
I've been building a little toy computer and assembly language that's interpreted in python. Pretty close to the first release (and introductory blog post) and a lot of fun to build (and learn a bit more about real assembly as I go).
We are building https://desplega.ai which is a QA agent that help teams ship fast without compromising quality.
We focus on making it as fast as possible, integrated into CI, MCP for local dev, and support both an autonomous (we call it discovery) and guided test creation approach.
We believe that in the era of vibe-coding, quality is key, as we are lazer focus on building a solution that scales with your product, and removes the burden of QA from your team.
Technically, we built an in-house engine that is in charge of generating the tests, that speeds up and gets better the more you use it.
I built a wireless highlights & annotations export service for Kobo e-readers earlier this year [1]. Had a free tier limited to 20 exports but wasn't sure how to price it beyond that, so I just left it. Recently a user reached out asking if I'd settled on pricing and how they could pay for unlimited exports! That jolted me into coming up with a price, and now I'm finally getting Stripe integrated :)
[1] - https://highlights.email
Working on asking whoishiring not to forget the freelancers next month.
https://news.ycombinator.com/submitted?id=whoishiring
Edit: oops nevermind it's a goner.
a platform for creating and sharing cross-platform playlists
the backend is all automated for imports and exports from dsp (can be a single account only), or can be made without.
Just wanted it to be easier to share music with friends with one link, particularly as music-types start to de-spotify!
Still capturing index of the Internet
building a location-based game that captures Taiwan's absurd convenience stores density[1]. Players stand at any 7-11/FamilyMart/etc, take a photo showing you can see the next store, walk to it, repeat. Chain as many stores together as you can.
It sounds silly but Taiwan really is this convenient - you often can see 2-3 stores from one spot. Here[2] one route where you can actually link 7 convenience stores in a row! Now trying to make maps look a bit nicer with mapbox.
[1] https://craftmygame.com/game/convenience-store-marathon
[2] https://craftmygame.com/game/convenience-store-marathon/rout...
I'm working on some documentation for my framework/ide (https://glitter.nz). I'm thinking about all the new things I'm really hoping to add.
Mockaton. An HTTP Mock Server with a dashboard UI for changing mock variants on the fly. For example, for testing retries.
I’ve built two AI agents that curate personalized news:
- Market Pulse Agent — analyzes the last 24 hours of global and US market news to generate actionable stock-trading signals.
- TechPulse Agent — tracks emerging tech trends and surfaces interesting GitHub projects and engineering updates.
Both are live on my site: https://kryptunes.com
Still iterating, but the goal is to build a fully automated, AI-powered research companion for traders and tech enthusiasts.
https://fooqux.com/ - an experimental tech article aggregator. For several years now, I've had a routine of collecting articles on topics that interest me throughout the week and then reading them over the weekend. To help organize and streamline this process, I created this website.
The main idea is to gather tech articles in one place and process them with a LLM — categorize them, generate summaries, and try experimental features like annotations, questions, etc.
I hope this service might be useful to others as well. You can sign up with github account to submit your articles as well. I would appreciate any feedback.
I've been working on a little game for my daughter to help her learn the movement of chess pieces. https://www.minichessgames.com
It's currently just a "maze" type game where you have to get to a goal square in the minimum number of moves (there are rocks placed on the board to act as obstacles)
I'm in the process of making some very simple games like battling knights where they leave poo and you try to trap your opponent.
Fun making it even if it's just the two of us who'll enjoy it :). Partly I wanted her to learn that you can create for the internet not just consume...
https://github.com/superegodev/superego
An open-source, local database which collects all your personal data, hooks it to an LLM (BYO), and gives you an assistant that can answer any question about your life.
It also allows you to vibe-code (or just code) small apps on top of your data (e.g., your custom dashboard for your expenses).
I have a short demo here: https://www.youtube.com/watch?v=gqAyvENDjSA
- What I'm working on right now - https://incidenthub.cloud - It monitors cloud/SaaS status pages. I'm working on some white-labeling features.
- New ideas - Easier way for new users to try out the product. It's currently a few steps, but I want to optimize it for specific user personas.
I have been tinkering on a little price drop alert scraper written in Python. It's run as a cron job, and every day it checks the prices of a list of urls (my clothing staples from various outdoor retailers, mostly) and sends me an email with any products that have gone on sale.
I've been running it for over a year, but now I have fixed it up and made a little landing page to see if there's interest for a stupid-simple price watch service like this (no need to install an extension or create an account):
Trying to get Clippy (_that_ Microsoft Agent Character) to run on mac so I can make it notify me about github/jira/CLI status changes. https://github.com/tkfoss/MSAgentUtils
I'm building one project a week for the next 25 weeks for my newsletter. First, I want interesting content for the newsletter. Second, I want to try to grow the newsletter to put out something fun and joyous. The world needs more good fun.
Hi, I like your newsletter concept and I do subscribe to it.
One thing I think may be cool, is put a thumbs up/thumbs down link in the email to track sentiment of the links you share. Some links are really cool, others I am not interested in at all, it may be useful to capture that info.
I would visit a site daily if you expose some of that info publicly (like 49% positive 51% negative for a link), to see how my sentiment matches your wider audience.
I've created an AI-assisted writing platform, that doesn't generate text, but instead lends focus to human creativity, and have AI assist you instead of trying to replace you.
You create a writing style via existing text examples, blog posts or URLs, and Arcitext extracts a "writing fingerprint" which it benchmarks new text against.
There's a solid Markdown Editor with tools such as Tone Fit, Rewrite suggestions and Fact Check, which helps you when you need it.
Kind of like having a writing coach and content strategist on speed dial.
I'm making a game finally! Merge-three + village sim.
Hoping to actually take this one to something polished as opposed to the many half-finished prototypes littering my git repo over the years. I've discovered (always knew?) that heavily cutting scope is the best way, and been successful thus far.
It gets pretty boring/unbalanced by ~150 turns, but I have some ideas on how to fix. I'm still playing with ways to help de-clutter the board and make use of the economy aspects.
After some false starts with ai-gen art, I had fun learning to color the pixels myself. The process wasn't as scary as I'd thought and the results are better than I hoped.
https://tower3.dreamofninjas.com/
Inspired by TripleTown from the wonderful studio Spry Fox.
I'm working on https://pipestack.dev, a workflow automation platform where you bring your own code - as Wasm Components.
Think n8n, but you bring your own code and optionally even your hardware to execute pipelines.
I'm working on rebuilding Playwright from the ground up, but focused on automation and self healing using LLMs.
It's called Stagehand (https://github.com/browserbase/stagehand) and we just released v3, which is a total rewrite.
Interesting.
I rewrote Playwright to run completely in a Chrome Extension without CDP or chrome.devtools for no practical reason at all. I started to do it like Forest Gump started running. It can't get past bot protection so pretty worthless from a browser automation point of view. [0]
What I don't understand is why the need to rewrite Playwright instead of just patching it. Playwright (or Puppeteer) has addressed every edge case that has come -- especially race conditions which are a monster to deal with -- up over the years and by the time you do the same you will have Playwright.
Why is rewriting or rebuilding Playwright from the ground up needed?
[0] https://github.com/adam-s/cordyceps/tree/main/pages/side-pan...
Very cool. I make a consulting business out of packaging selenium scripts into windows apps for small businesses, do you have any desire to turn this into a saleable product?
Stagehand is our open source project, but the company behind it is called Browserbase - https://browserbase.com/ where we run headless browser infrastructure as a service. So no interest at this point, Browserbase drives the revenue that funds Stagehand!
Building https://www.hessra.net/, an authorization system based on the Biscuit token format (decentralized, signed, and attenuable). The goal is to push beyond JWTs and Zanzibar-style policy engines by giving every machine-to-machine request its own embedded, verifiable authorization logic in a small capability token. These tokens can be delegated, restricted, and verified locally with no extra network calls required after getting the token.
Early use case is replacing API keys with identity tokens that expire, delegate, and prove possession and then can be used for easy step up to fine-grained authorization. There's some pretty interesting authorization stuff you can do, like having multiple parties sign off before a token is valid or requiring a series of micro-services sign a token for it to be valid.
Helping my recent MBA grad sister make a simple python script to fit here resume to a JD using openAI's api. Shes applting to product and marketing roles in AI and this helps her understand the tech (and its limitations) better as well as apply to more jobs easier
Market is brutal though man. She hasnt gotten an offer after so much trying
Developing a fingerprinting method for identifying music masterings! Like Shazam but to tell what version of an album you have.
The idea being able to compare measurements to see what mastering you're really getting - because they are NOT all equal. With the remasters and stealth replacements on streaming, it seems like every other month I wake up one day and my favorite music sounds worse (or is gone...). Now I can measure it and help find what versions I really want to collect!
I may end up trying to make a fingerprint database/tool that sits in between MusicBrainz and Discogs. That way hopefully the community can standardize and quantify some of this info that only lives ad hoc in Steve Hoffman forum threads or partially on sites like https://dr.loudness-war.info
Still working on my digital nomad event and workation aggregator.
But now with travel and visa guides to help remote workers become productive in Japan and South Korea ASAP and give them visa guidance if they want to stay a bit longer.
I'm building an analytics and attribution platform for onchain apps, named Formo.
Think Google Analytics + Posthog designed for crypto users and apps!
I've learned a lot about data engineering and analytics in the past year.
https://github.com/paradise-runner/kaleidoscope
A multi-agent TUI that uses opencode and tmux to help me solve the frustrating LLM slot machine problem. I find that running 3 agents in parallel on even tough problems is enough to have one that builds what I want.
It’s also been a fun challenge to build a tool that can be used to improve itself
system to test and calibrate an analog traction control system. the system uses a frequency to voltage converter and a bunch of opamps to compare wheel speeds then determines wheel slip or slide and either reduces engine power or braking.
Test system uses ADCs, DACs and a DDS to produce a sine wave that simulates wheel speed.
I would rather be fishing.
Im finalizing the Google Calendar integration for Ganttify. https://gantt-chart.com
It will allow users to fully manage their calendar in a Gantt chart. Complete with customizations like dependencies between events, custom colors for time blocks and custom icons for single-day events (“milestone”-like).
Ganttify is a Gantt chart add-on for web applications or services that can benefit from a Gantt view. My goal is to expand the number of integrations for Ganttify and release a new integration every month or so. If any of you have an interesting (niche or non-niche) idea to integrate Ganttify with feel free to contact me.
https://recipin.com Recipe extraction and archiving to avoid link rot and blog spam. No tracking, no JavaScript, no AI[0], and just a dusting of CSS. Source available to run your own server if you’d like (https://github.com/bradly/recipin).
I’d like to add importing from a Pinterest account and continue adding support for all the creative implementations of the schema.org recipe format that different sites use.
[0] My partner has a bunch of handwritten family recipes, so I’m trying out an optional extract from a photo of a hand written or magazine recipe that uses AI. Not required and I may pull it out into its own service that spits out schema.org recipes. We’ll see.
The OCR -> schema.org pipeline would be useful, I've been doing it manually prior to importing to Mealie.
Working on Astrology App - https://bestkundli.com
There have been a few astrology apps, but all require you to connect with an astrologer or a pandit. This market has been in past and today, a market of exploitation for the innocent.
So, I built this app to let people read their birth chart with detailed analysis, without any such thugs. There are a few very talented experts, but they are either very expensive or difficult to find. So, it came out of necessity.
I would love your feedback on trying it out and letting me know your thoughts.
Cheers
The functionality is good sir, bt the UI feels more like a generic SaaS application. Thre aren’t many design elements that relate to astrology, so the visual experience doesn’t match the theme. The idea itself is great and with a more astrology-focused UI, it could stand out even more
I'm building a fun writing app that mimics the feel of a real typewriter.
Free on iOS + iPad + macOS (Catalyst), and I'm working on adding additional skins, premium features, and Android soon! :)
I‘m trying to create an app skeleton plus tooling that allows to build serious business applications on top of Symfony, where you don’t run into architectural trouble even with very complex apps:
I'm working on Sum Buddy an AI spreadsheet. I didn't like the way Microsoft and Google were integrating their AI by essentially tacking on a chatbox and I wanted to explore more native integrations, like its another part of the tool bar.
I’m building https://unrav.io : A tool to fight information overload.
It lets you turn any article, YouTube video, or PDF into summaries, mindmaps, podcasts, chat conversations or infographics that match how you learn with just one click.
We just launched this week the Chrome extension so you can do all this in one click on any page, no login needed (with generous freemium usage).
https://unrav.io https://chromewebstore.google.com/detail/unravio/mbnapibcjcf...
Would love feedback from fellow builders.
Currently working on a website that lets you add any form of troll CAPTCHA to your website or allows you to create a redirection with shortened link.
It is a fun project and oh boy I really enjoy solving CAPTCHAs on random websites.
Working on https://gametje.com (a Jackbox games competitor). Been working on the Android TV app lately. Will probably start creating a new game next week with acronyms similar to the old game Acrophobia from the late 90s/early 2000s.
I made a HN-like discussion forum for (meta)science.
Most (meta)science discussion is either fragmented on Twitter/Bsky, or a bit too formal. I thought a centralised place for deeper, casual discussions might be helpful, so I'm testing that theory.
Launched a few days ago, so it might have some rough edges. I'm considering making it user-invite-only soon, but for now it's fully open for signup. I'll also move it to its own domain once I think of a better name.
LED Scrolling Stock Ticker App for Windows called TCKR.
https://github.com/krypdoh/TCKR
I have been vibe coding it on and off for a few weeks and I'm quite happy with how it turned out as I could never find one that did what I was looking for.
I would love feedback and of course any bug reports. :)
Working on developing a suite of apps around photography, from cameras to editors and utilities.
The goal is lightweight, composable tools with clean interfaces that respect user agency and privacy, provide technical clarity, and make you a better photographer by encouraging mastery over your tools and offering new ways to approach picture making. Also broadly honoring the (almost) 2 century old history of the craft and drawing inspiration from pre-digital processes and approaches.
Got a number of updates to existing apps and new ones in the works, I’m excited for the full long term vision I have that I plan to sum up in an essay at some point.
Currently Apple platforms only but the plan is also to break out of that down the line.
I recently became unemployed so I am building a tracker for all my job applications what stage I am at in each process that kinda thing
It’s no where near done
But as always I am also building https://retro-board.it for doing retros and sprint poker
And https://flags.gg for feature flags with quite a lot of agents (rust, go, react, and others)
20 years and counting, working on https://next-episode.net (it's a TV/Movies tracking website and community).
I've dedicated this week to some maintenance tasks that are long overdue (mainly modernization of the code and the database), kinda delaying the inevitable (which is to work on harder tasks in my todo - like adding features to the mobile apps).
I suspect AI company want improved efficiencies and developing a framework that can be applied in determining the minimal-energy, maximal-efficiency architecture for ai models. Calculating the precise limits, like a Cognitive Event Horizon, where a model becomes so complicated it literally costs more energy to run than the knowledge it provides, and the Semantic Horizon, where it simply gets too complex to be accurate, etc. Lots of cool implications such as around a fundamental mathematical maximum learning rate which results in trying to get anywhere close to that that by doing stuff like aggressively filtering of the data.
I've been trying to build a golf side hobby business making putters on antique machinery in my garage. Have grown to get some pretty steady traction on instagram, have realized I am not a businessman in all of this, so a lot of learning.
instagram.com/cushmancustomgolf
I've been working web scraping using LLMs, I just shared one of the libraries I created to get structured data from arbitrary pages: https://news.ycombinator.com/item?id=45870231
Instead of sending the page's HTML to an LLM, Hikugen asks it to generate python code to fetch the data and enforces the generated data conforms to a Pydantic schema defined by the user. I'm using this to power yomu (https://github.com/goncharom/yomu), a personal email newsletter built from arbitrary websites.
Just shipped Scrype, a library for devs who want a cool way to showcase their code.
It's fully typed. Works with vanilla JS, Vue, React, or just a script tag.
Got some feedback that it may not be the best UX-wise but let me know what you guys think!
Demo: https://devjeff.info/scrype Repo: https://github.com/DevChanQ/scrype
I've been working on a ttrpg site for the last year with my own IP. The intent is to create an experience that makes an intuitive UI that minimizes tedious tasks.
You need to know "does this guy look hurt"? The enemy HP bar can be set to either an actual percentage, or set to have cracks in the bar to signify a range of damage. Does only person take notes? Personal notes are shareable and there's a section for community notes. Do you have enough perception to notice a hidden door? The UI can be set to go off passive perception and give you those notifications automatically.
It's still in early alpha testing with friends, but it should eliminate general GM pain points to encourage more groups to form.
I posted in this monthly thread first time in May when I launched a daily logic puzzle, Clues by Sam. Since then it's grown significantly, and I couldn't be happier!
The game has a farily simple frontend, but there is a fairly complex constraint solving algorithm as part of the puzzle making process. What makes the puzzle quite unique is that you can't "guess". You can only make guesses that are provable by logic. The algorithm ensuring this has worked flawlessly for months now (though I've manually inserted some silly mistakes once or twice).
Today's puzzle is one of the hardest to date. The difficulty resets on Mondays, and then gets harder again towards Sunday.
Clues By Sam has become THE morning fixation in our household since I first heard mention of it a few weeks ago - super fun, thank you!
Hey everyone! I built a site that shows your next age milestones, all on a single page. You can see your next milestone age for each type (like your 10000th day) and save it to Google Calendar.
It looks simple, but I learned a lot building this site:
* To calculate age in planetary years, I had to look up their orbit and rotation info
* The lunisolar calendar took me quite some time to figure out (it is not the same as a lunar calendar and even changes by country)
* Adding the dog and cat age equivalents even led me to cubic splines
Link to the site: https://ageequivalent.com/
I am working on Daestro[0] which is a cloud-agnostic, self-managed job orchestrator that bridges your compute — anywhere.
Apart from bringing your own compute, Daestro also integrates with AWS, DigitalOcean and Linode.
Got tired of every single weather app and website being littered with ads. Half the time my weather apps don't load the weather maps but the ads work fine, c'mon! So decided to start my own; here's what I have so far...once I iron out the site I'll start on the Android app.
Feedback welcome :)
Looks good!
I have a couple minor suggestions, do with it what you want:
- I'd disable the fade between two visualizations on the live weather radar, it's hard to scroll through quickly now.
- Personally I'm always looking for the hourly and daily forecasts. Currently they are split by the live radar. I'd either move them all above or all below the radar if you want to keep this format
I'm working on a _boring_ business - a CRM for pilates and yoga studios (https://www.usemojo.app/en). Most tools in this space are bloated or built for gyms, not for someone juggling reformer classes, cancellations, and back-to-back privates.
It started when a friend who runs a studio showed me her system: printed calendars, WhatsApp messages from clients at midnight, and sticky notes for who paid. I'm trying to make something quieter. It should feel like an assistant, not another tool to manage.
Rates your sleep, tracks sleep debt, and tracks how workout timing, coffee time, AC temperature, etc influence your sleep.
2.0 is in review - adds support for recovery (based on sleep HRV, HR), and strain.
a demo video here https://x.com/rohitshindein/status/1985643097439813831
Working on adding MPD [1] client mode to my music player: https://github.com/olegantonyan/mpz
Currently it works as standalone player. Addition of MPD client mode opens possibility to play music on a separate device while keeping the UX of the music player that I like.
Working on new backend for Mercury framework. Mercury makes it easy to serve Python notebooks as web apps. You dont need to know HTML, CSS, JS to build beautiful looking web app from Python notebook. I'm writing new backend to support ipywidgets, anywidgets in Mercury. https://github.com/mljar/mercury
Problem: I collect a lot of music I come across in playlists on Youtube/YT music/Bandcamp, but tracks often disappear for various reasons.
Working on: Offline Youtube playlist download manager. It uses YT-DLP to get all my music and then enriches artist/track metadata using MusicBrainz, AcoustID, Discogs, LastFM, Spotify. Runs as an offline webapp so I can browse and play music locally. Might play around with recommendations for fun later.
Happy to publish the repo if anyone else would find this useful.
Building a docs website [1] for my speech-to-text CLI tool, hns. I use it 5-10 times daily to transcribe my voice, and a few developer friends I've shared it with have also adopted it for daily use. They like that it runs in the terminal and keeps all data local. So, felt like I should write down guides for new users to get started quickly and to highlight key use cases.
Building this documentation website using Docusaurus. This is my first time using Docusaurus, and it feels like a very nice tool for quickly developing a documentation website.
[1]: https://hns-cli.dev/
Working on https://tinythoughts.app, a self-messaging app
Today, I am implementing tag-triggered webhooks so they can get triggered based on the tags assigned to messages.
Use case: for example, I want to auto-tweet all my advice messages and auto-create linear tasks for `company` todos, auto-start a cursor agent when I tag messages with `Cursor task`
For some reason, I got 16 users out of nowhere, so I added a landing page last week. The connector marketplace is next, so that I can share these sub-connectors with the other users. Need a couple more weekends.
Agreed with syabro, this sounds very interesting but don't want to give away my number straight away without seeing anything.
Built Tubula because I was tired of forwarding school emails to my spouse. Now families can create shared email addresses like school AT jones.tubula.io that forward to both parents - no DNS configuration needed. Would love feedback: https://tubula.io/
I'm still drawing my comic about a post-scarity dystopia ruled by AIs who present as horrible, unctuous clowns: http://egypt.urnash.com/npol/
I created a RescueTime alternative for KDE Plasma. It runs in the background as a daemon and records time spent on each window in a SQLite database. Next step here would be to add a Firefox extension, since a lot of my time is spent browsing the web.
Tracking windows on Wayland is hard because the protocol doesn't support it. I hacked together a script using Claude Code that somehow works, but I barely understand how.
A TUI to monitor your OpenAI and Anthropic usage inside your terminal.
https://github.com/htin1/toktop
I use codex and claude code daily, also build apps with openai and anthropic api keys, so i always go to openai dashboard and anthropic dashboard to track my usage. Since I spend most of times inside cursor or terminal, I wanted to quickly check my usage without leaving my terminal/ide, so i built this!
It's open-source, MIT, and built with ratatui (awesome name).
Porting LevelDB[1] to Seastar[2], for internal metadata storage in Redpanda[3]. Before you ask why can’t something off the shelf be used, seastar has unique constraints around its runtime and its memory allocator that means we can’t reuse an existing library.
1: https://github.com/google/leveldb
https://tool2agent.org/ - guardrails for your AI agent implemented via tool call feedback
https://osint.moe/ - LLM-based app to build research graphs based on goal-directed web search
For the past few months, I've been building a health tracking app called LogBuddy. I got tired of using separate apps for nutrition, workouts, weight, and period tracking. So I built LogBuddy to handle all of it with a dead simple interface. That way, all the heath data I'm tracking would be in one place. Right now there's an Android APK available. If there's interest, I'll publish to the Play Store and build an iOS version too.
Would love to hear your feedback if you try it out!
Here's the github repository: https://github.com/aabiji/logbuddy
I'm working on vorfract, a voronoi voxel world:
Anti-spam email/messaging protocol that is simple, cheap to implement, directly compatible with email/messengers, low false negative rate compared to current spam filtering, free for senders, and does not require the sender to pay to send a message. For people who receive too much marketing spam, survey spam, low-effort cold emails, and want to be able to easily filter spam successfully because you do not want to waste time on them.
Future-proofed and will work on AI spam in the future too, unlike current spam filtering methods.
Looking at an ancient game called Trias/Ternii Lapilli and learning/using maths to figure out if it can be solved https://tom-dickson.com/blog/trias-game-investigation/
It’s similar to tic-tac-toe but slightly different of course.
Found it a great opportunity to learn about new areas of maths. Trying to figure out where to go next with it.
- A level design editor (Svelte, Rust) https://www.spritefusion.com/ - Turning full stack apps into single binaries for buy-once software (self-hosting) https://jesterkit.com/exe
Basically small data tools for myself.
A non-bloated HTML, CSS and pure Vanilla JS framework to create dashboards.
A cross-platform JSONL viewer where I am learning ImGUI. Haven’t found any other open source GUI framework that‘s small, provides out of the box components for tables, sorting
A small OpenGL tutorial for Rust. Focus on understanding the OpenGL-API and interfacing with it directly, with a few as possible helper libraries.
Some of the chapters I'm currently working on can be found in the preview (https://preview.opengl.zgtm.eu/, ipv6 only).
Making the Nest 2nd gen thermostat the Google recently bricked compatible with local setups like Home Assistant.
I'm involved in 3 projects that are solving this problem from different angles:
I released just yesterday something I've been working on: skrl [1], a language for defining keyboard shortcuts and remaps. Found a few bugs already, but it's still useful at least to me personally.
Making rent as an open source developer.
Attracting new monthly sponsors and people willing to buy me the occasional pizza with my crappy HTML skills.
As part of my CS grad research, I launched a website reporting on public cloud availability and performance.
I am working on house help app, that helps you find professionals around your area to help with chores at home
https://github.com/fyndx/house-help
Looking for Business/Sales side who can help me with this
Originally started in 2012, I’m (still) building log.soccer - a stat-tracking tool for amateur soccer players. This is the third or fourth iteration of the site, which until this year mostly served as a glorified résumé project to showcase the latest framework or tool I had just learnt.
Thanks to ChatGPT, my productivity went through the roof this year, and I finally shipped an MVP that might actually be useful.
It’s a standard Django + React + AWS stack. My raison d’être is to build an Apple Watch app that tracks match scores in real time. 2026 hopefully.
Wondering what people are using AI for and if there are public/shareable/or leaked chats out there from all platforms either chatgpt, gemini, grok, claude, perplexity etc.
So I am building this https://www.leaklake.com , where you can search your name, brand, and basically any keyword.
You can also set an Alert because crawling and starping is running 24/7.
Any feedback welcome.
I'm building my take on a low-touch task completion assistant designed to counter distraction and hyper-habituation.
It's starting off as a MacOS app because that's the machine I have. I didn't know Swift or SwiftUI when I started. I now know them somewhat, but the entire app has been vibe-coded. This has made it slow going. Very "1 step forward 2 steps back" until I switched from Claude Code to Codex and GPT-5.
I'm hoping to start an initial beta within the family in the next week or two, and then a wider round in January.
https://lunchtrain.se/ A one glance page to find what to eat for lunch in Lindholmen, Gothenburg, Sweden
Working on this made it really clear to me how a LLM can bring real value to a backend, it excels on processing very differently structured dynamic data (something if done without an LLM would require quite specific code - which would lead to more development time and increase time to market)
I built an AI chat web app to improve my skills.
Live: https://nexchat.akashdev.me/ GitHub: https://github.com/Akash1000x/NexChat
Would love to get your feedback!
Have been working on compgeo for a few months now and came up with a neat algo for our configurator at work!
https://substack.com/@xlogiclabs/note/p-177713038?r=6s54sx&u...
We are building https://ceogenerator.com/ to help investors, founders and product teams validate product–market fit in minutes, not months. We also offer Generative Engine Optimization + Competition monitoring.
We are looking for an angel! Please reach out at hello@ceogenerator.com
I'm building an app that helps users memorize Kanji and vocabulary with AI-generated visual and story mnemonics.
Right now, I'm adding a feature to practice writing Kanji and another that creates AI comics based on vocabulary you've learned.
Japanese news app with osu-like gamification. You read the news that’s adjusted to your reading level with LLMs, take quizzes, compete on the leaderboard.
I'm working on a directory of apps and tools created by indie makers: https://www.discoverindie.tools.
Only bootstrapped products by indie hackers and small teams. No VC/Angel backed startups.
The idea is to give indie creators a space to showcase their apps and early adopters to discover great alternatives to major players.
I'm working on a free replacement to the NY Times daily mini crossword after they started charging for it and I didn't want to pay. https://www.jepeto-mini.com/ (DNS may still be propagating).
A fun project with lots of challenges finding word lists, refining them, using AI for clue generation, etc.
I played it, and it was fun. Some feedback (I'm on mobile) is that it needs UX improvement.
At first I wasn't sure what I had to do, it simply throws you into the game, and it's easy to get confused with the numbers around it, because usually if there are numbers, there is going to be somewhere (usually at the bottom) the numbers and the clue for each of them.
It took me a bit to find how to get the clues from the vertical words (double tapping).
The onscreen keyboard isn't very responsive in the sense that I had to tap several times the backspace to delete a letter.
It doesn't allow to play again :(
A Mac-based video manager that automatically transcribes, translates and summarises videos. I process information best through reading, so I built it to manage my growing collection of training course videos, webinars and meeting recordings. Currently working on adding RAG search to make it easier to query content.
Also building a CMS and static site generator that runs entirely client side in the browser. Pick themes, model content an publish to clean HTML. It also makes content available beyond just the browser, eg in a command line TUI.
https://github.com/DeutscheKI/jetbrains-mini-agent
Fully offline LLM coding agent plug-in for JetBrains IDEs. Use with Qwen3-Coder-30B-A3B-Instruct-UD-Q4_K_XL.gguf on an RTX 3090 or up. The source code is pretty short to make sure it can be audited, if needed.
I am working on a web app that doctors/NPs/PAs can use to automatically rewrite complicated and verbose medical progress notes. The amount of time medical providers spend on documentation is ballooning, and only a small portion that time is actually spent doing medical decision making. The rest of the time is spent incorporating (ie copy editing) data as it comes in from imaging/bloodwork/consultant advice. The goal is for the app to be:
entirely self service, without needing EHR integrations
able to persist and reuse the user's writing style, without actually saving any of the notes
HIPAA compliant (obviously)
I recently launched a casual math game!
https://play.google.com/store/apps/details?id=pipipie.game
It's currently only available on Android but I hope to bring it to other platforms soon.
I am a disabled developer who has limited mobility in his arms. I like treating games that are simple and accessible for people just to spend time.
Would love to hear any comments or suggestions!
Still hacking on some data tools:
DuckDB for stream processing:
https://github.com/turbolytics/sql-flow
Lightweight kafka stream processing using DuckDB as the execution engine. 300MiB runtime can easily handle thousands of messages / second.
Working on a Kafka Connect alternative:
https://github.com/turbolytics/librarian
Right now mongo replication (through changestreams) is supported to kafka. Working on Postgres support right now.
XferLang, a data-transfer and configuration language to serve as an alternative to JSON.
Most obvious features, at first glance, are no commas and no need for escape characters. Other useful features include processing instructions, extensible data-substitution rules, and support for comments. Currently only implemented in .NET; plans are to rewrite the core in Rust and provide language wrappers around that core.
I finally started modding a total war game (Warhammer 3). I played the series since the very first title, Shogun and I always wanted to improve the control over units and add my custom AI to not micromanage everything, but assumed it would be too time consuming and distracting from my main work. And well, it likely would have been.
But thanks to LLMs, I finally decided to give it a go and got something basic working in a short time, hurrey for AI assisted coding!
Feels empowering to be honest. No idea if I will really implement the main ideas, that I have since a long time, but I know that I can now if I want to.
Working on some tailored to my needs tax reporting software. I submit claims to my workplace in batches under a number of different categories. Using this as an excuse to get better at some bits of SQL, leaning Textual as well, which I'm hoping to use in other things. Other than that I'm cooking a few IRC bots that I swap to when the other code becomes a bit too boring
This week, I’m working on TurboWire, a Rust websocket server for Serverless JS world. https://github.com/arjunkomath/turbowire
Specifically, I’m working on upgrading SDKs to be fully typed using Zod schema.
Onchain consumer credit (x402 “credit card”)
Recently launched an AI cafe ordering app https://www.hellocafe.ai using chat and voice.
We wanted to make concept for an app using all local models for chat (llama 3.1 8B) and voice (whisper). Deployed using kubernetes and easily scalable not to mention fully open source!
I am working on https://disco2very.org a NextJS AGPL game to discover the CO2 footprint of... many things. It is using the open data from the French environmental agency ADEME. Tell me what you think!
On and off working on the Navigation API for Node, Bun, Deno, & as a browser polyfill.
Has 90% test coverage, makes use of web platform tests to verify compatibility, and is in use by some larger companies already with the Navigation API soon to become a baseline in evergreen browsers.
The Navigation API effectively is async state navigations. The likes of React has recently added Navigation API support to make use of the browser reload indicator.
https://github.com/virtualstate/navigation
Along with working on a startup day to day :)
Small webapp that allows musicians to add PDFs locally and offline, arrange them, then download for use on an e-reader during performances. Built for a classical musician friend who uses really old Android devices, also my first almost entirely 'vibe-coded' app.
Building an ai powered threats deception proxy. A dynamic honeypot system that uses AI to mess with attackers.
When someone tries to hack your app, it detects them and serves up fake responses designed to make them think they're getting somewhere.
The system learns from attackers behavior and serves ai generated decoys to waste their time and frustrate their efforts.
It's basically a trap that gets smarter the more attackers poke at it.
MVP version at https://github.com/0tSystemsPublicRepos/IfritProxy
Oar - GitOps with Docker Compose (think ArgoCD for Docker Compose) - https://github.com/oar-cd/oar
claude-review - collaborating on documents with Claude Code, with Confluence-style comments - https://github.com/Ch00k/claude-review
I've been working on real estate prices map visualization for a couple of years as a side job. There's
- Aggregations of m2 price and price history development
- Area and address details with time-on-market stats
- 3D map visualization
https://hintakartta.comDisenhackifying one of the last pieces of my KaithemAutomation server that still feels not best practicesful.
Device driver plugins used to have a very simple flat key value, strings only format, with a set_config_properties function to tell the host what kind of UI to show.
That's all getting replaced with JSON schemas, with some auto-upgrade shims so old config keeps working.
It's one of many things that now seems completely insane, but made sense when I had way less experience a long time ago!
Also still on and off working on my BLE/WiFi based Meshtastic-alike.
Created a new image generation tool because I believe creativity is a process of trial and error! So multiple models, infinite modality == expansive creativity. :)
Building https://ottex.ai - a native MacOS app to solve repetitive micro tasks on a computer.
- Transcribe voice to text (especially useful when you need to explain something to Claude code )
- (soon) select text to instantly Check grammar / Improve writing / change tone of text
- (soon) select text to Translate between languages
I discovered that I have a few 10/20$ subscriptions (grammarly, raycast, wisperflow) that do embarrassingly simple stuff I can one shot with cheap SLM. So I decided to build a one app specialized in small repetitive tasks on computer.
I am working on a repository for AI Intent Driven Development at https://github.com/Exadra37/ai-intent-driven-development/.
An Intent is a self-contained document that describes a user request. It is composed of three main sections: WHY (the motivation), WHAT (the requirements, often in Gherkin language), and HOW (a detailed, step-by-step implementation plan defined with tasks). This approach ensures clarity and alignment before any code is written.
In progress: I’m writing a book about how the brain processes text in general - and news articles in particular.
I also created and maintain a Russian "newspeak" dictionary: https://github.com/alamzin/az/
I work on Robotics, so was recently implementing slamkit in rust. https://github.com/MostlyKIGuess/slam-rs
But a lot of what I work on is my classes giving me less time to open source nowadays, but I have also worked in implementing and mashing new Papers coming out in Robotics. Anyone who wants to talk more should please connect!
Polishing my dashboard for tracking profit on Solana blockchain for set of wallets: https://imgur.com/813aQsO
I want to extend it with a simple overview of most recent profitable wallets to look for new "metas" that i could profit on. This project may or may not end as open source eventually, but i currently keep it private.
I am building a foundational layer for building C++ apps using Bazel.
I am working on creating a standardized set of paths and third party libraries that work seamlessly across multiple developer teams. Allowing library upgrades to happen transparently in the background. This will enable developers to focus on business specific logic and not have to worry about the intricacies of the build system and allowing to "magically" work in the background. This is allow foray into Bazel and using it as a learning exercise to master it.
I'm working on a video / post on how to solve the 1 billion row challenge (https://github.com/gunnarmorling/1brc) and get a competitively fast result while keeping the code readable and maintainable.
So far I'm within spitting distance of the winning entries without using any unsafe code or bit twiddling tricks or custom JVMs or anything like that, and having all the concerns nicely separated and modularized.
Excited to share soon!
I made a direnv-like utility which hooks into your shell to allow using Nix flakes for dev envs / dev shells anywhere:
https://github.com/dfrankland/envoluntary
This helped me bridge the gap between installing packages declaratively via NixOS / home-manager and defining them for each project being worked in via flake.nix / direnv / nix-direnv; which was needed since most projects don't use Nix.
I am trying to build a local setup where I spawn dockers (fetched via skopeo) as systemd-nspawn machines in userland (rootless), with network managed by a service that uses netkit devices to setup network in their empty network namespaces. I am looking at using Sommelier to manage wayland.
The end goal is to have a laptop with an easy way to build lab environments which is secure and rootless.
I'm going all in on my side project CodeBrew, a Java IDE for iPad. Currently working on OpenGL support for 3d graphics, as some schools requested the feature. Also I'm finally pitting some work into aquisition, which has turned out to be much more fun than I anticipated.
Go check it out, its free to try, with a one-time purchase full version:
https://apps.apple.com/app/apple-store/id6475267297?pt=11914...
Nonoverse[1], an iOS puzzle game about nonograms (image logic puzzles).
So far all levels have been handmade pixel art. I’m now testing machine generated puzzles with random “pixels”. This is an interesting challenge because I still want levels to be solvable and fun. I recently released 15 new puzzles like this and I’m preparing a new update with more.
[1]: https://apps.apple.com/app/nonoverse-nonogram-puzzles/id6748...
Mindscope 2 : https://mindscopeapp.com (iOS / macOS)
A hierarchical text canvas for organizing thoughts and taking notes. I wrote v1 years ago and now spent about year rewriting it in SwiftUI and adding all my dream features like reminders, deep linking, and lots more. Currently in TestFlight beta, nearing release.
Working on adding Apple Intelligence to my macOS app built to analyze iOS app size metrics. I'm hoping to have a locally running assistant that can act like an iOS build engineer to provide optimization opportunities and more: https://apps.apple.com/us/app/dotipa/id6742254881.
Right now my app allows users to export build metadata as JSON which can be interpreted by LLMs for analysis, but I'd like to have this work on-device.
Just launched a startup/life style business where I use AI to help people practice for upcoming interviews - https://hiredcoach.ai
Already have been told by some users that the interview prep they got from it has correctly predicted several of the actual interview questions they got, crediting its prep for their breezing through the interview rounds.
I'm really hoping it helps a lot of people!
https://www.ottoclip.com - Create product-focused content that stays in sync with your product.
Create a script for a product demo or tutorial for your app using an extension. The script is used to generate your product content in multiple formats (narrated video, interactive demo, looping animation, and in-app guide). Whenever your product changes, just update the script and regenerate everything. No manual re-recording of video, syncing of audio, or any other post-production steps.
I recently launched Queens Hourly puzzle on App Store.
https://apps.apple.com/us/app/queens-hourly/id6751763916
Every hour, new Queens Puzzle (LinkedIn style) is available to play. No leaderboard, no stats, nothing to buy, just pure play. Every user gets the exact same puzzle to solve for that UTC hour.
I would love to get some feedback from the community!
https://www.bsub.io - batch processing for developers.
You submit heavy duty jobs without worrying about infra, and we take care of execution. We're starting with PDF extraction. Audio transcoding + STT (speech to text) is next. Video transcoding will follow.
This allows you to have $5/mo VPS and get media operations figured out.
Next release of my app (8 years since initial release) - adding minor features and minor bugfixes.
Video Hub App - browse your local video files with a beautiful interface (and scrub-able thumbnails to see multiple screenshots)
$5 for anyone https://videohubapp.com Free for anyone https://github.com/whyboris/Video-Hub-App
My own blog, which I mainly write for myself. But it is getting steadily more readers. Last week I wrote some scripts to help me with creating OG images quicker.
Tech:
- Zola, static site generator made in Rust
- Swift, writing scripts for custom generating stuff
- HTML and CSS
- Cloudflare Pages
Experimenting with various AI models via GitHub Co-Pilot on an extremely niche project to see how far these models have progressed. Used like ~60% of the premium quota to develop the following projects:
website: https://murajah.pages.dev/
Play Store: https://play.google.com/store/apps/details?id=com.murajah.we...
Manual audio splitting tool for the above project: audio-splitter-6b3.pages.dev/
I've always been skeptical of AI-generated code. This is my first experiment with AI agents, where the full code base, implementation, debugging, and deployment are done using AI Agents MCPs.
Used VS Code all the way, i.e., all the source codes, including the code to generate the Google Play Store APK. I only reviewed the source code before committing and helped debug by suggesting ideas/algorithms.
Mostly used Claude Haiku 4.5 like 75% of the time, where it failed, switched to the sonnet 4.5 or GPT 5 codex. Interestingly, when debugging, sometimes one model struggled even after numerous iterations/feedback loops, but then the problem was solved instantly as soon as I switched to another model.
The source codes are available here:
https://github.com/wasi0013/Murajah
https://github.com/wasi0013/audio-splitter
Initially, I thought the audio splitting could be done automatically using some AI models from Hugging Face or Whisper. But the audio files have some complex repetitions; the output was miserable.
So, for now, this splitting is done manually using a Web UI (The audio splitting tool splits the large audio files into multiple small audio files, think of it like a long paragraph is split into multiple sentences.)
I will attempt again to automate this splitting task using AI, after drafting a game plan for tackling the challenges. I'm thinking of using energy drops and other similar factors to create segments.
I'm working on a poker server to allow holdem bots to play against each other (https://github.com/lox/pokerforbots) and a Pluribus-level bot that plays on it (https://en.wikipedia.org/wiki/Pluribus_(poker_bot)).
Enjoying writing some really fast Zig implementations of hand evaluation and CFR-based solvers.
A fast, offline-only, dictionary app: https://deft.so/
Built it as a personal tool to quickly look up definitions and practice vocab with spaced repetition.
iOS: https://apps.apple.com/us/app/deft-vocabulary-flashcards/id6...
I’m building a typed, array-oriented dataflow compiler that takes small declarative schemas and emits plain Ruby and JavaScript, with a C path. It has a mid-end with inlining, common subexpression elimination, constant folding, dead code elimination, loop fusion, and LICM.
Demo to try it out: https://kumi-play-web.fly.dev/
GitHub: https://github.com/amuta/kumi
Ultra low-power LoRa stuff with STM32 microcontrollers. Powered by solar.
For the usual sensor stuff I stick to classic LoRaWAN. For "complex" protocols I prefer the TLV style.
Biggest trick is incorporate deep-sleep as much as possible and "waking up by interrupts". That has a big impact on your software designs.
I’ve been working on an idea wishpool.
Anyone can post an idea for something they wish existed — an app, a game, a tool, or anything else — and share it. When more people back an idea, it gains momentum and starts getting built, either by AI or by community makers. The goal is to turn crowd energy into real progress.
I'm building Envelope — a banking product purpose-built for envelope-style budgeting.
Most “budgeting banks” (Ally Buckets, Wells Fargo Budget Watch, etc.) bolt budgeting on after the fact. Envelope was designed from day one as an integrated budgeting bank account. The checking, savings, and debit cards are all built around real-time envelope balances.
Each envelope acts like a dedicated account with its own balance and optional virtual card. Spending directly from an envelope means your budget is always accurate — no syncing, no spreadsheets, no “catch-up” categorization. Everything runs on-ledger with automatic spend-locking and instant visibility.
We’re a small YC-backed team (former Robinhood and Apple Card team members) focused on rebuilding personal finance from the ground up to be simple, and transparent https://envelopebudgeting.com
I kinda gave up on building apps for Rocknix (since there is no easy way to distribute software) and instead have been looking at my apple watch. I ported over some software for workouts that is streamlined. I'm working on a way with MDNS to sync data to my Linux PC automatically when I'm at home.
If it works out, maybe this could be a way for me to replace the compromised Apple Music app with something that actually syncs to my music on my desktop.
Working on an AI coworker (QA engineer) that can autonomously tests web app like your human QA colleagues. It has its own virtual desktop and runs as background agent.
This is really cool! Are you open to providing my team with a demo?
Sure. Join the waitlist below and I will note down that you need private demo. I will contact you once we got bandwidth on that (private demo).
Created a web game: https://www.teqgame.com
I really liked the concept of games like cards against humanity, quiplash, whose line is it anyway etc. However, there was no virtual way to play it with a group of friends. Quiplash required steam setup (which was not possible on my corporate mac). So i built this as an alternate to build upon the formula.
[still in alpha phase so lots and lots of bugs]
I really missed an old mobile game that got de-listed after the devs sold it to a company that subsequently ruined it. I'm a full stack dev, not a game dev, I don't have time to learn the ins and outs of Unity so I tried to see what was feasible in the web world with Babylon.js + React + Capacitor.js and I'm pretty astounded at how well it works out.
I've been posting a bit on https://www.reddit.com/r/BlossomIdleGarden. I plan on opening up a beta later this week.
A tool that uses face-api to find the movie character you look the most like. Everything runs in browser, without any data being sent to the server.
Working on a desktop app that lets you ask questions on your data files like csv, json, parquet and excel in plain english without incurring heavy LLM costs.
Launched a new plan as well that gives unlimited question-answering for just $20/month. Truly unlimited, no strings attached.
Injee - The no configuration instant Database for front end developers.
Completely bootstrapped online counseling platform focused on affordability ($25/week!), accessibility and doing the right thing by clients and therapists. Currently only available in NY, FL, TX and Singapore with plans to expand as budget allows.
Correct and performant way to calculate historical value of a portfolio. I want a pure function, but taking a date as input is insufficient because users can edit holdings, and securities can split.
Weighing the tradeoffs of doing this calculation server or client side. That'll be an architecture shift away from my current set of background jobs fetching state and towards something more functional and on-demand.
I just released my SAT Writing textbook: https://www.amazon.com/Matthews-Guide-Digital-SAT-Writing/dp...
It took me two and a half years to finish. Now I've got to market it.
I’ve gone old school. After reviewing a few people’s CV’s the easiest format was for me to record a video with the feedback, so I put a site together for that:
No AI, you just buy my time.
I’m also looking to do a couple freebies if anyone wants to anonymise their CV and let me use it for a promo example.
I like the path options.
Is this US focused or also applicable to UK/EU people?
Thanks. I’m based in the UK so have a good grasp on that, but I’ve reviewed someone’s resume from the US just as easily. Generally, English speaking and preferably in a digital related field, but a lot of the common pain points seem to be universal. It’s only difficult when it’s a field that’s highly niche as hard to know what’s common knowledge.
I like to play the role of the person doing the hiring, hence why the form asks for an example job description.
Interesting, the impression I got from the site was that this is US specific (dollar currency) and not that you're based in the UK.
I'll keep your site in mind if needed, I think the video response is a key selling point, great idea.
Thanks, and great feedback about the use of dollars!
I have been working on Jigsaw Pic: https://jigsawpic.com
My 7 year old niece loves jigsaw puzzles, but a lot of the time I see her during family trips where taking puzzles along wouldn't be feasible. We usually have an iPad though. I plan to add more puzzle categories soon.
I'm making an app for self-tracking. Combining elements from habit trackers, health logging and journaling. Built for rich customization and local-first. Want to be free of rigid structures of many existing apps while providing a better UX / usability than using a spreadhsheet.
Landing page + waitlist: https://dailyselftrack.com/
I’ve been making a story-based podcast for Spanish language acquisition with accompanying activities called https://listenreadinteract.com
There’s a free course for true beginners with no login/sign up required. https://listenreadinteract.com/start
Vibe coding a programming language: https://github.com/davidkellis/able
A modern QuickBooks, based on beancount, WorkBill (https://workbill.co). You can play with it at https://demo.workbill.co.
Unlike traditional accounting platforms we expose the ledger model directly which enables our customers to model complex transactions even when we do not have direct support for it.
Been working on this for a month, and it uses Elixir, Phoenix and InertiaJS with React.
OAuth is here to stay for major email providers (Outlook, Gmail, etc). Microsoft is dropping support for standard/basic authorization in April 2026, and Google has already done this. But plenty of devices and systems don't (and may never) support OAuth.
Auth-Email is a relay that lets you continue using traditional email auth methods even when your provider requires OAuth. Lots of other more advanced features too: all OAuth grant types, add-ins to modify behavior and lots more.
Untrusted code execution paired with AI to make explorative data analysis more simple [0]. I've spent a lot of time with web development in the past. This is breath of fresh air honestly.
I'm working on a web app that creates easy-to-understand stories and explainers for the sake of language learning. You can listen in your favourite podcast app, or directly on the website with illustrations.
Most of the testing so far is English/French/Japanese/Mandarin, but I'm eager to add more languages if anyone is fluent and willing to help me evaluate the text-to-speech.
I've been obsessed with reticulum. It's a network over other networks. https://konsumer.js.org/nomadnet-js/ https://github.com/konsumer/rns-lite
The protocol is fairly simple, encrypted by default, and works over lots of interesting transports.
It's really cool, but as far as I know there's no complete C++ implementation for embedded platforms, and I still can't figure out how it actually works.
Does the gossip flooding mean every single node needs to know about every other node in the entire mesh?
I have a project vaguely inspired by this and Meshtastic that tries to make use of existing internet tech, while falling back to local links, instead of trying to replace the Internet completely.
It's very much WIP, I'm planning to get rid of all of the automatic reliable retransmit stuff and replace it with per channel end to end acknowledgment. https://github.com/EternityForest/LazyMesh#
Is there any kind of DHT like routing for the addresses? Woudn't the announces make a lot of traffic without that, if you ever got to thousands of nodes?
A new spin on my slow baking location intelligence data union (https://wherelabs.info). This week I’m thinking about whether it makes sense to provide a location history ‘vault’, designed to let users expose their location history to LLM’s as context.
Steam game.
Exposure to unity has got me thinking hard about its non-gaming applications. The stability of presentation between device targets is incredible. Being able to integrate literally anything you want in native 3d world space feels like a natural next step once you get bored of the DOM.
https://www.tirreno.com ~ the open-source security analytics that your application is missing.
Live demo: https://play.tirreno.com/login (admin/tirreno)
Next version of my side project, which is a site to perform text to network transformations.
Change consists in refactoring the back and front end.
Former : nocodefunctions.com:
Current: next.nocodefunctions.com
Context:
https://nocodefunctions.com/blog/jsf-primefaces-vs-htmx-alpi...
I'm working on a command-line tool for advanced full-text search of written documents. It works in a completely different way than grep, so it can do a lot of operations that grep fundamentally cannot like proximity searching.
I called it Wosp for word-oriented search and print. I released the first functional version a few days ago: https://github.com/atrettel/wosp
Last week I launched https://qcready.com which measures your Post-Quantum Cryptography readiness.
- no sign up, free
- checks PQC usage among all the servers in a domain
- uses Certificate Transparency to find all your TLS endpoints
- tells you how far you are from PQC readiness
I work on Puter (https://github.com/heyPuter/puter/); an open-source, self-hostable internet computer.
People use Puter for an incredibly wide range of things, including cloud storage, web hosting, coding, AI, and gaming. Right now, we're mostly focused on improving performance and making sure that it's as fast as a regular desktop environment!
Building a language learning tool again[1].
I have found for myself that there is a lack of vocabulary learning apps that have good search functions. When I make a search function, I want it to be able to find all subsets of words, that I could think of. Instead what many search functions only allow you to do is, to first find one set of words, and then in a new separate search find another set of words. Currently working on that search function.
Also what I find annoying in spaced repetition learning apps I have seen so far is, that they will ask you very simple words over and over again, just because you didn't see them in a while. But I really don't need to learn those words over and over again, because I just know them.
Another annoying thing is, that in some apps you cannot see your learning progress. How many percent you already learned. Or that you cannot specify how difficult a word is to learn. Or how relevant it is. All this metadata, that could be good for learners to be able to search through, when searching for the subset of words they want to learn next. Oh, and of course tags ... With tags one can add all kinds of attributes to words. Maybe I am only looking for nouns or verbs. Maybe I am only interested in words that have something to do with family.
There is still a lot to do, but it is taking shape nicely.
The app is written in Python and tkinter. It is very simple to use in most aspects, and I really don't care much about the looks. I actually find them refreshingly simple and functional. Not this "everything flat" kind of epidemic in UI, and widgets still give feedback when using them. Not web based with the typical nodejs or npm overhead and tens or hundreds of dependencies. Nope, keeping it very minimal so far.
I also have another idea, that might give it a modern touch, but that might also introduce overhead and probably should be an optional setup or feature: Give users tools to let LLMs generate example usages of words, if they want to do so. Of course that would have to be a local LLM I don't want to get into users having to sign up somewhere and get API keys and all that.
I am also not planning to make a mobile app. Maybe later I can create an API, so that one could build a web frontend, if one chooses to do so. But first I want to build this app and the functionality behind it.
I keep working on my self-hosted Hotjar alternative: https://www.uxwizz.com
Working on Spine AI, a visual workspace to think across multiple AI models.
You can chat, branch, and connect 300+ models on an infinite canvas: useful when you need to explore tradeoffs, check blind spots, or generate assets (research, slides, prompts, images) from the same board.
Try it without signup: https://app.getspine.ai/guest
A gamified pill tracking app featuring a cute mascot: https://apps.apple.com/us/app/pill-buddy-meds-tracker/id6742...
The mascot gets annoyed if you haven’t taken your pills on time.
https://github.com/smartcompanion-app/audioguide-app
An open-source audioguide app that helps museums and cultural spaces create engaging visitor experiences. Feel free to give me a star on GitHub.
I'm working on https://teeming.ai, trying to solve the information asymmetry problem in the job market.
The project has been a huge learning curve for me - I started out as a skeptic of how generative AI could solve real problems (rather than just create noise) but now think that, like the internet, it can create a new kind of abundance that will be harnessable in all sorts of interesting ways.
I am currently working on a fork of Alt+Tab replacement Switcheroo to show all available windows in a tabular format. Current windows in the center. Apps with many windows on the left sorted by process name (e.g. Excel or PDF windows). Pinned windows such as open emails on the right. https://github.com/coezbek/switcheroo
Been building https://nohuman.chat lately. Most ecommerce chatbots are pretty terrible. Figured I'd try to make one that doesn't suck.
https://prepbook.app - minimal recipe manager
As simple to use as a notes app, with clever culinary capabilities :)
https://github.com/FarisZR/knocker
Knocker, an http knock based access service for your homelab that works at a reverse proxy or firewall level.
It's a more convenient albeit less secure alternative to VPNs like tailscale. It's more convenient because it whitelists the enite network, and it's less secure for that reason.
I built https://forvard.org/ with Tauri + Svelte; Forvard is a accomplishment tracker where your data lives locally (think of Obsidian but for career tracking), it has a bit of smartness to summarize your accomplishments (without sending your data over the network). I'm working on fixing bugs and adding couple of features!
I built https://brickwallacademy.com/ to practise sql challenges as part of a sql course I was conducting for some students.
Building https://www.gumlet.com
Streaming video is still hard to do for a developer today and we are solving that with scalable and cheap infra for streaming.
I'm working on a Yelp alternative called Vibehuntr -- just something different to browse venues using Google's API, with a social layer so I can see what my friends like. It's very rough around the edges right now and it might be completely different by next week. It's been a fun experiment in vibe coding on a full stack. https://vibehuntr.io
This week I’m publishing my open-source, email based commenting system for websites.
New (open source) PostgreSQL index type for analytics workloads, which is a read-only drop-in replacement for B-trees. Smol is multiplicatively faster than B-Trees and radically smaller.
Help, alpha testers, etc all welcome. Sorry RDS/Aurora users: smol is for embedded and self-hosted pg instances only for the foreseeable future.
Hydal
Product comparison site for electrical goods, currently has 350,000+ products with detailed specifications, and 27,000+ prices.
Right now UK only, but we have prices for 27 regions, and just now getting retailer prices sync'd up.
Scratching my own (and my employer's, but they don't know that) itch and building a knowledge management system as a nerdy way of spending evenings. I refused to learn JS for years, but turns out it's not as bad as I thought, and TS makes it really nice, plus I like (to my surprise) SolidJS' JSX interpretation quite a lot. Half vibe-coded, half breaking things and learning a lot.
I'm adding an overly elaborate item and levelling up system to the adventure mode of my chess variant AI sandbox: www.chesscraft.ca
Items have a prefix and suffix system similar to Diablo 2 so I'm having nostalgic fun building it. None of this gives any advantage to the chess games you play. It's just a pointless cycle of gems, items, and experience to get more gems, items and experience. Seems fun so far.
http://www.taxmax.dev - helps companies deduct more engineering spend.
https://github.com/s1liconcow/skyshelve - persistent python dictionary on S3. Used this to create a durable execution layer to do some of the analytics for the above.
A notation and IDE for writing fractal poetry (LambdaConf video https://www.youtube.com/watch?v=adjg2LeQMvk)
A constraint-solver for a novel algorithmic theory of harmony (cadence.is)
a word game based on transformations from one word to another (unreleased)
email my username at thekeyunlocks.us for access to any of them or if you want to talk shop!
Working on IT Asset Management & Endpoint Security, Automated platform for IT teams dealing with asset sprawl and security compliance.
Check it out: https://zecurit.com
Would love feedback from anyone dealing with endpoint security or compliance challenges..
Very interested in this type of thing. I can't see anywhere where pricing is mentioned, even ranges would be a useful benchmark to know if it's something within budget.
Love the script hub, very cool idea.
Thanks! You can check out our pricing here: https://zecurit.com/pricing/
We’re also building a script repository so you can run scripts directly on agents from the Zecurit console.
Give it a try at https://zecurit.com/signup/
I'm working on a survival game in the line of MC, Valheim and Vintage Story. Last months have been focused on developing the survival core mechanics on top of building and fighting. Im now entering in the final phase of wiring all the pieces together. Streaming the process daily on Twitch.
In the philosophy of selling shovels in a gold rush, I have built a Markdown Viewer for Mac which is optimised for AI coding with the likes of Claude.
It is simple but powerful supporting all formatting but also diagrams so you can get Claude to generate beautiful ER, or state-transition diagrams for your documentation. It also supports math notation, file links and has a cool table of contents feature
It's in the app store: ViewMD
we are working on Aye Chat: an AI development tool for the terminal. It will make changes directly and let you revert changes through our snapshot feature, all while you can stay in the terminal to execute your favorite (terminal) editor and what not.
If allows the use of different models, no need to sign-up at the moment and at no cost. We released our beta just last week.
We were getting annoyed by all the additional confirmation questions by other AI assistants, and having to switch between consoles to use a editor and/or revert changes.
Check out our repo at: https://github.com/acrotron/aye-chat
or just install it:
# pip install ayechat
I am working on WeatherLockscreen.koplugin. A KOReader plugin for kindles, kobos and other e-readers that shows the forecast on the lockscreen.
Teaching myself Swift, by building a Mac app that mirrors the "Kenney Assets Launcher" (which is Windows only): https://github.com/matula/asset-helper
Basically combining some game asset tools into one.
I am building a WebAssembly WASI runtime for exaequOS (https://exaequos.com), an OS fully running in the Web browser. It will support WASI 0.1 and 0.2. Basic implementation can be tested by running ‘wex’ in the terminal
https://tailgator.app, playing around with serverless Tailscale nodes
https://coolinary.app, simplifying cooking and recipe ideas
https://capi.tax, preparing capital gains tax reports from foreign brokers for German income tax (still closed)
I created this recently but have let it fallow in the last month. Planning to update it over the next few days / weeks. There are a crazy number of directions I could take it.
Would be great to collaborate with others on it. In particular I want to explore building the "alpha arena for AI house price prediction"
As a very recent pet project (and pretty much work in progress), Equations Explained Colorfully (KaTeX + Markdown + TypeScript) https://github.com/stared/equations-explained-colorfully
Thinking on good export formats (except of taking screenshots and Pull Requests, obviosuly). LaTeX and Typst? A remark plugin?
A FLAC encoder/decoder written in Guile scheme. I struggled to get the decoder working with most test files for a while until recently. It's more or less a fully functional decoder now. It's also 1:1 with the reference meta-flac command currently as well.
I'm building https://github.com/agentset-ai/agentset, RAG as a service that works quite well out of the box.
We achieve this performance by baking in the best practices before any tweaking
How does it handle retrieval in a multi-turn conversation? Is there an intent graph involved?
Does it summarize past context or keep it all?
So retrieve once on the first message, and then use that context for the rest of the conversation?
Carimbo, my 2D game engine
Im a simple man Made a small web app for my local game store for playing magic the gathering where you can analyze your commander decks: https://brackcheck.com/
Allez Go: an fencing sports broadcasting system + AI referee
Inspired by shot tracer in golf as well as the "10 yard line" in football.
Also built secretsofmaps.com (but that's more a side project) Would love some feedback!
Working on building a chatgpt wrapper with real time stock market data. More than 70% investors are using Chatgpt for their investment analysis these days, but the data is quite dated since it's all based on web search. Trying to fix it.
https://NitroQR.com Building the one stop QR Generator with a crazy amount of aesthetic customizability. Already at a pretty functional level, focusing on marketing now. Got something new cooking for the holiday season. Hopefully launching this weekend.
I am working on Pinggy (https://pinggy.io/) to make it the easiest tunneling tool.
One feature we are working on is an attachable public IP. For those behind CGNAT, they can run this app and get a public IP instantly.
I'm a writer, non technical, and I'm building Eyeball - https://tryeyeball.com/
Eyeball is a bookmarks app that turns your own saved links into hyper-personalized playlists. It's like having a personal curator in your pocket that sends you a weekly issue of your own personal "magazine" on Sundays.
I'm building a scraper in Golang based on Colly to do two things:
* Automatically train the scraper on the structure of the page to acquire the data you want, and
* Clean and structure the data into a format suitable to go into a relational database
I got sick of doing all that manually for some pricing data I wanted to monitor on some suppliers sites, and I've always wanted to contribute more to open source and give back.
I’ve been working on an online LPC speech encoder as part of my embedded sound tools: https://buzzer-studio.atomic14.com/
It’s starting to sound pretty good. I’ve had quite a lot of help from the community with lots of useful feedback and suggestions. It’s been fun.
I’m building Culink — a platform for curated link collections.
Not random bookmarks, but organized and shareable collections you can actually discover. Think Pinterest for links.
Day 13: 27 collections live, and people are already creating their own — which is exciting to see!
I built a chrome extension (with over 600,000 downloads) that lets you chat with page, draft emails and messages, fix grammar, translate, summarize page, etc.. You can use models from OpenAI, Google, and Anthropic.
Yes, you can use your own API key as well.
Feedbacks are welcome.
A filmmaker community for those wanting to showcase their work. Right now everyone's got their own squarespace and the problem is that about 0 filmmakers also want to be web masters.
IMDB? Ads everywhere. Actor's Access? Ancient.
Human first, AI optional. A great way for actors, writers, and directors to represent themselves.
Feedback welcome! -M@
Been building an agentic movie database. https://memovee.com already in private testing.
The code for the agent is here https://github.com/upmaru/memovee-tama
I'm working on an app for hiking, check it out: https://apps.apple.com/app/lost-trail-hike-with-friends/id64...
I'm just scratching an itch with a side project using Web Audio API. It's free and no ads.
A Python Framework called Artanis, inspired by ExpressJS, to make it easier for JS devs to work with Python ecosystem: https://nordxai.github.io/Artanis/
I am working on PocketWise (https://pocketwise.app) a lightweight personal finance tracking app. Goal is to make double entry accounting simple and approachable for everyday use. It’s my first project of this kind, so I’d really appreciate any feedback.
Building https://viralfeed.ai basically a way for SaaS owners to generate video ads for their products in seconds.
Building vet. The goal is to automate open source package vetting beyond just CVE but actually identify code capabilities, malicious code and other security sensitive attributes through code analysis.
I’m building Cozy Watch, a macOS app that brings GitHub notifications straight to your desktop.
It tracks pull requests, CI results, and mentions in real time — so you know when you’re needed without checking GitHub or digging through emails.
It has a menu bar for quick access and a clean desktop UI for more detail.
Some years ago, I co-founded a startup that would run workflows when email messages arrived, any email from any source was parsed and it would trigger "actions" that could include notifications - this sounds like a good use case for it! You don't need the service to expose an api to listen in, since most services end up sending email as last fallback.
Thank you for you feedback!
Do you still run that startup?
With Cozy Watch, I use the GitHub API, never thought about using emails as triggers.
I’ve actually got GitHub emails disabled, they can get pretty spammy.
Sadly no, the feedback loop with users lacked consistency and we never got around finding use cases. One of the visions for it was to help people clean up inboxes, because as you put it, some sources can get pretty spammy. I'll keep an eye out for Cozy Watch, I hope you are successful!
Trying to get the first commercial users for my digital menu management product: menuop.com
I have been working in ad campaigns and instrumentation to understand interest and reach out to potential users.
A business web app TCO estimator: See https://tco.devtom.ca/ Send me your comments :-)
https://www.miscbeef.com/octopoda
Multiplayer QWOP-like where you control one leg of an octopus.
I'm further ahead in the development than shown here, hopefully have the finished thing out with support for multiple games within a month or so (would be faster if I didn't have a job lol)
https://github.com/codeflash-ai/codeflash/
Codeflash optimizes any Python code for performance by using AI and verification.
We make all human and AI written code super-intelligent by discovering new algorithms and fixing any performance mistakes.
Currently working on secure file intake for Intercom. Recently spoke to a customer and turns out file intake is just a part of the bigger story, currently thinking about processing files, e-signature, client portals and so much more.
Lesson: speak to customers!
Working on https://www.vantage.sh/
Specifically working on our FinOps agent which can identify and remediate cloud infa cost related issues across AWS, Azure, Datadog, etc. The agent lives in Slack and surfaces cost savings initiatives for teams to inspect and approve for the agent to fix.
Taking any intention and turning it into an everyday reality. First app. React Native + expo/eas
1. Langsam - https://github.com/cellux/langsam
This is an AST-walking interpreter for my personal LISP dialect written in C. Once it's ready, I would use it to implement a low-level, statically typed language (Schnell) as a Langsam library. The goal is to gain the ability to JIT-compile Schnell code (sexps of a statically typed language) from Langsam. Once this works, I would rewrite Langsam in Schnell so that it becomes a fast bytecode interpreter. With the faster Langsam (and the Schnell built into it) I could build a little OS called "Oben". The OS would first run on top of Linux, then I would attempt to bootstrap the entire stack on bare-metal. I already have a Forth dialect implemented in assembly language (Grund/Boden). The idea is to implement Langsam in Grund and then bootstrap the entire Grund -> Langsam -> Schnell -> Oben chain on something like the qemu q35, later on a Raspberry Pi Zero 2W and maybe even my own hardware (ie. an FPGA board like what Wirth et al. created for Project Oberon).
2. MTrak - https://github.com/cellux/mtrak
This is a TUI MIDI tracker written in Go. Not too user-friendly: one has to enter raw MIDI messages in hex into the tracks. Can be connected to synths like Fluidsynth or Surge XT via JACK MIDI. Unfortunately it takes a lot of CPU time, probably due to the use of BubbleTea (and no time spent on optimization).
3. Mixtape - https://github.com/cellux/mixtape
Beginnings of a programmable, non-realtime audio sample generator/manipulator written in Go with an OpenGL GUI. I was thinking about how people in the old times cut up the magnetic tape which contained the sound bites and rearranged them to build something new. What if I'd implement a data type called "tape" which is basically a piece of sound and then provide operators in a Forth-like language to create and manipulate such tapes. Each tape could be a sound and then these could be stitched together to form songs. Who knows maybe an entire song could be represented as a hierarchy of these tapes. Each sound or song section could be its own file (*.tape), these could be loaded from each other, maybe even caching the WAV generated from the code of a tape to speed things up when there is a huge hierarchy of tapes in a project. Lots of interesting ideas are brewing in this one.
We are a service to help brands navigate the new world of AI agents. Currently focused on helping them increase visibility in AI search but we plan to go beyond that.
Working on https://slingdata.io Platform for moving data around. Also has a free CLI. You can use YAML or even Python.
I'm working on a boardgame with the help of AI. It's way too easy to create placeholder art with an n8n pipeline, but GPT-5 regularly fails at writing and debugging LaTeX which I'm using for all of the card creation.
Specifically, TikZ is often outside the ability of GPT5 to successfully write or debug.
Working on https://outcrop.app, a knowledge base for software teams with instant search, realtime collaboration, and LLM-driven workflows. It's built using Rust and friends. I'm looking for more early testers! :)
Knowledge management meets spaced repetition: open-sourcing my tool I've been using for the last five years https://github.com/odosui/mt.
I’m still working on https://opus.cafe/ outside my full time job.
It’s been a fun 3 year project. Just launched on iOS and am in user acquisition phase. Totally new learnings here! Getting users is definitely the hard part... I can build something all day
I’m building a stablecoin account for workers in LATAM. It helps them protect their earnings from inflation and makes doing taxes easier. (https://www.useairsend.com)
Working on https://ziva.sh/, an AI agent for game development. It uses MCP to integrate with Godot, a leading open source game engine.
It's coming together really nicely, targeting a beta release later this month. If anyone is interested in game development and wants to be a beta tester, lmk :)
Multi-Chain Trading API across 60+ Blockchains (swapping and bridging / any-to-any)
I'm working on marketing my dedicated game server host https://stratos.host - it's a simplified product compared to traditional companies, using a desktop app to detect games being launched.
A multiplayer game prototype, written in Rust, using Bevy + egui for graphics. Think of it as a bare bones implementation of a game like Runescape, mostly to test out current LLM capability.
I haven't found much value in LLMs for coding beyond very self contained tasks, but some people speak highly of it, and I want to be sure that I'm not missing out. So from time to time I give new tools a try. This time is "Claude Code on the web".
I've put in an estimated 50 hours so far. It has a client and an authoritative server. The client displays 3D graphics with some placeholder models. From the client, you can click on tiles and move to them, or click on enemies to pathfind and attack them. You can right-click on tiles or monsters to open a menu with options (attack, trade, move). There are some unit tests and a few integration tests.
Right now the issues that Claude has been unable to resolve after a few attempts are: * Attack animations. I'm trying to get it to raise and then lower a rectangular block to simulate a sword attack. It really doesn't get it, and it's harder to write tests for compared to movement and server-client networking. * "Entity interpolation". Rather walking entities instantly moving from tile to tile, movement should flow smoothly.
I have Claude Pro ($20/mo) which let me make a few commits per day. After a few days of that, Anthropic offered $250 in credits to promote "Claude Code on the web". The credits expire after two weeks. I'm now five days into that period and have gone through $50 in credits. It is heavily rate limited and frequently locks me out for multiple hours after only a few interactions, but it's free credits so I can't really complain.
A simple strobe tuner for musical instruments with Odin, Raylib and Portaudio. https://github.com/dsego/strobe-tuner/
Data viz experiments with Svelte and Three.js
Been continuing to work on my daily puzzle game: https://videopuzzle.org
Yesterday was the one year anniversary, meaning there are 365 videos to unscramble. :)
Predict? Interesting!! How do you plan to do that? We have an API if you need one. We recently launched https://bestkundli.com, which does the prediction thing.
I'm building a cursor style ai agent but for planning hikes/trips. It does context management and tool calls into data sources and navigates the world to find interesting places. Should be getting out of private beta this week! https://wanderfugl.com
I recently released a game:
GunStopperDrone Game Single player game, race against the clock to defuse a dangerous situation using a drone against an armed attacker. https://game.gunstopperdrone.com/
I'm working on my own code review app powered by local or self hosted LLMs. It started as a way to lint my own code and took off from there. It's basically like greptile or co-pilot, but has some things that they don't:
I'm working on Travi, an AI-powered travel companion that helps travelers effortlessly discover the best attractions to check out based on their interests, and experience them through rich, immersive audio narratives.
You can check it out at https://TryTravi.com
https://SightRead.org - free, ad-free, etc, vanilla js (except for the abcjs notation library) web app to practice sight reading. Currently rhythm-only, but more is planned.
AI Copilot for brick-and-mortar retailers (https://fastquery.ai)
Perfect usage metrics. Store staff spends 35hr per week using my software in a ~7 employee per shift setting. No churn.
Bootstrapped past $100k ARR on my own, just onboarded a co-founder.
An LLM-powered 'offline' journaling/mindfulness app that draws on ancient philosophy. Designed it initially to help nudge my own habit along & keep things fresh/interesting every time I sat down for a scribble-sesh.
Building a tourist app for my local city here upstate New York, since nobody in the local government office can be bothered.
I'm working on an open source library in golang to get in depth system information from macOS.
Here's my work so far: https://github.com/BinSquare/powermetrics-go
Improving the open source automated documentation maintenance workflow I setup https://entropicdrift.com/blog/prodigy-docs-automation/ Any feedback is very welcome.
https://web-framework.com, a lightweight PHP framework on Slim and PHP-DI for ORM, caching, auth, etc. (an alternative to Laravel/Symfony for small apps).
Spending all day every day thinking about how to make coding agents better through configs and dev tools
If you're interested in following along, check out https://www.npmjs.com/package/nori-ai
I’m working on Radiant Computer.
It’s a new kind of computer that attempts to part from the unix heritage and offer something really accessible and modern.
a simple website to share and browse bookmarklets
I work on Harbor (https://github.com/av/harbor), it is a project to save hours when setting up LLMs locally.
I pre-integrated over 50 different LLM-related projects, added a nice CLI and a Desktop app on top to manage the configs.
Some weeks ago I launched https://woomarks.com a Pocket replacement.
Here it is hosted on my website https://roberto.fyi/bookmarks/
I am building a community driven data aggregation platform for the Michigan tech ecosystem. This is just a promo page.
On launch there will be a company index, curated newsletter, educational resources in michigan like CS programs, and much more!
I've been working on an open-source platform to build agentic workflows. I really wanted a Figma-like experience for building agents.
Apache-2.0 license: https://github.com/simstudioai/sim
Building a set of experiments that explores LLMs visual understanding of your photos to learn about you, especially given the recent learnings from deepseek-OCR. Part of the experiments delve into storing the memories with GraphRAG so they can be effectively retrieved without losing too information.
Working on a computer algebra system at http://axcas.net
I released some public domain code for computing Groebner bases (F4 and FGLM). I'm hoping these routines will find their way into more systems.
Working on D2xlab, a fast, browser-based tool to explore, clean, and compare time series (CSV, simulation outputs, etc.) visually.
Workflows and Case Management for Lending use cases like Small and Medium Business loans and Merchant Cash Advances. I'm working as the Product Designer on these features for a Document Data Extraction AI company.
I am working on my RSS Feed discovery, I am not happy with the current ui.
Currently working on the first helpcenter that writes itself.
The tool makes it super easy to create help articles in any language, just by clicking through a process. The first results are super promising!
I made a voice-input only social media. It has pictures too. But you can't type anything. Made it in a weekend with Lovable.
Bank Rank — an automated bank account that dynamically allocates your money across the best accounts to maximize your rate at all times.
We’re doing an alpha launch in Q1 2026, and if you’re interested, sign up at bankrank.io/waitlist or email bankrank.alpha@gmail.com
AI Assistant that schedules your meetings for you over email. Just sign up and cc her into an email thread to get started.
i'm building a camera app that can connect two iPhone peer-to-peer, no server needed.
Hi HN, we’re a Milan-based fintech startup developing FELKO, an AI-powered data platform that helps banks and credit-holders standardize, monitor and act on debt portfolios in partnership with collection agencies!
There is a lot of repetition when it comes to building AI system. Frameworks don't help. No-code builder are still too rigid.
We are making "batteries included" API to bring agentic AI into any platform.
I'm Building a Speech-to-text app with AI workflows. Building with Tauri, Rust, TS, React and Tailwind.
The first version is out: https://voice-ai.knowii.net
I wanted to try a non-trivial project with AI assistance and I enjoy writing compilers, so https://vegen.dev
I'll write up my experience in a blog post
Just launched the beta of Yass - an open source Kotlin implementation of the Swiss national card game.
Working on a CLI tool to sync packages between NPM registries. I'll be pushing the code here once its done: https://code.hangdaan.com/foster/kagami
https://github.com/dmjio/miso-lynx
Building native applications for iOS, Android and Huawei devices in Haskell.
Yes, miso uses the JS backend in GHC, and mobile phones have embedded JS interpreters (e.g. JavaScript Core). These interpreters can access native libraries to draw native views, or access native device APIs.
Projects like lynx and react-native automate this process using something akin to node-gyp, exposing kotlin / swift libraries via C ABI w/ a JS API. Miso accesses the kotlin / swift native modules by FFI'ing into the JS that exposes them.
The JS doesn't get compiled, but on Android it does get JIT'd. So it's "native" in the sense that the views drawn are native (not WebViews), and the device APIs are native, but not "native" in the sense that it's compiled.
Working on AI business coach that can help you at different stages of your startup or small business journey. Here is where you can access the business coach: https://ceo.getbeyondx.com
A cpp code generator like esphome, to generate the firmware for midi devices in a simple yaml file, for raspberry Pico.
It would have been so much easy just to program the midi hub I wanted to program but wanted to make it generic.. now I can make the firmware for any configuration in seconds!
https://sauna-assistant.com - iOS app to elevate sauna experience
I'm building a Firefox, Chrome, VSCode and OpenVSX security scanner and profiler, and working on building a private web store for Enterprises to switch to rather than using the default stores given all the ransomware and malware activity in that space. Will show HN very soon!
I want to make it easier to just quickly enable wake lock on your device in a cross platform, no install, offline capable way. It's a silly little project but I'm super proud of it.
I have a comprehensive agent system. Currently working on SIP calls with different models including realtime. https://github.com/runvnc/mindroot
A notes app, where you can create flashcards on your notes/pages directly
you can also infinitely nest your notes/flashcard decks, and turn each note into a dedicated page
spaced repetition coming soon
Working on Afterchive, I recently started to my github repo is kinda modest. https://github.com/asemshaath/database-backup-utility
https://github.com/benjajaja/mdfried
mdfried, markdown viewer for the terminal that renders headers as Big Text via the new text-sizing-protocol or as images.
Building a cheaper DMARC service with no ssotax. https://dmarcdefender.io
I have two side projects I continue to make some headway on: a practice call platform (practicecallai.com) and an iOS baby tracker / newborn app (https://apps.apple.com/us/app/lil-baby-tracker-newborn-log/i...).
The last month has had its ups and downs.
Ups = some local-area doulas have started sharing the baby app in a big WhatsApp group & growth is starting to pick up.
Downs = my first vibe-coding horror story. For PracticeCallAI, the subscription flow was failing and somehow outside my test coverage, so I've been missing out on new subscribers for the last two months. In an effort fix it, Replit Agent - which I have been loving otherwise - truncated the table that stores all of the user calls. and their database rollback is throwing errors. So that's been fun.
An AI development workflow platform with GitHub integration. Built in Elixir / Phoenix. Early stages but it's a fun project.
I wrote a pretty complicated set of GNU Makefiles for a simulation library at work, but was annoyed I had to work so hard to avoid collisions, so I'm working on a "more sanitary" build-your-own-build-system/build-system-kernel type deal.
systemg - "Systemd, for busy people".
https://github.com/ra0x3/systemg
I'm personally tired of getting stuck in config/deployment hell every time I want to deploy a long-lived web service. Sure I eventually learned how to use systemd, but systemd has SO many things baked into that I simply don't need. systemg is a lightweight process supervisor that features everything you'd typically want when running/managing production web services in the wild.
Would love feedback.
I love that it's Rust based, but being busy is exactly why I like Systemd, it Just Works, as long as you don't need to customize the OS at all.
True, but I think the point I'm trying to make is that when it comes to deploying (what are more often than not) web services, getting to the point with systemd where it "just works" requires more pain than I'd like - especially with regard to production deployments (reading logs, checking service status, wondering why my env vars aren't being read, etc).
If at the time when I was cutting my teeth on systemd, I had access to something more lightweight and "do one thing well", I think I would've gotten a lot more sleep :)
A DeepWiki to mdBook converter to automatically document some other projects I'm working on: https://docs.deepwiki-to-mdbook.zenosmosis.com/
Building https://pricetracker.wtf but life got in the way lately.
Now looking to migrate bits and pieces to pg_lake from hydra/citus columnar.
I'm building a DX-focused IP-Geolocation service https://ip-sonar.com/
Slowly but surely:
- A learning tool in Python for Arrays and Algorithms
- A prototype agent-based configuration management system in Perl
- Trying to reinstall Arch Linux on a laptop the second time around (lost my install notes :D)
Mostly doing all of it for learning purposes.
Expanding a speech-to-text (dictation) gnome extension I wrote to work with gnome 49.
Building a simple service to share content and simple sites in free time. Recently implemented sso with google. Would love some feedback.
Personalized audio streams for language learners. Ideal for during driving or while doing chores.
At the intermediate level lots of learners struggle to find suitable content that matches their level and interests, more than a few learners turn to notebookLM podcasts to provide that, but that's a bit of a hassle to set up. So I built a platform that generates and manages infinite and shareable streams around your interests or specific vocabulary. It also provides live interactive transcripts (karaoke / teleprompter style) if you need it.
Core features work but still rough around the edges. Happy to help you out with any issues you encounter, languages to add, feature requests etc...
Working on a Document Manager in the Apple Ecosystem.
https://apps.apple.com/us/app/document-manager-fyle/id674003...
My latest is Marvelogs (https://www.marvelogs.com) - always wanted to build a price tracker (or tracking any values on a regular basis) - it's nearly there.
decentralized bluetooth gossip network ios and android app auraphone https://www.youtube.com/shorts/J-zxK7Xl6z0
We're working on https://www.octozoo.com - helps development teams improve their code quality by tracking code coverage.
Also planning on adding more tools to help development teams.
Been nerd sniped recently so am working on a Rust version of markdownlint-cli2. I'm tired of having a node dependency in my projects and this seems like a constrained enough problem space that I'll actually get around to doing it.
Figuring out the semi-documented method of doing varargs on the Mac AArch64.
Nemorize.com Master anything with spaced repetition, WaniKani-style levels for every topic.
Fully functional and constantly evolving.
Pagecord - blog from your inbox! Free and source available. Give it a look :)
Trying to streamline pet travel compliance and making sure nobody gets stuck at the border with the help of AI and some veterinary partnerships.
https://getcriticly.app, a critical thinking toolkit which helps you think clearer and learn faster.
A new web server written and server management dashboard in JavaScript that is much faster and less complicated than either Apache or NGINX and serves HTTP and WebSockets from the same port.
I'm working on an AI-controlled VPS. It makes a lot of sense to let them run with full permissions.
I’m working in a universal UI for agentic coding in the terminal.
Free live course on how to make an ai business from scratch https://aititus.com/100k
A mobile game!
Made with Godot and Swift, a casual manic arcade thing where you pop animals in increasingly exotic/banal locations.
Moved from nodered only to a hybrid of nodered and home assistant. Added some new sensors, nfc tags, modes and automations for multiple tenants / cost savings. Its been fun to automate some boring tasks.
working on AskAI chat widget for tech companies. It's like having chatgpt answering the questions of your users within your product. ( of course trained on company docs & data )
I'm making a gamified Strava for my friends where we can create challenges and keep each other accountable by betting on ourselves.
The goal is to connect people IRL through fitness.
Is anyone working on or knows a library for evaluating LLMs for application features and/or application features that use LLMs? I am wondering what people use or if anyone has their own solution.
There would be so much subjectivity to this. I like the idea but executing in a reliable, repeatable way would be very challenging imo.
I am building a FaaS runtime for Lua on top of Elixir.
Why? I want a fun/meaty Elixir project.
Will anyone use it? Who knows.
I finished my first real attempt at a complete side project as a first year dev.
ytrss.xyz
Convert YouTube videos into rss podcast feeds you can subscribe to anywhere. Also added a YouTube audio conversion api.
https://www.athilio.com/ Currently finishing up garmin integration and a mobile port of the app. The app is aimed at people with goals related to their wellness or sports / training. Somewhat similar to training peaks but more focused on integrating different metrics, like sleep and readiness from oura and training data from garmin. Also user has more control. 0 focus on social features. Pricing aims to be affordable (1/4 - 1/2th of similar services), this is hopefully possible with local first approach for the data(sqlite). Saves tons of money on the backend costs when only the syncing from integrations + oauth is on the backend and no storage. Also I think this is more friendly for the users privacy and I would prefer to not store the users datas on my servers for GDPR reasons. Syncing between user devices can be done similarly as Obsidian with icloud. The user experience is a bit influenced by software observability.
working on https://careroute.ai - triages people to right site of care, estimates their visit cost with their insurance before they go, and lowers bills after visit by having an AI voice agent negotiate on their behalf. Triage works for all regions, cost estimates and bill negotiation is US-only.
Following the https://browser.engineering book to brush up web fundamentals!
It’s quite fun.
I've been reading up on how the PS2 works in hopes of making a 2000s styled game on it
Open source outreach / email campaign software: https://outreachstud.io
https://getfast.ai/strava/login Using transformers to understand fitness data
I'm working on a framework to use for making Factory Management systems.
Trying to teach LLMs to speak proper https://en.wikipedia.org/wiki/Lojban.
https://whatsyum.com Ratings per-dish instead of just the whole restaurant
Risk and volatility indexes for industrial sectors.
Building https://flickspeed.ai Its cursor for creativity.
i made a self-destructing text-sharing service for fun today. nothing crazy but its open source, free, and self-hostable.
I’m building Streamlit for Java. https://javelit.io https://github.com/javelit/javelit
I maintain a dev log: https://world.hey.com/cdecatheu/javelit-diary-00-building-a-...
And here’s an article about the project by a Google Cloud devrel :)
https://glaforge.dev/posts/2025/10/24/javelit-to-create-quic...
mock, an API creation and testing utility. Any feedback is welcome!
Another month another project inbound.
https://flopper.io - this has become a big focus. It's essentially a table for flops. Calculator coming soon for flops and power. Imported >600 Datacenters in October.
https://llmstxt.studio - models need data and I believe llms.txt as an idea has merit. Likely needs an authority. Will add more audit tools to give people any slight benefit they can have for SEO.
https://probe.bike - tell stories with your bikepacking data.
It's pretty hard to work on all these ideas and areas whilst working. Feeling a bit over stretched.
Flopper remains the main focus as release cycles are slow and it overlaps with work slightly.
Recently working on https://rainsounds.xyz
Here you may mix rain, thunder and more sounds.
I'm working on some writing on my blog [1], trying to improve my writing and explore style.
My current series of post follows the surge of interest in UUIDs with the uptake of UUIDv7. I've seen some subtle misunderstandings spreading, so I dive into nuance. This has spun off some mini projects, like an RFC compliant UUIDv8 implementation based on XKCD 221 [2] (humor intended). I think I have two more in the blog series.
working on a end to end pipe like for robot model . no where near complete but still https://github.com/Priyabhunia/roboVLM
Version 2 of prismabuilder.io
A graphical web interface for building out Prisma database schemas, and then exporting the code.
Working on Ultrazon.com ecommerce store using AI
I'm working on integrating a trained nnunet MRI segmentation model (bibsnet) into my cortical surface reconstruction pipeline.
I'm working on formalizing https://arxiv.org/pdf/2508.18475 (A convex polyhedron without Rupert's property) in Lean4
I'm only on lemma 11 at this point, and up until that point the paper has been fairly easy to formalize (modulo my unfamiliarity with mathlib).
The repo is here https://github.com/badly-drawn-wizards/noperthedron
I'm implementing a btree for educational purposes =) https://github.com/danielfalbo/btree/pull/1
https://gametorch.app/sprite-animator
Create video game sprites and animations via prompts.
Pretty excited because I've started to get high volume, repeat customers.
I've tried making game tiles and sprites with Craiyon, which works surprisingly well now. But I always struggle with consistent style, scale, colors. And if I want a border around buttons, it's better if I make it once and apply it myself in photoshop, because the AI will change it slightly every time I ask for a change to the sprite contents.
Ahhh this is exactly what I'm looking for! I don't see any pricing on any pages. Would love to know how much this costs (I don't know what 455 diamonds is worth) as there's a few sprites that I'd love to animate and use in my app.
Not a fan of signing up before seeing how much I'd have to pay. The examples look great though.
> The animations cost $0.32 ( 32) each.
Not sure if you just added this in or I overlooked it, but exactly the kind of transparency I love. Will give this a try.
--
EDIT - Did an image generation using the OpenAI 4o model, then ran through the lowest quality animation. This is awesome and first pass is very strong and usable (around 100 diamonds used).
I look forward to seeing prices drop more and the asset pack area fill up. Keep going man, really awesome stuff.
macOS menu bar app that guesses if you are in a meeting and updates "Luxafor flag" - LED indicator
Document translator that keeps layout intact.
Coding agents that you are building should get the link to this post and build everything mentioned.
macOS menu bar app that checks if you are in a meeting and updates LED light indicator
Using GenAI to build small highly useful tools. Poker tracker, calorie tracker, budget tracker.
a puzzler that has different types of puzzles to solve from a given code snippet. still a work in progress for sure - https://kazokai.com
What stack? Are you considering a TUI overlay to make it remarkably efficient?
p4d.io is a visual dashboard designed for people with ADHD that allows you the exploration of ideas easily.
Check it out at https://www.p4d.io
Focusing on creating a omnichannel ai-powered support platform on Slack.
a website blocker that uses AI to help you against procrasticantion, you can try it for free: https://tasksentry.app
just posted a HN SHOW post about my new DeepFakeCheck.com website. Looking for some feedback on it.
Thinking about building out my ai memory tool but I am looking for more hours in a day to do that :)
Self-hosting a free real-time AI app to help people practice speaking English
I just finished a little webtoy. It's like a comic strip time machine - you can see a virtual newspaper comics page for any date in the last seventy years.
V happy with how the CSS came out, except I spent a lot of time on an "ink bleed" newsprint effect that (oops) only looks good on HiDPI monitors... lessons learned I suppose
In network code: most people just let the OS choose a default adapter. It works fine, but it makes it hard to write software that works across machines with either (1) multiple NICs (and/or networks they point to.) or (2) multiple external Internet IPs. Look at STUN, for example.
A STUN server that lets people test what type of NAT they have uses two IPs. For such a server you have to manually specify the addresses to bind on to make for sure its setup right. As it goes, writing network software to do simple things like "bind on all local addresses", "bind publicly", "bind on all", is harder than it sounds. There are edge cases on different OSes and address families, so manually managing IPs is hard to do.
My network software lets devs easily manage NICs and routes they support without guessing about addressing. Additionally, I've written a bunch of software with the library already to do things like NAT traversal. So its really my own redesign of how to do networking on the Internet. Designed to hide a lot of the messiness. I'm still improving code quality so it's not ready yet. But I've been dog fooding with a lot of software written in it and smashing bugs every day.
Project page: https://github.com/robertsdotpm/p2pd Built this recently with it: http://ovh1.p2pd.net:8000/servers (server monitor for public STUN, TURN, MQTT, and NTP servers. Only checks every 4 hours to avoid spamming them though.)
An app to share notes from conference talks. Paste. Share. Done. Conference notes without the signup
Open to any feedback, suggestions or comments.
I'm working on a simple open source iOS client for hacker news that makes use of the latest iOS design language and features.
No Ads, no paywall, just focused on a good reading experience with some extra niceties like widgets on the home screen.
Website: https://www.hackerreader.app/
App Store: https://apps.apple.com/us/app/hacker-reader/id6754137305
I’ve recently written ImapGoose, a daemon which keeps a remote IMAP mailbox in sync with a local tree of Maildir: https://whynothugo.nl/tags/imapgoose/
It relies on “modern” (2009) extensions to minimise traffic and avoids polling entirely (relying on the server to notify of new messages or changes as they happen).
It’s currently quite stable. The only known issue is that it can take a while to detect a timeout when the system is suspended and woken up again (there’s no portable API to detect suspend/resume).
Since then, I’ve been working on a simple TUI email client based on notmuch and maildir. So far it works really well for processing email, but lacks any capabilities for handling attachments, composing, sending (these are obviously on the roadmap).
alapaca papaer trading automated on a raspberry pi - algo trading is there for a while and this would help me test my strategies
Porting antique operating systems (PalmOS) into antique kids’ toys (Fisher-Price Pixter Color): https://x.com/dmitrygr/status/1986329723224441227?s=46
I'm working on restoring (or really resto-modding) a 1980's Japanese arcade machine.
https://share.icloud.com/photos/00ajYWxKpZmYrh6KmlHOxW4tA
I was able to get the original 15khz CRT monitor up and running by recapping the board. I decided that the control panel was unsalvageable, and insufficient for what I wanted to do, which was make this cabinet compatible with most any game that would have run on a cab like this.
I decided to use RGB lit buttons, so I could change the color's depended on which game was loaded. I used an ESP-32s2 to emulate a keyboard, and accept serial messages from the host computer that changes the button colors.
I also incorporated a Stream Deck in the control panel for auxiliary functions. I was able to write a node application to run the stream deck (with the help of a library) since there is no OEM software for linux.
By far the most challenging part was getting a suitable signal to the CRT. The first thing I tried was using the Raspberry Pi's GPIO pins through a VGA666 board, but this limited my colors to 16bit, which makes 3d games look pretty awful.
Next I tried using a downscaler. This got me 24 bit color, but resolution switching doesn't work with this method.
I'm trying an AMD system now. Apparently the linux driver lets you set custom resolutions, and output 15khz (and 25khz for that matter) right from the VGA port.
I plan on doing a writeup after I near completion.
I am building a coding agent for small businesses. The agent runs on Linux box on own cloud. Desktop and mobile apps to chat with AI models and generate software as needed.
SSH based access with HTTP port forward. Team collaboration, multiple models, git based workflow, test deployment automation, etc.
Very early stage but it now work on its own source code (Bash tool is missing): https://github.com/brainless/nocodo
Reviving a dead PHP bytecode vm for embedded systems:
https://github.com/alganet/PHL
---
Bootstrapping from an x86 image that is mostly source text (based on live-bootstrap):
https://github.com/alganet/abuild
---
Image with many shells, for testing script for portability:
Garden Boxes
Specifically, torched pine Shou Sugi Ban boxes to house a garden at a much more convenient height for gardening, and eventually, my wintergarden experiments with high compost mixes to keep the garden from freezing in the winter.
All-in-one router/nas/firewall/adblock/app server (each piece optional)
Declarative and reproduceable as it is built off of NixOS, but administered through a UI, so the user doesn't have to know this.
All state managed in a backup bundle, so it can be hosted at home or in the cloud.
Goal is to have a box you plug just like a wifi access point into your modem, follow a simple web-based installation flow, then you are running a personal cloud.
Website is self-hosted by HomeFree, but installation instructions are very out of date, which I'm working on right now. There are now installation ISOs that I will soon add a link to.
I buy and operate e-commerce brands that sell on Amazon, and I'm working on handing as much of the operation of the business off to AI as possible. Doing this both for actual time savings for myself and also as my big-picture eval of new AI models + products as they come out.
I also started a Substack to document it - here's a recent post on using Gemini to screen inbound emails with prospective acquisition targets via a Google Apps Script that evaluates the listings in those emails daily: https://theautomatedoperator.substack.com/p/screening-inboun....
Here’s mine:
I’m building a small live NFL game-prediction tracker and writing up what I learn as I go:
https://michellepellon.com/portfolio/nfl-game-predictions
# What’s under the hood today
ELO translated to the NFL with margin-of-victory adjustments, a modest home-field term, and week-to-week recency weighting.
Post-hoc calibration with isotonic regression so 70% predictions land near 0.70 empirically.
Monte Carlo to roll games forward for distributions on weekly win odds and season outcomes, plus basic reliability/Brier/log-loss tracking.
# Where I’m taking it (ensemble ideas)
Blend a few complementary signals: (1) pure ELO strength; (2) schedule-adjusted EPA/Success Rate features; (3) injury/QB continuity and rest/travel effects; (4) a small “market prior” from closing lines; (5) weather/play style pace features.
Combine via a simple stacked model (regularized logistic, isotonic on top), or a Bayesian hierarchical model that lets team effects evolve with partial pooling.
Separate models for win prob vs. expected margin, then reconcile with a consistent link so the two don’t disagree.
Emphasis on calibration over leaderboard-chasing: reliability diagrams, ECE, PIT histograms, and backtests that penalize regime drift.
# Why I’m doing it
It’s a sandbox to teach myself Monte Carlo and ELO end-to-end—data ingest → feature plumbing → simulation → calibration → eval—on a domain with immediate feedback every week.
# How this connects to my day job (healthcare ops)
I work at BlueSprig, running ~150 ABA therapy clinics. I’m exploring whether ELO-like ideas can augment ops decisions:
“Strength” ratings for clinics, care teams, or scheduling templates based on outcome deltas and throughput (margin-of-victory ≈ effect size/efficiency).
Opponent/schedule ≈ case-mix, payer mix, staffing constraints, geography.
Monte Carlo for expansion planning (new-site ramp curves), capacity/OT forecasting, and risk-adjusted outcome monitoring with calibration so probabilities mean something.
Guardrails for fairness and interpretability so ratings don’t become blunt scorecards.
# Help
If you’ve shipped calibrated ensembles in sports or have pointers on applying rating systems to multi-site healthcare operations, I’d love to trade notes or if you need someone to this and other kind of work for their dayjob email me at mgracepellon@gmail.com -- I would love to do this fulltime.
Manabi Reader: Japanese learning through reading
I recently added FSRS (besides also having Anki integration). Now I'm working on replacing the need for reviewing flashcards by having reading activity automatically mark flashcards (current and future) as reviewed, so that you can get many of your reviews in just by reading native materials that interest you instead of sacrificing most of your study time to contextless flashcard grind.
I'm also working on a manga mode using a new manga OCR tech I have licensed out of academia that is ahead of state of the art alternatives.
This project now sustains my full-time focus.
This looks super cool. I love to see people working on language learning tech. I'm working on a language learning app too but it only really works well for indo-european languages. That said I would still love to collab or talk shop, my contact info is in my bio
It's native SwiftUI and Swift so I want to avoid a rewrite. I am experimenting with porting my Swift code to web via WASM, now that SQLite WASM backed by IndexedDB is usable so I can reuse the data layer too. I'm also evaluating https://skip.tools for running my SwiftUI on Android.
A food aid grant program to help anyone do mutual aid. Its grass roots activism meets the current SNAP cut madness.
Wrote and released a daily reader on sobriety and stillness called I Will Not Drink With You Today.
There’s a companion website: https://iwillnotdrinkwithyoutoday.com
I wrote the book in markdown, stuck it in a SQLite DB and wrote a parser to put all the data in static JSON so it loads very fast.
I also created a new personal homepage to update my presence on the web as a published author and experienced leader and technologist: https://davidbyrondrake.com
Book was released less than a month ago—growing it organically like a startup has been fascinating in terms of marketing, sharing, building, and measuring success.
Have been utilizing my acting skills again with readings from the book on my Instagram and TikTok.
Having a really good time with it!
We're working on a repairable and sustainable e-bike battery that you fully own and control!
We want to get rid of "black box batteries" and move to connected, cross-compatible, and easy to repair batteries!
Check our batteries at https://infinite-battery.com :)
I'm currently working on porting Android 16 to a Galaxy S5.
Why? For learning and fun.
The next step is to debug kernel logs with uart.
I am working on a 3D online party game : Epic Musical Chairs => https://s.team/a/3414020
- Musical Chairs
- With Fights
- And Epic Music
- Made with Godot 4, C# & Wwise
- Online with Nakama & Hathora
Trying to relearn Rust by writing a download manager CLI. Managed to get the blocking version working, now I've implemented the async version using tokio. Have to next implement downloading chunks with different workers, and a download queue.
Working on better code ownership functionalities and wasm/worker CI/CD workflows.
ArtCraft [1], a source available Adobe + AI.
Here's a demo / trailer that shows it off:
https://www.youtube.com/watch?v=NNHSTfWbkaA
If you're into movies or filmmaking, it's a fantastic AI tool for consistent, fully-intentional scenes with deliberate set and actor blocking.
It's also the cheapest model aggregator service out there. You can log into every AI image and video provider directly and don't have to pay me anything to use the tool. You can use your Sora account, Midjourney account, Grok account, etc. It'll soon let you log into other aggregators like OpenArt, plug in your FAL API key, etc. so you can use your credits/funds wherever they happen to live.
Unlike the other "model aggregator" websites like Higgsfield, this is a desktop app written in Rust that you can keep. It also has highly intentional 2D and 3D design surfaces especially built for design.
Text prompting sucks for artists and designers, so I'm trying to put image and video design onto canvases that you can intuitively mold like clay.
Here are some short films made with ArtCraft:
https://www.youtube.com/watch?v=H4NFXGMuwpY
https://www.youtube.com/watch?v=tAAiiKteM-U
https://www.youtube.com/watch?v=SuVW8l-_O3I
Would love to hear feedback if anyone tries it out.
Users post small games to social feeds.
Scroll like a social network, jump into and play any game by tapping on it.
Games are served into fully locked-down, sandboxed iframes for security.
Docs for game developers: https://xelly-games.github.io/docs/intro
Added compression to my metal 3D printer slicer exported CAM files, and refactored the code to better support larger volumes.
Tweaking the piezoelectric driver PCB design for the micro-positing microscopy stage project. The Nanomotion piezoelectric motors were not meant to be used in the manner I chose, but it is fun to push the limits of technology.
Finishing up some custom 1U mounted hardware, and getting a batch of test PCB soon. Bend radius came back 1mm oversize, but this was acceptable for a single run item.
Also involved in several other projects maybe 3 people would care about. Doing a custom FPGA PCB is not very fun unless encountering that rare class of problem CPU/MCU simply can't handle cleanly. =3
I've been building SageNet, a voice-first AI coach that turns your goals into structured, adaptive learning plans.
After a 2-minute voice conversation, Sage generates a personalized 6-module roadmap with build-first projects. It checks in by voice, analyzes your reflections, and regenerates your plan if needed. You can invite friends to your Support Squad for accountability.
The biggest insight so far is people don’t want “infinite content.” They want structure and someone who remembers them.
would love feedback!
For fun have been creating a mashup of old school DnD map generation using Commodore "10 Print Chr$(205.5+Rnd(1)); : Goto 10" style logic (in TS/Svelte/SVG):
Have been down a rabbit hole ensuring the stairs are realistic and that grid connects properly. Lots of fun and frustration with AI coding tools trying to solve that (they mostly don't/can't). Some fun detours learning a little Prolog to help out as well.
a 3D Graphics framework and a c++ library for parsing valve .map files
A time-sorted list of top posts from Hacker News, Tildes, Lobsters, Slashdot, Bear, and some science, tech & programming related subreddits.
Posts on STEAMD topics (Science, Technology, Engineering, Arts, Math, and Design).
My site went live 2 days ago. I shared more details on below post but for some reason, my post was shadow banned and didn't show up on Show HN.
https://news.ycombinator.com/item?id=45849924
Any constructive feedback is welcome!
Note that I am trying to narrow down a bug in my backend which sometimes causes it to crash. Since backend is built in Swift using SQLite as database, it's a bit hard to nail down the issue.
no downvotes was making me think id been shadowed, at least thats not the case for now it seems. my comments on here have tended to snarky recently.
A library of components for Godot that could be used in different kinds of 2D games: https://github.com/InvadingOctopus/comedot
Dreaming about a new programming language made for coding gameplay logic: https://news.ycombinator.com/item?id=45865379
And an iOS expense tracker focused for frequent travelers, and macOS photos viewer based on the filesystem instead of a monolithic opaque "library", 2 needs that I had since forever but could never get through Apple's atrocious developer documentation far enough to finish making them :')
A lot of things!
A law professionals helper - aggregates judicial case info into a single place, gives visibility and notifications - asistentul.ro
A scheduling platform for self-employed professionals that offer services (think hair-cutting, nails, psychlogists). (Not yet live)
Aaand something in compliance that I want to keep a bit stealthy right now.
A template-based automation tool for small private equity firms. It has some AI functionality as well to easily parse documents and information from transcripts. Basically I want to free up investment teams from admin tasks so that they can spend more time on evaluating deals and building relationships.
A lot of the AI-powered applications for private equity firms are focusing on the multi-billion dollar firms.
The Board: A feature board that vibe-codes the top voted feature into itself every night: https://theboard.stavros.io