Readit News logoReadit News
iSnow commented on Bitchat – A decentralized messaging app that works over Bluetooth mesh networks   github.com/jackjackbits/b... · Posted by u/ananddtyagi
moneywaters · 2 months ago
I’ve been toying with a concept inspired by Apple’s Find My network: Imagine a decentralized, delay-tolerant messaging system where messages hop device-to-device (e.g., via Bluetooth, UWB, Wi-Fi Direct), similar to how “Find My” relays location via nearby iPhones.

Now add a twist: • Senders pay a small fee to send a message. • Relaying devices earn a micro-payment (could be tokens, sats, etc.) for carrying the message one hop further. • End-to-end encrypted, fully decentralized, optionally anonymous.

Basically, a “postal network” built on people’s phones, without needing a traditional internet connection. Works best in areas with patchy or no internet, or under censorship.

Obvious challenges: • Latency and reliability (it’s not real-time). • Abuse/spam prevention. • Power consumption and user opt-in. • Viable incentive structures.

What do you think? Is this viable? Any real-world use cases where this might be actually useful — or is it just a neat academic toy?

iSnow · 2 months ago
I like the idea, I just don't know how to implement a robust micropayment system that does not require a lot of messages back and forth for a transaction. Given the intended use-case, that would not work.
iSnow commented on Infinite Mac OS X   blog.persistent.info/2025... · Posted by u/kristianp
cosmic_cheese · 2 months ago
There were plenty of Kaleidoscope schemes and Appearance Manager themes for those with Macs who liked Aqua but either couldn’t or didn’t want to upgrade to OS X yet. There were some interesting “remixes” of Aqua too, including one that gave it BeOS-like tab titlebars!

There was even one Aqua scheme that through some feat of wizardry managed to give menus soft, 32-bit transparency drop shadows just like OS X had. I have no idea how that worked, classic Mac OS itself was only capable of 1-bit transparency as far as I'm aware.

iSnow · 2 months ago
No, Quickdraw in 7.5 and higher (maybe before) supported 8 bit alpha channels. Classic MacOS didn't have a compositor, so redrawing windows was constant and expensive and I guess this was why they didn't do soft drop shadows.
iSnow commented on New research reveals the strongest solar event ever detected, in 12350 BC   phys.org/news/2025-05-rev... · Posted by u/politelemon
api · 3 months ago
More fuel for the Fermi paradox. Our sun is a fairly calm well behaved star. Many stars, even if they allow life, might make anything using electricity very problematic.

Of course ours will eventually if we don’t prepare. Seems like this type of event would also doom any space settlements if it hit one.

Makes me wonder if going to the outer solar system further from the sun would be better than Mars.

iSnow · 3 months ago
The outer solar system is a pretty inhospitable place due to cold, darkness and cosmic rays. You'd need a lot of nuclear power plants to survive there, and it must be the most depressing existence living below ground.
iSnow commented on The Dire Wolf Is Back   newyorker.com/magazine/20... · Posted by u/adrianhon
tokonoma · 5 months ago
A recent study in Germany concluded that permanent electric fences are an effective long-term solution for protecting livestock from predators. granted - the upfront cost is significant. In regions where the wolf population has returned. Rather than placing blame on the wolves, there is a need for policy change that allows for coexistence where the return of wolf to the ecosystem offers ecological benefits. These policies should include livestock reimbursement programs for farmers and subsidies for installing these fences.
iSnow · 5 months ago
Well, even more recent reports from Germany also claim that wolves are damn clever to cope even with e-fences. Unfortunately, the question of wild wolves roaming the country now has become a cultural war issue where you can easily guess the left/right divide.

For our ecosystem, a well-managed wolf population is probably a good thing, but rationality is about to go out the window over here. Of course, wolves do not slaughter herds out of pure fun, but also true is that the can wreak quite a bit of economic damage if they break into a holding pen.

iSnow commented on The Dire Wolf Is Back   newyorker.com/magazine/20... · Posted by u/adrianhon
altairprime · 5 months ago
Because Game of Thrones popularized the idea of a dire wolf as an exceedingly rare protector of children, which helps them persuade investors that there is a viable luxury market for this product. They named one “Khaleesi”, so it’s not a coincidental reference.
iSnow · 5 months ago
House of Stark will still be happy to hear their heraldic animal is back.

But yeah, clever marketing by this company.

iSnow commented on Isar Aerospace launches Spectrum, fails early in first stage flight   nasaspaceflight.com/2025/... · Posted by u/tretiy3
icegreentea2 · 5 months ago
To be specific, the challenge with cryogenic fuels is that you can't really keep the rocket fueled up all the time, so you need to spend a bunch of time fueling up the rocket, reducing the responsiveness of the system.

There were generations of hypergolic liquid fueled ICBMs. Those are typically pretty reasonably responsive (and reliable). Unfortunately the fuel is toxic as hell.

Europe does have native solid booster capability. The Vega-C has solid rocket motors for the first 3 stages for example. Very crudely looking at sizes, the 2nd and 3rd stages of a Vega-C should more or less approximate a typical ICBM.

iSnow · 5 months ago
The boosters of the Ariane 5 were also developed into the French M51 SLBM: https://en.wikipedia.org/wiki/M51_(missile)
iSnow commented on Isar Aerospace launches Spectrum, fails early in first stage flight   nasaspaceflight.com/2025/... · Posted by u/tretiy3
tectonic · 5 months ago
The first orbital launch attempt from continental Europe, and the first of Europe’s batch of newspace commercial launch startups. I hope they figure out what happened and iterate quickly!
iSnow · 5 months ago
Also the biggest German rocket since V2.
iSnow commented on Isar Aerospace launches Spectrum, fails early in first stage flight   nasaspaceflight.com/2025/... · Posted by u/tretiy3
impossiblefork · 5 months ago
Tilting the rocket didn't work as intended though, so something did go seriously wrong.
iSnow · 5 months ago
The rocket started oscillating before. I believe it was pure coincidence that the launch termination system kicked in when they started the pitchover manoeuvre.
iSnow commented on Ask HN: How much do salaried full-time devs *actually* work?    · Posted by u/parpfish
iSnow · 5 months ago
>We spend 70-80 hours a week in the office and, more often than not, work nights and weekends.

That's a red flag if I ever saw one. Hardly anyone can sustain 70h/w for longer than a year without drastically losing productivity. Not even in their 20's and most certainly not in their 40's.

iSnow commented on Build a Database in 3000 Lines with 0 Dependencies   build-your-own.org/blog/2... · Posted by u/not_a_boat
XorNot · 7 months ago
TDD suffers from being inflexible when you don't fully understand the problem. Which on software is basically always.

Everytime I've tried it for something I make no progress at all compared to just banginf out the shape that works and then writing tests to interrogate my own design.

iSnow · 7 months ago
Happy that it's not just me. I tried it a couple of times, and for small problems, I could make it work, albeit with refactorings both to the code and tests.

But for more complicated topics, I never fully grasped all the details before writing code, so my tests missed aspects and I had to refactor both code and tests.

I kinda like the idea more than the reality of TDD.

u/iSnow

KarmaCake day2720April 28, 2012View Original