Just published this tool for managing tunnels between devices using #p2p networking. Kinda like tailscale but without the need for central services. Desktop app release is incoming later this month. https://www.npmjs.com/package/setkamost
I'm going to be trying something new with this by releasing this for free for nerds that can install from github/npm, but charging a small fee when I publish in the major app stores. Does five bucks USD sound reasonable?
Just published this tool for managing tunnels between devices using #p2p networking. Kinda like tailscale but without the need for central services. Desktop app release is incoming later this month. https://www.npmjs.com/package/setkamost
The route to the Clay problem through a smooth force, options c and d in Fefferman’s statement of the problem, is the route Luis and Diego opened and the one Levent and I had quietly chosen to attack. Almost nobody else I know of was working on it. It is not the direction one arrives at in a few days by giving a model the problem statement. When I heard “forced,” it was a bright red flag. [...]
Levent had been told by Sebastien “very little human input” had been used. This turned out not to be true. Over the course of the call, as members of their team sent Sebastien corrections and details over their internal chat, it emerged that an entire team had been working on the problem, that this was one of a number of things that was tried [...]
I asked when the first prompt had been sent by them. This question was not answered directly by OpenAI for some time. Eventually it was agreed that it had been sent in the past few days, after information about our work had reached OpenAI
I asked whether the model had been trained on, or had access to, our sessions in Codex, into which we had been putting all our drafts for the whole of this project. I was told the model did not look up user data. I asked again, about training, and I did not get an answer [...]
I said that if OpenAI released its result in the way proposed I would go public with what happened. The reply was, “Why would you ruin your career?” I replied that I am an academic, and asked why he thought going public would ruin my career. The reply was, “If you don’t want me to be nice, then I don’t have to be nice.”
Well there's the shoe dropped: the terms of service have always allowed openAI to use your data essentially however they please, and apparently they will in fact use it to steal your work.
LLM stuff
I haven't had much of a need for skills so far because the models are pretty capable even with minimal prompting and I found that skills often fill up the context more than is strictly necessary. I was thinking for ergonomics I'd have users define skills in their "documents" folder to make it more intuitive for graphical interface users.
LLM stuff
I've recently added support for AGENTS.md so I don't need to tell it how I want to do testing and code style checking every time and generally save some extra file reads whenever it starts a new feature. Next I'm gonna play with "skills" so I can load up commonly used instructions instead of repeating myself.
LLM stuff
I think part of this is that I've gotten better at working within it's limitations and strengths as I've been updating my "agent" to be more effective.
LLM stuff
The scary part here is just how long it can remain coherent as its contexts fills up. Even 3.6 would get confused quite quickly and need to be compacted after a few hours. This thing managed to ingest files from like three codebases and still have space for generating a weird setup for testing a react-native component.
I still don't have a great setup for audio based coding. ed seems cool in theory but I need a better way to make bigger edits at the ast level and have a better way to integrate with LSP level info for my linters and compiler errors. Swithing is still a bit annoying between these tools. Maybe an alias for sed that handles muli line find and replace and then auto runs my linters could work? That's basically how my llm harness works and how I navigate with graphical editors when I code.
Anyway, once I have some of the bridges set up I'll work on my audio based notification daemon. I'll use one of thos TTS models that do "voice cloning" and use my voice with different affects so I can assign voices to specific chats or app sources. Kinda like how I use SpeakThat to have all my chats and email notifs right in my ear. But better because I can ditch android and have more customization than the apps give.
Now from here we get into the dirty parts which is LLMs. The fact is that there are a lot of centralized chat apps with different data models and url layouts for their endpoints. My guess is that once I have a data model, I'll be able to convert a lot of the sdk example docs into using the system and my local Qwen3.8:27b setup. I'll still need to understand how they work but it might be less typing.
So, from here bridges and clients just need to know the rpc protocol, probably json rpc split by newlines since it's easy to parse in any language. Then HTTP servers for blobs like images since JSON sucks for binary data. Now I can use whatever language sucks the least for whatever alt client ecosystem.
Sidestepping all that will make things easier. My system uses a shared service that hosts an encrypted sqlite db that gets unlocked by the user during startup. The chat bridges hook into that for storing data and can do an rpc call to wait() for it to be unlocked before doing the rest of their init logic. I've become convinced SQL is just the easiest tool for this accross languages by a bunch of apps I've read the past few years like CoMapeo.
Look, oplogs are great as a datamodel for mostly online systems that need full replication, but they aren't great for performance and being able to quickly show a user just the data they need in the moment right as they start the sync. Waiting for an entire sync is just not reasonable when your message volume gets high. This is why we need indexing at the protocol layer. Blogged about it here: https://blog.mauve.moe/posts/peer-to-peer-databases
The thing that inspired me was actually the operation of my #matrix homeserver that has *all* the bridges. The different protocols being their own services has been great. All the extra stuff and needing to run a server has kinda sucked. The matrix data model is also hard to build lightweight clients for which has also been hard for progress.
Occult cyberpunk. Yap with me about decentralized systems, wearable computing, and biohacking.