Matt Lorentz's avatar
Matt Lorentz
_@mattlorentz.com
npub16zsl...92l7
Technologist, solarpunk, gamer, backpacker, passionate about using the internet to push more power to more people.
Matt Lorentz's avatar
mplorentz yesterday
I finally finished my security audit of Horcrux, the last major project before release. It was a ton of work and honestly no fun at all, but I'm glad I did it as it gives me the confidence to finally open the app up for real world use. I've got a couple last bugs to fix and some marketing materials to write. Hoping to submit binaries to the app stores next week! If you want to check it out the audit it's published here:
Matt Lorentz's avatar
mplorentz 1 week ago
Sweet. I would love a kind 1 client to order comments by one of these algorithms (mainly Most Relevant). I love browsing replies in the reddit-like tree of Nostrudel but often there are spam or off topic comments at the top. @hzrd149 @npub176p7...vgup View quoted note →
Matt Lorentz's avatar
mplorentz 2 weeks ago
@daniele @fiatjaf I just tried creating a new account and using the promenade bunker and got an error when it was trying to "activate the bunker".
Matt Lorentz's avatar
mplorentz 3 weeks ago
I'm hosting a session at DWeb Camp next week for folks to interactively try Nostr. What apps should I encourage people new to the protocol to try? What is the best app to show first?
Matt Lorentz's avatar
mplorentz 1 month ago
I'm making a push to release version 1.0 of Horcrux this month. Not sure if I will make my deadline but it should be close. There is so much left I want to do in terms of UX, marketing, and sustainability, but it's delivering on its core promise of being a secure way to store secrets with friends and family. I'm currently in week two of my security audit and I found my first critical issue today. It's humbling but also satisfying to be reviewing all the hard work I've put in over the last year.
Matt Lorentz's avatar
mplorentz 1 month ago
Claude Fable when I ask it to fix my regex:
Matt Lorentz's avatar
mplorentz 2 months ago
Today I'm opening up Horcrux for public beta testing! If you've ever had a password or document that felt too sensitive to put in a password manager or physical safe, Horcrux is for you. It encrypts and splits your data into pieces and stores it across your friends' devices. Like multi-sig for data. It's free, open-source, and Nostr-based. I've been testing with a private group as I build but now I'm looking for more folks to help smooth out the experience before people start putting real secrets in it. If you'd be willing to download it and set up a vault with a few friends (or me! ) and put it through the paces I would be so grateful. Let me know how it goes here or using the Send Feedback button in the app. Android users can grab the APK here (Google Play link pending review): iOS users can install via TestFlight from here:
Matt Lorentz's avatar
mplorentz 2 months ago
I was there today when the Chaos Commoner Collective was born.
Matt Lorentz's avatar
mplorentz 2 months ago
Against my better judgement I have now homebrewed my own AI agent orchestration harness. I'm running a bunch of different pi.dev harnesses in tmux with a watchdog agent that can restart or send them messages. Each persona (planner, coder, tester, reviewer) has its own prompt and handoff protocol to move work to the next agent. All the tasks and plans are tracked in a beads database. It's a lot like Steve Yegge's gas town but it works much better with my theory that passing work through different models and personas produces much higher quality output. It also works much better with local models and doesn't have a ton of bugs. And it's all running on my old gaming pc with limited permissions to my repos and no credentials for production services. Since Cursor killed off my previous workflow (pair with a really fast agent to work on a big feature, maybe have a couple easy side quests going elsewhere) I have been trying to switch to a "slow productivity" model of development. By which I mean minimizing context switching and being fully present to review one piece of work at a time. This means I want my AI pipeline to produce the highest quality work even if it takes a long time. And I also don't have a thousand dollars to spend on tokens each month, so I can't just send codex or claude code off to spin for hours on every task. Right now I'm using a combination of GLM 5.1, Deepseek v4 Pro, Deepseek v4 flash, and Qwen 3.6 37B A3B (last one running locally). What are you using for orchestration?