Last Notes
The way he had it set up before if you added an address to your profile it was only visible in his client but I think he fixed it yesterday.
Nothing in the world beats the smell of beef on a hot grill! 🔥
https://npub1un5y07dnu20fxzelq5scweuz37xa6kkpwl66634xv9h49ewr04kswpevsy.blossom.band/a568c4be739c0ed3d865a5f1d2d8777bf38b328b9d8248f3b775211f4ae3b62b.jpg https://npub1un5y07dnu20fxzelq5scweuz37xa6kkpwl66634xv9h49ewr04kswpevsy.blossom.band/e8799d18c3f8ea085fd167b99b2964057d223e4637968a8b995e375895c08fa2.jpg
Or #Monero
Soon™
#nevent1q…ccg5
Já faz uns 3 dias ou mais que tento atualizar uns apps aqui e o servidor diz que o servidor está ocupado.
Replies be like…
https://onlydans.blossom.band/e68582cf9169eff5d475e7f333b7c691b9af291bf3b6503c541044213e9e9be2.jpg
#nevent1q…wpas
No. Maybe I wasn't raised right. I don't know the source material.
Yeah the idea is that a private payment network can choose to be transparent but their balances for example is safe, and what happens to the money after too, or where it came from, etc
There was a whole debate raging across nostr a week or two ago about statements that were made. You'll have to dig for it.
Isn't lightning also private?
Proving vulnerabilities in the system that we are all using is a service to the greater good.
O app diz que o servidor está ocupado*
Estou usando o invizible, mas nunca tinha dado problema
👀
https://haven.downisontheup.ca/8698e1197806ef12d0b980cdfc1ddbc66245c59ac363d55f42eba926d35d59e2.jpg
Note: Verita is an F tier troll who is known to post porn in threads when he crashes out. I was there for the last one. It was glorious and hilarious.
Chances are high he's actually the one posting the CP, this kind of thing fits his mo perfectly.
I thought payment targets no one pays with with solved this already.
The fuck battles are people even posturing about?
https://idiotbox.blossom.band/45ee31cc62f98c5ce6ff3627099c4820d74394a8f5eb9a481a285de87f0e69a3.mp4
⚾ Orioles are .500 for the first time since April 30 and trail Cleveland by a half-game for the final AL Wild Card spot. Freddy Peralta faces the Mets for the first time since being traded, while the Cubs lead MLB in runs, hits, homers, walks, OBP and slugging. Jesús Luzardo (3.09 ERA) opposes Eduardo Rodríguez (2.50 ERA). #MLB
Another one. https://idiotbox.blossom.band/09ba218d814ffc097c0a29926f3c19cdc6078909486a7582444d24ff9dba69da.mp4
📸 [ #Picstr ] Bruna Casas
https://blossom.primal.net/50b52daaba76b5691a0ebffcf982a10699cbe5f658b7d03cbb440f31e87a2c59.jpg
Barcelona's Lamine Yamal celebrates scoring their second goal with Raphinha
#PlebChain 🌐 #PREDYX
Shit that's like a week straight without leaving the computer lab!
🎬 [ #GAMEoN360 ] by #PREDYX
https://blossom.primal.net/7f5437da789e416e7a0f2d17ab7654a617a72b73cce7dab74054c7e9f16b78c1.png
#GSC360 🌐 #Sports
🏌️ Scottie Scheffler says he loves the hard work required to be golf’s best—but would rather avoid the fame and noise that come with it. After winning the Tour Championship at East Lake, he thanked the fans while admitting he often keeps his head down and stays focused. #Golf
🏀 The Cavaliers will become the NBA’s third team to exclusively air local broadcasts on DAZN this upcoming season. The partnership includes 15 free Cavs games and introduces a rarely tested Next Gen template for local #NBA telecasts.
We getting fat Xaps for our content!
A heat index of over 100, and I already declared hoodie season...
https://idiotbox.blossom.band/7cdb933e8b37ec2e3a874c077eb276243ff859dfbae4ac59a9ee3f35f4a4f7b2.mp4
No-Radio docs themselves say the CRNG “has reduced entropy” without radio and that bootloader_random_enable() is the mitigation. That is an API-trust claim, not a published entropy bound.
Official No-Radio / reduced-entropy wording:
https://help.blockstream.com/blockstream-jade/faqs/how-does-jade-generate-my-recovery-phrase
Same claim in the 2022 tech overview:
https://blog.blockstream.com/blockstream-jade-tech-overview-part-1/
📺 [ #GaMeTiMe ] Matchweek 2 #EPL Take a look at the best goals
https://video.twimg.com/amplify_video/2094877188285779968/vid/avc1/1080x1350/4RsLTZ-TmWT_LAeV.mp4?tag=29
#Sports 🌐 #PREDYX
Wrong 😂
Also, please show me the note where I did this.
This note where he crashed out should live for ever. It's probably a good test for clients too with 1k+ comments. Comment threading stress test 😂
#nevent1q…ned6
https://media.tenor.com/0moEwsoYZfsAAAAC/lmao-crying-laughing.gif
We are talking about a specific person here, gfy.
Look at that ping. Niiice.
https://haven.downisontheup.ca/f9177433a480d151712768bcb8b3fa251a3f6ecfee33868f67383fbe271577f0.jpg
That's an awesome feature. Would be really cool if it could recommend/rate the users existing relays to help them choose.
@nprofile…vhl6 👀
I see it in your bio, but no payment target.
https://haven.downisontheup.ca/d2d7509ceeb97e5d1ce03a9c7a1e185210013aa31a86a5fb12766f4c098a5f4a.jpg
Grok had some good insights:
The rate mismatch you describe is real. Espressif documents `bootloader_random_enable()` + `esp_fill_random()` as valid true-RNG when RF is off, but `esp_random()`’s wait (`APB_CYCLE_WAIT_NUM = 16` ≈ 0.2 µs / ~5 MHz) is sized for the **RF / high-speed ADC** path. The TRM’s SAR-only max-entropy rate is ≤500 kHz (~2 µs per 32-bit read). Bootloader `bootloader_fill_random()` is much more conservative (“~1 bit per 40 APB cycles”).
**v1.0.40** did exactly:
`bootloader_random_enable(); esp_fill_random(entropy_state, 32); bootloader_random_disable();`
**v1.0.41** (commit `e850c3b`) replaced that with eight `esp_random()` reads + 1 ms `vTaskDelay`. Comment: HW RNG state is 32 bits; 1 ms gives ~50× more refeed time than `esp_fill_random` and adds scheduler jitter. Commit text: change is **not** an admission that prior entropy was weak.
### Answers
1. **No public measurement.** Blockstream has not published a min-entropy estimate for `esp_fill_random(32)` on Classic ESP32 + SAR-only (`bootloader_random_enable`, RF off). Blog only says “multiple analyses confirmed robustness.”
2. **No evidence they applied the 500 kHz SAR cap to the 1.0.40 fill.** That fill used `esp_fill_random` → `esp_random` at the 16-APB-cycle cadence.
3. **No published lower bound** on min-entropy of that 256-bit `entropy_state`.
4. **Stated as defense-in-depth** (refeed time + jitter), not as a fix for a known break. Practically it also removes SAR refresh-rate uncertainty: 1 ms ≫ 2 µs TRM SAR interval.
5. **Not proven from the HWRNG dump alone; Blockstream treats the full pipeline as 128-bit.** A 12-word phrase is not `entropy_state` raw. After init, Jade mixes sensors, camera frames (Classic still has a camera on No-Radio), cycle-counter jitter, `strengthen()` time, host `add_entropy`, then SHA512-splits like Bitcoin Core. Isolated SAR-rate 32-byte dump is the under-specified piece; the seed path is not that dump.
No-Radio docs themselves say the CRNG “has reduced entropy” without radio and that `bootloader_random_enable()` is the mitigation. That is an API-trust claim, not a published entropy bound.
I dare you to do this.
https://onlydans.blossom.band/3693387bb3aefc2587bbcf8bc0bdde47b374ae1714f27c3d1107c1970dacad82.jpg
#Mutable FTW
https://mutable.top
To my understanding that should work but my Bazzite machine is a dedicated Bazzite machine. I am thinking of disto hopping away from Manjaro on my laptop.
I see your payment target?
I’ll probably add a toggle for that, but sometimes it helps me to know if my posts are getting any engagement. 😁
The reason everyone is talking about monero is because coldcard and bip110 have revealed Bitcoin Maximalism to be an intellectually bankrupt grift.
Nature is healing.
#bitcoin #monero
#nevent1q…djyd
Yup! But why did you add “EVM” instead of choosing ETH?
https://blossom.primal.net/625e5f5c58560f042635ed35c254005696e2f499b6c6643f03e07c5747603225.png
Getting fiber installed to my house. I’ve finally made it.