R1 Neo Meshtastic Device Introduced with GPS and nRF52840 Processor
The R1 Neo from Muzi Works is a compact, water-resistant Meshtastic device designed for long-range communication and GPS-based location tracking. Developed and assembled in Atlanta, it is the companyâs first model built on a custom PCB featuring a dedicated I/O controller and integrated power management. The unit is powered by a Nordic nRF52840 microcontroller paired [âŠ] â Read more
Here is just a small list of thingsâą that Iâm aware will break, some quite badly, others in minor ways:
- Link rot & migrations: domain changes, path reshuffles, CDN/mirror use, or moving from txt â jsonfeed will orphan replies unless every reader implements perfect 301/410 history, which they wonât.
- Duplication & forks: mirrors/relays produce multiple valid locations for the same post; readers see several âparentsâ and split the thread.
- Verification & spam-resistance: content addressing lets you dedupe and verify youâre pointing at exactly the post you meant (hash matches bytes). Location anchors can be replayed or spoofed more easily unless you add signing and canonicalization.
- Offline/cached reading: without the original URL being reachable, readers canât resolve anchors; with hashes they can match against local caches/archives.
- Ecosystem churn: all existing clients, archives, and tools that assume content-derived IDs need migrations, mapping layers, and fallback logic. Expect long-lived threads to fracture across implementations.
Canât resist.
DHS requests 20,000 National Guard troops to help with mass deportations
Ellen Mitchell,  Senior Defense Reporter -  The Hill
_Stephan: I have been waiting for this development in the Trump MAGAt coup, and now it is openly here. Trump is trying to create a militarized Gestapo so that civil resistance ostensibly about immigrants, just as Hitler made it about Jews, can use the military to eliminate people who oppose him. Thatâs why Hegseth has been firin ⊠â Read more
Majority of US Voters Support Third Trump Impeachment: Poll
Jessica Corbett,  Senior Editor -  Common Dreams
_Stephan: Americans seem to be awakening to the Trumpian Republican coup, as this poll about impeaching Trump (for a third time) demonstrates. There seems to be a growing resistance to the fascist coup Trump, the oligarchs, and the Republicans in Congress are trying to carry out. But restoring America to a functioning democracy is much more complicated then ⊠â Read more
My handsome Jasper gives me that look coz he knows Iâm powerless to resist when treats are involved â Read more
@arne@uplegger.eu Iâm very glad I only rarely have to deal with .docx & Co. And when I have to, 99% is in read mode only. Even though, I donât think that Markdown is the best choice, I use it on a daily basis. Some things, like links, in reStructuredText are better in my opinion.
Jira just resists to switch to Markdown and forces us to use its silly markup language.
For real typesetting, LaTeX is the way to go. But I very, very rarely do that.
âiPhone Foldâ to Feature Metallic Glass Hinge That Resists Deformation
Last week, we covered a report claiming that Appleâs book-style foldable iPhone (or âiPhone Fold,â as we are provisionally calling it here) will use liquid metal hinges to improve durability and help minimize screen creasing. Today, a Chinese leaker provided more details on the properties of this hinge material that help to clarify why Apple chose it for its first foldable device.

[ANN] LocalMonero Clone (openmonero) is now open source
Going strong with a couple of forks will make openmonero more censorship-resistant. The reactjs codebase is now open source. Check out git repository.. (hosted on tor hidden service); contact: https://openmonero.com/support, contact II: @OM_HELP (telegram)
Links:
OpenMonero (Session ID) â Read more
God damn trap, canât resist. â Read more
On my blog: Stop Doing Their Work for Them https://john.colagioia.net/blog/2025/02/09/resist.html #harm #politics #rant
Trumpâs neofascism is here now. Here are 10 things you can do to resist
Robert Reich,  Chancellorâs Professor of Public Policy at the University of California, Berkeley, and Senior Fellow at the Blum Center for Developing Economies. -  The Guardian (U.K.)
_Stephan: Robert Reich offers some very good counsel in this essay. I detailed in my book [The 8 Laws of Change](https://www.amazon.com/Laws-Change-Individual-Planetary-Wellbeing-ebook/dp/B0932JHXXC/ref ⊠â Read more
First impressions with the soundcore AeroFit 2 open-ear headphones
While I skipped the Black Friday deals, I couldnât resist picking up the soundcore AeroFit 2 headphones a few days later. Being home alone over the weekend gave me the perfect opportunity to spend more than 24 hours testing them thoroughly. Here are my first impressions of these open-ear headphones. â Read more
XMR registers 2.5-year high of $218 after ~31% surge
Monero (XMR/USD1) bulls have managed to essentially wipe all bear progress since May 2022 with an impressive under 9-hour ~31% surge yesterday from $166 to ~$218.
As I am writing this report, the reds are trying to force the price back under the 200 psychological level.
Provided bulls manage to reinforce the 175-185 support zone, we could see another attempt to break the local top. This could leave the next resistance around ⊠â Read more
Canât resist writing something here. Heading to 2025. Time flies!
Thereâs a simple reason all the current hashes end in a or q: the hash is 256 bits, the base32 encoding chops that into groups of 5 bits, and 256 isnât divisible by 5. The last character of the base32 encoding just has that left-over single bit (256 mod 5 = 1).
So I agree with #3 below, but do you have a source for #1, #2 or #4? I would expect any lack of variability in any part of a hash functionâs output would make it more vulnerable to attacks, so designers of hash functions would want to make the whole output vary as much as possible.
Other than the divisible-by-5 thing, my current intuition is it doesnât matter what part you take.
Hash Structure: Hashes are typically designed so that their outputs have specific statistical properties. The first few characters often have more entropy or variability, meaning they are less likely to have patterns. The last characters may not maintain this randomness, especially if the encoding method has a tendency to produce less varied endings.
Collision Resistance: When using hashes, the goal is to minimize the risk of collisions (different inputs producing the same output). By using the first few characters, you leverage the full distribution of the hash. The last characters may not distribute in the same way, potentially increasing the likelihood of collisions.
Encoding Characteristics: Base32 encoding has a specific structure and padding that might influence the last characters more than the first. If the data being hashed is similar, the last characters may be more similar across different hashes.
Use Cases: In many applications (like generating unique identifiers), the beginning of the hash is often the most informative and varied. Relying on the end might reduce the uniqueness of generated identifiers, especially if a prefix has a specific context or meaning.
Taking the last n characters of a base32 encoded hash instead of the first n can be problematic for several reasons:
Hash Structure: Hashes are typically designed so that their outputs have specific statistical properties. The first few characters often have more entropy or variability, meaning they are less likely to have patterns. The last characters may not maintain this randomness, especially if the encoding method has a tendency to produce less varied endings.
Collision Resistance: When using hashes, the goal is to minimize the risk of collisions (different inputs producing the same output). By using the first few characters, you leverage the full distribution of the hash. The last characters may not distribute in the same way, potentially increasing the likelihood of collisions.
Encoding Characteristics: Base32 encoding has a specific structure and padding that might influence the last characters more than the first. If the data being hashed is similar, the last characters may be more similar across different hashes.
Use Cases: In many applications (like generating unique identifiers), the beginning of the hash is often the most informative and varied. Relying on the end might reduce the uniqueness of generated identifiers, especially if a prefix has a specific context or meaning.
In summary, using the first n characters generally preserves the intended randomness and collision resistance of the hash, making it a safer choice in most cases.
@prologic@twtxt.net Yeah, Iâve noticed that as well when I hacked around. Thatâs a very good addition, ta! :-)
Getting to this view felt suprisingly difficult, though. I always expected my feeds I follow in the âFeedsâ tab. You wonât believe how many times I clicked on âFeedsâ yesterday evening. :-D Adding at least a link to my following list on the âFeedsâ page would help my learning resistence. But thatâs something different.
Also, turns out that âMy Feedsâ is the list of feeds that I author myself, not the ones I have subscribed to. The naming is alright, I can see that it makes sense. It just was an initial surprise that came up.
Philippine Protesters Resist Marcos Jr.âs bid to change constitution
Philippine protesters resist Marcos Jr.âs bid to change the constitution, fearing it will lead to his power monopoly. â Read more
Playing with Wireguard and network namespaces today. Resisting the urge to redo my server.
Muscles are made in the kitchen
This Christmas, I got a cool gift â a door pull-up bar. I wanted it because I do (Freeletics) workouts two or three times per week without any equipment (except some resistance bands I got a while ago), and I thought pull-ups would add some variety. Plus, I heard theyâre good for working out different muscles like the back, arms, and grip. â Read more
garden/gallery/rollerblading: at long last, zenblade 8; stop the genocide; resist the death instinct
Deals: Apple Watch Series 8 for $249!
Amazon is offering a fantastic deal on the Apple Watch Series 8, available in select colors for just $249, with delivery before Christmas. Apple Watch Series 8 features a 41mm display, GPS, fitness tracking capabilities, blood oxygen reader, ECG app, water resistance, an always-on display, and much more. Apple Watch Series 8 GPS 41mm â ⊠Read More â Read more
Oups, lâĂ©nergie devient fort chĂšre !
DĂšs 2022, les choses ont Ă©tĂ© clairement dites par notre Bruneau De Bercy national : il nây a pas dâinflation ou, disons plutĂŽt que la France y rĂ©siste nettement mieux que le reste de lâEurope. Ou disons plutĂŽt que le gouvernement va agiter frĂ©nĂ©tiquement ses petits bras musclĂ©s pour faire baisser les prix dĂ©lirants de certains [âŠ] â Read more
Comment rĂ©sister Ă la censure qui sâen vient ?
Les rĂ©cents Ă©vĂ©nements le montrent : lâenvie de censure continue de monter irrĂ©sistiblement au gouvernement français. DĂ©jĂ passablement Ă©moustillĂ© par lâinterdiction de Russia Today et Sputnik courant mars 2022, les rĂ©cents Ă©vĂ©nements ont donnĂ© lâoccasion aux petits censeurs de la Macronie dâenvisager Ă haute voix de remettre le couvert pour les rĂ©seaux sociaux dans leur ensemble. [âŠ] â Read more
#Macron parle sans ironie de cĂ©lĂ©brer la rĂ©sistance tout en interdisant la rĂ©sistance Ă son gouvernement par les restrictions imposĂ©es Ă #Lyon et en gardant les #ChampsĂlysĂ©es vides https://lien.sus.fr/RocRh
@prologic@twtxt.net The one I actually use for something is Monero. I also mine it (asic resistant, mined with cpu). The others I just put some savings in every month. The whole pyramid scheme thing - I do not think much about honestly. Crypto is here to stay, wonât go away. And for me itâs better then stocks because I know nothing about stocks and such. I do not put much into it. I also had some NFT stuff that I minted - which I sold for 10x the price later on, but honestly - last year I gained as much as I lost, so it evened out to almost 0.
Just see the total hashrate on the network, then figure out how many cpuâs you need to get over 51% of that rate - you then know what it would cost :)
Also - nice to see a monero discussion, itâs my fav cc. Also like it a lot because of the asic resistance that is built in.
Cette rentrée, préparez-vous pour un peu de résistance active
Ă la faveur de la fermeture des Ă©coles, des rĂ©sultats du bac et des premiers dĂ©parts massifs en vacance, la pĂ©riode estivale sâest ouverte depuis quelques jours, repoussant les idĂ©es moroses de vagues Ă©pidĂ©miques, de prix endiablĂ©s Ă la pompe et de canicules mortifĂšres au rang de prĂ©occupations vagues et de sujets dâapĂ©ro de bord [âŠ] â Read more
Hydraulic Analogy
â Read more
@prologic@twtxt.net let us take the path of less resistance, that is, less effort, for now. I am going to be a great-grandfather before search ever get implemented locally, least one to search on âall podsâ. In other words, let us donât bite more than we can chew. đč Neep-gren!
Bookmarked : Cwtch - Decentralized, Surveillance Resistant Infrastructure â Read more
Phishing Resistant SMS Autofill â https://github.blog/2020-09-25-phishing-resistant-sms-autofill/
Next challenge: her slow Lifebook A Series. Wants to keep Windows, so Iâm trying to shrink its volume (for dual boot). It resists.
Next challenge: her slow Lifebook A Series. Wants to keep Windows, so Iâm trying to shrink its volume (for dual boot). It resists.
CrimethInc. : Steal Something from Work Day 2019! : Three Epic Tales of Workplace Resistance https://crimethinc.com/2019/04/15/steal-something-from-work-day-2019-three-stories-of-workplace-resistance
How to Do Nothing: Jenny Odellâs case for resisting âThe Attention Economyâ / Boing Boing https://boingboing.net/2019/04/09/resisting-attention-economy.html
if you stay up all night are you resisting a rest?
We ought to be suspicious of business plans that resemble manifest destiny: expansion into supposedly-unclaimed regions, turning inhabitants into tools & discarding the resistant (who now have nowhere to go) or worse.
Is the #Resistance Just a Branding Exercise? | The New Republic https://newrepublic.com/article/153063/passive-resistance-trump-opposition-exercise-branding
Resisting Reduction: A Manifesto https://jods.mitpress.mit.edu/pub/resisting-reduction
Software Rot and Classes of Rot Resistance · InductiveComputerScience/progsbase Wiki · GitHub https://github.com/InductiveComputerScience/progsbase/wiki/Software-Rot-and-Classes-of-Rot-Resistance
On Emergent Centralization · Field Notes https://fieldnotes.resistant.tech/defensive-decentralization/
Resistance â Subcultures and Sociology http://haenfler.sites.grinnell.edu/subcultural-theory-and-theorists/resistance/
Hot take: If you believe technological determinism cannot be effectively resisted, then how much the projected trajectory benefits you personally determines where you fall on the scale from Kevin Kelley to the Unabomber
Could the Answer to the Antibiotic-Resistance Crisis Be Found on a Toilet Seat? - The Atlantic https://www.theatlantic.com/magazine/archive/2017/07/could-the-answer-to-our-most-urgent-health-crisis-be-found-on-a-toilet-seat/528687/?src=longreads