It's back up! Still getting fake legalish threatening emails from Nick Ashton (charlatan, who stole sbagen open-source and resells it for $200 a piece.)
21.11.2025 09:21 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0@konsumer.bsky.social
NERD (game-dev, open-source, musician, train-enthusiast) he/him
It's back up! Still getting fake legalish threatening emails from Nick Ashton (charlatan, who stole sbagen open-source and resells it for $200 a piece.)
21.11.2025 09:21 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0And Cotterzz is this person, always working on cool stuff! bsky.app/profile/cott...
28.10.2025 23:24 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0the audio-demo is a glsl-based "audio shader" that actually works with this, which is a really nice composition: gist.github.com/konsumer/43a...
28.10.2025 23:22 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0recur is this cool pi-based device for live-performance, and I wanted to make a web-based editor, so you can try out shaders with videos & knob-params.
28.10.2025 23:18 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0Cotterzz has been working a super-cool shader-prototyping thing (www.sleditor.com) and in the process of thinking about features and stuff, I mentioned these 2 sort-of-related things I worked on github.com/konsumer/aud... github.com/konsumer/rec...
28.10.2025 23:15 โ ๐ 3 ๐ 1 ๐ฌ 3 ๐ 0Looks like it got silently taken down. So annoying! They went after anyone that publicly shared the connection between their open-source theft (of sbagen.) so shady. github.com/search?q=rep...
26.10.2025 09:17 โ ๐ 2 ๐ 0 ๐ฌ 0 ๐ 0C has that problem, too. Floats are weird.
26.10.2025 09:03 โ ๐ 2 ๐ 0 ๐ฌ 0 ๐ 0yep, or even just like files. Regardless of language, you can't put complex objects directly in a file, and get it back, without serialization, in every case.
26.10.2025 06:51 โ ๐ 3 ๐ 0 ๐ฌ 0 ๐ 0it also seems a bit funny to be like "because js doesn't have types" but the truth is it's the opposite prob, here. Only 1 type is allowed for localstorage, not "whatever you want"
26.10.2025 05:55 โ ๐ 2 ๐ 0 ๐ฌ 0 ๐ 0it's worse passing things over webworker-boundry. some things work, but a lot don't (I tend to just do JSON-able + typed-arrays)
26.10.2025 05:52 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0it solves a much bigger problem, like if you really allow anything, there are still lots of things that don't work (imagine storing unresolvable pointers to disk, in C, for example.) it's easy to think it's all about "js sucks" but I don't think it's the worse solution possible.
26.10.2025 05:50 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0the first one's answer is "it was simpler for casual users, and stuck" and the answer to 2nd is "localstorage can't efficiently or appropriately store everything, so they just went with the easiest"
26.10.2025 05:46 โ ๐ 1 ๐ 0 ๐ฌ 2 ๐ 0like it's really 2 complaints: "why does js coerce non-strings into string?" and "why doesn't localstorage only store strings?"
26.10.2025 05:46 โ ๐ 1 ๐ 0 ๐ฌ 1 ๐ 0being mad about it (and you have every right to, obviously) makes me feel like "why can't I just get a complex object from a fetch or a file-read?" I mean you can, you just have to serialize/deserialze (with JSON or whatever.)
26.10.2025 05:42 โ ๐ 3 ๐ 0 ๐ฌ 2 ๐ 0numbers-for-object-keys too, like thing[1] is really thing['1'], so if you ask for thing[1] it still works, because it coerces it both times to string.
26.10.2025 05:40 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0much like keys of an object like thing[some-complex-object] it will just coerce to string ([object Object]) it gets even weirder when things are inconsistant, though, like passing types across web-worker boundary. some things are cool, but others are not.
26.10.2025 05:37 โ ๐ 1 ๐ 0 ๐ฌ 1 ๐ 0There are quite a few other ways to store stuff on web if you hate it, but yes localstorage is strings-only. It has to do with consistency (cookies are also string-only) and there is already a pretty standard serialization format that works well, if you need more types (JSON.)
26.10.2025 05:35 โ ๐ 2 ๐ 0 ๐ฌ 2 ๐ 0There have been lots of things like meshtastic for a while, but this works easily over anything, not just lora. I have a radio (about $15) hooked to my computer, which connects that to a much wider TCP/IP connection (over the internet.) I get a range of around 5 miles, on very cheap devices.
24.09.2025 22:20 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0The key differentiator of reticulum and other similar things, in my mind, is that the address is your key, so "if you can open it, it's yours" but no physical addresses or anything like that, and also no sender-info, unless you can read it.
24.09.2025 22:04 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0This gives us basic access to reticulum in javascript. Also check out demo/interfaces/WebsocketClientInterface.py which is an interface you can use in any reticulum client to connect over websockets. My next goal is filling in this library's functionality and making a complete web demo.
24.09.2025 21:52 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0I have been going deep on reticuluum/lxmf/nomadnet.
If you aren't familiar, reticulum is a cool protocol that uses your pubkey as your address. It's used over cheap p2p lora radio, but easy to also route over internet. lxmf is a protocol for routing/messaging over that.
I got my own rudimentary Interface transport for websockets, in the hope of being able to make browser-only clients. I don't think it's quite working right, but tests look good. github.com/konsumer/ret...
14.09.2025 03:35 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0There are a bunch of test interfaces, so you can connect to a big net of nodes, but you can run your own, too. Totally P2P, and decentralized, doesn't even need internet. I can setup some cheap lora things to participate in the network. It also has dynamic pages (basically a shell-script.)
13.09.2025 20:17 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0image of my nomad page, in console, at fe6cb7cebb0b91de51ab716a324ddb27:/page/index.mu
For those unfamiliar, you setup "interfaces" on each node which are entry-points to sub-networks over internet or lora (or other things.) Using these, you can connect a bunch of nodes in a mesh. It also has a kind of lofi-web: fe6cb7cebb0b91de51ab716a324ddb27:/page/index.mu
13.09.2025 20:02 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0I have been playing with non-internet digital comm this weekend. Really excited about Reticulum and nomadnet! If anyone wants to chat, I am at 5d8ccebf24acd91266e86653d42e970d
13.09.2025 19:55 โ ๐ 2 ๐ 0 ๐ฌ 3 ๐ 0Obviously, you can do whatever you want in those tag-things, but often I just want plain strings.
20.04.2025 22:13 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0tags looks like this: gist.github.com/konsumer/0ae...
20.04.2025 21:59 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0This is one of those lil features that makes me so happy using Zed: sub-type syntax-highlighting. I am dyslexic, and embedding strings in JS is super-annoying, in other editors. Zed handles it with grace, and I started using this for everything.
20.04.2025 21:57 โ ๐ 3 ๐ 0 ๐ฌ 1 ๐ 0I've been working on this programmable midi controller/instrument/macropad thing: youtu.be/3DC8_nlmCxc
09.03.2025 07:47 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0Saddened by the news about David Lynch. RIP, you brilliant weirdo. "A filmmaker doesnโt have to suffer to show suffering. You just have to understand it. You donโt have to die to shoot a death scene."
16.01.2025 19:43 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0