I got laid off at the end of April and have been building my own personal dream tool since, it's a skeuomorphic carpentry simulator with an agent MCP. You start with real wood specs and a shop full of miter saws, router tables, table saws and the like. Think of it like Sketchup but no extruding rectangles. It's been really fun to build with. Agents can create parametric procedures so e.g. stick framing becomes a simp…
Ask HN: What are you working on? (August 2026)
611–620 of 1001 posts
Re: Ask HN: What are you working on? (August 2026)
#612Done a lot of analysis, sliced and diced data different ways, and then realized I need a website.
Ended up building https://climbable.day - hopefully a helpful resource for fellow Mountaineers from Seattle and around. 500 summits, 20 years of weather data, then went all in and added
- Wildfire smoke map overlays from official sources - Road closures from WSDOT - Information about approaches to most of the summits, sourced from Peak Beggar and Mountaineers - Database of known incidents from AAC - Compare your plan A, plan B, plan C, that type of thing
Site gained traction in the local community, and I have about a couple hundred users that seem to be using it on a weekly basis. It's free, and I intended to keep it such. It's a personal project, not something I plan to make money on. If you're in PNW and find it helpful, I'd be happy to hear what ideas you have. If you're not in Seattle but would like me to extend it to cover your neck of the woods, let me know.
Re: Ask HN: What are you working on? (August 2026)
#613This year, I am creating a nodejs MUD, well closer to a MUSH actually.
* Everything is an Entity with Attributes * A player is an Entity with its client property set * There's a handful of built-in commands, but the important ones are @eval and @set-attribute * The soft-code language is ... JavaScript. * It uses the vm module from nodejs[0] to execute stuff. * It has separate clients (so far) for Discord, Slack, and local console. It's easy to add more and will be easier after I do this one refactor.
Each time an soft-code command or function or what have you executes, it creates a new context to isolate the soft-code from the rest of the application and uses Proxy objects to isolate the database Entity from the soft-code Entity. As an example, this is the look command (placed on the global registry object):
if (!me.location) {
me.send("You are nowhere.");
} else {
me.send("**" + me.location.name + "**");
const contents = me.location.contents;
if (!contents?.length) {
me.send("You see nothing here.");
} else {
me.emit("You see:\\n" + contents.map(thing => "* " + thing.name).join("\\n"));
}
}
The Proxy manages access to Entities and Attributes (for example, Attributes can only normally be accessed by their owners).The MUSH outputs markdown for everything, so each client can format it however it likes.
I know the security is not nearly close to perfect, but it's mostly a proof of concept that I will make public one day. I did do a few things, like disable eval and Function and Promise but there's probably plenty of ways to get around it.
Re: Ask HN: What are you working on? (August 2026)
#614Re: Ask HN: What are you working on? (August 2026)
#615Re: Ask HN: What are you working on? (August 2026)
#616Not sure if this qualifies, but here goes: I wrote a hard science-fiction novella. It's intended to be scientifically accurate to special and general relativity, with just one tweak that permeates throughout. https://docs.google.com/document/d/19e3HfnK1lNHHBef-5c-KvNdD...
Re: Ask HN: What are you working on? (August 2026)
#617Re: Ask HN: What are you working on? (August 2026)
#618A legit attempt at making an AI financial advisor for everyday Americans. Most Americans can't afford a human CFP which can cost thousands of dollars a year. We offer a great AI driven alternative for less than $300/yr.
Re: Ask HN: What are you working on? (August 2026)
#619You send it your events via email, online, in-app, or text message even, and it puts it into your calendar for you, letting you know if there’s conflicts and keeping track of who is assigned to what, not just who’s attending or not. My goal is to have it proactively notify you when there’s potential issues like rain, traffic, or something else.
You can connect it to ChatGPT, Claude, or other agent through MCP so you don’t even have to use the built-in AI. And there’s an API, SDK and CLI for those who want to tinker and build custom displays or interactions.
There’s an always-free version to get started and try it out. You can find it at https://mavolife.com
Re: Ask HN: What are you working on? (August 2026)
#620Originally inspired by the stream deck, but I wanted a more dynamic interface and less hardware restrictions. For example you can use your phone as the controller.
Now it can do a whole lot more. Including mouse, keyboard, media controls. Supports custom buttons types and things like sliders and color pickers. Dynamically switches layout based on foreground app, and can also control which app is in the foreground from the controller itself. Having a lot of fun so there are a bunch more features in the hopper like deeper app integration, and an eink version.
Its a web app/PWA, so no app store needed.