I'll use Rust for the backend even though it's probably an over kill, but it's the best way to learn for me, doing something with the language. I have some of the front end move logic and board done, I plan to start working on the API soon, after I finish a Rust book I'm reading. Here's some of the code if anybody is interested: https://github.com/thaichess-org.
It's been really fun to build with. Agents can create parametric procedures so e.g. stick framing becomes a simple function call for the next agent, building a flywheel. There is full agent-human parity in every surface, so there is a human UI for the procedures too.
Every operation is yaml, so agents pick it up pretty quickly. Agents can also file feature requests when they reach for a tool that doesn't exist. You can export to 3d printing files, video walk-through, step files, get a BOM and a cut plan, view your project in life-size with AR. There is a notion-like interface for authoring build guides... a lot going on. If you're a woodworker/software engineer you might enjoy it.
You can add the MCP to your agent of choice, send a picture, description, sketch or whatever; say "build this with Sawdust"
I wanted to build a bed frame recently and imagined software where I could choose lumber from a list and visually assemble the bed frame in the software how I see fit, choose stains, flourishes - then go order the wood and have it cut. At that point it's like taking home an IKEA bed, except of way higher quality materials and to your exact design spec.
So
> Real SKUs, a real BOM you can send to any lumberyard; understand exactly what you need down to the last nail.
Is especially interesting, it sounds like you could basically do that with this software.
Turning the woodworking process into code to be automated by an LLM is pretty ambitious, and is the part I am most skeptical about. Of course, if you get that right (plus adoption) it would be unbelievably huge.
And you can customize it beyond the existing design by asking an agent to modify it, e.g. "let's use walnut 4x4s and 2x4 slats", "I don't like how the corners come together, can we make it more like traditional joinery?" Also, staining is a supported procedure (it's very useful for e.g. coloring geodesic dome struts by strut type), you can just ask the agent to stain the pieces with whichever color you like, I'm sure you could even use a named stain you want to use like "Minwax Dark Oak" and get something pretty close.
Impressive stuff. Actually more impressive than I even imagined.
“Fits in my SUV” you are a mad man! Love everything about this site. I might actually do it now haha - no more excuses.
I also suspect there’s a fairly finite number of sane join primitives, you can have rabbets, dados, dominos, dovetails, pocket screws, etc. These could be experimented with digitally against an existing design. And your tool availability could determine what you can do.
And of course cut order and assembly is just a DAG and can be generated from geometric constraints of the actual design.
Feel free to reach out! Email in profile.
I keep seeing this word. Every time, I have to look it up; I marvel at the fact that we have such a cool word describing a complex but interesting topic; and apparently forget it again. And then I never find a situation where I can use it.
If this does what I think it does (and I confess I’m a goddamn idiot still when it comes to anything involving ‘agentic’) this is honestly pretty damn amazing.
https://micro.mu https://github.com/micro/mu
Also have an agent harness and service framework in Go
https://www.idlequest.net/ - a from-scratch recreation of the 1999 MMORPG classic EverQuest, featuring a real-time MMO server written in Go, a 3D game browser-based client built with Babylon.js, and the clasic UI recreated using React. You can play it both as a regular MMORPG but also in "idle mode" where it basically plays itself. This had up to 70 players online at once a while back which was really cool, though its popularity is in a bit of a lull right now. There are still tons of bugs and stuff that isn't fully implemented (and balance issues) but it's still fun for most people who have nostalgia for it.
https://www.newyokosuka.com/ - an unofficial Shenmue MMO experience. Based on the 1999 Sega Dreamcast game Shenmue, it's playable entirely in your browser! It's basic world exploration with forklift shenanigans, some basic dialogue systems, and a basic combat system test, but I'm about to push an update that includes all cutscenes and story progression as well. The story part is taking a bit of time because I'm having to mold it to fit in an MMO context. But it's a fun project to work on and the Shenmue community loves it so far.
I've had people play IdleQuest on tablets and Steam Deck but I'm fairly certain it would be horrible on phones.
- it is a collection of ~ 2700 temples across India, with images sourced from wikipedia
- it shows you a random temple each time you visit
- it has a map view of temples across India
So this is just the tip of the iceberg. I am trying to build a catalogue of all temples, starting with India, and expanding on to the rest of the world. The focus is on temples originating from Indic religions like Hinduism, Jainism and Buddhism.
I have personally discovered many cool temples that I have never heard of, but I am struggling on how to gamify this. Feedback welcome!
Try it out: https://github.com/preloopdev/preloop
https://proofleague.com (iOS, web app and android)
You create a private league, set a weekly goal (workout 3x a week), and tap Start when you begin a workout. Friends get notified and then have 30 minutes to ask for a selfie. If nobody asks, the workout counts automatically. There’s no public feed or strangers involved, just a small group keeping each other honest.
My friends and I had been doing a version of this via text message for years, but this app has been great. I am in 4 "leagues", all of them get notified at once and then I only share my selfie once and it automatically goes to any group that asks. It's motivating and hilarious to see people working out.
It's free and would love for you guys to try it and set up a league with friends or family. Please send me any feedback at amit@proofleague.com
I used to be a mechanic, and spend a lot of my free time working on project vehicles, motorcycles, tractors, trucks etc. I wanted a tool to track the tasks I needed done, then a way to easily access VIN info for parts search, then I DMV records, and finally built an iphone app to scan the OBD2 diagnostic codes and hook them up to a custom ai diagnostic prompt.
It's been a blast to work on, I need to focus on marketing it and get some users that aren't close friends, but it's been serving my purposes this summer so far.
I've seen nothing with anywhere close to this depth of diagnostic reporting.
https://crewchief.cc https://apps.apple.com/us/app/crewchief-auto/id6760673109
Where it is make-specific is the interpretation layer. The code database includes manufacturer-specific DTCs for the 10 major makes, and there's per-model data down to the generation level — known failure patterns, which codes are common on which engines. So a P0171 on an E46 gets read in the context of "this generation eats intake boots and DISA valves," not a generic lean-code writeup. The AI report is conditioned on the exact year/make/model/engine, which is where most of the diagnostic depth comes from.
That being said, I'm continually expanding support, it really just depends on what sort of barriers I run into with these bluetooth scanners. For certain types of diagnostics (large truck / Buses etc) I'll likely need to make a separate desktop app that connects directly wired.