https://developer.mozilla.org/en-US/docs/Web/API/WebTransport_API
Nostr over WebTransport will be interesting. It will happen in 2025.
What does it mean to be self sovereign? In a physical sense.
Do you mean implementing the SimpleX protocol in Blowater? I havenโt read their protocol yet. I am vaguely aware of its strength but I donโt understand in details.

I'm super pumped. Expect the test release next week
Do you know any Indian developers or users? It's strange that we don't see them around here. Or just me?
The chinese love me apparently
nostr:nevent1qqsvrruvazcnqmh999yfwfvn796umf4h0ru0sc3xuea2dspzv7rp4fcppemhxue69uhhxur0wfjjuamn24mn2f
Are you not banned there?
I had this thought today too!
The price to make custom tee from Uniqlo is $30
nostr:npub1dww6jgxykmkt7tqjqx985tg58dxlm7v83sa743578xa4j7zpe3hql6pdnf
Maybe Sherry can do a Nostr native fashion company that print NFT/Badge pic on the T-shirt.
What is an NFR?
Ordinal NFR good idea?
https://geyser.fund/project/nostrprojectt nostr:nprofile1qqsverg89m7ucem0ewkpfakddqj7ms6hde27k7r292t4acp556szdjcpp4mhxue69uhkummn9ekx7mqpz3mhxue69uhhyetvv9ujuerpd46hxtnfduqscamnwvaz7tmzwf3zu6t0g2ep0q and I are collaborating on #ProjectT
We sell T-shirts of Nostr porjects to support their development. All money profit will be donated to corresponding projects.
Currently, we have Coracle, Habla and Nostream T-shirts. Blowater T-shirt will come later.
Buy one and we will ship to you. International shipping is not covered. We will have limited physical T-shirts to get during the NostrAsia event (presale needed).
Becuase I also write unit tests and integration tests. Having a strong compiler can reduce the amount of tests that I need to write.
"typescript nudges you toward classes" I believe this is only a reflextion on many existing projects migrated to TS from 2017ish JS when class was a new thing.
TypeScript has lots of compile time utilities to actually write code more like a statically typed functional language.
I really like clojure's design philosophy and Blowater is mostly functions, object literals and channels.
But I actually end up loving class component for them maintain their state locally and I don't use hooks at all.
I still use functional component for pure statelss UI. But stateful UI is all written with a mix of class components and global states.
I use class mostly just for runtime namespaces. Yeah, probably only used 10% of what a JS class can do but I feel the 10% is the good parts.
I use zero inheritance except for the class component in Preact. Therefore, I can't feel your problem.
interplanetary communication is bounded by the speed of light so that even if there are bitcoin full nodes on Mars, the latency will make them a fork of the earth net unless you are willing to accept a transaction rate of 1 per several minutes.
Maybe each planet will have its own main net and we need to figure out offline valua transaction between nets.
I generally agree but if you want a constructive discussion, in what sense it's stupid?
several years ago, when I was first exposed functional style programming, I started to move away from class heavy Java style. I'm not crazy into Haskell level FP but I started to devlope this emotion of disliking class or code with internal private state.
But since 2 weeks ago, I started to use class heavily again. At least in JavaScript, I feel it's still the best tool to capture stateful code in a stateful/mutable way.
But I don't use inheritance. I only use basic polymorphism such as interfaces (TS).
Coming from Go, I feel simple interfaces and message passing between stateful component are enough to capture most business logics and actually makes stateful programming fun.
But yes, there are many problems of JavaScript class. I never liked prototype chain. It's a cute idea but a bad idea. It's lack of async constructor is always bad.
