-
@ 3bf0c63f:aefa459d
2024-09-06 12:49:46Nostr: a quick introduction, attempt #2
Nostr doesn't subscribe to any ideals of "free speech" as these belong to the realm of politics and assume a big powerful government that enforces a common ruleupon everybody else.
Nostr instead is much simpler, it simply says that servers are private property and establishes a generalized framework for people to connect to all these servers, creating a true free market in the process. In other words, Nostr is the public road that each market participant can use to build their own store or visit others and use their services.
(Of course a road is never truly public, in normal cases it's ran by the government, in this case it relies upon the previous existence of the internet with all its quirks and chaos plus a hand of government control, but none of that matters for this explanation).
More concretely speaking, Nostr is just a set of definitions of the formats of the data that can be passed between participants and their expected order, i.e. messages between clients (i.e. the program that runs on a user computer) and relays (i.e. the program that runs on a publicly accessible computer, a "server", generally with a domain-name associated) over a type of TCP connection (WebSocket) with cryptographic signatures. This is what is called a "protocol" in this context, and upon that simple base multiple kinds of sub-protocols can be added, like a protocol for "public-square style microblogging", "semi-closed group chat" or, I don't know, "recipe sharing and feedback".
-
@ 3bf0c63f:aefa459d
2024-06-13 15:40:18Why relay hints are important
Recently Coracle has removed support for following relay hints in Nostr event references.
Supposedly Coracle is now relying only on public key hints and
kind:10002
events to determine where to fetch events from a user. That is a catastrophic idea that destroys much of Nostr's flexibility for no gain at all.- Someone makes a post inside a community (either a NIP-29 community or a NIP-87 community) and others want to refer to that post in discussions in the external Nostr world of
kind:1
s -- now that cannot work because the person who created the post doesn't have the relays specific to those communities in their outbox list; - There is a discussion happening in a niche relay, for example, a relay that can only be accessed by the participants of a conference for the duration of that conference -- since that relay is not in anyone's public outbox list, it's impossible for anyone outside of the conference to ever refer to these events;
- Some big public relays, say, relay.damus.io, decide to nuke their databases or periodically delete old events, a user keeps using that big relay as their outbox because it is fast and reliable, but chooses to archive their old events in a dedicated archival relay, say, cellar.nostr.wine, while prudently not including that in their outbox list because that would make no sense -- now it is impossible for anyone to refer to old notes from this user even though they are publicly accessible in cellar.nostr.wine;
- There are topical relays that curate content relating to niche (non-microblogging) topics, say, cooking recipes, and users choose to publish their recipes to these relays only -- but now they can't refer to these relays in the external Nostr world of
kind:1
s because these topical relays are not in their outbox lists. - Suppose a user wants to maintain two different identities under the same keypair, say, one identity only talks about soccer in English, while the other only talks about art history in French, and the user very prudently keeps two different
kind:10002
events in two different sets of "indexer" relays (or does it in some better way of announcing different relay sets) -- now one of this user's audiences cannot ever see notes created by him with their other persona, one half of the content of this user will be inacessible to the other half and vice-versa. - If for any reason a relay does not want to accept events of a certain kind a user may publish to other relays, and it would all work fine if the user referenced that externally-published event from a normal event, but now that externally-published event is not reachable because the external relay is not in the user's outbox list.
- If someone, say, Alex Jones, is hard-banned everywhere and cannot event broadcast
kind:10002
events to any of the commonly used index relays, that person will now appear as banned in most clients: in an ideal world in which clients followednprofile
and other relay hints Alex Jones could still live a normal Nostr life: he would print business cards with hisnprofile
instead of annpub
and clients would immediately know from what relay to fetch his posts. When other users shared his posts or replied to it, they would include a relay hint to his personal relay and others would be able to see and then start following him on that relay directly -- now Alex Jones's events cannot be read by anyone that doesn't already know his relay.
- Someone makes a post inside a community (either a NIP-29 community or a NIP-87 community) and others want to refer to that post in discussions in the external Nostr world of
-
@ 3bf0c63f:aefa459d
2024-06-12 15:26:56How to do curation and businesses on Nostr
Suppose you want to start a Nostr business.
You might be tempted to make a closed platform that reuses Nostr identities and grabs (some) content from the external Nostr network, only to imprison it inside your thing -- and then you're going to run an amazing AI-powered algorithm on that content and "surface" only the best stuff and people will flock to your app.
This will be specially good if you're going after one of the many unexplored niches of Nostr in which reading immediately from people you know doesn't work as you generally want to discover new things from the outer world, such as:
- food recipe sharing;
- sharing of long articles about varying topics;
- markets for used goods;
- freelancer work and job offers;
- specific in-game lobbies and matchmaking;
- directories of accredited professionals;
- sharing of original music, drawings and other artistic creations;
- restaurant recommendations
- and so on.
But that is not the correct approach and damages the freedom and interoperability of Nostr, posing a centralization threat to the protocol. Even if it "works" and your business is incredibly successful it will just enshrine you as the head of a platform that controls users and thus is prone to all the bad things that happen to all these platforms. Your company will start to display ads and shape the public discourse, you'll need a big legal team, the FBI will talk to you, advertisers will play a big role and so on.
If you are interested in Nostr today that must be because you appreciate the fact that it is not owned by any companies, so it's safe to assume you don't want to be that company that owns it. So what should you do instead? Here's an idea in two steps:
- Write a Nostr client tailored to the niche you want to cover
If it's a music sharing thing, then the client will have a way to play the audio and so on; if it's a restaurant sharing it will have maps with the locations of the restaurants or whatever, you get the idea. Hopefully there will be a NIP or a NUD specifying how to create and interact with events relating to this niche, or you will write or contribute with the creation of one, because without interoperability none of this matters much.
The client should work independently of any special backend requirements and ideally be open-source. It should have a way for users to configure to which relays they want to connect to see "global" content -- i.e., they might want to connect to
wss://nostr.chrysalisrecords.com/
to see only the latest music releases accredited by that label or towss://nostr.indiemusic.com/
to get music from independent producers from that community.- Run a relay that does all the magic
This is where your value-adding capabilities come into play: if you have that magic sauce you should be able to apply it here. Your service, let's call it
wss://magicsaucemusic.com/
, will charge people or do some KYM (know your music) validation or use some very advanced AI sorcery to filter out the spam and the garbage and display the best content to your users who will request the global feed from it (["REQ", "_", {}]
), and this will cause people to want to publish to your relay while others will want to read from it.You set your relay as the default option in the client and let things happen. Your relay is like your "website" and people are free to connect to it or not. You don't own the network, you're just competing against other websites on a leveled playing field, so you're not responsible for it. Users get seamless browsing across multiple websites, unified identities, a unified interface (that could be different in a different client) and social interaction capabilities that work in the same way for all, and they do not depend on you, therefore they're more likely to trust you.
Does this centralize the network still? But this a simple and easy way to go about the matter and scales well in all aspects.
Besides allowing users to connect to specific relays for getting a feed of curated content, such clients should also do all kinds of "social" (i.e. following, commenting etc) activities (if they choose to do that) using the outbox model -- i.e. if I find a musician I like under
wss://magicsaucemusic.com
and I decide to follow them I should keep getting updates from them even if they get banned from that relay and start publishing onwss://nos.lol
orwss://relay.damus.io
or whatever relay that doesn't even know what music is.The hardcoded defaults and manual typing of relay URLs can be annoying. But I think it works well at the current stage of Nostr development. Soon, though, we can create events that recommend other relays or share relay lists specific to each kind of activity so users can get in-app suggestions of relays their friends are using to get their music from and so on. That kind of stuff can go a long way.
-
@ 3bf0c63f:aefa459d
2024-05-24 12:31:40About Nostr, email and subscriptions
I check my emails like once or twice a week, always when I am looking for something specific in there.
Then I go there and I see a bunch of other stuff I had no idea I was missing. Even many things I wish I had seen before actually. And sometimes people just expect and assume I would have checked emails instantly as they arrived.
It's so weird because I'm not making a point, I just don't remember to open the damn "gmail.com" URL.
I remember some people were making some a Nostr service a while ago that sent a DM to people with Nostr articles inside -- or some other forms of "subscription services on Nostr". It makes no sense at all.
Pulling in DMs from relays is exactly the same process (actually slightly more convoluted) than pulling normal public events, so why would a service assume that "sending a DM" was more likely to reach the target subscriber when the target had explicitly subscribed to that topic or writer?
Maybe due to how some specific clients work that is true, but fundamentally it is a very broken assumption that comes from some fantastic past era in which emails were 100% always seen and there was no way for anyone to subscribe to someone else's posts.
Building around such broken assumptions is the wrong approach. Instead we should be building new flows for subscribing to specific content from specific Nostr-native sources (creators directly or manual or automated curation providers, communities, relays etc), which is essentially what most clients are already doing anyway, but specifically Coracle's new custom feeds come to mind now.
This also reminds me of the interviewer asking the Farcaster creator if Farcaster made "email addresses available to content creators" completely ignoring all the cryptography and nature of the protocol (Farcaster is shit, but at least they tried, and in this example you could imagine the interviewer asking the same thing about Nostr).
I imagine that if the interviewer had asked these people who were working (or suggesting) the Nostr DM subscription flow they would have answered: "no, you don't get their email addresses, but you can send them uncensorable DMs!" -- and that, again, is getting everything backwards.
-
@ b1ddb4d7:471244e7
2025-06-09 17:02:03Jason Lowery’s thesis, Softwar: A Novel Theory on Power Projection and the National Strategic Significance of Bitcoin, reframes bitcoin not merely as digital cash but as a transformative security technology with profound implications for investors and nation-states alike.
For centuries, craft brewers understood that true innovation balanced tradition with experimentation—a delicate dance between established techniques and bold new flavors.
Much like the craft beer revolution reshaped a global industry, bitcoin represents a fundamental recalibration of how humans organize value and project power in the digital age.
The Antler in the Digital Forest: Power Projection
Lowery, a U.S. Space Force officer and MIT scholar, anchors his Softwar theory in a biological metaphor: Bitcoin as humanity’s “digital antler.” In nature, antlers allow animals like deer to compete for resources through non-lethal contests—sparring matches where power is demonstrated without fatal consequences. This contrasts sharply with wolves, who must resort to violent, potentially deadly fights to establish hierarchy.
The Human Power Dilemma: Historically, humans projected power and settled resource disputes through physical force—wars, seizures, or coercive control of assets. Even modern financial systems rely on abstract power structures: court orders, bank freezes, or government sanctions enforced by legal threat rather than immediate physical reality.
Lowery argues this creates inherent fragility: abstract systems can collapse when met with superior physical force (e.g., invasions, revolutions). Nature only respects physical power.
Bitcoin’s Physical Power Engine: Bitcoin introduces a novel solution through its proof-of-work consensus mechanism. Miners compete to solve computationally intense cryptographic puzzles, expending real-world energy (megawatts) to validate transactions and secure the network.
This process converts electricity—a tangible, physical resource—into digital security and immutable property rights. Winning a “block” is like winning a sparring match: it consumes significant resources (energy/cost) but is non-destructive.
The miner gains the right to write the next page of the ledger and collect rewards, but no participant is physically harmed, and no external infrastructure is destroyed.
Table: Traditional vs. Bitcoin-Based Power Systems
Power System
Mechanism
Key Vulnerability
Resource Cost
Traditional (Fiat/Banking)
Legal abstraction, threat of state force
Centralized points of failure, corruption, political change
Low immediate cost, high systemic risk
Military/Economic Coercion
Physical force, sanctions
Escalation, collateral damage, moral hazard
Very high (lives, capital, instability)
Bitcoin (Proof-of-Work)
Competition via energy expenditure
High energy cost, concentration risk (mining)
High energy cost, low systemic risk
Softwar Theory National Strategic Imperative: Governments Are Taking Notice
Lowery’s Softwar Theory has moved beyond academia into the corridors of power, shaping U.S. national strategy:
- The Strategic Bitcoin Reserve: Vice President JD Vance recently framed bitcoin as an instrument projecting American values—”innovation, entrepreneurship, freedom, and lack of censorship”. State legislation is now underway to implement this reserve, preventing easy reversal by future administrations.
- Regulatory Transformation: The SEC is shifting from an “enforcement-first” stance under previous leadership. New initiatives include:
- Repealing Staff Accounting Bulletin 121 (SAB 121), which discouraged banks from custodying digital currency by forcing unfavorable balance sheet treatment.
- Creating the Cyber and Emerging Technologies Unit (CETU) to develop clearer crypto registration/disclosure rules.
The Investor’s Lens: Scarcity, Security, and Asymmetric Opportunity
For investors, understanding “Softwar” validates bitcoin’s unique value proposition beyond price speculation:
-
Digital Scarcity as Strategic Depth: Bitcoin’s fixed supply of 21 million makes it the only digital asset with truly inelastic supply, a programmed scarcity immune to political whims or central bank printing.
This “scarcity imperative” acts as a natural antidote to global fiat debasement. As central banks expanded money supplies aggressively (Global M2), bitcoin’s price has shown strong correlation, acting as a pressure valve for inflation concerns. The quadrennial “halving” (latest: April 2024) mechanically reduces new supply, creating built-in supply shocks as adoption grows. * The Antifragile Security Feedback Loop: Bitcoin’s security isn’t static; it’s antifragile. The network strengthens through demand: * More users → More transactions → Higher fees → More miner revenue → More hashpower (computational security) → Greater network resilience → More user confidence.
This self-reinforcing cycle contrasts sharply with traditional systems, where security is a cost center (e.g., bank security budgets, military spending). Bitcoin turns security into a profitable, market-driven activity. * Institutionalization Without Centralization: While institutional ownership via ETFs (like BlackRock’s IBIT) and corporate treasuries (MicroStrategy, Metaplanet) has surged, supply remains highly decentralized.Individuals still hold the largest share of bitcoin, preventing a dangerous concentration of control. Spot Bitcoin ETFs alone are projected to see over $20 billion in net inflows in 2025, demonstrating robust institutional capital allocation.
The Bitcoin Community: Building the Digital Antler’s Resilience
Lowery’s “Softwar” theory underscores why bitcoin’s decentralized architecture is non-negotiable. Its strength lies in the alignment of incentives across three participant groups:
- Miners: Provide computational power (hashrate), validating transactions and securing the network. Incentivized by block rewards (newly minted BTC) and transaction fees. Their physical energy expenditure is the “muscle” behind the digital antler.
- Nodes: Independently verify and enforce the protocol rules, maintaining the blockchain’s integrity. Run by users, businesses, and enthusiasts globally. They ensure decentralized consensus, preventing unilateral protocol changes.
- Users: Individuals, institutions, and corporations holding, transacting, or building on bitcoin. Their demand drives transaction fees and fuels the security feedback loop.
This structure creates “Mutually Assured Preservation”. Attacking bitcoin requires overwhelming its global, distributed physical infrastructure (miners/nodes), a feat far more complex and costly than seizing a central bank’s gold vault or freezing a bank’s assets. It transforms financial security from a centralized liability into a decentralized, physically-grounded asset.
Risks & Responsibilities
Investors and policymakers must acknowledge persistent challenges:
- Volatility: Bitcoin remains volatile, though this has decreased as markets mature. Dollar-cost averaging (DCA) is widely recommended to mitigate timing risk.
- Regulatory Uncertainty: While U.S. policy is increasingly favorable, global coordination is lacking. The EU’s MiCAR regulation exemplifies divergent approaches.
- Security & Custody: While Bitcoin’s protocol is robust, user errors (lost keys) or exchange hacks remain risks.
- Environmental Debate: Proof-of-Work energy use is scrutinized, though mining increasingly uses stranded energy/renewables. Innovations continue.
Jason Lowery’s “Softwar” theory elevates bitcoin from a financial instrument to a socio-technological innovation on par with the invention of the corporation, the rule of law, or even the antler in evolutionary biology. It provides a coherent framework for understanding why:
- Nations like the U.S. are looking to establish bitcoin reserves and embracing stablecoins—they recognize bitcoin’s role in projecting economic power non-violently in the digital age.
- Institutional Investors are allocating billions via ETFs—they see a scarce, secure, uncorrelated asset with antifragile properties.
- Individuals in hyperinflationary economies or under authoritarian regimes use bitcoin—it offers self-sovereign wealth storage immune to seizure or debasement.
For the investor, bitcoin represents more than potential price appreciation. It offers exposure to a fundamental reorganization of how power and value are secured and exchanged globally, grounded not in abstract promises, but in the unyielding laws of physics and mathematics.
Like the brewers who balanced tradition with innovation to create something enduring and valuable, bitcoin pioneers are building the infrastructure for a more resilient digital future—one computationally secured block at a time. The “Softwar” is here, and it is reshaping the landscape of p
-
@ 3bf0c63f:aefa459d
2024-03-19 15:35:35Nostr is not decentralized nor censorship-resistant
Peter Todd has been saying this for a long time and all the time I've been thinking he is misunderstanding everything, but I guess a more charitable interpretation is that he is right.
Nostr today is indeed centralized.
Yesterday I published two harmless notes with the exact same content at the same time. In two minutes the notes had a noticeable difference in responses:
The top one was published to
wss://nostr.wine
,wss://nos.lol
,wss://pyramid.fiatjaf.com
. The second was published to the relay where I generally publish all my notes to,wss://pyramid.fiatjaf.com
, and that is announced on my NIP-05 file and on my NIP-65 relay list.A few minutes later I published that screenshot again in two identical notes to the same sets of relays, asking if people understood the implications. The difference in quantity of responses can still be seen today:
These results are skewed now by the fact that the two notes got rebroadcasted to multiple relays after some time, but the fundamental point remains.
What happened was that a huge lot more of people saw the first note compared to the second, and if Nostr was really censorship-resistant that shouldn't have happened at all.
Some people implied in the comments, with an air of obviousness, that publishing the note to "more relays" should have predictably resulted in more replies, which, again, shouldn't be the case if Nostr is really censorship-resistant.
What happens is that most people who engaged with the note are following me, in the sense that they have instructed their clients to fetch my notes on their behalf and present them in the UI, and clients are failing to do that despite me making it clear in multiple ways that my notes are to be found on
wss://pyramid.fiatjaf.com
.If we were talking not about me, but about some public figure that was being censored by the State and got banned (or shadowbanned) by the 3 biggest public relays, the sad reality would be that the person would immediately get his reach reduced to ~10% of what they had before. This is not at all unlike what happened to dozens of personalities that were banned from the corporate social media platforms and then moved to other platforms -- how many of their original followers switched to these other platforms? Probably some small percentage close to 10%. In that sense Nostr today is similar to what we had before.
Peter Todd is right that if the way Nostr works is that you just subscribe to a small set of relays and expect to get everything from them then it tends to get very centralized very fast, and this is the reality today.
Peter Todd is wrong that Nostr is inherently centralized or that it needs a protocol change to become what it has always purported to be. He is in fact wrong today, because what is written above is not valid for all clients of today, and if we drive in the right direction we can successfully make Peter Todd be more and more wrong as time passes, instead of the contrary.
See also:
-
@ 3bf0c63f:aefa459d
2024-03-19 13:07:02Censorship-resistant relay discovery in Nostr
In Nostr is not decentralized nor censorship-resistant I said Nostr is centralized. Peter Todd thinks it is centralized by design, but I disagree.
Nostr wasn't designed to be centralized. The idea was always that clients would follow people in the relays they decided to publish to, even if it was a single-user relay hosted in an island in the middle of the Pacific ocean.
But the Nostr explanations never had any guidance about how to do this, and the protocol itself never had any enforcement mechanisms for any of this (because it would be impossible).
My original idea was that clients would use some undefined combination of relay hints in reply tags and the (now defunct)
kind:2
relay-recommendation events plus some form of manual action ("it looks like Bob is publishing on relay X, do you want to follow him there?") to accomplish this. With the expectation that we would have a better idea of how to properly implement all this with more experience, Branle, my first working client didn't have any of that implemented, instead it used a stupid static list of relays with read/write toggle -- although it did publish relay hints and kept track of those internally and supportedkind:2
events, these things were not really useful.Gossip was the first client to implement a truly censorship-resistant relay discovery mechanism that used NIP-05 hints (originally proposed by Mike Dilger) relay hints and
kind:3
relay lists, and then with the simple insight of NIP-65 that got much better. After seeing it in more concrete terms, it became simpler to reason about it and the approach got popularized as the "gossip model", then implemented in clients like Coracle and Snort.Today when people mention the "gossip model" (or "outbox model") they simply think about NIP-65 though. Which I think is ok, but too restrictive. I still think there is a place for the NIP-05 hints,
nprofile
andnevent
relay hints and specially relay hints in event tags. All these mechanisms are used together in ZBD Social, for example, but I believe also in the clients listed above.I don't think we should stop here, though. I think there are other ways, perhaps drastically different ways, to approach content propagation and relay discovery. I think manual action by users is underrated and could go a long way if presented in a nice UX (not conceived by people that think users are dumb animals), and who knows what. Reliance on third-parties, hardcoded values, social graph, and specially a mix of multiple approaches, is what Nostr needs to be censorship-resistant and what I hope to see in the future.
-
@ 6c05c73e:c4356f17
2025-06-10 01:00:30Invista na Sua Saúde: O Melhor Retorno é uma Vida Plena
Esqueça dietas milagrosas, suplementos que prometem te tornar o próximo Apolo. E, programas de treino (tais como Crossfit) que dizem fazer a diferença entre escalar o Everest e se abaixar e pegar seu par de tênis.
Muitas pessoas falam em dinheiro, conexões e conhecimento. Mas, nada disso vai funcionar se sua saúde for uma porcaria. Imagina, estar no melhores anos da sua vida e não ter forças para aproveitar nada. Então, pare de ser teimoso e coloque sua saúde no patamar de importância que ela merece!
Tudo o que você precisa é de paciência, ritmo e disciplina. Portanto, nesse artigo. Vou te apresentar como eu invisto na minha saúde e você pode entender se algo do que eu escrever aqui vale a pena para você aplicar na sua vida e obter resultados semelhantes.
Mas, antes de tudo…
Disclaimer
Nada do que eu escrever aqui deve ser levado como regra. Você deve consultar seu médico e nutricionista para entender quais as melhores ações para serem tomadas com base no seu biotipo e necessidade físicas.
Desenvolva seu corpo, seu templo
Se alimente como Sapiens:
Primeiro de tudo, alimentar se de forma correta é a chave. Se você prestar bastante atenção nos alimentos que ingere e nas coisas que bebe. Seu corpo vai te agradecer enormemente. Ele te presenteia com saúde, disposição, força e energia.
Se colocar combustível "ruim", seu corpo vai detectar e vai reclamar… Não tem que seguir essas dietas malucas que a galera prega na internet. Uma dose de bom senso combinado a uma dose de disciplina vão te tornar um velhinho(a) que todos vão admirar no futuro.
Eu já fiz dietas em que comia até 7x ao dia, tomava 3-4 suplementos por dia e no fim de tudo. Entendi uma coisa. Quanto mais natural nossa dieta, melhor. Legumes, frutas, verduras, carne (com moderação), sementes e grãos. Vão fazer seu corpo te pagar os melhores dividendos possíveis em saúde.
Busque o Olimpo, quem sabe acerta as olimpíadas
Se você como eu, é um entusiasta de esportes. Vai saber bem o que quero ilustrar aqui. Em 2015, após um término de relacionamento. Eu me sentia tão sufocado, que eu queria gritar e extravasar o que estava em mim. Peguei um par de tênis e decidi sair para fazer uma caminhada, fiz outra no outro dia, de repente comecei a “trotar” e duas semanas depois eu estava correndo 5 km.
Passados alguns meses, eu tinha me inscrito em uma primeira corrida "só para ver como era". Depois outra e outra. E, assim fui… Mas, eu tinha três ingredientes:
- O foco (correr)
- O combustível (eliminar aquela dor e tensão)
- O lugar (a rua)
E, depois que aprendi isso galera. Eu juro, que destravei muita coisa. Eu participei de campeonatos de levantamento de peso, de xadrez e mais um bocado. Minha meta nunca foi ser uma atleta profissional e viver disso. Mas, eu via mais como um hobbie que me pagava muito bem
Endorfina é boa demais
Então pensa assim:
- Sem grana? Calce os tênis e vá correr. Tem praças perto da sua casa com equipamentos.
- Sem ânimo? Arruma alguém para te acompanhar nos primeiro 60 dias. Depois vira hábito.
- Vida corrida? Vamos definir que 3x por semana é uma lei!
O que não vale é não fazer NADA. Temos muita comodidade e temos que usar isso para o bem. Senão, “seremos velhos de 30 anos”.
Aqui, vale tudo com excecao de duas coisas: Ficar parado e complicar demais as coisas.
Saúde Mental
Aqui é onde separamos os maduros dos nãos. Eu tive que entrar em colapso para entender que cuidar na minha mente era importante.
Por mais que eu tenha lido livros, me preparado de várias formas e tenha sido resiliente. Ninguém, absolutamente ninguém está pronto para lidar com a quantidade de coisas que acontece na nossa vida.
Um terapeuta é fundamental!
Galera, eu faço terapia há 5 anos e foi um salto quântico na minha vida. Quando você passa a conhecer a si mesmo e entender sobre você. Você se torna imbatível! Mas, é um processo lento e doloroso. Você vai visitar cantos e memórias que não são confortáveis. Mas, isso vai te fazer crescer muito além do que jamais imaginou.
Todos nós somos tomados por stress e ansiedade. Ainda mais em um mundo como o de hoje, aonde a informação viaja rápido demais. Você consegue ver conteúdo do fim do mundo, fome e corrupção com alguns cliques de distância.
Vai por mim: -Terapia é o dinheiro mais barato que faço como investimento na vida!
Sua vida vai ser outra. Juro. Comece fazendo uma vez por mês e vá aumentando a medida que achar necessário e puder pagar. O ideal vai variar de acordo com seu momento necessidade. Tem que caber no orçamento também. Senão, vai aliviar uma dor e trazer outra.
Sono de Qualidade:
Eu dormi em cama ruim nos últimos 3 anos da minha vida. E, nesse ano eu investi em uma cama e um travesseiro de qualidade. E, faz totalllllll diferença na vida. O sono ruim, nos deixa stressado e cansados para o resto do dia.
Portanto, te convido a refletir sobre seus equipamentos de descanso. Porque? De nada vai adiantar você: Fazer exercícios, cuidar da alimentação e da sua mente. Se, seu sono estiver quebrado!
Você vai continuar stressado e cansado demais reclamando. Quando fizer um check up sobre isso vai entender na hora o que estou falando e sobre os dois próximos que quero abordar:
- Higiene do sono
- Horário de deitar
Higiene do sono = Deixar tudo o que é eletrônico na sala e parar de mexer neles pelo menos uma hora antes. Deita e vai conversar com seu parceiro(a), leia um livro ou anote coisas em um papel. Vai fazer muita diferença na sua vida.
Horário de deitar = Também faz muita diferença. Se precisa acordar ás 07 da manhã. O ideal é estar na cama 10 horas antes. Ou seja, ás 22:00 já junta tudo e vai pro seu quarto sem distrações. Muita gente dorme e não descansa porque vai se deitar muito tarde e não consegue o sono REM.
Sono regular vai terminar de fechar o ciclo e você vai se tornar mais disposto e com força para fazer o que é necessário. Hoje, em dia para conseguir o que almeja. Não basta somente a mente e o dinheiro. Vai precisar do seu corpo em funcionamento total.
Check-ups e Prevenção
Para concluirmos aqui, é vital fazer exame regularmentes. Não sou médico, mas você deve visitar o seu e agendar bateria de exames periodicamente. E, entender como seu corpo está. Sempre e em qualquer ocasião busque acompanhamento médico antes, durante e pós qualquer atividade esportiva em que se propor.
Apesar de não usar, sou a favor de relógios e aparelhos que possam te ajudar a medir de alguma forma seu progresso e monitorar sua saúde. Toda vez que alguém falar contigo: -Para que vai comprar isso, é caro e é bobagem! Vai lá e compra!
Se a compra, te dar mais vontade de treinar e te ajudar a chegar mais próximo do seu objetivo. Então, eu não vejo como gasto. Vejo como investimento!
Tudo o que puder investir para aumentar e melhorar sua saúde. É uma boa jogada e ignore os críticos. No fundo, eles querem ser como você. Mas, tem muito medo e não conseguem dar o primeiro passo.
Concluindo tudo
Não é café com seu pai, mas uma convesa descontraída de uma pessoa que tentou (e sofreu) várias coisas até chegar em um bom equilíbrio. Fico orgulhoso de poder compartilhar minhas experiências com vocês e se você chegou até aqui. Me sinto honrado em ter sua atenção por tanto tempo. Te agradeço pela sua atenção e convido a compartilhar esse post com quem precisa. Até a próxima.
-
@ 3bf0c63f:aefa459d
2024-01-29 02:19:25Nostr: a quick introduction, attempt #1
Nostr doesn't have a material existence, it is not a website or an app. Nostr is just a description what kind of messages each computer can send to the others and vice-versa. It's a very simple thing, but the fact that such description exists allows different apps to connect to different servers automatically, without people having to talk behind the scenes or sign contracts or anything like that.
When you use a Nostr client that is what happens, your client will connect to a bunch of servers, called relays, and all these relays will speak the same "language" so your client will be able to publish notes to them all and also download notes from other people.
That's basically what Nostr is: this communication layer between the client you run on your phone or desktop computer and the relay that someone else is running on some server somewhere. There is no central authority dictating who can connect to whom or even anyone who knows for sure where each note is stored.
If you think about it, Nostr is very much like the internet itself: there are millions of websites out there, and basically anyone can run a new one, and there are websites that allow you to store and publish your stuff on them.
The added benefit of Nostr is that this unified "language" that all Nostr clients speak allow them to switch very easily and cleanly between relays. So if one relay decides to ban someone that person can switch to publishing to others relays and their audience will quickly follow them there. Likewise, it becomes much easier for relays to impose any restrictions they want on their users: no relay has to uphold a moral ground of "absolute free speech": each relay can decide to delete notes or ban users for no reason, or even only store notes from a preselected set of people and no one will be entitled to complain about that.
There are some bad things about this design: on Nostr there are no guarantees that relays will have the notes you want to read or that they will store the notes you're sending to them. We can't just assume all relays will have everything — much to the contrary, as Nostr grows more relays will exist and people will tend to publishing to a small set of all the relays, so depending on the decisions each client takes when publishing and when fetching notes, users may see a different set of replies to a note, for example, and be confused.
Another problem with the idea of publishing to multiple servers is that they may be run by all sorts of malicious people that may edit your notes. Since no one wants to see garbage published under their name, Nostr fixes that by requiring notes to have a cryptographic signature. This signature is attached to the note and verified by everybody at all times, which ensures the notes weren't tampered (if any part of the note is changed even by a single character that would cause the signature to become invalid and then the note would be dropped). The fix is perfect, except for the fact that it introduces the requirement that each user must now hold this 63-character code that starts with "nsec1", which they must not reveal to anyone. Although annoying, this requirement brings another benefit: that users can automatically have the same identity in many different contexts and even use their Nostr identity to login to non-Nostr websites easily without having to rely on any third-party.
To conclude: Nostr is like the internet (or the internet of some decades ago): a little chaotic, but very open. It is better than the internet because it is structured and actions can be automated, but, like in the internet itself, nothing is guaranteed to work at all times and users many have to do some manual work from time to time to fix things. Plus, there is the cryptographic key stuff, which is painful, but cool.
-
@ 3bf0c63f:aefa459d
2024-01-15 11:15:06Pequenos problemas que o Estado cria para a sociedade e que não são sempre lembrados
- **vale-transporte**: transferir o custo com o transporte do funcionário para um terceiro o estimula a morar longe de onde trabalha, já que morar perto é normalmente mais caro e a economia com transporte é inexistente. - **atestado médico**: o direito a faltar o trabalho com atestado médico cria a exigência desse atestado para todas as situações, substituindo o livre acordo entre patrão e empregado e sobrecarregando os médicos e postos de saúde com visitas desnecessárias de assalariados resfriados. - **prisões**: com dinheiro mal-administrado, burocracia e péssima alocação de recursos -- problemas que empresas privadas em competição (ou mesmo sem qualquer competição) saberiam resolver muito melhor -- o Estado fica sem presídios, com os poucos existentes entupidos, muito acima de sua alocação máxima, e com isto, segundo a bizarra corrente de responsabilidades que culpa o juiz que condenou o criminoso por sua morte na cadeia, juízes deixam de condenar à prisão os bandidos, soltando-os na rua. - **justiça**: entrar com processos é grátis e isto faz proliferar a atividade dos advogados que se dedicam a criar problemas judiciais onde não seria necessário e a entupir os tribunais, impedindo-os de fazer o que mais deveriam fazer. - **justiça**: como a justiça só obedece às leis e ignora acordos pessoais, escritos ou não, as pessoas não fazem acordos, recorrem sempre à justiça estatal, e entopem-na de assuntos que seriam muito melhor resolvidos entre vizinhos. - **leis civis**: as leis criadas pelos parlamentares ignoram os costumes da sociedade e são um incentivo a que as pessoas não respeitem nem criem normas sociais -- que seriam maneiras mais rápidas, baratas e satisfatórias de resolver problemas. - **leis de trãnsito**: quanto mais leis de trânsito, mais serviço de fiscalização são delegados aos policiais, que deixam de combater crimes por isto (afinal de contas, eles não querem de fato arriscar suas vidas combatendo o crime, a fiscalização é uma excelente desculpa para se esquivarem a esta responsabilidade). - **financiamento educacional**: é uma espécie de subsídio às faculdades privadas que faz com que se criem cursos e mais cursos que são cada vez menos recheados de algum conhecimento ou técnica útil e cada vez mais inúteis. - **leis de tombamento**: são um incentivo a que o dono de qualquer área ou construção "histórica" destrua todo e qualquer vestígio de história que houver nele antes que as autoridades descubram, o que poderia não acontecer se ele pudesse, por exemplo, usar, mostrar e se beneficiar da história daquele local sem correr o risco de perder, de fato, a sua propriedade. - **zoneamento urbano**: torna as cidades mais espalhadas, criando uma necessidade gigantesca de carros, ônibus e outros meios de transporte para as pessoas se locomoverem das zonas de moradia para as zonas de trabalho. - **zoneamento urbano**: faz com que as pessoas percam horas no trânsito todos os dias, o que é, além de um desperdício, um atentado contra a sua saúde, que estaria muito melhor servida numa caminhada diária entre a casa e o trabalho. - **zoneamento urbano**: torna ruas e as casas menos seguras criando zonas enormes, tanto de residências quanto de indústrias, onde não há movimento de gente alguma. - **escola obrigatória + currículo escolar nacional**: emburrece todas as crianças. - **leis contra trabalho infantil**: tira das crianças a oportunidade de aprender ofícios úteis e levar um dinheiro para ajudar a família. - **licitações**: como não existem os critérios do mercado para decidir qual é o melhor prestador de serviço, criam-se comissões de pessoas que vão decidir coisas. isto incentiva os prestadores de serviço que estão concorrendo na licitação a tentar comprar os membros dessas comissões. isto, fora a corrupção, gera problemas reais: __(i)__ a escolha dos serviços acaba sendo a pior possível, já que a empresa prestadora que vence está claramente mais dedicada a comprar comissões do que a fazer um bom trabalho (este problema afeta tantas áreas, desde a construção de estradas até a qualidade da merenda escolar, que é impossível listar aqui); __(ii)__ o processo corruptor acaba, no longo prazo, eliminando as empresas que prestavam e deixando para competir apenas as corruptas, e a qualidade tende a piorar progressivamente. - **cartéis**: o Estado em geral cria e depois fica refém de vários grupos de interesse. o caso dos taxistas contra o Uber é o que está na moda hoje (e o que mostra como os Estados se comportam da mesma forma no mundo todo). - **multas**: quando algum indivíduo ou empresa comete uma fraude financeira, ou causa algum dano material involuntário, as vítimas do caso são as pessoas que sofreram o dano ou perderam dinheiro, mas o Estado tem sempre leis que prevêem multas para os responsáveis. A justiça estatal é sempre muito rígida e rápida na aplicação dessas multas, mas relapsa e vaga no que diz respeito à indenização das vítimas. O que em geral acontece é que o Estado aplica uma enorme multa ao responsável pelo mal, retirando deste os recursos que dispunha para indenizar as vítimas, e se retira do caso, deixando estas desamparadas. - **desapropriação**: o Estado pode pegar qualquer propriedade de qualquer pessoa mediante uma indenização que é necessariamente inferior ao valor da propriedade para o seu presente dono (caso contrário ele a teria vendido voluntariamente). - **seguro-desemprego**: se há, por exemplo, um prazo mínimo de 1 ano para o sujeito ter direito a receber seguro-desemprego, isto o incentiva a planejar ficar apenas 1 ano em cada emprego (ano este que será sucedido por um período de desemprego remunerado), matando todas as possibilidades de aprendizado ou aquisição de experiência naquela empresa específica ou ascensão hierárquica. - **previdência**: a previdência social tem todos os defeitos de cálculo do mundo, e não importa muito ela ser uma forma horrível de poupar dinheiro, porque ela tem garantias bizarras de longevidade fornecidas pelo Estado, além de ser compulsória. Isso serve para criar no imaginário geral a idéia da __aposentadoria__, uma época mágica em que todos os dias serão finais de semana. A idéia da aposentadoria influencia o sujeito a não se preocupar em ter um emprego que faça sentido, mas sim em ter um trabalho qualquer, que o permita se aposentar. - **regulamentação impossível**: milhares de coisas são proibidas, há regulamentações sobre os aspectos mais mínimos de cada empreendimento ou construção ou espaço. se todas essas regulamentações fossem exigidas não haveria condições de produção e todos morreriam. portanto, elas não são exigidas. porém, o Estado, ou um agente individual imbuído do poder estatal pode, se desejar, exigi-las todas de um cidadão inimigo seu. qualquer pessoa pode viver a vida inteira sem cumprir nem 10% das regulamentações estatais, mas viverá também todo esse tempo com medo de se tornar um alvo de sua exigência, num estado de terror psicológico. - **perversão de critérios**: para muitas coisas sobre as quais a sociedade normalmente chegaria a um valor ou comportamento "razoável" espontaneamente, o Estado dita regras. estas regras muitas vezes não são obrigatórias, são mais "sugestões" ou limites, como o salário mínimo, ou as 44 horas semanais de trabalho. a sociedade, porém, passa a usar esses valores como se fossem o normal. são raras, por exemplo, as ofertas de emprego que fogem à regra das 44h semanais. - **inflação**: subir os preços é difícil e constrangedor para as empresas, pedir aumento de salário é difícil e constrangedor para o funcionário. a inflação força as pessoas a fazer isso, mas o aumento não é automático, como alguns economistas podem pensar (enquanto alguns outros ficam muito satisfeitos de que esse processo seja demorado e difícil). - **inflação**: a inflação destrói a capacidade das pessoas de julgar preços entre concorrentes usando a própria memória. - **inflação**: a inflação destrói os cálculos de lucro/prejuízo das empresas e prejudica enormemente as decisões empresariais que seriam baseadas neles. - **inflação**: a inflação redistribui a riqueza dos mais pobres e mais afastados do sistema financeiro para os mais ricos, os bancos e as megaempresas. - **inflação**: a inflação estimula o endividamento e o consumismo. - **lixo:** ao prover coleta e armazenamento de lixo "grátis para todos" o Estado incentiva a criação de lixo. se tivessem que pagar para que recolhessem o seu lixo, as pessoas (e conseqüentemente as empresas) se empenhariam mais em produzir coisas usando menos plástico, menos embalagens, menos sacolas. - **leis contra crimes financeiros:** ao criar legislação para dificultar acesso ao sistema financeiro por parte de criminosos a dificuldade e os custos para acesso a esse mesmo sistema pelas pessoas de bem cresce absurdamente, levando a um percentual enorme de gente incapaz de usá-lo, para detrimento de todos -- e no final das contas os grandes criminosos ainda conseguem burlar tudo.
-
@ 3bf0c63f:aefa459d
2024-01-15 11:15:06Anglicismos estúpidos no português contemporâneo
Palavras e expressões que ninguém deveria usar porque não têm o sentido que as pessoas acham que têm, são apenas aportuguesamentos de palavras inglesas que por nuances da história têm um sentido ligeiramente diferente em inglês.
Cada erro é acompanhado também de uma sugestão de como corrigi-lo.
Palavras que existem em português com sentido diferente
- submissão (de trabalhos): envio, apresentação
- disrupção: perturbação
- assumir: considerar, pressupor, presumir
- realizar: perceber
- endereçar: tratar de
- suporte (ao cliente): atendimento
- suportar (uma idéia, um projeto): apoiar, financiar
- suportar (uma função, recurso, característica): oferecer, ser compatível com
- literacia: instrução, alfabetização
- convoluto: complicado.
- acurácia: precisão.
- resiliência: resistência.
Aportuguesamentos desnecessários
- estartar: iniciar, começar
- treidar: negociar, especular
Expressões
- "não é sobre...": "não se trata de..."
Ver também
-
@ 3bf0c63f:aefa459d
2024-01-14 14:52:16Drivechain
Understanding Drivechain requires a shift from the paradigm most bitcoiners are used to. It is not about "trustlessness" or "mathematical certainty", but game theory and incentives. (Well, Bitcoin in general is also that, but people prefer to ignore it and focus on some illusion of trustlessness provided by mathematics.)
Here we will describe the basic mechanism (simple) and incentives (complex) of "hashrate escrow" and how it enables a 2-way peg between the mainchain (Bitcoin) and various sidechains.
The full concept of "Drivechain" also involves blind merged mining (i.e., the sidechains mine themselves by publishing their block hashes to the mainchain without the miners having to run the sidechain software), but this is much easier to understand and can be accomplished either by the BIP-301 mechanism or by the Spacechains mechanism.
How does hashrate escrow work from the point of view of Bitcoin?
A new address type is created. Anything that goes in that is locked and can only be spent if all miners agree on the Withdrawal Transaction (
WT^
) that will spend it for 6 months. There is one of these special addresses for each sidechain.To gather miners' agreement
bitcoind
keeps track of the "score" of all transactions that could possibly spend from that address. On every block mined, for each sidechain, the miner can use a portion of their coinbase to either increase the score of oneWT^
by 1 while decreasing the score of all others by 1; or they can decrease the score of allWT^
s by 1; or they can do nothing.Once a transaction has gotten a score high enough, it is published and funds are effectively transferred from the sidechain to the withdrawing users.
If a timeout of 6 months passes and the score doesn't meet the threshold, that
WT^
is discarded.What does the above procedure mean?
It means that people can transfer coins from the mainchain to a sidechain by depositing to the special address. Then they can withdraw from the sidechain by making a special withdraw transaction in the sidechain.
The special transaction somehow freezes funds in the sidechain while a transaction that aggregates all withdrawals into a single mainchain
WT^
, which is then submitted to the mainchain miners so they can start voting on it and finally after some months it is published.Now the crucial part: the validity of the
WT^
is not verified by the Bitcoin mainchain rules, i.e., if Bob has requested a withdraw from the sidechain to his mainchain address, but someone publishes a wrongWT^
that instead takes Bob's funds and sends them to Alice's main address there is no way the mainchain will know that. What determines the "validity" of theWT^
is the miner vote score and only that. It is the job of miners to vote correctly -- and for that they may want to run the sidechain node in SPV mode so they can attest for the existence of a reference to theWT^
transaction in the sidechain blockchain (which then ensures it is ok) or do these checks by some other means.What? 6 months to get my money back?
Yes. But no, in practice anyone who wants their money back will be able to use an atomic swap, submarine swap or other similar service to transfer funds from the sidechain to the mainchain and vice-versa. The long delayed withdraw costs would be incurred by few liquidity providers that would gain some small profit from it.
Why bother with this at all?
Drivechains solve many different problems:
It enables experimentation and new use cases for Bitcoin
Issued assets, fully private transactions, stateful blockchain contracts, turing-completeness, decentralized games, some "DeFi" aspects, prediction markets, futarchy, decentralized and yet meaningful human-readable names, big blocks with a ton of normal transactions on them, a chain optimized only for Lighting-style networks to be built on top of it.
These are some ideas that may have merit to them, but were never actually tried because they couldn't be tried with real Bitcoin or inferfacing with real bitcoins. They were either relegated to the shitcoin territory or to custodial solutions like Liquid or RSK that may have failed to gain network effect because of that.
It solves conflicts and infighting
Some people want fully private transactions in a UTXO model, others want "accounts" they can tie to their name and build reputation on top; some people want simple multisig solutions, others want complex code that reads a ton of variables; some people want to put all the transactions on a global chain in batches every 10 minutes, others want off-chain instant transactions backed by funds previously locked in channels; some want to spend, others want to just hold; some want to use blockchain technology to solve all the problems in the world, others just want to solve money.
With Drivechain-based sidechains all these groups can be happy simultaneously and don't fight. Meanwhile they will all be using the same money and contributing to each other's ecosystem even unwillingly, it's also easy and free for them to change their group affiliation later, which reduces cognitive dissonance.
It solves "scaling"
Multiple chains like the ones described above would certainly do a lot to accomodate many more transactions that the current Bitcoin chain can. One could have special Lightning Network chains, but even just big block chains or big-block-mimblewimble chains or whatnot could probably do a good job. Or even something less cool like 200 independent chains just like Bitcoin is today, no extra features (and you can call it "sharding"), just that would already multiply the current total capacity by 200.
Use your imagination.
It solves the blockchain security budget issue
The calculation is simple: you imagine what security budget is reasonable for each block in a world without block subsidy and divide that for the amount of bytes you can fit in a single block: that is the price to be paid in satoshis per byte. In reasonable estimative, the price necessary for every Bitcoin transaction goes to very large amounts, such that not only any day-to-day transaction has insanely prohibitive costs, but also Lightning channel opens and closes are impracticable.
So without a solution like Drivechain you'll be left with only one alternative: pushing Bitcoin usage to trusted services like Liquid and RSK or custodial Lightning wallets. With Drivechain, though, there could be thousands of transactions happening in sidechains and being all aggregated into a sidechain block that would then pay a very large fee to be published (via blind merged mining) to the mainchain. Bitcoin security guaranteed.
It keeps Bitcoin decentralized
Once we have sidechains to accomodate the normal transactions, the mainchain functionality can be reduced to be only a "hub" for the sidechains' comings and goings, and then the maximum block size for the mainchain can be reduced to, say, 100kb, which would make running a full node very very easy.
Can miners steal?
Yes. If a group of coordinated miners are able to secure the majority of the hashpower and keep their coordination for 6 months, they can publish a
WT^
that takes the money from the sidechains and pays to themselves.Will miners steal?
No, because the incentives are such that they won't.
Although it may look at first that stealing is an obvious strategy for miners as it is free money, there are many costs involved:
- The cost of ceasing blind-merged mining returns -- as stealing will kill a sidechain, all the fees from it that miners would be expected to earn for the next years are gone;
- The cost of Bitcoin price going down: If a steal is successful that will mean Drivechains are not safe, therefore Bitcoin is less useful, and miner credibility will also be hurt, which are likely to cause the Bitcoin price to go down, which in turn may kill the miners' businesses and savings;
- The cost of coordination -- assuming miners are just normal businesses, they just want to do their work and get paid, but stealing from a Drivechain will require coordination with other miners to conduct an immoral act in a way that has many pitfalls and is likely to be broken over the months;
- The cost of miners leaving your mining pool: when we talked about "miners" above we were actually talking about mining pools operators, so they must also consider the risk of miners migrating from their mining pool to others as they begin the process of stealing;
- The cost of community goodwill -- when participating in a steal operation, a miner will suffer a ton of backlash from the community. Even if the attempt fails at the end, the fact that it was attempted will contribute to growing concerns over exaggerated miners power over the Bitcoin ecosystem, which may end up causing the community to agree on a hard-fork to change the mining algorithm in the future, or to do something to increase participation of more entities in the mining process (such as development or cheapment of new ASICs), which have a chance of decreasing the profits of current miners.
Another point to take in consideration is that one may be inclined to think a newly-created sidechain or a sidechain with relatively low usage may be more easily stolen from, since the blind merged mining returns from it (point 1 above) are going to be small -- but the fact is also that a sidechain with small usage will also have less money to be stolen from, and since the other costs besides 1 are less elastic at the end it will not be worth stealing from these too.
All of the above consideration are valid only if miners are stealing from good sidechains. If there is a sidechain that is doing things wrong, scamming people, not being used at all, or is full of bugs, for example, that will be perceived as a bad sidechain, and then miners can and will safely steal from it and kill it, which will be perceived as a good thing by everybody.
What do we do if miners steal?
Paul Sztorc has suggested in the past that a user-activated soft-fork could prevent miners from stealing, i.e., most Bitcoin users and nodes issue a rule similar to this one to invalidate the inclusion of a faulty
WT^
and thus cause any miner that includes it in a block to be relegated to their own Bitcoin fork that other nodes won't accept.This suggestion has made people think Drivechain is a sidechain solution backed by user-actived soft-forks for safety, which is very far from the truth. Drivechains must not and will not rely on this kind of soft-fork, although they are possible, as the coordination costs are too high and no one should ever expect these things to happen.
If even with all the incentives against them (see above) miners do still steal from a good sidechain that will mean the failure of the Drivechain experiment. It will very likely also mean the failure of the Bitcoin experiment too, as it will be proven that miners can coordinate to act maliciously over a prolonged period of time regardless of economic and social incentives, meaning they are probably in it just for attacking Bitcoin, backed by nation-states or something else, and therefore no Bitcoin transaction in the mainchain is to be expected to be safe ever again.
Why use this and not a full-blown trustless and open sidechain technology?
Because it is impossible.
If you ever heard someone saying "just use a sidechain", "do this in a sidechain" or anything like that, be aware that these people are either talking about "federated" sidechains (i.e., funds are kept in custody by a group of entities) or they are talking about Drivechain, or they are disillusioned and think it is possible to do sidechains in any other manner.
No, I mean a trustless 2-way peg with correctness of the withdrawals verified by the Bitcoin protocol!
That is not possible unless Bitcoin verifies all transactions that happen in all the sidechains, which would be akin to drastically increasing the blocksize and expanding the Bitcoin rules in tons of ways, i.e., a terrible idea that no one wants.
What about the Blockstream sidechains whitepaper?
Yes, that was a way to do it. The Drivechain hashrate escrow is a conceptually simpler way to achieve the same thing with improved incentives, less junk in the chain, more safety.
Isn't the hashrate escrow a very complex soft-fork?
Yes, but it is much simpler than SegWit. And, unlike SegWit, it doesn't force anything on users, i.e., it isn't a mandatory blocksize increase.
Why should we expect miners to care enough to participate in the voting mechanism?
Because it's in their own self-interest to do it, and it costs very little. Today over half of the miners mine RSK. It's not blind merged mining, it's a very convoluted process that requires them to run a RSK full node. For the Drivechain sidechains, an SPV node would be enough, or maybe just getting data from a block explorer API, so much much simpler.
What if I still don't like Drivechain even after reading this?
That is the entire point! You don't have to like it or use it as long as you're fine with other people using it. The hashrate escrow special addresses will not impact you at all, validation cost is minimal, and you get the benefit of people who want to use Drivechain migrating to their own sidechains and freeing up space for you in the mainchain. See also the point above about infighting.
See also
-
@ 97c70a44:ad98e322
2025-06-09 18:23:27When developing on nostr, normally it's enough to read the NIP related to a given feature you want to build to know what has to be done. But there are some aspects of nostr development that aren't so straightforward because they depend less on specific data formats than on how different concepts are combined.
An example of this is how for a while it was considered best practice to re-publish notes when replying to them. This practice emerged before the outbox model gained traction, and was a hacky way of attempting to ensure relays had the full context required for a given note. Over time though, pubkey hints emerged as a better way to ensure other clients could find required context.
Another one of these things is "relay-based groups", or as I prefer to call it "relays-as-groups" (RAG). Such a thing doesn't really exist - there's no spec for it (although some aspects of the concept are included in NIP 29), but at the same time there are two concrete implementations (Flotilla and Chachi) which leverage several different NIPs in order to create a cohesive system for groups on nostr.
This composability is one of the neat qualities of nostr. Not only would it be unhelpful to specify how different parts of the protocol should work together, it would be impossible because of the number of possible combinations possible just from applying a little bit of common sense to the NIPs repo. No one said it was ok to put
t
tags on akind 0
. But no one's stopping you! And the semantics are basically self-evident if you understand its component parts.So, instead of writing a NIP that sets relay-based groups in stone, I'm writing this guide in order to document how I've combined different parts of the nostr protocol to create a compelling architecture for groups.
Relays
Relays already have a canonical identity, which is the relay's url. Events posted to a relay can be thought of as "posted to that group". This means that every relay is already a group. All nostr notes have already been posted to one or more groups.
One common objection to this structure is that identifying a group with a relay means that groups are dependent on the relay to continue hosting the group. In normal broadcast nostr (which forms organic permissionless groups based on user-centric social clustering), this is a very bad thing, because hosts are orthogonal to group identity. Communities are completely different. Communities actually need someone to enforce community boundaries, implement moderation, etc. Reliance on a host is a feature, not a bug (in contrast to NIP 29 groups, which tend to co-locate many groups on a single host, relays-as-groups tends to encourage one group, one host).
This doesn't mean that federation, mirrors, and migration can't be accomplished. In a sense, leaving this on the social layer is a good thing, because it adds friction to the dissolution/forking of a group. But the door is wide open to protocol additions to support those use cases for relay-based groups. One possible approach would be to follow this draft PR which specifies a "federation" event relays could publish on their own behalf.
Relay keys
This draft PR to NIP 11 specifies a
self
field which represents the relay's identity. Using this, relays can publish events on their own behalf. Currently, thepubkey
field sort of does the same thing, but is overloaded as a contact field for the owner of the relay.AUTH
Relays can control access using NIP 42 AUTH. There are any number of modes a relay can operate in:
- No auth, fully public - anyone can read/write to the group.
- Relays may enforce broad or granular access controls with AUTH.
Relays may deny EVENTs or REQs depending on user identity. Messages returned in AUTH, CLOSED, or OK messages should be human readable. It's crucial that clients show these error messages to users. Here's how Flotilla handles failed AUTH and denied event publishing:
LIMITS, PROBE, or some other reflection scheme could also be used in theory to help clients adapt their interface depending on user abilities and relay policy.
- AUTH with implicit access controls.
In this mode, relays may exclude matching events from REQs if the user does not have permission to view them. This can be useful for multi-use relays that host hidden rooms. This mode should be used with caution, because it can result in confusion for the end user.
See Frith for a relay implementation that supports some of these auth policies.
Invite codes
If a user doesn't have access to a relay, they can request access using this draft NIP. This is true whether access has been explicitly or implicitly denied (although users will have to know that they should use an invite code to request access).
The above referenced NIP also contains a mechanism for users to request an invite code that they can share with other users.
The policy for these invite codes is entirely up to the relay. They may be single-use, multi-use, or require additional verification. Additional requirements can be communicated to the user in the OK message, for example directions to visit an external URL to register.
See Frith for a relay implementation that supports invite codes.
Content
Any kind of event can be published to a relay being treated as a group, unless rejected by the relay implementation. In particular, NIP 7D was added to support basic threads, and NIP C7 for chat messages.
Since which relay an event came from determines which group it was posted to, clients need to have a mechanism for keeping track of which relay they received an event from, and should not broadcast events to other relays (unless intending to cross-post the content).
Rooms
Rooms follow NIP 29. I wish NIP 29 wasn't called "relay based groups", which is very confusing when talking about "relays as groups". It's much better to think of them as sub-groups, or as Flotilla calls them, "rooms".
EDIT: Flotilla has migrated to exclusively use "managed rooms" — i.e., fully NIP 29 compliant rooms. Relays without NIP 29 support can still support chat, but all messages will be presented as sent to a single room. I've removed references to unmanaged rooms in what follows.
~~Rooms have two modes - managed and unmanaged. Managed~~ rooms follow all the rules laid out in NIP 29 about metadata published by the relay and user membership. In either case, rooms are represented by a random room id, and are posted to by including the id in an event's
h
tag. ~~This allows rooms to switch between managed and unmanaged modes without losing any content.~~Managed room names come from
kind 39000
room meta events, ~~but unmanaged rooms don't have these. Instead, room names should come from members' NIP 51kind 10009
membership lists. Tags on these lists should look like this:["group", "groupid", "wss://group.example.com", "Cat lovers"]
. If no name can be found for the room (i.e., there aren't any members), the room should be ignored by clients.~~Rooms present a difficulty for publishing to the relay as a whole, since content with an
h
tag can't be excluded from requests. ~~Currently, relay-wide posts are h-tagged with_
which works for "group" clients, but not more generally. I'm not sure how to solve this other than to ask relays to support negative filters.~~ I have ideas on how to solve this in future iterations of relay-based groups, for example using virtual relays or just a better rooms spec.Cross-posting
The simplest way to cross-post content from one group (or room) to another, is to quote the original note in whatever event kind is appropriate. For example, a blog post might be quoted in a
kind 9
to be cross-posted to chat, or in akind 11
to be cross-posted to a thread.kind 16
reposts can be used the same way if the reader's client renders reposts.Posting the original event to multiple relays-as-groups is trivial, since all you have to do is send the event to the relay. Posting to multiple rooms simultaneously by appending multiple
h
tags is however not recommended, since group relays/clients are incentivised to protect themselves from spam by rejecting events with multipleh
tags (similar to how events with multiplet
tags are sometimes rejected).Privacy
Currently, it's recommended to include a NIP 70
-
tag on content posted to relays-as-groups to discourage replication of relay-specific content across the network.Another slightly stronger approach would be for group relays to strip signatures in order to make events invalid (or at least deniable). For this approach to work, users would have to be able to signal that they trust relays to be honest. We could also use ZkSNARKS to validate signatures in bulk.
In any case, group posts should not be considered "private" in the same way E2EE groups might be. Relays-as-groups should be considered a good fit for low-stakes groups with many members (since trust deteriorates quickly as more people get involved).
Membership
There is currently no canonical member list published by relays (except for NIP 29 managed rooms). Instead, users keep track of their own relay and room memberships using
kind 10009
lists. Relay-level memberships are represented by anr
tag containing the relay url, and room-level memberships are represented using agroup
tag.Users can choose to advertise their membership in a RAG by using unencrypted tags, or they may keep their membership private by using encrypted tags. Advertised memberships are useful for helping people find groups based on their social graph:
User memberships should not be trusted, since they can be published unilaterally by anyone, regardless of actual access, so it's better to think of them as "bookmarked groups" or "favorites". Possible improvements in this area would be the ability to provide proof of access:
- Relays could publish member lists (although this would sacrifice member privacy)
- Relays could support a new command that allows querying a particular member's access status
- Relays could provide a proof to the member that they could then choose to publish or not
Moderation
There are two parts to moderation: reporting and taking action based on these reports.
Reporting is already covered by NIP 56. Clients should be careful about encouraging users to post reports for illegal content under their own identity, since that can itself be illegal. Relays also should not serve reports to users, since that can be used to find rather than address objectionable content.
Reports are only one mechanism for flagging objectionable content. Relay operators and administrators can use whatever heuristics they like to identify and address objectionable content. This might be via automated policies that auto-ban based on reports from high-reputation people, a client that implements NIP 86 relay management API, or by some other admin interface.
There's currently no way for moderators of a given relay to be advertised, or for a moderator's client to know that the user is a moderator (so that they can enable UI elements for in-app moderation). This could be addressed via NIP 11, LIMITS, or some other mechanism in the future.
General best practices
In general, it's very important when developing a client to assume that the relay has no special support for any of the above features, instead treating all of this stuff as progressive enhancement.
For example, if a user enters an invite code, go ahead and send it to the relay using a
kind 28934
event. If it's rejected, you know that it didn't work. But if it's accepted, you don't know that it worked - you only know that the relay allowed the user to publish that event. This is helpful, becaues it may imply that the user does indeed have access to the relay. But additional probing may be needed, and reliance on error messages down the road when something else fails unexpectedly is indispensable.This paradigm may drive some engineers nuts, because it's basically equivalent to coding your clients to reverse-engineer relay support for every feature you want to use. But this is true of nostr as a whole - anyone can put whatever weird stuff in an event and sign it. Clients have to be extremely compliant with Postell's law - doing their absolute best to accept whatever weird data or behavior shows up and handle failure in any situation. Sure, it's annoying, but it's the cost of permissionless development. What it gets us is a completely open-ended protocol, in which anything can be built, and in which every solution is tested by the market.
-
@ 9ca447d2:fbf5a36d
2025-06-07 18:00:48Paris, France – June 6, 2025 — Bitcoin payment gateway startup Flash, just announced a new partnership with the “Bitcoin Only Brewery”, marking the first-ever beverage company to leverage Lightning payments.
Flash enables Bitcoin Only Brewery to offer its “BOB” beer with, no-KYC (Know Your Customer) delivery across Europe, priced at 19,500 sats (~$18) for the 4-pack, shipping included.
The cans feature colorful Bitcoin artwork while the contents promise a hazy pale ale: “Each 33cl can contains a smooth, creamy mouthfeel, hazy appearance and refreshing Pale Ale at 5% ABV,” reads the product description.
Pierre Corbin, Co-Founder of Flash, commented:
“Currently, bitcoin is used more as a store of value but usage for payments is picking up. Thanks to new innovation on Lightning, bitcoin is ready to go mainstream for e-commerce sales.”
Flash, launched its 2.0 version in March 2025 with the goal to provide the easiest bitcoin payment gateway for businesses worldwide. The platform is non-custodial and can enable both digital and physical shops to accept bitcoin by connecting their own wallets to Flash.
By leveraging the scalability of the Lightning Network, Flash ensures instant, low-cost transactions, addressing on-chain Bitcoin bottlenecks like high fees and long wait times.
For businesses interested in adopting Bitcoin payments, Flash offers a straightforward onboarding process, low fees, and robust support for both digital and physical goods. To learn more, visit paywithflash.com.
Media Contact:
Pierre Corbin
Co-Founder, Flash
Email: press@paywithflash.com
Website: paywithflash.comAbout Flash
Flash is the easiest Bitcoin payment gateway for businesses to accept payments. Supporting both digital and physical enterprises, Flash leverages the Lightning Network to enable fast, low-cost Bitcoin transactions. Launched in its 2.0 version in March 2025, Flash is at the forefront of driving Bitcoin adoption in e-commerce.
About Bitcoin Only Brewery
Bitcoin Only Brewery (@Drink_B0B) is a pioneering beverage company dedicated to the Bitcoin ethos, offering high-quality beers payable exclusively in Bitcoin. With a commitment to personal privacy, the brewery delivers across Europe with no-KYC requirements.
-
@ 502ab02a:a2860397
2025-06-10 01:37:32ถ้าเฮียบอกว่า “นมข้นหวานคืออาหารของสงคราม” หลายคนอาจขมวดคิ้ว ว่าอาหารหวานมันเกี่ยวอะไรกับดินปืน กระสุน และการยิงปะทะกันกลางสนามรบ แต่ถ้าย้อนเวลากลับไปช่วงปลายศตวรรษที่ 19 ถึงต้นศตวรรษที่ 20 เราจะเห็นชัดว่า ไม่ใช่แค่ปืนที่รัฐทุ่มเทวิจัย แต่รวมไปถึง “อาหารเก็บได้นาน ส่งถึงปากทหารโดยไม่เน่า” ซึ่งเป็นหัวใจของความอยู่รอดในสนามรบ และหนึ่งในของวิเศษนั้นก็คือ “นมข้นหวาน” ที่ภายหลังจะกลายเป็นตัวแปรสำคัญในวิถีอาหารของคนทั่วโลก รวมถึงในแก้วชาเย็นของคนไทยเรานี่แหละ
จุดเริ่มต้นของนมข้นหวานต้องย้อนไปก่อนสงครามกลางเมืองอเมริกาเล็กน้อย ราวปี 1856 ชายชื่อ Gail Borden คิดค้นวิธีการทำให้นมสดไม่บูดง่าย ด้วยการเอานมไปต้มหรือระเหยน้ำออก (evaporation) แล้วเติมน้ำตาลเข้าไปเพื่อยืดอายุการเก็บรักษา สูตรนี้ทำให้เขาตั้งบริษัท Borden Condensed Milk Company ขึ้นในปี 1857 และทันทีที่สงครามกลางเมืองอเมริกาเริ่มในปี 1861 รัฐบาลสหรัฐก็หันมาซื้อ “นมข้นหวาน” จำนวนมากเพราะมันเก็บได้นาน ไม่เสียง่ายเหมือนนมสด และพกพาง่ายกว่า
ปรากฏว่าทหารที่ไปรบกลับมาติดใจ เพราะไม่เคยได้กินอะไรหวานมันกลมกล่อมขนาดนั้นมาก่อน พอสงครามจบ ตลาดคนทั่วไปก็เริ่มรับรู้และนิยมบริโภคของชนิดนี้มากขึ้นเรื่อย ๆ แถมยังใช้ในเด็กด้วย เพราะช่วงนั้นมีความเชื่อว่านมข้นหวานคือ “นมสำหรับเด็ก” ที่ปลอดภัยกว่าเพราะผ่านการฆ่าเชื้อแล้ว แม้จะขาดสารอาหารสำคัญหลายตัวก็ตามทีเรื่องนี้จริงนะครับ รัฐบางแห่ง เช่น สหรัฐฯ และฝรั่งเศส มีเอกสารแนะนำให้ใช้นมข้นแทนนมแม่หากไม่สามารถให้นมเองได้ โดยอ้างความปลอดภัยจากการฆ่าเชื้อ แม้ในช่วงศตวรรษที่ 19 มีเด็กทารกเสียชีวิตเพราะพ่อแม่ใช้นมข้นหวาน จนทำให้หลายประเทศต้องออกคำเตือนภายหลัง
พอเข้าสู่ช่วงสงครามโลกครั้งที่ 1 (1914–1918) นมข้นหวานก็กลับมาเป็นฮีโร่อีกครั้ง คราวนี้รัฐบาลสหรัฐจัดเต็ม สั่งผลิตเพื่อส่งไปแนวหน้าให้ทหารพันธมิตรในยุโรป จนทำให้ supply ไม่พอกับ demand และบริษัทใหญ่ ๆ เช่น Nestlé และ Borden เริ่มขยายฐานการผลิตในระดับอุตสาหกรรม จนกลายเป็นเจ้าตลาด และนี่เองคือช่วงเวลาที่ “นมข้นหวานกลายเป็นสินค้าระดับโลก” แบบไม่ตั้งใจ
ในช่วง Great Depression (1929 เป็นต้นไป) นมข้นหวานกลายเป็น อาหารราคาถูก ที่ “แทน” อาหารสดในครัวคนจนได้ เพราะไม่ต้องแช่เย็น และให้พลังงานสูง ซึ่งส่งผลให้มันเจาะตลาดแม้ในช่วงเศรษฐกิจตกต่ำ เป็นช่วงทองของการขยายฐานการตลาดของนมข้นหวาน ขอบคุณสงครามที่ป้อนผู้บริโภคให้ฟรี ๆ มานานหลายปี มันเริ่มเข้าครัวคนทั่วไปและกลายเป็นวัตถุดิบในเมนูประจำวัน ไม่ว่าจะใส่กาแฟ โปะขนมปัง หรือใส่ขนมหวาน ซึ่งประเทศที่อยู่ในอาณานิคมตะวันตกก็รับวัฒนธรรมนี้ไปโดยปริยาย ไทยเองก็ไม่รอด และเริ่มมีเมนูอย่างชาเย็น กาแฟเย็น ที่ต้องใช้นมข้นหวานเป็นหลัก เพราะมันทั้งหอม มัน หวาน และสำคัญสุดคือ “เก็บได้นาน” ในยุคที่ตู้เย็นยังไม่แพร่หลาย
แต่อย่าเพิ่งนึกว่าเรื่องนี้จะจบแค่นี้ เพราะพอสงครามโลกครั้งที่ 2 มาถึงในปี 1939 สหรัฐฯ ก็กลับมาใช้สูตรเดิมอีกครั้ง คราวนี้ไม่ใช่แค่นมข้นหวานที่ถูกอัดใส่ลังขึ้นเรือไปแนวหน้า แต่รวมถึงสินค้าประหลาดหน้าใหม่ที่ถูก “แปรรูปเพื่อความอยู่รอด” ทั้งหมดซึ่งเดี๋ยวจะทะยอยเล่าให้อีกครั้ง เพราะทั้งหมดนี้คือสิ่งที่รัฐร่วมมือกับบริษัทใหญ่ผลิตเพื่อ “ให้ทหารอิ่มรอด” แต่เมื่อสงครามจบ สินค้าเหล่านี้ไม่หายไปไหน ตรงกันข้าม พวกมันถูก “ประชาสัมพันธ์ว่าเป็นของดีต่อสุขภาพ” มีการเอาผลวิจัยรองรับ (บางอันเป็นของรัฐเองด้วยซ้ำ) และกระตุ้นให้คนเชื่อว่า “นี่คืออาหารสมัยใหม่ของโลกที่ก้าวหน้า” เพราะมันถูกตั้งการผลิตมาในระดับมโหฬารไปเรียบร้อยแล้ว เมื่อมันเริ่มแล้วมันก็ย่อมทำลายทิ้งไม่ได้ นอกจากครอบงำให้ประชากรบริโภคสิ่งเหล่านี้เข้าไปตลอดกาล อย่าลืมว่า บริษัทยักษ์ใหญ่เหล่านี้ไม่มีทางยอมให้สินค้าตายไปจากตลาดแน่นอน
นมข้นหวานก็เช่นกัน มีการจัดโฆษณาผ่านสื่อสิ่งพิมพ์ว่านมสดไม่สะอาดเท่า นมข้นหวานสะอาดกว่าเพราะฆ่าเชื้อแล้ว บางโฆษณาแถมการ์ตูนเด็กชายหญิงหน้าน่ารักพร้อมประโยคว่า “เด็กทุกคนต้องเติบโตด้วยนมข้นหวาน” ซึ่งแน่นอนว่า “หวาน” นั้นแปลว่ามีน้ำตาลระดับสูงจนอาจเทียบเท่าน้ำเชื่อมข้น ๆ ได้
เมื่อคนเริ่มติดรสชาติและบริษัทมีโครงสร้างอุตสาหกรรมรองรับแล้ว ก็ไม่แปลกที่มันจะกลายเป็นส่วนหนึ่งของชีวิตประจำวันของคนทั่วโลก และพอรัฐไม่เตือน แถมยังสนับสนุนเป็นนัย ๆ นานวันเข้าเราก็เลิกตั้งคำถามกันไปเองว่า “แล้วเรากินมันทำไมกันนะ?”
ปัจจุบัน เราอาจรู้ว่านมข้นหวานคือของหวานจัด มีน้ำตาลราว 45–55% ต่อปริมาตร ไม่ใช่แค่ “หวานนิด ๆ” แต่คือ “หวานระดับฆ่าเชื้อได้เลย” และไม่ได้มีสารอาหารเทียบเท่านมจริง ๆ แต่มันกลับยังฝังแน่นในหลายวัฒนธรรมอาหารอย่างแนบเนียน เพราะรากของมันไม่ใช่แค่ในครัว แต่อยู่ในสนามรบ อยู่ในคำสั่งของรัฐ และอยู่ในภาพจำของความหอมหวานที่ไม่มีอะไรมาแทนได้
และนั่นแหละเฮียว่า คือจุดเริ่มต้นของการเปลี่ยน “อาหารเพื่ออยู่รอด” ให้กลายเป็น “อาหารครองโลก” และมันกลายเป็นบรรพบุรุษของแนวคิด “Ultra-Processed Food” ในยุคอุตสาหกรรมอาหารหลังสงคราม โดยไม่ต้องยิงปืนสักนัดเดียว หลายคนอาจจะมองว่า เห้ยทุกวันนี้เราก็รู้แล้วนี่นาว่ามันไม่ได้ดีต่อสุขภาพ ใช่ครับ กว่าเราจะรู้ เขาก็มีแผนใหม่มาครอบงำเราไปเรียบร้อยแล้ว เหมือนกับที่พยายามเล่าให้ทราบใน ep ที่ผ่านๆมานี่ไง สัปดาห์นี้เรากำลังคุยเรื่องอดีต ซึ่งในยุคนั้นประชากรเชื่อจริงๆว่า นมข้นหวาน มันคือของดี งดงามกว่านมสดง่อยๆที่แป๊บเดียวก็เสีย บูด เน่า ลองเอาภาพร่างนี้มาทาบกับปัจจุบันและอนาคตครับ
#pirateketo #กูต้องรู้มั๊ย #ม้วนหางสิลูก #siamstr
-
@ 8b0a2bea:857d369f
2025-06-09 17:17:20Hey guys,
This is the Geyser Team, and finally we have our own territory on SN!
At Geyser we're passionate about driving grassroots Bitcoin Adoption. We created https://geyser.fund/ to empower Bitcoin creators to come together and make great Bitcoin ideas happen.
For some time now, we've feeling the need to see our community come together and come to life a bit more. And we couldn't think of a better place than SN!
We look forward to sharing on here so much of what is happening on Geyser: - New Projects - Exciting Project updates - Progress on grassroots Bitcoin adoption - New Product features and udpates - Getting questions from our community - AMAs with new creators
What are some things you'd like to see on this channel? We look forward to your feedback!
--Geyser Team
https://stacker.news/items/1001708
-
@ 000002de:c05780a7
2025-06-09 17:14:37The FAA is using Windows 95 with Floppy Drives in 2025. Why is this state run operation such a mess?
Honestly, its kinda amazing we don't have more tragic events in the air than we do.
Wrong answers only.
https://stacker.news/items/1001702
-
@ dfa02707:41ca50e3
2025-06-07 13:01:49Contribute to keep No Bullshit Bitcoin news going.
- The latest firmware updates for COLDCARD devices introduce two major features: COLDCARD Co-sign (CCC) and Key Teleport between two COLDCARD Q devices using QR codes and/or NFC with a website.
What's new
- COLDCARD Co-Sign: When CCC is enabled, a second seed called the Spending Policy Key (Key C) is added to the device. This seed works with the device's Main Seed and one or more additional XPUBs (Backup Keys) to form 2-of-N multisig wallets.
- The spending policy functions like a hardware security module (HSM), enforcing rules such as magnitude and velocity limits, address whitelisting, and 2FA authentication to protect funds while maintaining flexibility and control, and is enforced each time the Spending Policy Key is used for signing.
- When spending conditions are met, the COLDCARD signs the partially signed bitcoin transaction (PSBT) with the Main Seed and Spending Policy Key for fund access. Once configured, the Spending Policy Key is required to view or change the policy, and violations are denied without explanation.
"You can override the spending policy at any time by signing with either a Backup Key and the Main Seed or two Backup Keys, depending on the number of keys (N) in the multisig."
-
A step-by-step guide for setting up CCC is available here.
-
Key Teleport for Q devices allows users to securely transfer sensitive data such as seed phrases (words, xprv), secure notes and passwords, and PSBTs for multisig. It uses QR codes or NFC, along with a helper website, to ensure reliable transmission, keeping your sensitive data protected throughout the process.
- For more technical details, see the protocol spec.
"After you sign a multisig PSBT, you have option to “Key Teleport” the PSBT file to any one of the other signers in the wallet. We already have a shared pubkey with them, so the process is simple and does not require any action on their part in advance. Plus, starting in this firmware release, COLDCARD can finalize multisig transactions, so the last signer can publish the signed transaction via PushTX (NFC tap) to get it on the blockchain directly."
- Multisig transactions are finalized when sufficiently signed. It streamlines the use of PushTX with multisig wallets.
- Signing artifacts re-export to various media. Users are now provided with the capability to export signing products, like transactions or PSBTs, to alternative media rather than the original source. For example, if a PSBT is received through a QR code, it can be signed and saved onto an SD card if needed.
- Multisig export files are signed now. Public keys are encoded as P2PKH address for all multisg signature exports. Learn more about it here.
- NFC export usability upgrade: NFC keeps exporting until CANCEL/X is pressed.
- Added Bitcoin Safe option to Export Wallet.
- 10% performance improvement in USB upload speed for large files.
- Q: Always choose the biggest possible display size for QR.
Fixes
- Do not allow change Main PIN to same value already used as Trick PIN, even if Trick PIN is hidden.
- Fix stuck progress bar under
Receiving...
after a USB communications failure. - Showing derivation path in Address Explorer for root key (m) showed double slash (//).
- Can restore developer backup with custom password other than 12 words format.
- Virtual Disk auto mode ignores already signed PSBTs (with “-signed” in file name).
- Virtual Disk auto mode stuck on “Reading…” screen sometimes.
- Finalization of foreign inputs from partial signatures. Thanks Christian Uebber!
- Temporary seed from COLDCARD backup failed to load stored multisig wallets.
Destroy Seed
also removes all Trick PINs from SE2.Lock Down Seed
requires pressing confirm key (4) to execute.- Q only: Only BBQr is allowed to export Coldcard, Core, and pretty descriptor.
-
@ 6c05c73e:c4356f17
2025-06-10 00:55:07Descrição da empresa
A Itaúsa S.A. é uma das maiores holdings de investimentos do Brasil, com um portfólio diversificado que abrange setores estratégicos da economia. Com sede em São Paulo, a companhia é mais conhecida por ser a principal acionista do Itaú Unibanco, a maior instituição financeira privada da América Latina.
Fundada em 1966, a Itaúsa consolidou-se como um veículo de investimento de longo prazo, buscando a criação de valor para seus acionistas através da gestão ativa de suas empresas investidas. Além de sua posição dominante no setor financeiro com o Itaú Unibanco, a holding possui participações relevantes em empresas líderes de outros segmentos.
Visão geral da empresa
A Itaúsa S.A. é uma das mais importantes holdings de investimento do Brasil, com uma trajetória de mais de 45 anos marcada pela gestão de um portfólio diversificado e de grande relevância para a economia nacional.
Com um modelo de negócio focado na criação de valor a longo prazo, a companhia se destaca por sua sólida governança corporativa e por uma estratégia de alocação de capital em empresas líderes de setores estratégicos.
Modelo de Negócio e Estratégia:
O core business da Itaúsa é atuar como uma holding "pura", ou seja, seu principal objetivo é a gestão de suas participações acionárias. A companhia busca centralizar as decisões financeiras e estratégicas das empresas que controla ou nas quais possui influência significativa. Sua filosofia de investimento pauta-se pela busca de empresas com:
- Geração de caixa consistente: Foco em negócios maduros e com histórico de rentabilidade.
- Marcas consolidadas e liderança de mercado: Investimento em empresas que são referência em seus respectivos segmentos.
- Potencial de crescimento e geração de valor a longo prazo: Visão estratégica para o desenvolvimento sustentável das investidas.
- Sólida governança corporativa: Comprometimento com a transparência, ética e as melhores práticas de gestão.
Mercado que atua
Como holding, a empresa não atua em um mercado específico. Em vez disso, sua presença se dá de forma indireta através da participação acionária em grandes empresas que são líderes em seus respectivos setores.
Portanto os principais mercados que a empresa atua, são:
- Setor financeiro (ITUB4)
- Bens de consumo (ALPA4)
- Materiais de construção civil e acabamentos (DXCO3)
- Energia (Copaenergia)
- Saneamento (Aegea)
- Infraestrutura e mobilidade urbana (NTS)
Oportunidades que o ativo traz
Estudando melhor a empresa e após lermos o relatório do primeiro trismestre. Entendemos que há dois pontos chaves que vão na nossa visão tornar o ativo bem interessante.
Ponto 1 - Redução da divída líquida
Esse ponto é bem óbvio e fica evidente aqui no gráfico abaixo. Com menos débito para pagar sobre mais dinheiro. Dinheiro esse que pode ser reinvestido em novas aquisições e/ou aumentar participação em outros negócios.
Ponto 2 - Reforma tributária aprovada em Janeiro 2025
"O nosso valor de mercado em 31.03.2025, com base no valor da ação mais líquida (ITSA4), era de R$ 102,5 bilhões, enquanto a soma das participações nas empresas investidas a valor de mercado totalizava R$ 135,2 bilhões, resultando em um desconto de holding de 24,2%.
Parte do nosso desconto é explicada por despesas operacionais, financeiras, tributárias (como PIS/COFINS sobre JCP), entre outros fatores. Contudo, a reforma tributária aprovada em janeiro de 2025 eliminará a incidência de tributação sobre o JCP recebido a partir de janeiro de 2027, o que extinguirá essa ineficiência fiscal.
Além disso, empresas como Aegea e Copa Energia estão avaliadas por seus valores contábeis, havendo um descolamento importante em relação ao seu valor justo atual.
Nesse contexto, acreditamos que o atual nível de desconto é maior do que o considerado justo e que o crescimento do desconto no período analisado não reflete adequadamente os fundamentos da nossa estratégia de alocação eficiente de capital e a qualidade e desempenho do nosso portfólio.."
Em outras palavras, a empresa está precificada bema baixo do seu valor patrimonial real. O que entendemos ser um ponto chave para a empresa.
Riscos
Aqui, temos muito pouco a comentar. Pois a empresa está fomentada sobre uma base sólida.
Contudo, a empresa é familiar, com muitos micro sócios pendurados e a maior parte das ações já tomadas.
Catalisadores
- Taxas de juros seguem altas até 2027. Lembrando que ano que vem temos eleições presidenciais.
- Taxas de desemprego devem corroborar em 7% no próximo ano, o que faz uma corrida ao crédito. Aonde o Itaú entra e ganha juros sobre quem toma crédito.
- Estabilidade das empresas que tem sociedade.
- Boa diversificação de portfólio de investimentos.
- Eliminação da incidência de impostos sobre o JCP recebido apartir de janeiro de 2027.
Faq
Quanto rende 1.000 reais em ITSA4?
Considerando um aporte mensal de R$ 1.000 na Itaúsa (ITSA4) ao longo de 30 anos, e assumindo um retorno médio anual de 9% (incluindo valorização das ações e reinvestimento dos dividendos), o investidor poderá acumular aproximadamente R$ 1.702.113 ao final do período
Qual é o preço justo da ação ITSA4?
O preço justo da ação ITSA4 é um assunto complexo, sem uma resposta única e definitiva. Analistas e investidores utilizam diferentes métodos e critérios para determinar um preço justo, e as estimativas podem variar consideravelmente.
Quando o ITSA4 paga dividendos em 2025?
Forma de pagamento: (i) à vista, em dinheiro, no ato de subscrição; ou (ii) mediante compensação de crédito relativo ao dividendo que será pago em 22 de abril de 2025.
Bio
Apaixonado por investimentos e pela transformação que eles podem trazer, a equipe threedolar dedica-se a desmistificar o mundo financeiro e guiar seus leitores rumo à independência financeira. Acreditamos que o conhecimento é a chave para o sucesso nos investimentos.
Disclaimer
Lembre-se: este não é um conselho de investimento. Faça sua própria pesquisa antes de investir. Resultados passados não garantem lucros futuros. Cuide do seu dinheiro!
Referencia
-
@ 3bf0c63f:aefa459d
2024-01-14 14:52:16bitcoind
decentralizationIt is better to have multiple curator teams, with different vetting processes and release schedules for
bitcoind
than a single one."More eyes on code", "Contribute to Core", "Everybody should audit the code".
All these points repeated again and again fell to Earth on the day it was discovered that Bitcoin Core developers merged a variable name change from "blacklist" to "blocklist" without even discussing or acknowledging the fact that that innocent pull request opened by a sybil account was a social attack.
After a big lot of people manifested their dissatisfaction with that event on Twitter and on GitHub, most Core developers simply ignored everybody's concerns or even personally attacked people who were complaining.
The event has shown that:
1) Bitcoin Core ultimately rests on the hands of a couple maintainers and they decide what goes on the GitHub repository[^pr-merged-very-quickly] and the binary releases that will be downloaded by thousands; 2) Bitcoin Core is susceptible to social attacks; 2) "More eyes on code" don't matter, as these extra eyes can be ignored and dismissed.
Solution:
bitcoind
decentralizationIf usage was spread across 10 different
bitcoind
flavors, the network would be much more resistant to social attacks to a single team.This has nothing to do with the question on if it is better to have multiple different Bitcoin node implementations or not, because here we're basically talking about the same software.
Multiple teams, each with their own release process, their own logo, some subtle changes, or perhaps no changes at all, just a different name for their
bitcoind
flavor, and that's it.Every day or week or month or year, each flavor merges all changes from Bitcoin Core on their own fork. If there's anything suspicious or too leftist (or perhaps too rightist, in case there's a leftist
bitcoind
flavor), maybe they will spot it and not merge.This way we keep the best of both worlds: all software development, bugfixes, improvements goes on Bitcoin Core, other flavors just copy. If there's some non-consensus change whose efficacy is debatable, one of the flavors will merge on their fork and test, and later others -- including Core -- can copy that too. Plus, we get resistant to attacks: in case there is an attack on Bitcoin Core, only 10% of the network would be compromised. the other flavors would be safe.
Run Bitcoin Knots
The first example of a
bitcoind
software that follows Bitcoin Core closely, adds some small changes, but has an independent vetting and release process is Bitcoin Knots, maintained by the incorruptible Luke DashJr.Next time you decide to run
bitcoind
, run Bitcoin Knots instead and contribute tobitcoind
decentralization!
See also:
[^pr-merged-very-quickly]: See PR 20624, for example, a very complicated change that could be introducing bugs or be a deliberate attack, merged in 3 days without time for discussion.
-
@ b1ddb4d7:471244e7
2025-06-07 13:01:07When Sergei talks about bitcoin, he doesn’t sound like someone chasing profits or followers. He sounds like someone about to build a monastery in the ruins.
While the mainstream world chases headlines and hype, Sergei shows up in local meetups from Sacramento to Cleveland, mentors curious minds, and shares what he knows is true – hoping that, with the right spark, someone will light their own way forward.
We interviewed Sergei to trace his steps: where he started, what keeps him going, and why teaching bitcoin is far more than explaining how to set up a node – it’s about reaching the right minds before the noise consumes them. So we began where most journeys start: at the beginning.
First Steps
- So, where did it all begin for you and what made you stay curious?
I first heard about bitcoin from a friend’s book recommendation, American Kingpin, the book about Silk Road (online drug marketplace). He is still not a true bitcoiner, although I helped him secure private keys with some bitcoin.
I was really busy at the time – focused on my school curriculum, running a 7-bedroom Airbnb, and working for a standardized test prep company. Bitcoin seemed too technical for me to explore, and the pace of my work left no time for it.
After graduating, while pursuing more training, I started playing around with stocks and maximizing my savings. Passive income seemed like the path to early retirement, as per the promise of the FIRE movement (Financial Independence, Retire Early). I mostly followed the mainstream news and my mentor’s advice – he liked preferred stocks at the time.
I had some Coinbase IOUs and remember sending bitcoin within the Coinbase ledger to a couple friends. I also recall the 2018 crash; I actually saw the legendary price spike live but couldn’t benefit because my funds were stuck amidst the frenzy. I withdrew from that investment completely for some time. Thankfully, my mentor advised to keep en eye on bitcoin.
Around late 2019, I started DCA-ing cautiously. Additionally, my friend and I were discussing famous billionaires, and how there was no curriculum for becoming a billionaire. So, I typed “billionaires” into my podcast app, and landed on We Study Billionaires podcast.
That’s where I kept hearing Preston Pysh mention bitcoin, before splitting into his own podcast series, Bitcoin Fundamentals. I didn’t understand most of the terminology of stocks, bonds, etc, yet I kept listening and trying to absorb it thru repetition. Today, I realize all that financial talk was mostly noise.
When people ask me for a technical explanation of fiat, I say: it’s all made up, just like the fiat price of bitcoin! Starting in 2020, during the so-called pandemic, I dove deeper. I religiously read Bitcoin Magazine, scrolled thru Bitcoin Twitter, and joined Simply Bitcoin Telegram group back when DarthCoin was an admin.
DarthCoin was my favorite bitcoiner – experienced, knowledgeable, and unapologetic. Watching him shift from rage to kindness, from passion to despair, gave me a glimpse at what a true educator’s journey would look like.
The struggle isn’t about adoption at scale anymore. It’s about reaching the few who are willing to study, take risks, and stay out of fiat traps. The vast majority won’t follow that example – not yet at least… if I start telling others the requirements for true freedom and prosperity, they would certainly say “Hell no!”
- At what point did you start teaching others, and why?
After college, I helped teach at a standardized test preparation company, and mentored some students one-on-one. I even tried working at a kindergarten briefly, but left quickly; Babysitting is not teaching.
What I discovered is that those who will succeed don’t really need my help – they would succeed with or without me, because they already have the inner drive.
Once you realize your people are perishing for lack of knowledge, the only rational thing to do is help raise their level of knowledge and understanding. That’s the Great Work.
I sometimes imagine myself as a political prisoner. If that were to happen, I’d probably start teaching fellow prisoners, doctors, janitors, even guards. In a way we already live in an open-air prison, So what else is there to do but teach, organize, and conspire to dismantle the Matrix?
Building on Bitcoin
- You hosted some in-person meetups in Sacramento. What did you learn from those?
My first presentation was on MultiSig storage with SeedSigner, and submarine swaps through Boltz.exchange.
I realized quickly that I had overestimated the group’s technical background. Even the meetup organizer, a financial advisor, asked, “How is anyone supposed to follow these steps?” I responded that reading was required… He decided that Unchained is an easier way.
At a crypto meetup, I gave a much simpler talk, outlining how bitcoin will save the world, based on a DarthCoin’s guide. Only one person stuck around to ask questions – a man who seemed a little out there, and did not really seem to get the message beyond the strength of cryptographic security of bitcoin.
Again, I overestimated the audience’s readiness. That forced me to rethink my strategy. People are extremely early and reluctant to study.
- Now in Ohio, you hold sessions via the Orange Pill App. What’s changed?
My new motto is: educate the educators. The corollary is: don’t orange-pill stupid normies (as DarthCoin puts it).
I’ve shifted to small, technical sessions in order to raise a few solid guardians of this esoteric knowledge who really get it and can carry it forward.
The youngest attendee at one of my sessions is a newborn baby – he mostly sleeps, but maybe he still absorbs some of the educational vibes.
- How do local groups like Sactown and Cleveland Bitcoiners influence your work?
Every meetup reflects its local culture. Sacramento and Bay Area Bitcoiners, for example, do camping trips – once we camped through a desert storm, shielding our burgers from sand while others went to shoot guns.
Cleveland Bitcoiners are different. They amass large gatherings. They recently threw a 100k party. They do a bit more community outreach. Some are curious about the esoteric topics such as jurisdiction, spirituality, and healthful living.
I have no permanent allegiance to any state, race, or group. I go where I can teach and learn. I anticipate that in my next phase, I’ll meet Bitcoiners so advanced that I’ll have to give up my fiat job and focus full-time on serious projects where real health and wealth are on the line.
Hopefully, I’ll be ready. I believe the universe always challenges you exactly to your limit – no less, no more.
- What do people struggle with the most when it comes to technical education?
The biggest struggle isn’t technical – it’s a lack of deep curiosity. People ask “how” and “what” – how do I set up a node, what should one do with the lightning channels? But very few ask “why?”
Why does on-chain bitcoin not contribute to the circular economy? Why is it essential to run Lightning? Why did humanity fall into mental enslavement in the first place?
I’d rather teach two-year-olds who constantly ask “why” than adults who ask how to flip a profit. What worries me most is that most two-year-olds will grow up asking state-funded AI bots for answers and live according to its recommendations.
- One Cleveland Bitcoiner shows up at gold bug meetups. How valuable is face-to-face education?
I don’t think the older generation is going to reverse the current human condition. Most of them have been under mind control for too long, and they just don’t have the attention span to study and change their ways.
They’re better off stacking gold and helping fund their grandkids’ education. If I were to focus on a demographic, I’d go for teenagers – high school age – because by college, the indoctrination is usually too strong, and they’re chasing fiat mastery.
As for the gold bug meetup? Perhaps one day I will show up with a ukulele to sing some bitcoin-themed songs. Seniors love such entertainment.
- How do you choose what to focus on in your sessions, especially for different types of learners?
I don’t come in with a rigid agenda. I’ve collected a massive library of resources over the years and never stopped reading. My browser tab and folder count are exploding.
At the meetup, people share questions or topics they’re curious about, then I take that home, do my homework, and bring back a session based on those themes. I give them the key takeaways, plus where to dive deeper.
Most people won’t – or can’t – study the way I do, and I expect attendees to put in the work. I suspect that it’s more important to reach those who want to learn but don’t know how, the so-called nescient (not knowing), rather than the ignorant.
There are way too many ignorant bitcoiners, so my mission is to find those who are curious what’s beyond the facade of fake reality and superficial promises.
That naturally means that fewer people show up, and that’s fine. I’m not here for the crowds; I’m here to educate the educators. One bitcoiner who came decided to branch off into self-custody sessions and that’s awesome. Personally, I’m much more focused on Lightning.
I want to see broader adoption of tools like auth, sign-message, NWC, and LSPs. Next month, I’m going deep into eCash solutions, because let’s face it – most newcomers won’t be able to afford their own UTXO or open a lightning channel; additionally, it has to be fun and easy for them to transact sats, otherwise they won’t do it. Additionally, they’ll need to rely on
-
@ 5d4b6c8d:8a1c1ee3
2025-06-09 00:18:27Big day for me today: - @k00b convinced me to try OMAD. I did eat more than once today, but it was all within a four hour period. I'll try to tighten that up further tomorrow. - @gnilma and @398ja convinced me to try a cold shower. I eased into it, by starting it warm and gradually turning down the temperature. That was totally manageable.
How did you do today? What do you need to work on tomorrow?
https://stacker.news/items/1001161
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28início
"Vocês vêem? Vêem a história? Vêem alguma coisa? Me parece que estou tentando lhes contar um sonho -- fazendo uma tentativa inútil, porque nenhum relato de sonho pode transmitir a sensação de sonho, aquela mistura de absurdo, surpresa e espanto numa excitação de revolta tentando se impôr, aquela noção de ser tomado pelo incompreensível que é da própria essência dos sonhos..."
Ele ficou em silêncio por alguns instantes.
"... Não, é impossível; é impossível transmitir a sensação viva de qualquer época determinada de nossa existência -- aquela que constitui a sua verdade, o seu significado, a sua essência sutil e contundente. É impossível. Vivemos, como sonhamos -- sozinhos..."
- Livros mencionados por Olavo de Carvalho
- Antiga homepage Olavo de Carvalho
- Bitcoin explicado de um jeito correto e inteligível
- Reclamações
-
@ 9ca447d2:fbf5a36d
2025-06-07 12:02:11Trump Media & Technology Group (TMTG), the company behind Truth Social and other Trump-branded digital platforms, is planning to raise $2.5 billion to build one of the largest bitcoin treasuries among public companies.
The deal involves the sale of approximately $1.5 billion in common stock and $1.0 billion in convertible senior secured notes.
According to the company, the offering is expected to close by the end of May, pending standard closing conditions.
Devin Nunes, CEO of Trump Media, said the investment in bitcoin is a big part of the company’s long-term plan.
“We view Bitcoin as an apex instrument of financial freedom,” Nunes said.
“This investment will help defend our Company against harassment and discrimination by financial institutions, which plague many Americans and U.S. firms.”
He added that the bitcoin treasury will be used to create new synergies across the company’s platforms including Truth Social, Truth+, and the upcoming financial tech brand Truth.Fi.
“It’s a big step forward in the company’s plans to evolve into a holding company by acquiring additional profit-generating, crown jewel assets consistent with America First principles,” Nunes said.
The $2.5 billion raise will come from about 50 institutional investors. The $1 billion in convertible notes will have 0% interest and be convertible into shares at a 35% premium.
TMTG’s current liquid assets, including cash and short-term investments, are $759 million as of the end of the first quarter of 2025. With this new funding, the company’s liquid assets will be over $3 billion.
Custody of the bitcoin treasury will be handled by Crypto.com and Anchorage Digital. They will manage and store the digital assets.
Earlier this week The Financial Times reported Trump Media was planning to raise $3 billion for digital assets acquisitions.
The article said the funds would be used to buy bitcoin and other digital assets, and an announcement could come before a major related event in Las Vegas.
Related: Bitcoin 2025 Conference Kicks off in Las Vegas Today
Trump Media denied the FT report. In a statement, the company said, “Apparently the Financial Times has dumb writers listening to even dumber sources.”
There was no further comment. However, the official $2.5 billion figure, which was announced shortly after by Trump Media through a press release, aligns with its actual filing and investor communication.
Trump Media’s official announcement
This comes at a time when the Trump family and political allies are showing renewed interest in Bitcoin.
President Donald Trump who is now back in office since the 2025 election, has said he wants to make the U.S. the “crypto capital of the world.”
Trump Media is also working on retail bitcoin investment products including ETFs aligned with America First policies.
These products will make bitcoin more accessible to retail investors and support pro-Trump financial initiatives.
But not everyone is happy.
Democratic Senator Elizabeth Warren recently expressed concerns about Trump Media’s Bitcoin plans. She asked U.S. regulators to clarify their oversight of digital-asset ETFs, warning of investor risk.
Industry insiders are comparing Trump Media’s plans to Strategy (MSTR) which has built a multi-billion dollar bitcoin treasury over the last year. They used stock and bond sales to fund their bitcoin purchases.
-
@ 9ca447d2:fbf5a36d
2025-06-07 12:01:58CANNES, FRANCE – May 2025 — Bitcoin mining made its mark at the world’s most prestigious film gathering this year as Puerto Rican director and producer Alana Mediavilla introduced her feature documentary Dirty Coin: The Bitcoin Mining Documentary at the Marché du Film during the Cannes Film Festival.
The film puts bitcoin mining at the center of a rising global conversation about energy, technology, and economic freedom.
Dirty Coin is the first feature-length documentary to explore bitcoin mining through immersive, on-the-ground case studies.
From rural towns in the United States to hydro-powered sites in Latin America and the Congo, the film follows miners and communities navigating what may be one of the most misunderstood technologies of our time.
The result is a human-centered look at how bitcoin mining is transforming local economies and energy infrastructure in real ways.
To mark its Cannes debut, Mediavilla and her team hosted a packed industry event that brought together leaders from both film and finance.
Dirty Coin debut ceremony at the Marché du Film
Sponsors Celestial Management, Sangha Renewables, Nordblock, and Paystand.org supported the program, which featured panels on mining, energy use, and decentralized infrastructure.
Attendees had the rare opportunity to engage directly with pioneers in the space. A special session in French led by Seb Gouspillou spotlighted mining efforts in the Congo’s Virunga region.
Dirty Coin builds on Mediavilla’s award-winning short film Stranded, which won over 20 international prizes, including Best Short Documentary at Cannes in 2024.
That success helped lay the foundation for the feature and positioned Mediavilla as one of the boldest new voices in global documentary filmmaking.
Alana Mediavilla speaks at the Marché du Film — Cannes Film Festival
“If we’ve found an industry that can unlock stranded energy and turn it into real power for people—especially in regions with energy poverty—why wouldn’t we look into it?” says Mediavilla. “Our privilege blinds us.
“The same thing we criticize could be the very thing that lifts the developing world to our standard of living. Ignoring that potential is a failure of imagination.”
Much like the decentralized network it explores, Dirty Coin is spreading globally through grassroots momentum.
Local leaders are hosting independent screenings around the world, from Roatán and Berlin to São Paulo and Madrid. Upcoming events include Toronto and Zurich, with more cities joining each month.
Mediavilla, who previously worked in creative leadership roles in the U.S. — including as a producer at Google — returned to Puerto Rico to found Campo Libre, a studio focused on high-caliber, globally relevant storytelling from the Caribbean.
She was also accepted into the Cannes Producers Network, a selective program open only to producers with box office releases in the past four years.
Mediavilla qualified after independently releasing Dirty Coin in theaters across Puerto Rico. Her participation in the network gave her direct access to meetings, insights, and connections with the most active distributors and producers working today.
The film’s next public screening will take place at the Anthem Film Festival in Palm Springs on Saturday, June 14 at 2 PM. Additional screenings and market appearances are planned throughout the year at Bitcoin events and international film platforms.
Dirty Coin at the Cannes Film Festival
Watch the Trailer + Access Press Materials
📂 EPK
🎬 Screener
🌍 Host a Screening
Follow the Movement
Instagram: https://www.instagram.com/dirty_coin_official/
Twitter: https://x.com/DirtyCoinDoc
Website: www.dirtycointhemovie.com -
@ 6c05c73e:c4356f17
2025-06-10 00:47:27Muitas pessoas me perguntam como eu faço o rebalanceamento das minhas carteiras de investimentos. Por isso, decidi compartilhar meu processo aqui. Você pode decidir se ele se adapta ao seu modelo ou não.
Por que Rebalancear a Carteira?
A primeira e mais importante pergunta é: por que precisamos fazer o rebalanceamento de carteira? A resposta é simples: somos humanos e não sabemos de tudo. Muitas informações estão acontecendo agora, e isso pode ser bom ou ruim (dependendo do quanto você está alavancado, rsrsrs). Mas, o rebalanceamento vai liberar caixa e reduzir a exposição ao risco.
Ou, em outra medida, pode aumentar sua exposição e capturar uma oportunidade que ninguém "percebeu ainda". Contudo, quero ressaltar que somos falhos e não podemos prever o futuro. Com isso em mente, você logo pensa que pode (e vai) estar errado em 80% do tempo.
Fazer os ajustes corretos na sua carteira de investimento é uma questão de sobrevivência. Imagina colocar 100% do patrimônio em Bitcoin em 2021? Pois é… Você estaria com uma perda considerável agora. Esse é só um dentre os milhares de exemplos que poderia dar.
Quando Rebalancear a Carteira?
A pergunta de 1 milhão de dólares é: quando rebalancear a bendita carteira?
Na palavra dos analistas: Trimestralmente. (Leia-se: Ganhamos as taxas).
Nas minhas palavras: Uma vez no ano. De preferência dia 20 de Dezembro (Leia-se: F*das analistas, o dinheiro é meu!).
Já testei mensal, trimestral, semestral e bienal. A verdade é que o dinheiro fica com as corretoras e foge do nosso bolso. Então, o melhor a se fazer é mexer o mínimo possível.
Partindo do princípio de que não sabemos nada ou sabemos muito pouco, corremos risco até de acertar um grande investimento. Isso aconteceu comigo no pós-Dilma. Porque? Pois eu estava focado no meu autodesenvolvimento.
Conhecimento, experiências, rede de contatos e saúde.
O único dia que eu queria saber de mercado financeiro era no quinto dia útil, quando eu ia aportar e decidir para onde ia mandar meu dinheiro. Só isso, foco em você e deixa seus investimentos de lado maturando.
Tudo se trata sobre rebalancear sua carteira com qualidade. Mas, qualidade para você.
Onde Manter o Dinheiro?
Gosto de ter uma parte do meu dinheiro livre e uma parte investida em dólar, majoritariamente em Bitcoin.
Então, gosto de ter uma parte do meu dinheiro em Bitcoin, pois acho que é o meio mais seguro e confiável para ter e transportar dólares literalmente usando a cabeça.
Dólares em bancões não me atraem. São totalmente rastreáveis e, em uma eventual urgência do dinheiro, duvido que eles vão dar moral para gente como nós.
A parte do dinheiro solto, gosto de deixar metade na conta da corretora e metade na minha poupança. Muita gente pensa que CDB/DI/CDI rendem rios de dinheiro a mais que a poupança. Rendem, mas é muito pouco. E o foco aqui é liquidez imediata!
Meu Modelo de Rebalanceamento
Para concluir nosso raciocínio, gosto de deixar assim:
- 50% do dinheiro livre.
- 50% do dinheiro investindo progressivamente.
50% livre = Dinheiro na conta da corretora e poupança mesmo.
50% investimento progressivo = A cada queda do mercado, eu compro 5% do dinheiro disponível em caixa de algum ativo que eu já tenha feito estudo.
Como Funciona Essa Abordagem?
Primeiro, eu rastreio o VIX. Coloco um alarme nele. A cada aumento de X porcento, ele me envia um e-mail me notificando. Eu acompanho o mercado durante o dia. Ao final do pregão, eu posiciono uma ordem de compra para o dia seguinte. Só isso.
Volto para o meu trabalho, negócio, família, lazer e para mim mesmo.
Mercado financeiro vicia, parceiro(a). Já estive dos dois lados e sei como funciona. Pega o que é seu e desliga. Se ficar online, vai ver coisas demais que nem deveria ter visto.
Concluindo
Existe muito misticismo sobre investimentos. E, até que deveria ter mesmo. Mas, a verdade é que ele é feito por pessoas + Bots + IA. E, pessoas são previsíveis. Já vi e vivi muita coisa. Minha maior lição é: Aproveite as oportunidades! Porque elas são raras…
Eu teria outras histórias para contar senão fosse o pós-Dilma, Bitcoin de 2017 e Covid. Sei que nem tudo são flores. Mas, estamos aqui para explorar uma brecha e fazer grana rápido. Liquidar e voltar a ver Netflix e ler livros. Meu único casamento é com minha esposa. Empresas, eu vejo como ciclos hoje em dia.
Além do mais, estamos na era das IAs. E Mary Meeker já lançou suas (brilhantes) previsões sobre nosso futuro. Então, aproveite enquanto há tempo. Já já o mercado deverá ser bem mais automatizado que hoje.
-
@ 2b998b04:86727e47
2025-06-10 00:13:51How I Built a Decentralized CMS with Nostr + GitHub Actions – Part 2
Refinements, resilience, and real-world publishing
In Part 1, I shared the first steps of building a publishing stack that puts authors in control — using Nostr for content, GitHub Actions for automation, and GitHub Pages for free, fast hosting.
But that was just the foundation.
In this second installment, I focused on improving the system with better data hygiene, styling consistency, and end-to-end automation — all while keeping things minimal and open-source.
Here’s what changed — and what’s coming next.
✅ Key Improvements (Week of June 8)
🔁 1. Deduplication across relays
Nostr relays often echo the same events. In the original version, my script could pull the same article multiple times.\ To fix that, I updated the
fetch_articles.py
script to:-
Gather events from 8–10 relays concurrently using
asyncio
-
Flatten the results
-
Deduplicate based on
event.id
This brought the number of unique articles down from 90+ to around 20 — a huge cleanup win.
🏷 2. Tag styling and wrapping
Previously, the tags were unstyled or ran off the edge of the container. Now:
-
Tags wrap cleanly and align left
-
Each tag has a soft background and spacing (
#tag
) -
Tags are parsed directly from Nostr
["t", ...]
tags
It looks better. It feels more coherent. And it reflects the decentralized ethos — clean, not corporate.
📅 3. Proper
published_at
parsingNostr events can include a
["published_at", timestamp]
tag. Originally, my site sorted and displayed articles by theircreated_at
time — which was sometimes misleading.Now, the script:
-
Extracts
published_at
(if present) -
Falls back to
created_at
if missing -
Uses this value for both sorting and display in
index.html
This way, articles appear in the correct order — based on when I intended to publish them.
🎨 4. Markdown cleanup and layout polish
Markdown content from Nostr sometimes included extra backslashes (
\\
) or unparsed characters. I updated the rendering logic to:-
Remove unnecessary escape characters
-
Use consistent fonts, spacing, and margins
-
Inherit the overall styling from stantonweb.com
Now the articles don’t just work — they feel native to the rest of my site.
🤖 5. GitHub Actions automation
This was a big one: enabling daily auto-publishing.
I created a GitHub Actions workflow that:
-
Pulls all my
kind:30023
long-form articles daily from Nostr relays -
Deduplicates and filters by tag
-
Generates one
.html
file per article and updates theindex.json
-
Commits the changes back to GitHub Pages — no manual pushing needed
After some token setup troubleshooting (and a wrong
known_hosts
key 😅), it works beautifully.You can still run the script manually via:
bash
CopyEdit
./fetch_articles.sh
But now, it’s fire-and-forget. Just post on Nostr — the rest happens automatically.
⏱ Total Time Spent (est. 15 hours)
-
Saturday (\~5h): initial build, tried sync-based fetch logic
-
Sunday (\~5h): rewrote with
asyncio
, deduplication, cleaned up article objects -
Monday (\~5h): full styling pass, timestamp fixes, token creation, and automation pipeline setup
All running with zero paid infrastructure.
🔜 Coming Soon
-
🗂 Pagination: View 10–50 articles per page
-
🗓 Monthly Archives: Top-level by Year → then Month → then article list
-
🧠 RSS Feed: Auto-generate RSS from my
npub
so any Nostr long-form post becomes a blog feed\ (Bonus: use it to follow others via Primal or standard readers)
🙌 Built With
-
Nostr (Primal, Damus, etc.)
-
GitHub Pages + Actions
-
Python (asyncio, websockets)
-
A little stubbornness
-
A lot of help from ChatGPT (“Dr. C”) 🧠
💡 Why This Matters
Most people don’t own their publishing tools.\ Medium can unlist you. Substack can shadowban. Even Ghost requires trust in a hosted instance.
But with Nostr + GitHub, I control the data, the visibility, and the publishing logic.
That’s the future I want — for myself, for others, for truth.
One article at a time.
🟧 View live:\ https://andrewgstanton.github.io/blog-stantonweb-site\ 📬 Zap: https://tinyurl.com/yuyu2b9t
-
-
@ 2cde0e02:180a96b9
2025-06-08 18:14:13Frida Kahlo: outline and inked.
pen & ink; monochromized
"Kahlo's work as an artist remained relatively unknown until the late 1970s, when her work was rediscovered by art historians and political activists. By the early 1990s, not only had she become a recognized figure in art history, but she was also regarded as an icon for Chicanos, the feminism movement, and the LGBTQ+ community. Kahlo's work has been celebrated internationally as emblematic of Mexican national and Indigenous traditions and by feminists for what is seen as its uncompromising depiction of the female experience and form."
Source: Wikipedia
https://stacker.news/items/1000840
-
@ 8d34bd24:414be32b
2025-06-08 03:42:59Last post, I touched on the subject of what do you say to those going through trials and tribulations, but as I read Job, it seemed like there was more to say on the subject of how Christians are to respond to those who are suffering. The original passage of inspiration was this.
Don’t Be A Miserable Comforter
Then Job answered,
“I have heard many such things;\ Sorry comforters are you all.\ Is there no limit to windy words?\ Or what plagues you that you answer?\ I too could speak like you,\ If I were in your place.\ I could compose words against you\ And shake my head at you.\ I could strengthen you with my mouth,\ And the solace of my lips could lessen your pain. (Job 16:1-5)
Job was suffering. His friends came with the intention of comforting Job. Job vented his frustrations and problems understanding God’s justice. His friends tried to correct Job’s honest questions. These corrections escalated to the point of accusing Job of heinous sins and saying that everything that had happened to Job was his fault.
Job rightly said, “If I were in your place, I could compose words against you, and shake my head at you.” Sometimes we have to show mercy while a person is working through their feelings and confusion. Although some hardships are the consequences or punishment for sins, many (probably most) are not. We, as Christians, are promised trials. We should not be surprised when we go through trials.
Job also compares two ways of responding to a fellow believer going through trials. He says, “I could strengthen you with my mouth, and the solace of my lips could lessen your pain.” We can use our words to encourage and strengthen those who are suffering.
He also accuses his visitors of “Sorry comforters are you all. Is there no limit to windy words?” This reminds me of a traditional saying, “If you can’t say anything nice, don’t say anything at all.” Some of us want to fix everything. Sometimes we need to just listen. We don’t have to speak an answer for everything. In these uncomfortable situations, it is easy to start with a brief, Biblical answer, but then to start filling the silence with our own words to fill the silence. This can harm of everyone.
Job’s friends initial comments were not bad and were mostly true, but the more they talked, the more they went off track and the more harm they did. We want to lessen their pain, not be sorry comforters.
Of course this doesn’t mean that we can’t share God’s word. It doesn’t mean we can’t acknowledge obvious sins that are known by all parties. It does mean that all words should be an encouragement to lead them into closer fellowship with God.
Job again comments about his friends.
Even now, behold, my witness is in heaven,\ **And my advocate is on high.\ My friends are my scoffers;\ My eye weeps to God.\ O that a man might plead with God\ As a man with his neighbor!\ For when a few years are past,\ I shall go the way of no return. (Job 16:19-22) {emphasis mine}
Job, being a godly man, puts his trust in God. Notice the pattern: God, friends, God.
And my advocate is on high.\ My friends are my scoffers;\ My eye weeps to God.
Despite the scoffing and harm done by his friends, he keeps his eye on God as his advocate and the one he turns to in sorrow. In the case of Job, he is able to lean on God despite the harm done by his friends. Those will lesser faith might have been pushed away from God by his friends words.
Love One Another
In the New Testament, we are told:
“A new commandment I give to you, that you love one another, even as I have loved you, that you also love one another. By this all men will know that you are My disciples, if you have love for one another.” (John 13:34-35)
Our every word and action should be loving. That doesn’t mean ignoring sin, but it does mean every word and action should be used to draw a person into closer relationship with their God and Savior. In the case of a person who is sinning, Jesus set a perfect example.
The scribes and the Pharisees brought a woman caught in adultery, and having set her in the center of the court, they*said to Him, “Teacher, this woman has been caught in adultery, in the very act. Now in the Law Moses commanded us to stone such women; what then do You say?” They were saying this, testing Him, so that they might have grounds for accusing Him. But Jesus stooped down and with His finger wrote on the ground. But when they persisted in asking Him, He straightened up, and said to them, “He who is without sin among you, let him be the first to throw a stone at her.” Again He stooped down and wrote on the ground. When they heard it, they began to go out one by one, beginning with the older ones, and He was left alone, and the woman, where she was, in the center of the court. Straightening up, Jesus said to her, “Woman, where are they? Did no one condemn you?” She said, “No one, Lord.” And Jesus said, “I do not condemn you, either. Go. From now on sin no more.” (John 8:3-11)
What did Jesus do:
-
He protected the accused from those trying to use, abuse, and torment her.
-
He did not deny her sin, but encouraged her accusers to acknowledge their own sins.
-
He encouraged her to “sin no more.”
This woman knew she had sinned. She did not need to be reminded of it. She didn’t deny it; she knew. Because she and everyone else knew her sin, there was no need to bring it up again. Jesus used this situation to help her accusers understand their own sin and to lead her into repentance and salvation. The gentle correction was used to lead her to a better way.
When we speak to someone in trials, whether self-inflicted, externally caused, or a standard trial common to all men, our goal should be to uplift and draw to Jesus. We should have mercy on the suffering and not add to their suffering.
No matter the case, we need to carefully use our words for love and mercy.
Beloved, let us love one another, for love is from God; and everyone who loves is born of God and knows God. The one who does not love does not know God, for God is love. By this the love of God was manifested in us, that God has sent His only begotten Son into the world so that we might live through Him. In this is love, not that we loved God, but that He loved us and sent His Son to be the propitiation for our sins. Beloved, if God so loved us, we also ought to love one another. (1 John 4:7-11)
Dealing With Sin & Repentance
In 1 & 2 Corinthians, Paul deals with a situation of extreme sin. In 1 Corinthians he rebukes the church for allowing this heinous sin within their church body.
It is actually reported that there is immorality among you, and immorality of such a kind as does not exist even among the Gentiles, that someone has his father’s wife. You have become arrogant and have not mourned instead, so that the one who had done this deed would be removed from your midst.
For I, on my part, though absent in body but present in spirit, have already judged him who has so committed this, as though I were present. In the name of our Lord Jesus, when you are assembled, and I with you in spirit, with the power of our Lord Jesus, I have decided to deliver such a one to Satan for the destruction of his flesh, so that his spirit may be saved in the day of the Lord Jesus. (1 Corinthians 5:1-5) {emphasis mine}
This unrepentant sin could not be allowed to remain in the body because it could spread among God’s people and because it harmed God’s glory. At the same time, the motivation for removing him from the body was not to remove him from a relationship with God. It was to cause consequences in the hopes that the man would return to Jesus.
In 2 Corinthians, we find that he does repent of his son and seek to come back into the fellowship of believers.
For out of much affliction and anguish of heart I wrote to you with many tears; not so that you would be made sorrowful, but that you might know the love which I have especially for you.
But if any has caused sorrow, he has caused sorrow not to me, but in some degree—in order not to say too much—to all of you. Sufficient for such a one is this punishment which was inflicted by the majority, so that on the contrary you should rather forgive and comfort him, otherwise such a one might be overwhelmed by excessive sorrow. Wherefore I urge you to reaffirm your love for him. For to this end also I wrote, so that I might put you to the test, whether you are obedient in all things. But one whom you forgive anything, I forgive also; for indeed what I have forgiven, if I have forgiven anything, I did it for your sakes in the presence of Christ, so that no advantage would be taken of us by Satan, for we are not ignorant of his schemes. (2 Corinthians 2:4-11) {emphasis mine}
Once a sinner repents, we are to immediately forgive and comfort them and welcome them back into the fellowship of believers. We are not to remind them of their previous sins and overwhelm them with excessive sorrow, but are to reaffirm our love for them. Any punishment was for correction, not to harm or cause them pain. We should seek the good of those who sinned. We should welcome them back with open arms. We should forgive as we were forgiven by God.
All of our words and actions toward others, whether the most godly saint or the most reprehensible sinner, should be to the goal of drawing them closer to the Savior and helping them to trust in God’s goodness, wisdom, and strength.
May the God of Heaven carry your burdens and help you to help carry the burdens of those around you. May Our Savior help us to be a godly encouragement to the suffering who draws them into closer fellowship with the Savior. May the Holy Spirt give us discernment in how to best encourage the suffering and to help them rest in Jesus.
Trust Jesus
-
-
@ 2b998b04:86727e47
2025-06-09 23:39:25Solzhenitsyn Would Have Loved Bitcoin
I didn’t plan to write this. But a comment from @HODL stirred something in me — a passing thought that took root and wouldn’t let go:
\> “Solzhenitsyn would have understood Bitcoin.”
The more I sat with it, the more I realized: he wouldn’t have just understood it — he would have loved it.
A Life of Resistance
Aleksandr Solzhenitsyn didn’t just survive the Soviet gulags — he exposed them. Through The Gulag Archipelago and other works, he revealed the quiet machinery of evil: not always through brutality, but through systemic lies, suppressed memory, and coerced consensus.
His core belief was devastatingly simple:
\> “The line dividing good and evil cuts through the heart of every human being.”
He never let anyone off the hook — not the state, not the system, not even himself. Evil, to Solzhenitsyn, was not “out there.” It was within. And resisting it required truth, courage, and deep personal responsibility.
Bitcoin: Truth That Resists
That’s why I believe Solzhenitsyn would have resonated with Bitcoin.
Not the hype. Not the coins. Not the influencers.
But the heart of it:
-
A system that resists coercion.
-
A ledger that cannot be falsified.
-
A network that cannot be silenced.
-
A protocol that doesn't care about party lines — only proof of work.
Bitcoin is incorruptible memory.\ Solzhenitsyn fought to preserve memory in the face of state erasure.\ Bitcoin cannot forget — and it cannot be made to lie.
Responsibility and Sovereignty
Bitcoin demands what Solzhenitsyn demanded: moral responsibility. You hold your keys. You verify your truth. You cannot delegate conscience.
He once wrote:
\> “A man who is not inwardly prepared for the use of violence against him is always weaker than his opponent.”
Bitcoin flips that equation. It gives the peaceful man a weapon: truth that cannot be seized.
I’ve Felt This Line Too
I haven’t read all of The Gulag Archipelago — it’s long, and weighty — but I’ve read enough to know Solzhenitsyn’s voice. And I’ve felt the line he describes:
\> That dividing line between good and evil… that runs through my own heart.
That’s why I left the noise of Web3. That’s why I’m building with Bitcoin. Because I believe the moral architecture of this protocol matters. It forces me to live in alignment — or walk away.
Final Word
I think Solzhenitsyn would have seen Bitcoin not as a tech innovation, but as a moral stand. Not a replacement for Christ — but a quiet echo of His justice.
And that’s why I keep stacking, writing, building — one block at a time.
Written with help from ChatGPT (Dr. C), and inspired by a comment from @HODL that sparked something deep.
If this resonated, feel free to zap a few sats — not because I need them, but because signal flows best when it’s shared with intention.
HODL mentioned this idea in a note — their Primal profile:\ <https://primal.net/hodl>
-
-
@ 2b998b04:86727e47
2025-06-09 23:38:55Most of the assets I hold—real estate, equities, and businesses—depreciate in value over time. Some literally, like physical buildings and equipment. Some functionally, like tech platforms that age faster than they grow. Even cash, which should feel "safe," quietly loses ground to inflation. Yet I continue to build. I continue to hold. And I continue to believe that what I’m doing matters.
But underneath all of that — beneath the mortgages, margin trades, and business pivots — I’ve made a long-term bet:
Bitcoin will outlast the decay.
The Decaying System I Still Operate In
Let me be clear: I’m not a Bitcoin purist. I use debt. I borrow to acquire real estate. I trade with margin in a brokerage account. I understand leverage — not as a sin, but as a tool that must be used with precision and respect. But I’m also not naive.
The entire fiat-based financial system is built on a slow erosion of value. Inflation isn't a bug — it’s a feature. And it's why most business models, whether in real estate or retail, implicitly rely on asset inflation just to stay solvent.
That’s not sustainable. And it’s not honest.
The Bitcoin Thesis: Deflation That Works for You
Bitcoin is fundamentally different. Its supply is fixed. Its issuance is decreasing. Over time, as adoption grows and fiat weakens, Bitcoin’s purchasing power increases.
That changes the game.
If you can hold even a small portion of your balance sheet in BTC — not just as an investment, but as a strategic hedge — it becomes a way to offset the natural depreciation of your other holdings. Your buildings may age. Your cash flow may fluctuate. But your Bitcoin, if properly secured and held with conviction, becomes the anchor.
It’s not about day trading BTC or catching the next ATH. It’s about understanding that in a world designed to leak value, Bitcoin lets you patch the hole.
Why This Matters for Builders
If you run a business — especially one with real assets, recurring costs, or thin margins — you know how brutal depreciation can be. Taxes, maintenance, inflation, replacement cycles… it never stops.
Adding BTC to your long-term treasury isn’t about becoming a "crypto company." It’s about becoming anti-fragile. It’s about building with a component that doesn’t rot.
In 5, 10, or 20 years, I may still be paying off mortgages and navigating property cycles. But if my Bitcoin allocation is still intact, still growing in real purchasing power… then I haven’t just preserved wealth. I’ve preserved optionality. I’ve created a counterbalance to the relentless decay of everything else.
Final Word
I still play the fiat game — because for now, I have to. But I’m no longer betting everything on it. Bitcoin is my base layer now. Quiet, cold-stored, and uncompromising.
It offsets depreciation — not just financially, but philosophically. It reminds me that not everything has to erode. Not everything has to be sacrificed to time or policy or inflation.
Some things can actually hold. Some things can last.
And if I build right — maybe what I build can last too.
If this resonated, feel free to send a zap — it helps me keep writing and building from a place of conviction.
This article was co-written with the help of ChatGPT, a tool I use to refine and clarify what I’m working through in real time.
-
@ 5d4b6c8d:8a1c1ee3
2025-06-08 01:48:23Today was one of the best days I've had in a while. We had a long family outing, so lots of steps and sunshine and fresh air. I ate very well. No junk food at all. The only snacks I had were organic dark chocolate dipped in hodl butter.
Things to keep working on: I didn't sleep great (blame the Stanley Cup going to OT) and I didn't stick to my eating window.
How about you stackers? Let's here your ~HealthAndFitness triumphs and pitfalls.
https://stacker.news/items/1000285
-
@ 0689c075:2936ee11
2025-06-09 21:54:26{"layout":{"backgroundImage":null,"canvasSize":{"width":850,"height":1100}},"pages":[{"id":"page_1","name":"Main Page","objects":[]}],"objects":[],"texts":[]}
-
@ 8bad92c3:ca714aa5
2025-06-07 11:01:44Key Takeaways
Michael Goldstein, aka Bitstein, presents a sweeping philosophical and economic case for going “all in” on Bitcoin, arguing that unlike fiat, which distorts capital formation and fuels short-term thinking, Bitcoin fosters low time preference, meaningful saving, and long-term societal flourishing. At the heart of his thesis is “hodling for good”—a triple-layered idea encompassing permanence, purpose, and the pursuit of higher values like truth, beauty, and legacy. Drawing on thinkers like Aristotle, Hoppe, and Josef Pieper, Goldstein redefines leisure as contemplation, a vital practice in aligning capital with one’s deepest ideals. He urges Bitcoiners to think beyond mere wealth accumulation and consider how their sats can fund enduring institutions, art, and architecture that reflect a moral vision of the future.
Best Quotes
“Let BlackRock buy the houses, and you keep the sats.”
“We're not hodling just for the sake of hodling. There is a purpose to it.”
“Fiat money shortens your time horizon… you can never rest.”
“Savings precedes capital accumulation. You can’t build unless you’ve saved.”
“You're increasing the marginal value of everyone else’s Bitcoin.”
“True leisure is contemplation—the pursuit of the highest good.”
“What is Bitcoin for if not to make the conditions for magnificent acts of creation possible?”
“Bitcoin itself will last forever. Your stack might not. What will outlast your coins?”
“Only a whale can be magnificent.”
“The market will sell you all the crack you want. It’s up to you to demand beauty.”
Conclusion
This episode is a call to reimagine Bitcoin as more than a financial revolution—it’s a blueprint for civilizational renewal. Michael Goldstein reframes hodling as an act of moral stewardship, urging Bitcoiners to lower their time preference, build lasting institutions, and pursue truth, beauty, and legacy—not to escape the world, but to rebuild it on sound foundations.
Timestamps
00:00 - Intro
00:50 - Michael’s BBB presentation Hodl for Good
07:27 - Austrian principles on capital
15:40 - Fiat distorts the economic process
23:34 - Bitkey
24:29 - Hodl for Good triple entendre
29:52 - Bitcoin benefits everyone
39:05 - Unchained
40:14 - Leisure theory of value
52:15 - Heightening life
1:15:48 - Breaking from the chase makes room for magnificence
1:32:32 - Nakamoto Institute’s missionTranscript
(00:00) Fiat money is by its nature a disturbance. If money is being continually produced, especially at an uncertain rate, these uh policies are really just redistribution of wealth. Most are looking for number to go up post hyper bitcoinization. The rate of growth of bitcoin would be more reflective of the growth of the economy as a whole.
(00:23) Ultimately, capital requires knowledge because it requires knowing there is something that you can add to the structures of production to lengthen it in some way that will take time but allow you to have more in the future than you would today. Let Black Rockck buy the houses and you keep the sats, not the other way around.
(00:41) You wait until later for Larry Frink to try to sell you a [Music] mansion. And we're live just like that. Just like that. 3:30 on a Friday, Memorial Day weekend. It's a good good good way to end the week and start the holiday weekend. Yes, sir. Yes, sir. Thank you for having me here. Thank you for coming. I wore this hat specifically because I think it's I think it's very apppropo uh to the conversation we're going to have which is I hope an extension of the presentation you gave at Bitblock Boom Huddle for good. You were working on
(01:24) that for many weeks leading up to uh the conference and explaining how you were structuring it. I think it's a very important topic to discuss now as the Bitcoin price is hitting new all-time highs and people are trying to understand what am I doing with Bitcoin? Like you have you have the different sort of factions within Bitcoin.
(01:47) Uh get on a Bitcoin standard, get on zero, spend as much Bitcoin as possible. You have the sailors of the world are saying buy Bitcoin, never sell, die with your Bitcoin. And I think you do a really good job in that presentation. And I just think your understanding overall of Bitcoin is incredible to put everything into context. It's not either or.
(02:07) It really depends on what you want to accomplish. Yeah, it's definitely there there is no actual one-sizefits-all um for I mean nearly anything in this world. So um yeah, I mean first of all I mean there was it was the first conference talk I had given in maybe five years. I think the one prior to that uh was um bit block boom 2019 which was my meme talk which uh has uh become infamous and notorious.
(02:43) So uh there was also a lot of like high expectations uh you know rockstar dev uh has has treated that you know uh that that talk with a lot of reference. a lot of people have enjoyed it and he was expecting this one to be, you know, the greatest one ever, which is a little bit of a little bit of a uh a burden to live up to those kinds of standards.
(03:08) Um, but you know, because I don't give a lot of talks. Um, you know, I I I like to uh try to bring ideas that might even be ideas that are common. So, something like hodling, we all talk about it constantly. uh but try to bring it from a little bit of a different angle and try to give um a little bit of uh new light to it.
(03:31) I alsove I've I've always enjoyed kind of coming at things from a third angle. Um whenever there's, you know, there's there's all these little debates that we have in in Bitcoin and sometimes it's nice to try to uh step out of it and look at it a little more uh kind of objectively and find ways of understanding it that incorporate the truths of of all of them.
(03:58) uh you know cuz I think we should always be kind of as much as possible after ultimate truth. Um so with this one um yeah I was kind of finding that that sort of golden mean. So uh um yeah and I actually I think about that a lot is uh you know Aristotle has his his concept of the golden mean. So it's like any any virtue is sort of between two vices um because you can you can always you can always take something too far.
(04:27) So you're you're always trying to find that right balance. Um so someone who is uh courageous you know uh one of the vices uh on one side is being basically reckless. I I can't remember what word he would use. Uh but effectively being reckless and just wanting to put yourself in danger for no other reason than just you know the thrill of it.
(04:50) Um and then on the other side you would just have cowardice which is like you're unwilling to put yourself um at any risk at any time. Um, and courage is right there in the middle where it's understanding when is the right time uh to put your put yourself, you know, in in the face of danger um and take it on. And so um in some sense this this was kind of me uh in in some ways like I'm obviously a partisan of hodling.
(05:20) Um, I've for, you know, a long time now talked about the, um, why huddling is good, why people do it, why we should expect it. Um, but still trying to find that that sort of golden mean of like yes, huddle, but also what are we hodling for? And it's not we're we're not hodddling just merely for the sake of hodddling.
(05:45) There there is a a purpose to it. And we should think about that. And that would also help us think more about um what are the benefits of of spending, when should we spend, why should we spend, what should we spend on um to actually give light to that sort of side of the debate. Um so that was that was what I was kind of trying to trying to get into.
(06:09) Um, as well as also just uh at the same time despite all the talk of hodling, there's always this perennial uh there's always this perennial dislike of hodlers because we're treated as uh as if um we're just free riding the network or we're just greedy or you know any of these things. And I wanted to show how uh huddling does serve a real economic purpose.
(06:36) Um, and it does benefit the individual, but it also does uh it it has actual real social um benefits as well beyond merely the individual. Um, so I wanted to give that sort of defense of hodling as well to look at it from um a a broader position than just merely I'm trying to get rich. Um uh because even the person who uh that is all they want to do um just like you know your your pure number grow up go up moonboy even that behavior has positive ramifications on on the economy.
(07:14) And while we might look at them and have uh judgments about their particular choices for them as an individual, we shouldn't discount that uh their actions are having positive positive effects for the rest of the economy. Yeah. So, let's dive into that just not even in the context of Bitcoin because I think you did a great job of this in the presentation.
(07:36) just you've done a good job of this consistently throughout the years that I've known you. Just from like a first principles Austrian economics perspective, what is the idea around capital accumulation, low time preference and deployment of that capital like what what like getting getting into like the nitty-gritty and then applying it to Bitcoin? Yeah, it's it's a big question and um in many ways I mean I I even I barely scratched the surface.
(08:05) uh I I can't claim to have read uh all the volumes of Bombber works, you know, capital and interest and and stuff like that. Um but I think there's some some sort of basic concepts that we can look at that we can uh draw a lot out. Um the first uh I guess let's write that. So repeat so like capital time preference. Yeah. Well, I guess getting more broad like why sav -
@ 2cde0e02:180a96b9
2025-06-07 16:16:39桜の姫
https://stacker.news/items/999877
-
@ b1ddb4d7:471244e7
2025-06-07 10:01:31Hosted at the iconic Palace of Culture and Science—a prominent symbol of the communist era—the Bitcoin FilmFest offers a vibrant celebration of film through the lens of bitcoin. The venue itself provides a striking contrast to the festival’s focus, highlighting bitcoin’s core identity as a currency embodying independence from traditional financial and political systems.
𝐅𝐢𝐱𝐢𝐧𝐠 𝐭𝐡𝐞 𝐜𝐮𝐥𝐭𝐮𝐫𝐞 𝐰𝐢𝐭𝐡 𝐩𝐨𝐰𝐞𝐫𝐟𝐮𝐥 𝐦𝐮𝐬𝐢𝐜 𝐯𝐢𝐛𝐞𝐬.
Warsaw, Day Zero at #BFF25 (European Bitcoin Pizza Day) with @roger__9000, MadMunky and the @2140_wtf squadpic.twitter.com/9ogVvWRReA
— Bitcoin FilmFest
(@bitcoinfilmfest) May 28, 2025
This venue represents an era when the state tightly controlled the economy and financial systems. The juxtaposition of this historical site with an event dedicated to bitcoin is striking and thought-provoking.
The event features a diverse array of activities, including engaging panel discussions, screenings of both feature-length and short films, workshops and lively parties. Each component designed to explore the multifaceted world of bitcoin and its implications for society, offering attendees a blend of entertainment and education.
The films showcase innovative narratives and insights into bitcoin’s landscape, while the panels facilitate thought-provoking discussions among industry experts and filmmakers.
Networking is a significant aspect of the festival, with an exceptionally open and friendly atmosphere that foster connections among participants. Participants from all over Europe gather to engage with like-minded individuals who share a passion for BTC and its implications for the future.
The open exchanges of ideas foster a sense of community, allowing attendees to forge new connections, collaborate on projects, and discuss the potential of blockchain technology implemented in bitcoin.
The organization of the festival is extraordinary, ensuring a smooth flow of information and an expertly structured schedule filled from morning until evening. Attendees appreciate the meticulous planning that allowed them to maximize their experience. Additionally, thoughtful touches such as gifts from sponsors and well-chosen locations for various events contribute to the overall positive atmosphere of the festival.
Overall, the Bitcoin FilmFest not only highlights the artistic expression surrounding bitcoin but also serves as a vital platform for dialogue—about financial freedom, the future of money, and individual sovereignty in a shifting world.
The event successfully bridges the gap between a historical symbol of control and a movement that celebrates freedom, innovation, and collaboration in the digital age, highlighting the importance of independence in financial systems while fostering a collaborative environment for innovation and growth.
Next year’s event is slated for June 5-7 2026. For further updates check: https://bitcoinfilmfest.com/
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28On "zk-rollups" applied to Bitcoin
ZK rollups make no sense in bitcoin because there is no "cheap calldata". all data is already ~~cheap~~ expensive calldata.
There could be an onchain zk verification that allows succinct signatures maybe, but never a rollup.
What happens is: you can have one UTXO that contains multiple balances on it and in each transaction you can recreate that UTXOs but alter its state using a zk to compress all internal transactions that took place.
The blockchain must be aware of all these new things, so it is in no way "L2".
And you must have an entity responsible for that UTXO and for conjuring the state changes and zk proofs.
But on bitcoin you also must keep the data necessary to rebuild the proofs somewhere else, I'm not sure how can the third party responsible for that UTXO ensure that happens.
I think such a construct is similar to a credit card corporation: one central party upon which everybody depends, zero interoperability with external entities, every vendor must have an account on each credit card company to be able to charge customers, therefore it is not clear that such a thing is more desirable than solutions that are truly open and interoperable like Lightning, which may have its defects but at least fosters a much better environment, bringing together different conflicting parties, custodians, anyone.
-
@ c5d54dd3:e4a3dfc6
2025-06-09 20:54:07I've been working on a few Python scripts to help automate and improve some Lightning node management tasks and wanted to share them with the community. I've bundled them into a GitHub repository called
Lightning-Python-Tools
You can find it here: https://github.com/TrezorHannes/Lightning-Python-Tools
Here's a quick rundown of a few scripts inside:
fee_adjuster.py
: This script pulls data from your LNDg database and public fee market data from Amboss. It allows you to build your own custom heuristics for managing your outbound and inbound channel fees automatically.pocketmoney.py
: Leveraging your LNBits instance, this tool can trigger regular, scheduled payments. It's perfect for things like sending pocket money to your children's wallets.peerswap-lndg_push.py
: For those using Peerswap, this script makes your Peerswap-enabled channels visible in your LNDg dashboard and conveniently enters your past swap history as a note.boltz_swap-out.py
: This is a command-line interface (CLI) tool for performing submarine swaps with Boltz. It intelligently suggests swaps based on your most outbound-heavy channels, again by feeding data from LNDg.Disclaimer & Call for Contributions This is an open-source project. Please use it at your own risk. I welcome everyone to fork the repository, create pull requests to make the scripts more robust and versatile, or open issues with suggestions.
I'm also very keen to get your feedback. What other tools could be built to make a node runner's life easier? Let me know your thoughts!
https://stacker.news/items/1002005
-
@ b1ddb4d7:471244e7
2025-06-07 08:00:46“Not your keys, not your coins” isn’t a slogan—it’s a survival mantra in the age of digital sovereignty.
The seismic collapses of Mt. Gox (2014) and FTX (2022) weren’t anomalies; they were wake-up calls. When $8.7 billion in customer funds vanished with FTX, it exposed the fatal flaw of third-party custody: your bitcoin is only as secure as your custodian’s weakest link.
Yet today, As of early 2025, analysts estimate that between 2.3 million and 3.7 million Bitcoins are permanently lost, representing approximately 11–18% of bitcoin’s fixed maximum supply of 21 million coins, with some reports suggesting losses as high as 4 million BTC. This paradox reveals a critical truth: self-custody isn’t just preferable—it’s essential—but it must be done right.
The Custody Spectrum
Custodial Wallets (The Illusion of Control)
- Rehypothecation Risk: Most platforms lend your bitcoin for yield generation. When Celsius collapsed, users discovered their “held” bitcoin was loaned out in risky strategies.
- Account Freezes: Regulatory actions can lock withdrawals overnight. In 2023, Binance suspended dollar withdrawals for U.S. users citing “partner bank issues,” trapping funds for weeks.
- Data Vulnerability: KYC requirements create honeypots for hackers. The 2024 Ledger breach exposed 270,000 users’ personal data despite hardware security.
True Self-Custody
Self-custody means exclusively controlling your private keys—the cryptographic strings that prove bitcoin ownership. Unlike banks or exchanges, self-custody eliminates:- Counterparty risk (no FTX-style implosions)
- Censorship (no blocked transactions)
- Inflationary theft (no fractional reserve lending)
Conquering the Three Great Fears of Self-Custody
Fear 1: “I’ll Lose Everything If I Make a Mistake”
Reality: Human error is manageable with robust systems:
- Test Transactions: Always send a micro-amount (0.00001 BTC) before large transfers. Verify receipt AND ability to send back.
- Multi-Backup Protocol: Store seed phrases on fireproof/waterproof steel plates (not paper!). Distribute copies geographically—one in a home safe, another with trusted family 100+ miles away.
- SLIP39 Sharding: Split your seed into fragments requiring 3-of-5 shards to reconstruct. No single point of failure.
Fear 2: “Hackers Will Steal My Keys”
Reality: Offline storage defeats remote attacks:
- Hardware Wallets: Devices like Bitkey or Ledger keep keys in “cold storage”—isolated from internet-connected devices. Transactions require physical confirmation.
- Multisig Vaults: Bitvault’s multi-sig system requires attackers compromise multiple locations/devices simultaneously. Even losing two keys won’t forfeit funds.
- Air-Gapped Verification: Use dedicated offline devices for wallet setup. Never type seeds on internet-connected machines.
Fear 3: “My Family Can’t Access It If I Die”
Reality: Inheritance is solvable:
- Dead Man Switches: Bitwarden’s emergency access allows trusted contacts to retrieve encrypted keys after a pre-set waiting period (e.g., 30 days).
- Inheritance Protocols: Bitkey’s inheritance solution shares decryption keys via designated beneficiaries’ emails. Requires multiple approvals to prevent abuse.
- Public Key Registries: Share wallet XPUBs (not private keys!) with heirs. They can monitor balances but not spend, ensuring transparency without risk.
The Freedom Dividend
- Censorship Resistance: Send $10M BTC to a Wikileaks wallet without Visa/Mastercard blocking it.
- Privacy Preservation: Avoid KYC surveillance—non-custodial wallets like Flash require zero ID verification.
- Protocol Access: Participate in bitcoin-native innovations (Lightning Network, DLCs) only possible with self-custodied keys.
- Black Swan Immunity: When Cyprus-style bank bailins happen, your bitcoin remains untouched in your vault.
The Sovereign’s Checklist
- Withdraw from Exchanges: Move all BTC > $1,000 to self-custody immediately.
- Buy Hardware Wallet: Purchase DIRECTLY from manufacturer (no Amazon!) to avoid supply-chain tampering.
- Generate Seed OFFLINE: Use air-gapped device, write phrase on steel—never digitally.
- Test Recovery: Delete wallet, restore from seed before funding.
- Implement Multisig: For > $75k, use Bitvault for 2-of-3 multi-sig setup.
- Create Inheritance Plan: Share XPUBs/SLIP39 shards with heirs + legal documents.
“Self-custody isn’t about avoiding risk—it’s about transferring risk from opaque institutions to transparent, controllable systems you design.”
The Inevitable Evolution: Custody Without Compromise
Emerging solutions are erasing old tradeoffs:
- MPC Wallets: Services like Xapo Bank shatter keys into encrypted fragments distributed globally. No single device holds full keys, defeating physical theft.
- Social Recovery: Ethically designed networks (e.g., Bitkey) let trusted contacts restore access without custodial control.
- Biometric Assurance: Fingerprint reset protocols prevent lockouts from physical injuries.
Lost keys = lost bitcoin. But consider the alternative: entrusting your life savings to entities with proven 8% annual failure rates among exchanges. Self-custody shifts responsibility from hoping institutions won’t fail to knowing your system can’t fail without your consent.
Take action today: Move one coin. Test one recovery. Share one xpub. The path to unchained wealth begins with a single satoshi under your control.
-
@ 5d4b6c8d:8a1c1ee3
2025-06-07 14:19:37I'll do more specific deep dives into the interesting teams, but let's start with the big picture. Which teams are buyers and sellers this offseason and who will be the biggest moving pieces?
Sellers
These are the teams that I expect to be bailing on their valuable assets: - Celtics: Even before Tatum's horrible injury, there was Last Dance talk around this old expensive roster. I think they'll use this year to get the roster more aligned with Tatum's timeline. That likely means moving on from Horford, Holliday, and Porzingis for salary savings and promising young players. - Bucks: With Dame injured and the roster being both old and not very good, they'll be putting Giannis on the auction block, as well as anyone else with trade value. They aren't tanking, though, unless they can get their picks back. - Phoenix: They desperately need to turn KD into assets that will be valuable in the future. The situation may even be bleak enough that they look to move on from Booker. - Memphis: A badly injured superstar and a roster that probably isn't good enough anyway, means it's time to sell the parts that don't quite fit and look to get back on track after next season.
Buyers
These are the teams looking to add high-end talent: - Houston: They had a great season, but lack a true number one player. Fortunately for them, they have a ton of draft picks and promising young players. - San Antonio: They also have a ton of assets and are ready to build a competitor around Wemby and Fox.
Both
These teams are pretty good, but they probably need to make pretty big roster tweaks: - Cavs: The two-big lineup looked too big against the Pacers. They probably need to move either Garland or Allen for another good player that fits the roster needs better. - Minnesota: Randle looked good for most of the playoffs, but Randle and Gobert aren't the right frontcourt for Ant. - Lakers: I'm not sure who they should part with, but they need a center.
Run it back
These teams don't need to do more than small tweaks around the edges, either because they're close already, they're developing a young promising roster, or there's just not much they can do: - Detroit - New York - Indiana - OKC - Golden State
???
I don't know what they need to do, but they need to do something: - Clippers: Kawhi and Harden went as far as they're gonna go, but I doubt anyone wants to give up assets for either of them. - Philly: Hahahahaha! - Orlando: Great defense, miserable offense. Something's gotta give - Dallas: Are they trying to win now or build around Flagg? - New Orleans: They have way too much talent to be as bad as they've been. - Denver: They looked great against OKC, but it seems like they need more around Jokic. Is MPJ worth anything as a trade asset, though?
Who cares? They suck
Everyone else
Let me know what you're looking at this offseason.
https://stacker.news/items/999795
-
@ 5d4b6c8d:8a1c1ee3
2025-06-07 02:18:51This is the place to reflect on how well you met your ~HealthAndFitness goals today.
Where did you succeed? What do you need to keep working on?
I probably didn't get enough sleep and overcompensated with caffeine. Otherwise, today was pretty solid. Other than a big cookie, I ate well and kept it within a decent window. Activity level was good, not great.
I meant to stretch more today, which I didn't really do, but I suppose I can do now.
https://stacker.news/items/999453
-
@ 5d4b6c8d:8a1c1ee3
2025-06-07 00:40:06https://youtu.be/YA1Lkl3h9AQ
"...and then, like so many Pacers games, things just happened."
I think that's about as well as any of us understand what's going on.
https://stacker.news/items/999389
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28The problem with ION
ION is a DID method based on a thing called "Sidetree".
I can't say for sure what is the problem with ION, because I don't understand the design, even though I have read all I could and asked everybody I knew. All available information only touches on the high-level aspects of it (and of course its amazing wonders) and no one has ever bothered to explain the details. I've also asked the main designer of the protocol, Daniel Buchner, but he may have thought I was trolling him on Twitter and refused to answer, instead pointing me to an incomplete spec on the Decentralized Identity Foundation website that I had already read before. I even tried to join the DIF as a member so I could join their closed community calls and hear what they say, maybe eventually ask a question, so I could understand it, but my entrance was ignored, then after many months and a nudge from another member I was told I had to do a KYC process to be admitted, which I refused.
One thing I know is:
- ION is supposed to provide a way to rotate keys seamlessly and automatically without losing the main identity (and the ION proponents also claim there are no "master" keys because these can also be rotated).
- ION is also not a blockchain, i.e. it doesn't have a deterministic consensus mechanism and it is decentralized, i.e. anyone can publish data to it, doesn't have to be a single central server, there may be holes in the available data and the protocol doesn't treat that as a problem.
- From all we know about years of attempts to scale Bitcoins and develop offchain protocols it is clear that you can't solve the double-spend problem without a central authority or a kind of blockchain (i.e. a decentralized system with deterministic consensus).
- Rotating keys also suffer from the double-spend problem: whenever you rotate a key it is as if it was "spent", you aren't supposed to be able to use it again.
The logic conclusion of the 4 assumptions above is that ION is flawed: it can't provide the key rotation it says it can if it is not a blockchain.
See also
-
@ 7f6db517:a4931eda
2025-06-09 23:02:35For years American bitcoin miners have argued for more efficient and free energy markets. It benefits everyone if our energy infrastructure is as efficient and robust as possible. Unfortunately, broken incentives have led to increased regulation throughout the sector, incentivizing less efficient energy sources such as solar and wind at the detriment of more efficient alternatives.
The result has been less reliable energy infrastructure for all Americans and increased energy costs across the board. This naturally has a direct impact on bitcoin miners: increased energy costs make them less competitive globally.
Bitcoin mining represents a global energy market that does not require permission to participate. Anyone can plug a mining computer into power and internet to get paid the current dynamic market price for their work in bitcoin. Using cellphone or satellite internet, these mines can be located anywhere in the world, sourcing the cheapest power available.
Absent of regulation, bitcoin mining naturally incentivizes the build out of highly efficient and robust energy infrastructure. Unfortunately that world does not exist and burdensome regulations remain the biggest threat for US based mining businesses. Jurisdictional arbitrage gives miners the option of moving to a friendlier country but that naturally comes with its own costs.
Enter AI. With the rapid development and release of AI tools comes the requirement of running massive datacenters for their models. Major tech companies are scrambling to secure machines, rack space, and cheap energy to run full suites of AI enabled tools and services. The most valuable and powerful tech companies in America have stumbled into an accidental alliance with bitcoin miners: THE NEED FOR CHEAP AND RELIABLE ENERGY.
Our government is corrupt. Money talks. These companies will push for energy freedom and it will greatly benefit us all.
Microsoft Cloud hiring to "implement global small modular reactor and microreactor" strategy to power data centers: https://www.datacenterdynamics.com/en/news/microsoft-cloud-hiring-to-implement-global-small-modular-reactor-and-microreactor-strategy-to-power-data-centers/
If you found this post helpful support my work with bitcoin.
-
@ 4b3b215f:b091b1f9
2025-06-09 20:21:56Actualizado: Agosto 10, 2024
⚠️ Advertencia: Esta guía tiene el objetivo de proporcionar información educativa sobre cómo empezar a aceptar Bitcoin en tu negocio. No se ofrece ni se vende ningún servicio relacionado con Bitcoin. Es esencial que sepas que NO DEBES confiar en terceros que te ofrezcan productos o servicios relacionados con Bitcoin, ya que el uso y la gestión de Bitcoin deben ser autónomos y soberanos.
Recuerda: ¡Bitcoin es tu camino hacia la libertad financiera! No confíes en terceros que te ofrezcan productos o servicios para aceptar o utilizar Bitcoin. Bitcoin es dinero, y no necesitas a nadie más para comenzar a usarlo.
¡No aceptes ni pagues por servicios de Bitcoin, tú puedes hacerlo por ti mismo!
¡No confíes, verifica! ₿
¿Qué es Bitcoin?
Bitcoin es una forma de efectivo electrónico entre pares, una moneda digital que puede transferirse entre personas o computadoras sin necesidad de intermediarios confiables como los bancos. A diferencia de los pagos tradicionales que requieren servicios intermedios como tarjetas de crédito o plataformas de pago digital, Bitcoin permite transacciones directas entre usuarios, preservando así la privacidad y la independencia financiera. Es una alternativa descentralizada al dinero digital controlado centralmente, ofreciendo seguridad y autonomía a sus usuarios.
Además, Bitcoin ofrece una solución a la dependencia de sistemas de pago digitales centralizados, los cuales pueden ser utilizados para el control y la vigilancia gubernamental. Al utilizar una red de computadoras interconectadas, Bitcoin garantiza la verificación independiente de las transacciones y la aplicación de reglas consensuadas, lo que permite un sistema de pagos más transparente y resistente a la censura.
¿Qué es Lightning? ⚡️
La red lightning (Lightning Network) es una red global de pagos de Bitcoin que ofrece transacciones instantáneas, privadas y de bajo o nulo costo. Propuesta en 2015, permite transacciones de Bitcoin más rápidas, económicas y privadas fuera de la cadena de bloques de Bitcoin. Es lo que se conoce como una tecnologîa de capa 2 (L2), con Bitcoin siendo la capa 1 (L1).
A diferencia de las redes bancarias tradicionales, lightning network ofrece liquidación instantánea, sin contracargos y utiliza Bitcoin como su activo subyacente. Aborda un desafío clave para Bitcoin al permitir la escalabilidad para un gran número de usuarios que realizan numerosos pagos.
Esta innovadora red de pagos es sin fronteras, abierta, económica e instantánea, ofreciendo pagos instantáneos, económicos e interoperables en todo el mundo. Los pagos enrutados a través de Lightning se mueven a la velocidad de la luz y son definitivos al llegar, eliminando los retrasos y riesgos asociados con los métodos de pago tradicionales.
*Una poderosa analogía para explicar cómo funciona el Lightning Network.
¿Qué hay de todos estos hacks y quiebras de intercambios?
La base de datos de la cadena de bloques de Bitcoin nunca ha sido hackeada. En sus 15 años de existencia, Bitcoin ha demostrado ser el sistema digital más seguro del mundo y el sistema monetario más confiable jamás inventado. Nunca se ha emitido moneda falsa en la red.
La seguridad de Bitcoin radica en su naturaleza descentralizada. Opera a través de una red de computadoras, llamadas nodos, que se comunican para construir y actualizar la base de datos. Cada nodo almacena una copia de la cadena de bloques, lo que hace virtualmente imposible que los hackers comprometan toda la red. Además, Bitcoin permite a los usuarios mantener sus fondos de forma segura en billeteras personales, reduciendo el riesgo asociado con los exchanges (Intercambios) de terceros. Si dejas tus bitcoins en un intercambio o con cualquier tercero, estás asumiendo un riesgo enorme que, para pequeñas cantidades, puede ser razonable a cambio de conveniencia. Pero piénsalo muy bien.
Si bien Bitcoin opera principalmente a través de internet, incluso en casos de interrupciones de internet, la cadena de bloques permanece intacta. Los nodos continúan almacenando los bloques, asegurando la seguridad y la integridad del sistema. Mientras haya por lo menos un nodo conectado, Bitcoin seguira operando sin interrupciones, es decir, para que Bitcoin deje de funcionar, tendria que caerse el internet en todo el mundo al mismo tiempo, lo cual es poco probable. En caso de una divergencia de red, los nodos pueden reconciliarse y acordar cuál es la cadena de bloques objetivamente más válida a seguir, manteniendo la robustez y seguridad de Bitcoin.
¿Por qué Debería Mi Negocio Aceptar Bitcoin?
En primer lugar, para atraer Bitcoiners. Los Bitcoiners son leales y están altamente motivados a buscar negocios que acepten Bitcoin. Con Bitcoin, puedes recibir pagos las 24 horas del día, los 7 días de la semana, los 365 días del año, sin la necesidad de esperar por días hábiles. Además, no hay contracargos y las tarifas de transacción son muy bajas o casi nulas gracias a la red Lightning.
Bitcoin es Bueno para los Negocios
Bitcoin te permite recibir pagos directamente de tus clientes, al igual que el efectivo. La red Bitcoin opera sin intermediarios como bancos y compañías de tarjetas de crédito, evitando las tarifas elevadas asociadas. Los pagos con Bitcoin se liquidan instantáneamente gracias a la red Lightning, eliminando la espera en comparación con los métodos tradicionales. Además, al ocurrir directamente entre tú y tus clientes, es imposible que alguien te quite el dinero mediante un contracargo. Además, el Bitcoin falsificado no puede ser enviado en la red Bitcoin, lo que asegura la integridad de las transacciones y protege a tu negocio de fraudes financieros.
Al aceptar Bitcoin, atraes más clientes, ya que millones de personas poseen Bitcoin y desean gastarlo en lugares que lo acepten.
Aceptar Bitcoin es completamente gratuito y te brinda la oportunidad de aparecer en mapas de comerciantes de Bitcoin, lo que facilita que los usuarios encuentren tu negocio con facilidad.
Pero, Bitcoin no está regulado. ¿Cómo puedo declarar impuestos si acepto Bitcoin en mi negocio?
Muy bien, antes de comenzar, déjame decirte que el no estar regulado es una cualidad, no un defecto. Bitcoin no lo controla nadie, pero es de todos y está disponible para cualquiera que desee usarlo sin necesidad de pedir permiso. Bitcoin no necesita permiso!
Estamos hablando de una forma superior de dinero y la mejor tecnología de ahorro jamás inventada por los humanos. Aceptar Bitcoin es como recibir efectivo: simplemente registras la venta y te llevas el dinero en efectivo a casa. ¿Acaso cuando recibes efectivo, le tomas fotografías a los billetes para enviárselas al gobierno? Eso pensé.
Bitcoin representa la separación entre el estado y el dinero; no es necesario que el estado sepa cuántos Bitcoin tienes. Si un amigo fuera a tu negocio de hamburguesas y te pagara con canicas, ¿le avisarías al gobierno que tu amigo te ha pagado con canicas? Probablemente no. Registra la venta como efectivo en tus libros contables y guarda tu Bitcoin. Es TU dinero, y tienes derecho a mantenerlo privado.
Se recomienda que cuando poseas un saldo importante de Bitcoin, lo retires a una billetera fría. Imagina que recibes efectivo todo el día en tu negocio; al final del día, ¿dejarías todo ese dinero en la caja? Probablemente no sería una buena idea. Muchos negocios retiran su efectivo al final del día o de la semana y lo depositan en un banco o en una caja fuerte en algún lugar seguro. Haz lo mismo con tu Bitcoin: una vez que tengas un saldo mayor del que llevarías cómodamente en el bolsillo, retíralo a una billetera fría.
Bitcoin ES dinero. No es una divisa, ni una inversión, ni acciones, y mucho menos "sujeto a impuestos". Los impuestos son un robo, punto. No importa lo que tu gobierno te diga: Bitcoin es simplemente dinero.
Si no sabes la diferencia entre el dinero y una divisa (Money and Currency), te invito a revisar la siguiente imagen.
Para todos los "amantes de los impuestos" que vienen a decir "Pero el gobierno regulará Bitcoin" o "El gobierno le impondrá impuestos a mi Bitcoin", solo les digo: ¡Pon tu mierda en orden! El dinero no está sujeto a impuestos, punto.
Si realmente deseas utilizarlo para fines comerciales y por tu propia tranquilidad mental, en tus libros contables, decláralo como "ingreso en efectivo". Así de simple: no es asunto del gobierno saber qué tipo de "efectivo" posees. No es asunto suyo lo que haces con tu dinero.
¿Cuál es la diferencia entre billeteras custodiales y no custodiales?
Cuando se trata de billeteras de Bitcoin, hay dos tipos principales: custodiales y no custodiales.
Las billeteras custodiales son como tener tu dinero en un banco. Confías en el proveedor de la billetera para mantener seguro tu Bitcoin y manejar todo por ti. Es conveniente y rápido, especialmente para cantidades pequeñas, pero recuerda, no tienes control total sobre tu Bitcoin. Estás confiando en el proveedor de la billetera para gestionarlo por ti.
Por otro lado, las billeteras no custodiales te dan control total. Tienes tus propias claves y puedes hacer una copia de seguridad de tu billetera. Esto significa que tú eres quien controla tu Bitcoin y puedes moverlo como quieras. Es como guardar efectivo en tu propia caja fuerte en casa. Recuerda, en una billetera no custodial, tú eres el único responsable de tus Bitcoins. Si pierdes u olvidas tus claves (llaves), nadie podrá ayudarte.
Si bien las billeteras custodiales están bien para empezar y para cantidades pequeñas, te recomendamos continuar con tu educación sobre Bitcoin y, eventualmente, pasar a una solución no custodial. Esto te da más control, soberanía, y seguridad sobre tu Bitcoin a largo plazo. Así que, comienza con una billetera custodial como Blink o Wallet Of Satoshi para familiarizarte con Bitcoin, pero apunta a cambiar a una billetera no custodial una vez que te sientas cómodo y listo.
Cómo Aceptar Pagos en Bitcoin
Todo lo que necesitas para aceptar pagos en Bitcoin es una billetera como Blink. Por otro lado, con una billetera híbrida como Wallib, puedes convertir automáticamente los pagos de Bitcoin que recibes a COP.
También puedes optar por ahorrar y mantener una parte de los pagos en Bitcoin, lo que ofrece muchos beneficios a largo plazo.
Ahorra en Bitcoin.
1) Descarga la aplicación:
Bitcoin es una red abierta y hay muchas aplicaciones (wallets) que te permites enviar, recibir, y guardar Bitcoin. Para comenzar, te recomendamos la aplicación Blink Wallet.
Al final de esta guía hay una lista de wallets (billeteras) recomendadas. Pero recuerda, no creas todo lo que lees y haz tu propia investigación.
2) Crea una cuenta:
Una vez que descargues la app, deberas ingresar tu numero de teléfono para registrarte, ya que Blink es una billetera custodial. Pero descuida, no debes dar datos personales adicionales para crear una cuenta.
Una vez ingreses tu teléfono, recibirás un mensaje de texto con un código que deberas ingresar para terminar con el proceso de verificación.
Cuando este configurada, veras la pantalla principal donde está tu balance, tus transacciones, etc. Explora la aplicación y familiarizarte con todas sus opciones.
3) Recibir y enviar Bitcoin:
Ya estas listo para recibir Bitcoin de cualquier persona y desde cualquier lugar, sin importar que aplicacion de lightning usen. Al instante y casi gratis. Esta es la maravilla de la red lightning de Bitcoin!
Aceptar Bitcoin en Persona y en Línea
Aceptar pagos en Bitcoin, ya sea en persona o en línea, es sencillo utilizando tu billetera. Puedes integrar Bitcoin como opción de pago en tu tienda en línea o utilizar la función de "recibir" en tu billetera para recibir pagos en persona. Además, puedes compartir la dirección de pago a través de plataformas como WhatsApp, Instagram, etc.
Cómo Atraer Más Clientes Aceptando Bitcoin
Millones de usuarios de Bitcoin desean gastar sus bitcoins en negocios que los acepten. Al aceptar Bitcoin, puedes aparecer en mapas de comerciantes de Bitcoin como BTC Map de forma gratuita y aumentar tu exposición a nuevos clientes potenciales.
Costo de Aceptar Bitcoin
Aceptar Bitcoin en tu negocio es 100% gratuito. No hay contratos ni tarifas ocultas. No confíes en terceros que te ofrezcan productos o servicios para aceptar o utilizar Bitcoin. Bitcoin es dinero, y no necesitas a nadie más para comenzar a usarlo.
Acepta Bitcoin Ahora! ⚡️
A continuación, algunas billeteras, apps y herramientas que recomendamos.
Billeteras Custodiales
Blink - Billetera móvil de Bitcoin y Lightning
Wallet Of Satoshi - Billetera móvil de Bitcoin y Lightning
Sati - Billetera de Bitcoin y Lightning en WhatsApp
CoinOS - Billetera web (BTC/LN/Liquid)
Alby - Extensión de explorador y web
Billeteras No Custodiales
Phoenix - Billetera móvil de Lightning
Blue Wallet - Billetera móvil y de escritorio de Bitcoin y Lightning.
Green Wallet - Billetera móvil y de escritorio de Bitcoin y Lightning (beta) para principiantes.
Sparrow - Billetera de escritorio solo de Bitcoin (L1 - onchain)
Electrum - Billetera móvil y de escritorio de Bitcoin y Lightning.
Zeus LN - Nodo móvil y billetera de bitcoin y lightning para usuarios avanzados.
Blixt Wallet - Nodo móvil y billetera de Bitcoin y Lightning para usuarios avanzados.
Lecturas Recomendadas
- "La Tesis Alcista de Bitcoin” por Vijay Boyapati [Lectura]
- "Bitcoin: ¿qué, cómo y para qué?” de Franco Amati [Lectura]
- “El Patrón Bitcoin” por Saifedean Ammous [Lectura]
Más Recursos
-
@ 623893fc:f8e3eaad
2025-06-09 22:32:00testing something
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28rosetta.alhur.es
A service that grabs code samples from two chosen languages on RosettaCode and displays them side-by-side.
The code-fetching is done in real time and snippet-by-snippet (there is also a prefetch of which snippets are available in each language, so we only compare apples to apples).
This was my first Golang web application if I remember correctly.
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28Thoughts on Nostr key management
On Why I don't like NIP-26 as a solution for key management I talked about multiple techniques that could be used to tackle the problem of key management on Nostr.
Here are some ideas that work in tandem:
- NIP-41 (stateless key invalidation)
- NIP-46 (Nostr Connect)
- NIP-07 (signer browser extension)
- Connected hardware signing devices
- other things like musig or frostr keys used in conjunction with a semi-trusted server; or other kinds of trusted software, like a dedicated signer on a mobile device that can sign on behalf of other apps; or even a separate protocol that some people decide to use as the source of truth for their keys, and some clients might decide to use that automatically
- there are probably many other ideas
Some premises I have in my mind (that may be flawed) that base my thoughts on these matters (and cause me to not worry too much) are that
- For the vast majority of people, Nostr keys aren't a target as valuable as Bitcoin keys, so they will probably be ok even without any solution;
- Even when you lose everything, identity can be recovered -- slowly and painfully, but still --, unlike money;
- Nostr is not trying to replace all other forms of online communication (even though when I think about this I can't imagine one thing that wouldn't be nice to replace with Nostr) or of offline communication, so there will always be ways.
- For the vast majority of people, losing keys and starting fresh isn't a big deal. It is a big deal when you have followers and an online persona and your life depends on that, but how many people are like that? In the real world I see people deleting social media accounts all the time and creating new ones, people losing their phone numbers or other accounts associated with their phone numbers, and not caring very much -- they just find a way to notify friends and family and move on.
We can probably come up with some specs to ease the "manual" recovery process, like social attestation and explicit signaling -- i.e., Alice, Bob and Carol are friends; Alice loses her key; Bob sends a new Nostr event kind to the network saying what is Alice's new key; depending on how much Carol trusts Bob, she can automatically start following that and remove the old key -- or something like that.
One nice thing about some of these proposals, like NIP-41, or the social-recovery method, or the external-source-of-truth-method, is that they don't have to be implemented in any client, they can live in standalone single-purpose microapps that users open or visit only every now and then, and these can then automatically update their follow lists with the latest news from keys that have changed according to multiple methods.
-
@ 97c70a44:ad98e322
2025-06-06 20:48:33Vibe coding is taking the nostr developer community by storm. While it's all very exciting and interesting, I think it's important to pump the brakes a little - not in order to stop the vehicle, but to try to keep us from flying off the road as we approach this curve.
In this note Pablo is subtweeting something I said to him recently (although I'm sure he's heard it from other quarters as well):
nostr:nevent1qvzqqqqqqypzp75cf0tahv5z7plpdeaws7ex52nmnwgtwfr2g3m37r844evqrr6jqy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yh8qunfd4skctnwv46z7qg6waehxw309ac8junpd45kgtnxd9shg6npvchxxmmd9uqzq0z48d4ttzzkupswnkyt5a2xfkhxl3hyavnxjujwn5k2k529aearwtecp4
There is a naive, curmudgeonly case for simply "not doing AI". I think the intuition is a good one, but the subject is obviously more complicated - not doing it, either on an individual or a collective level, is just not an option. I recently read Tools for Conviviality by Ivan Illich, which I think can help us here. For Illich, the best kind of tool is one which serves "politically interrelated individuals rather than managers".
This is obviously a core value for bitcoiners. And I think the talks given at the Oslo Freedom Forum this year present a compelling case for adoption of LLMs for the purposes of 1. using them for good, and 2. developing them further so that they don't get captured by corporations and governments. Illich calls both the telephone and print "almost ideally convivial". I would add the internet, cryptography, and LLMs to this list, because each one allows individuals to work cooperatively within communities to embody their values in their work.
But this is only half the story. Illich also points out how "the manipulative nature of institutions... have put these ideally convivial tools at the service of more [managerial dominance]."
Preventing the subversion and capture of our tools is not just a matter of who uses what, and for which ends. It also requires an awareness of the environment that the use of the tool (whether for virtuous or vicious ends) creates, which in turn forms the abilities, values, and desires of those who inhabit the environment.
The natural tendency of LLMs is to foster ignorance, dependence, and detachment from reality. This is not the fault of the tool itself, but that of humans' tendency to trade liberty for convenience. Nevertheless, the inherent values of a given tool naturally gives rise to an environment through use: the tool changes the world that the tool user lives in. This in turn indoctrinates the user into the internal logic of the tool, shaping their thinking, blinding them to the tool's influence, and neutering their ability to work in ways not endorsed by the structure of the tool-defined environment.
The result of this is that people are formed by their tools, becoming their slaves. We often talk about LLM misalignment, but the same is true of humans. Unreflective use of a tool creates people who are misaligned with their own interests. This is what I mean when I say that AI use is anti-human. I mean it in the same way that all unreflective tool use is anti-human. See Wendell Berry for an evaluation of industrial agriculture along the same lines.
What I'm not claiming is that a minority of high agency individuals can't use the technology for virtuous ends. In fact, I think that is an essential part of the solution. Tool use can be good. But tools that bring their users into dependence on complex industry and catechize their users into a particular system should be approached with extra caution. The plow was a convivial tool, and so were early tractors. Self-driving John Deere monstrosities are a straightforward extension of the earlier form of the technology, but are self-evidently an instrument of debt slavery, chemical dependency, industrial centralization, and degradation of the land. This over-extension of a given tool can occur regardless of the intentions of the user. As Illich says:
There is a form of malfunction in which growth does not yet tend toward the destruction of life, yet renders a tool antagonistic to its specific aims. Tools, in other words, have an optimal, a tolerable, and a negative range.
The initial form of a tool is almost always beneficial, because tools are made by humans for human ends. But as the scale of the tool grows, its logic gets more widely and forcibly applied. The solution to the anti-human tendencies of any technology is an understanding of scale. To prevent the overrun of the internal logic of a given tool and its creation of an environment hostile to human flourishing, we need to impose limits on scale.
Tools that require time periods or spaces or energies much beyond the order of corresponding natural scales are dysfunctional.
My problem with LLMs is:
- Not their imitation of human idioms, but their subversion of them and the resulting adoption of robotic idioms by humans
- Not the access they grant to information, but their ability to obscure accurate or relevant information
- Not their elimination of menial work, but its increase (Bullshit Jobs)
- Not their ability to take away jobs, but their ability to take away the meaning found in good work
- Not their ability to confer power to the user, but their ability to confer power to their owner which can be used to exploit the user
- Not their ability to solve problems mechanistically, but the extension of their mechanistic value system to human life
- Not their explicit promise of productivity, but the environment they implicitly create in which productivity depends on their use
- Not the conversations they are able to participate in, but the relationships they displace
All of these dysfunctions come from the over-application of the technology in evaluating and executing the fundamentally human task of living. AI work is the same kind of thing as an AI girlfriend, because work is not only for the creation of value (although that's an essential part of it), but also for the exercise of human agency in the world. In other words, tools must be tools, not masters. This is a problem of scale - when tool use is extended beyond its appropriate domain, it becomes what Illich calls a "radical monopoly" (the domination of a single paradigm over all of human life).
So the important question when dealing with any emergent technology becomes: how can we set limits such that the use of the technology is naturally confined to its appropriate scale?
Here are some considerations:
- Teach people how to use the technology well (e.g. cite sources when doing research, use context files instead of fighting the prompt, know when to ask questions rather than generate code)
- Create and use open source and self-hosted models and tools (MCP, stacks, tenex). Refuse to pay for closed or third-party hosted models and tools.
- Recognize the dependencies of the tool itself, for example GPU availability, and diversify the industrial sources to reduce fragility and dependence.
- Create models with built-in limits. The big companies have attempted this (resulting in Japanese Vikings), but the best-case effect is a top-down imposition of corporate values onto individuals. But the idea isn't inherently bad - a coding model that refuses to generate code in response to vague prompts, or which asks clarifying questions is an example. Or a home assistant that recognized childrens' voices and refuses to interact.
- Divert the productivity gains to human enrichment. Without mundane work to do, novice lawyers, coders, and accountants don't have an opportunity to hone their skills. But their learning could be subsidized by the bots in order to bring them up to a level that continues to be useful.
- Don't become a slave to the bots. Know when not to use it. Talk to real people. Write real code, poetry, novels, scripts. Do your own research. Learn by experience. Make your own stuff. Take a break from reviewing code to write some. Be independent, impossible to control. Don't underestimate the value to your soul of good work.
- Resist both monopoly and "radical monopoly". Both naturally collapse over time, but by cultivating an appreciation of the goodness of hand-crafted goods, non-synthetic entertainment, embodied relationship, and a balance between mobility and place, we can relegate new, threatening technologies to their correct role in society.
I think in all of this is implicit the idea of technological determinism, that productivity is power, and if you don't adapt you die. I reject this as an artifact of darwinism and materialism. The world is far more complex and full of grace than we think.
The idea that productivity creates wealth is, as we all know, bunk. GDP continues to go up, but ungrounded metrics don't reflect anything about the reality of human flourishing. We have to return to a qualitative understanding of life as whole, and contextualize quantitative tools and metrics within that framework.
Finally, don't believe the hype. Even if AI delivers everything it promises, conservatism in changing our ways of life will decelerate the rate of change society is subjected to and allow time for reflection and proper use of the tool. Curmudgeons are as valuable as technologists. There will be no jobspocalypse if there is sufficient political will to value human good over mere productivity. It's ok to pump the breaks.
-
@ b17fccdf:b7211155
2025-06-09 19:17:52
Check out the MiniBolt guide -> HERE <-
- Core guides
- System
- Bitcoin
- Bitcoin client (Bitcoin Core)
- Electrum server (Fulcrum)
- Blockchain explorer (BTC RPC Explorer)
- Desktop signing app (Sparrow Wallet)
- Lightning
- Lightning client (LND)
- Channel backup
- Web app (ThunderHub)
- Mobile app (Zeus)
- Bonus guides
- System bonus guide
- Dashboard & Appearance
- System Administration
- Install / Update / Uninstall common languages
- Databases
- Hardware
- Bitcoin bonus guides
- Electrum servers
- Signing apps
- Desktop
- Electrum Wallet Desktop
- Decentralized exchange
- Resilience
- Fun
- Payment processors
- Testnet
- Nostr bonus guides
- Relays
- Nostr relay in Rust
- Security bonus guides
- Authentication and Access Control
- SSH Keys
- Networking bonus guides
- VPN & Tunneling
- Resilience
🏗️ Roadmap | 🌐 Dynamic Network map | 🔧 Issues | 📥 Pull requests | 🗣️ Discussions
By ⚡2FakTor⚡
Last updated: 09/06/2025
-
@ 623893fc:f8e3eaad
2025-06-09 22:27:16testing some top secret business
-
@ 0b118e40:4edc09cb
2025-06-06 14:08:06The idea of Bitcoin as an internet native currency, and eventually a global one, is coming to life slowly. But historically, the idea of global currency has haunted the world’s financial imagination for nearly a century.
From Keynes’s Bancor in 1944 to Zhou Xiaochuan’s post-crisis proposal in 2009 to today’s renewed debates, the idea resurfaces every time the global economy fractures.
Could this time be different with Bitcoin?
I decided to trace the idea of global currency through several decades and books. I may have missed some parts, so feel free to add. I’ll keep this brief and leave the books I’ve read below.
In the beginning
It all started on July 1, 1944. 730 delegates from 44 Allied nations, including major powers like the US, UK, Soviet Union, China, and France, gathered at the Mount Washington Hotel in Bretton Woods, New Hampshire. They spent 2 weeks figuring out how the new international monetary and financial system would be, post WW2
After WW1, the treaty of Versailles was needed, but imposed harsh reparations that devastated economies and contributed to the rise of fascism, such as Hitler, Mussolini and gang.
So when folks met up in 1944 (WW2 was almost ending), the goal was to prevent another Great Depression, another global conflict and build a stable global economic order.
2 main proposals were discussed in Bretton Woods.
-
John Maynard Keynes, representing the UK, proposed the creation of a global currency called Bancor. It will be issued through a global central bank known as the International Clearing Union (ICU).
-
Harry Dexter White, representing the US, promoted a dollar-based system. Countries would peg their currencies to the US. dollar backed by gold. He also led the creation of the IMF and the World Bank.
To understand how both of these proposals work, let's look at an example.
-
Country A (Germany): Massive exporter
-
Country B (USA): Massive importer
-
Country C (Brazil): Balanced trade (imports = exports)
***Based on Dexter’s model and the current USD-based system, ***
Say Germany sells $1B worth of cars to the US. The US pays in dollars, increasing its trade deficit. Germany accumulates dollars as reserves or buys the US Treasury bonds. Over time, the US continues running trade deficits, while Germany keeps hoarding dollars. Hence the unsustainable debt of the US.
***In Keynes’s Bancor system, ***
If Germany sells $1B worth of cars to the US, then the US does not pay in dollars. Instead, the ICU credits Germany with 1B Bancors and debits the US with -1B Bancors.
The ICU police this. If Germany exceeds the surplus threshold, it pays interest or penalties to discourage hoarding. If the US exceeds its deficit threshold, it is warned to rebalance trade or face restrictions.
Here, Germany is incentivized to import more (e.g., from Brazil) or invest in global development. The US is encouraged to export more or reduce consumption. Brazil, with balanced trade, enjoys stability in Bancor flows and avoids pressure.
The idea behind Bancor was a zero-sum balancing act. No country could become “too big to fail” due to excessive deficits. But it was too complicated and idealistic in assuming every country could maintain balanced trade.
Dexter on the other hand had a few tricks up his sleeve. In the end, Dexter’s USD dominance proposal was adopted.
The Bretton Woods system established the US dollar as the central global currency
Why did dollar dominance win over Bancor?
Simplicity often wins over complexity. But more so ICU felt too centralized, asking nations to surrender economic autonomy to a global body. That didn’t sit well in a post-war world where sovereignty was non-negotiable. That and idealist economic trade balance views.
Dexter’s dollar-based system on the other hand wasn’t fair play at all. It was centralized and authoritarian in its design.
So how did Dexter pull it off?
They had gold. They were ahead in economic recovery.
And they had nuclear weapons.
At the time, the US held nearly 2/3 of the world’s gold reserves. It was a significant advantage in advocating for a gold-backed dollar as the bedrock of global trade.
The US proposed a fixed gold peg at $35 per ounce.
From a broader geopolitical backdrop, the global population in 1944 was about 2.3 billion, a fraction of today’s 8 billion. The world was far less interconnected. The war had devastated Europe, Russia, and much of Asia. Infrastructure, economies, and entire cities were in ruins. The US, by contrast, had faced far fewer casualties and damages. Being geographically isolated, it had minimal domestic losses, around a tenth of what Europe suffered, and its economy was poised to rebuild faster.
But gold dominance and economic recovery alone didn’t secure US financial dominance.
American scientific breakthroughs had already signaled global power. Physicists like Leo Szilard and Albert Einstein, who had fled Europe, helped develop nuclear weapons. Their intent was deterrence, not destruction. But once the bomb existed, it changed geopolitics overnight. The US had military dominance. And after Hiroshima and Nagasaki in 1945, it became the undisputed superpower.
In the end, the USD won and the vision for neutral global currency faded.
And 20 years passed on…
France sends its warship to the US
Under Bretton Woods, countries could exchange dollars for gold, but the US had been printing more dollars than it had gold to back it. And it used it to fund the costly Vietnam War and domestic programs like the Great Society under LBJ.
Belgian-American economist Robert Triffin pointed out a fatal flaw in the Bretton Woods system that came to be known as the Triffin dilemma.
-
The world needed US dollars for liquidity and trade.
-
But the more dollars the US pumped out, the less credible its gold promise became.
Yet the US kept promising that every dollar was still convertible to gold at $35 per ounce.
French President Charles de Gaulle saw this as financial imperialism. He called it the “exorbitant privileged position”. The world had to pay for what they bought with the money they have, but not the US.
So in 1965, France did something unexpected. It sent a warship to New York Harbor to physically retrieve French gold reserves held by the Federal Reserve.
Would it have escalated to war? Maybe. But likely not. It was perhaps more of a diplomatic theatre and a sovereign flex. France was exercising its right under the Bretton Woods agreement to convert dollars into gold. But doing it with military formality was to send a signal to the world that they don’t trust the US system anymore.
It was one of the first major public blows to the dollar’s credibility. And France wasn’t alone. Other countries like West Germany and Switzerland followed suit, redeeming dollars for gold and draining US reserves.
The Nixon shock
Given they did not have enough gold, the IMF introduced Special Drawing Rights (SDRs) in 1969. SDRs were an international reserve asset, created to supplement gold and dollar reserves. Instead of relying solely on the US dollar, SDRs were based on a basket of major currencies (originally gold-backed but later diversified).
The idea was to reduce the world’s dependence on the dollar and avoid a liquidity crisis. But SDRs were a little too late and a little too weak to solve the underlying problem.
By 1971, the US could no longer sustain the illusion. President Nixon “closed the gold window,” suspending dollar convertibility to gold.
The Bretton Woods collapsed and this marked the beginning of fiat money dominance.
The French pursuit
While France demanded justice in one corner of the world, the French franc, specifically the CFA franc, has been dominant in parts of Africa since 1945, long before 1971.
After WWII, France created two CFA franc zones:
-
West Africa: Communauté Financière Africaine (XOF)
-
Central Africa: Coopération Financière en Afrique Centrale (XAF)
These zones included 14 African countries, many of which were former French colonies. France maintained monetary control via currency convertibility guarantees and representation in African central banks. Till today it has influence over these country’s monetary policy.
Colonisation hasn't ended in some parts of the world.
Did countries stop using the USD after the Nixon shock 1971?
Nope. The US dollar was no longer convertible to gold and it dismantled the fixed exchange rate system. But most countries did not stop using the USD as their dominant reserve or trade currency. There were no decent alternatives. Instead, they floated their currencies or maintained a soft peg to the dollar or a basket of currencies.
The USD remained dominant in oil trade (OPEC priced oil in USD) - petrodollar deal, global debt markets and FX reserves (central banks kept holding USD).
In 1997, when many Southeast Asian countries were still pegged to the USD, Soros claimed that SEA will tank. The US further increased its credit rates leading to capital flight and eventual tanking of these countries leading to Asian Financial Crisis '97. Many financial crisis has similar vibe.
The 1999 Euro launch
The idea of a shared currency appeared again, this time through the forms of Euro. It was a mandatory system for member states of the Eurozone, and came with centralized authority, the European Central Bank (ECB), which controlled monetary policy for all participating nations.
At first glance, the euro seemed like a win. It eliminated exchange rate fluctuations, making trade within the Eurozone smoother. It gave weaker economies access to lower borrowing costs and helped Europe establish itself as a financial heavyweight. Today, the euro is the second most-used reserve currency after the US dollar.
But it came at a cost. Countries that adopted the euro lost monetary sovereignty and could no longer print their own money or adjust interest rates to respond to local crises. This became painfully clear during Greece’s debt crisis, where strict monetary policies prevented the country from devaluing its currency to recover. The one-size-fits-all approach meant that economies as different as Germany and Greece had to follow the same rules, often to the detriment of weaker nations. Debt-ridden countries like Italy and Spain were forced into harsh austerity measures because they could not manipulate their currency to ease financial strain. Meanwhile, richer nations like Germany and the Netherlands felt they were unfairly propping up struggling economies, creating political tension across the EU.
In recent years, the euro has faced pressure from global trade tensions, monetary tightening, and geopolitical instability contributing to market volatility and periodic depreciation against other major currencies.
The Bretton Woods 2.0
Believe it or not, after all that, there was a call for Bretton Woods 2.0. Yet another global currency dream.
When the housing market collapsed in 2008 followed by a series of domino effects, global banks froze lending, economies contracted, and panic set in. The crisis exposed how fragile the international financial system had become as it was overly reliant on debt, under-regulated, and centered around the US dollar.
Many countries, especially in the Global South and emerging markets, started to question whether a system built around a single national currency was sustainable.
China, for instance, had been holding huge amounts of US debt while the US printed more dollars through bailouts and quantitative easing. This created global imbalances as exporting nations were lending money to the US to keep the system running, while taking on the risk of dollar depreciation.
In 2009, China’s central bank openly proposed replacing the US dollar with a neutral global reserve currency suggesting SDRs (Special Drawing Rights) issued by the IMF instead.
These concerns led to a wave of calls from world leaders for a “Bretton Woods 2.0” , a modern rethinking of the post-WWII economic order. At G20 summits in London in 2009, countries like France, China, and Russia pushed for reforms in global financial institutions and more balanced power sharing.
In the end, the IMF received more funding, and some banking regulations were tightened in the years after. But no real overhaul happened. No surprise there? The dollar remained dominant.
The foundation of the global economy didn’t change, even though trust in it had been deeply shaken.
The growth of BRICS
In 2023, Brazil, Russia, India, China, and South Africa began discussing the idea of a shared currency or alternative mechanism to reduce the dependence on USD ie de-dollarisation. The sanctions on Russia didn't help. After Russia’s invasion of Ukraine, the US and its allies froze Russia’s dollar reserves and cut it off from SWIFT, the “backbone of global banking communication”. This made one thing clear. If you fall out with Washington, your access to the global economy can vanish overnight.
China’s growing economic power also gave it more leverage to process alternative options. It would trade in Yuan with Russia and Iran.
I know many still say it's at its early stage, but I see many countries hedging their bets quietly and aligning with Putin and Xi. It became more obvious after US imposed tariffs on multiple nations, signaling that economic tools can double as political weapons. The world’s second financial system is slowly forming.
What is the world looking for, for the last century ?
From Bretton Woods to multiple financial crises, from the birth of the Euro to the rise of BRICS, through war and peace, we’ve been circling around the same ideal. A global currency that is :
-
Simple
-
Free from dominant power
-
Decentralised
-
Borderless
-
Scarce
-
Transparent
-
Inclusive, with self custody
-
Resilient in crisis
-
Built for individual financial sovereignty
-
A new backbone for global finance, owned by no one
It doesn’t matter where you’re from, what politics you believe in, or how your economy leans. The answer keeps pointing in the same direction:
Bitcoin
This is the first true global currency.
And it’s just there
Waiting...
.
.
.
Some books that might interest you :
-
The Battle of Bretton Woods by Benn Steil
-
Goodbye, Great Britain by Kathleen Burk and Alec Cairncross
-
The Ghost of Bancor by Tommaso Padoa-Schioppa
-
Confessions of an Economic Hitman by John Perkins
-
The Blood Bankers by James S. Henry
-
-
@ cae03c48:2a7d6671
2025-06-07 06:01:19Bitcoin Magazine
Bitcoin Life Insurer, Meanwhile, Becomes First Company to Publish Audited Financials Denominated in BitcoinMeanwhile Insurance Bitcoin (Bermuda) Limited (“Meanwhile”) announced it has become the first company in the world to release externally audited financial statements denominated entirely in Bitcoin. According to the announcement, the company reported 220.4 BTC in assets and 25.29 BTC in net income for 2024, a 300% year over year increase.
Today marks a global first & historic event for us, along with the public release of our 2024 audited financial statements, covering our 1st year of sales.
As the 1st company in the world to have Bitcoin-denominated financial statements externally audited, we are excited to…
— meanwhile | Bitcoin Life Insurance (@meanwhilelife) June 5, 2025
“We’ve just made history as the first company in the world to have Bitcoin-denominated financial statements externally audited,” said Zac Townsend, CEO of Meanwhile. “This is an important, foundational step in reimagining the financial system based on a single, global, decentralized standard outside the control of any one government.”
The financial statements were audited by Harris & Trotter LLP and its digital asset division ht.digital. Meanwhile’s financials also comply with Bermuda’s Insurance Act 1978, noting that their BTC denominated financials were approved and comply with official guidelines. The firm, fully licensed by the Bermuda Monetary Authority (BMA), operates entirely in BTC and is prohibited from liquidating Bitcoin assets except through policyholder claims, positioning it as a long term holder.
“As the first regulated Bitcoin life insurance company, we view the BTC held by Meanwhile as inherently long-term in nature—primarily held to support the Company’s insurance liabilities over decades,” Townsend added. “This makes it significantly ‘stickier’ and resistant to market pressures compared to the BTC held by other companies as part of their treasury management strategies.”
Meanwhile’s 2024 financials also revealed 23.02 BTC in net premiums and 4.35 BTC in investment income, showing that its model not only preserves Bitcoin, but earns it. The company’s reserves (also held in BTC) were reviewed and approved by Willis Towers Watson (WTW).
Meanwhile also offers a Bitcoin Whole Life insurance product that allows policyholders to save, borrow, and build legacy wealth—entirely in BTC, and has plans to expand globally in 2025.
“We are incredibly proud of today’s news as it underscores how Meanwhile is at the forefront of the next phase of the convergence between Bitcoin and institutional financial markets,” said Tia Beckmann, CFO of Meanwhile. “Now having generated net income in BTC, we have demonstrated that we are earning it through a sustainable insurance business model designed for the long term.”
This post Bitcoin Life Insurer, Meanwhile, Becomes First Company to Publish Audited Financials Denominated in Bitcoin first appeared on Bitcoin Magazine and is written by Jenna Montgomery.
-
@ da8b7de1:c0164aee
2025-06-09 18:58:46Az IAEA Kormányzótanácsának ülése Bécsben
A Nemzetközi Atomenergia-ügynökség (IAEA) Kormányzótanácsa ma kezdte meg szokásos júniusi ülését Bécsben. A széles napirend olyan témákat ölel fel, mint a 2024-es éves jelentés, a technikai együttműködési tevékenységek, valamint a nukleáris biztonsággal, védettséggel és ellenőrzéssel kapcsolatos kulcskérdések. Az ülésen napirendre kerülnek többek között az iráni ellenőrzés és monitoring, az észak-koreai és szíriai ellenőrzés, az ukrajnai nukleáris biztonság – beleértve a zaporizzsjai atomerőmű helyzetét –, valamint az AUKUS-megállapodás keretében történő nukleárisanyag-átadás és annak ellenőrzése. A Kormányzótanács tárgyalja a tagállami képviseletet a 2025–2026-os időszakra, valamint a közelgő Közgyűlés előkészületeit is [iaea.org].
Nukleáris üzemeltetés és szakpolitikai fejlemények
Az elmúlt hetekben jelentős aktivitás volt tapasztalható a nukleáris üzemeltetés és szakpolitika terén világszerte. Az Egyesült Államokban a Nukleáris Szabályozási Bizottság további 20 évvel meghosszabbította a Duke Energy dél-karolinai Oconee atomerőmű három blokkjának üzemeltetési engedélyét. Michigan államban 56,8 millió dolláros hitelgaranciát hagytak jóvá a Palisades atomerőmű újraindításához.
Európában Belgium és Franciaország megállapodást kötött a Tihange 3 és Doel 4 reaktorok üzemidejének tízéves meghosszabbításáról, beleértve a radioaktív hulladék kezelésének rendezését is. Németország nukleáris technológiai szövetsége szerint akár hat leállított reaktor is technikailag újraindítható lenne, a nukleáris energiát biztonságos és klímabarát alternatívaként bemutatva.
Másutt Pakisztánban hivatalosan is átvették a kínai fejlesztésű Hualong One reaktort a Karacsi 3-as blokkban, míg Indiában hálózatra kapcsolták a Rajasthan Atomerőmű harmadik, saját fejlesztésű 700 MW-os nehézvizes reaktorát [world-nuclear-news.org].
Zaporizzsjai Atomerőmű: Folyamatos aggodalmak
Az ukrajnai Zaporizzsjai Atomerőmű továbbra is orosz katonai ellenőrzés alatt áll. Az erőmű igazgatója szerint 2027-ig minden blokk megkaphatja az orosz üzemeltetési engedélyt, azonban az ukrán Enerhoatom minden újraindítási tervet elítél, biztonsági előírásokra hivatkozva. Az IAEA főigazgatója megerősítette, hogy a szervezet kész támogatni bármilyen jövőbeni megállapodást az erőművel kapcsolatban, amely továbbra is központi téma az orosz-ukrán tűzszüneti tárgyalásokon [world-nuclear-news.org].
Új nukleáris projektek és technológiai innovációk
Világszerte fokozódik az érdeklődés az új nukleáris projektek iránt. India nukleáris hatósága jóváhagyta a négy blokkból álló Mahi Banswara Rajasthan Atomerőmű telephelyét. Kínában a fő turbinakomponenseket beépítették a Haiyang Atomerőmű 3-as blokkjában. Belgiumban megkezdődött egy ólom-hűtésű kis moduláris reaktor előzetes konzultációja, Brazília pedig egy orosz együttműködésű kis moduláris reaktor projektet vizsgál.
Az Egyesült Államokban az EnergySolutions és a WEC Energy Group új nukleáris létesítmény létesítését fontolgatja a wisconsini Kewaunee telephelyen, korai telephelyengedély megszerzését célozva. Kanadában a Prodigy Clean Energy befejezéséhez közeledik egy olyan szállítható atomerőmű tesztprogramja, amely súlyos baleseti és fenyegetettségi helyzeteknek is ellenáll [world-nuclear-news.org].
Iparági kilátások és befektetési trendek
Az iparági vezetők pozitív kilátásokról számolnak be a nukleáris energia terén: az Egyesült Államokban (pl. TerraPower Wyomingban, X-energy és Dow partnersége), valamint nemzetközi terjeszkedés (Westinghouse Lengyelországban) is aktív projektek zajlanak. A Világbank esetleges nukleáris projektek finanszírozásában való részvétele fordulópont lehet, amely szélesebb körű befektetéseket ösztönözhet. Az ágazatban optimizmus uralkodik a nukleáris energia jövőbeli szerepét illetően, amit a magánbefektetések és a szakpolitikai változások is támogatnak [ans.org].
Az amerikai nukleáris fegyverprogram mérföldköve
Az Egyesült Államok Energiaügyi Minisztériumának Nukleáris Biztonsági Nemzeti Igazgatósága (NNSA) bejelentette, hogy a tervezettnél korábban elkészült az első B61-13 típusú nukleáris gravitációs bomba. Ez a B61 bombacsalád legújabb változata, és a hidegháború óta a leggyorsabban fejlesztett és rendszerbe állított nukleáris fegyver [pantex.energy.gov].
-
@ 5d4b6c8d:8a1c1ee3
2025-06-06 11:01:44This week, on The Stacker Sports Podcast, we will mourn the loss of episode 34, but we'll also probably talk about new sports stuff.
For example, the NBA Finals got off to an amazing start. My "top 5 Hali" take is looking less and less dumb. Do we really believe in the Pacers yet, though?
We might also start our NBA off-season speculation. Which big stars are on the move? Which good teams are making big changes?
I actually did watch some of the NHL Finals game, but I didn't stay up for the end. Why are these games on so late?
Aaron Rodgers finally has a team for next season and the Steelers finally have a QB for next season. Does this match make sense?
@grayruby also has some hopium to share about why the 49ers big offseason acquisition will be much better than he was last year, when he "played for" the Super Bowl champs.
The Rockies are still historically bad, but they're no longer on pace to catch the Cleveland Spiders for the MLB record.
There might also be some MLB trade talk.
And, of course, we'll recap the ~Stacker_Sports contests.
What else do you want to hear about, stackers?
https://stacker.news/items/998734
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28lnurl-auth explained
You may have seen the lnurl-auth spec or heard about it, but might not know how it works or what is its relationship with other lnurl protocols. This document attempts to solve that.
Relationship between lnurl-auth and other lnurl protocols
First, what is the relationship of lnurl-auth with other lnurl protocols? The answer is none, except the fact that they all share the lnurl format for specifying
https
URLs.In fact, lnurl-auth is very unique in the sense that it doesn't even need a Lightning wallet to work, it is a standalone authentication protocol that can work anywhere.
How does it work
Now, how does it work? The basic idea is that each wallet has a seed, which is a random value (you may think of the BIP39 seed words, for example). Usually from that seed different keys are derived, each of these yielding a Bitcoin address, and also from that same seed may come the keys used to generate and manage Lightning channels.
What lnurl-auth does is to generate a new key from that seed, and from that a new key for each service (identified by its domain) you try to authenticate with.
That way, you effectively have a new identity for each website. Two different services cannot associate your identities.
The flow goes like this: When you visit a website, the website presents you with a QR code containing a callback URL and a challenge. The challenge should be a random value.
When your wallet scans or opens that QR code it uses the domain in the callback URL plus the main lnurl-auth key to derive a key specific for that website, uses that key to sign the challenge and then sends both the public key specific for that for that website plus the signed challenge to the specified URL.
When the service receives the public key it checks it against the challenge signature and start a session for that user. The user is then identified only by its public key. If the service wants it can, of course, request more details from the user, associate it with an internal id or username, it is free to do anything. lnurl-auth's goals end here: no passwords, maximum possible privacy.
FAQ
-
What is the advantage of tying this to Bitcoin and Lightning?
One big advantage is that your wallet is already keeping track of one seed, it is already a precious thing. If you had to keep track of a separate auth seed it would be arguably worse, more difficult to bootstrap the protocol, and arguably one of the reasons similar protocols, past and present, weren't successful.
-
Just signing in to websites? What else is this good for?
No, it can be used for authenticating to installable apps and physical places, as long as there is a service running an HTTP server somewhere to read the signature sent from the wallet. But yes, signing in to websites is the main problem to solve here.
-
Phishing attack! Can a malicious website proxy the QR from a third website and show it to the user to it will steal the signature and be able to login on the third website?
No, because the wallet will only talk to the the callback URL, and it will either be controlled by the third website, so the malicious won't see anything; or it will have a different domain, so the wallet will derive a different key and frustrate the malicious website's plan.
-
I heard SQRL had that same idea and it went nowhere.
Indeed. SQRL in its first version was basically the same thing as lnurl-auth, with one big difference: it was vulnerable to phishing attacks (see above). That was basically the only criticism it got everywhere, so the protocol creators decided to solve that by introducing complexity to the protocol. While they were at it they decided to add more complexity for managing accounts and so many more crap that in the the spec which initially was a single page ended up becoming 136 pages of highly technical gibberish. Then all the initial network effect it had, libraries and apps were trashed and nowadays no one can do anything with it (but, see, there are still people who love the protocol writing in a 90's forum with no clue of anything besides their own Java).
-
We don't need this, we need WebAuthn!
WebAuthn is essentially the same thing as lnurl-auth, but instead of being simple it is complex, instead of being open and decentralized it is centralized in big corporations, and instead of relying on a key generated by your own device it requires an expensive hardware HSM you must buy and trust the manufacturer. If you like WebAuthn and you like Bitcoin you should like lnurl-auth much more.
-
What about BitID?
This is another one that is very similar to lnurl-auth, but without the anti-phishing prevention and extra privacy given by making one different key for each service.
-
What about LSAT?
It doesn't compete with lnurl-auth. LSAT, as far as I understand it, is for when you're buying individual resources from a server, not authenticating as a user. Of course, LSAT can be repurposed as a general authentication tool, but then it will lack features that lnurl-auth has, like the property of having keys generated independently by the user from a common seed and a standard way of passing authentication info from one medium to another (like signing in to a website at the desktop from the mobile phone, for example).
-
-
@ 5d4b6c8d:8a1c1ee3
2025-06-06 03:04:19Alright stackers, how'd you do today?
What goals did you hit? What do you need to work on tomorrow?
I had another solid day, but I want to get more stretching in tomorrow.
https://stacker.news/items/998508
-
@ e2287c73:33911b46
2025-06-09 17:44:24Мы сражаемся за глобализм и Новый Мировой Порядок. За то, чтобы по красной площади гуляли голые мужики на каблуках, за 300 гендеров, за право наших детей сменить пол в 12 лет. За разврат и бездуховность. За Содом и Гоморру. За общество потребления. За индивидуализм и рыночек. За аборты и эвтаназию. За легализацию наркотиков, оружия и проституции. За то, чтобы в документах писалось "Родитель 1, Родитель 2" вместо "папа и мама". За секс-просвет с детского сада и gender studies. За гендерную-нейтральность. За развал России и образование на её месте либерально-сатанинско-атеистического государства под управлением прозападных глобалистов (желательно евреев). За западный неоколониализм. За то, чтобы бляди танцевали в церквях каждый день, ибо те будут переделаны в гей- и стрип-клубы, казино, публичные дома, на худой конец в ТЦшки. За то, чтобы кремль был переделан в диснейленд, а одним из аттракционов там было расстреливание икон из пневматической винтовки. Когда-то лапотные slave'янские дикари призвали варягов, чтобы те привили им цивилизацию и западные ценности. Так же и теперь мы должны призвать коллективный Запад чтобы он насадил сиволапой русне однополые браки, ГМО, феминизм, либерализм и прочие достижения высшей западной культуры, ценности истинных арийцев. Варяги - суть скандинавы, значит нужно принимать западные ценности и скандинавскую/арийскую толерастию, вот! (кроме некоторых леваческих заскоков/запретов).
Наше дело правое и мы победим, ибо будущее всегда побеждает прошлое, а прогресс - реакцию! Клянусь Айфоном, Рыночком, Макдаком и радужным знаменем! Мученики и бойцы могут быть уверены: гордые анархо-либеральные западники будут до последней капли крови сражаться против коммунизма, консерватизма, рашизма и всех видов реакционного мракобесия. Наша борьба будет продолжаться, пока власть от национальных государств не перейдёт к транснациональным корпорациям, и не будет построен Новый Мировой Порядок. Мы никогда не отступим! Мы победим! Да хранит Госдеп Великий Запад, неолиберализм, общество потребления, LGBTQIA+ , да возвеличит их. Тель хай! Все, кто встанет у нас на пути - пожалеют. И всех врагов свободы мы намотаем на гусеницы танков если будет нужно. Как говорила Валерия Ильинична: "Я лично правами человека накушалась досыта. Некогда и мы, и ЦРУ, и США использовали эту идею как таран для уничтожения коммунистического режима и развала СССР. Эта идея отслужила свое." Очевидно, что в такой мракобесной стране как Рваньсия, есть от силы 3% нормальных людей и 97% говна. Права - для 3% избранных, может для креативного класса, но точно не для мировоззренчески ущербных ватников, совково-пролетарской драни и черносотенной националистически-булкохрустной нечисти. Так что пусть сидят на жопе ровно и смотрят балет!
Философской основой для нашей политической позиции служит диалектический имморализм — человеконенавистническая ультралиберальная идеология право-прогрессивного толка. Это культ тотального неподчинения, философия радикальной свободы, аморального индивидуализма и техноглобального нигилизма против всех форм традиции, морали и запрета. (книга в закрепе)
Бездуховные треки, как авторские так и прочие - в разделе аудио. /GlobalistRussophobe - самый большой агрегатор бездуховности в интернете Авторские мемы в этом профиле, находятся по слову "ориджинал".
Голосуй за СОДОМ! Содом - в каждый дом! Смерть России! Ave Satan! Drang nach Osten!
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28A Causa
o Princípios de Economia Política de Menger é o único livro que enfatiza a CAUSA o tempo todo. os cientistas todos parecem não saber, ou se esquecer sempre, que as coisas têm causa, e que o conhecimento verdadeiro é o conhecimento da causa das coisas.
a causa é uma categoria metafísica muito superior a qualquer correlação ou resultado de teste de hipótese, ela não pode ser descoberta por nenhum artifício econométrico ou reduzida à simples antecedência temporal estatística. a causa dos fenômenos não pode ser provada cientificamente, mas pode ser conhecida.
o livro de Menger conta para o leitor as causas de vários fenômenos econômicos e as interliga de forma que o mundo caótico da economia parece adquirir uma ordem no momento em que você lê. é uma sensação mágica e indescritível.
quando eu te o recomendei, queria é te imbuir com o espírito da busca pela causa das coisas. depois de ler aquilo, você está apto a perceber continuidade causal nos fenômenos mais complexos da economia atual, enxergar as causas entre toda a ação governamental e as suas várias consequências na vida humana. eu faço isso todos os dias e é a melhor sensação do mundo quando o caos das notícias do caderno de Economia do jornal -- que para o próprio jornalista que as escreveu não têm nenhum sentido (tanto é que ele escreve tudo errado) -- se incluem num sistema ordenado de causas e consequências.
provavelmente eu sempre erro em alguns ou vários pontos, mas ainda assim é maravilhoso. ou então é mais maravilhoso ainda quando eu descubro o erro e reinsiro o acerto naquela racionalização bela da ordem do mundo econômico que é a ordem de Deus.
em scrap para T.P.
-
@ b83a28b7:35919450
2025-06-09 21:14:19I posted on nostr last week that I had finally had enough of the fiat job and decided to take action:
nostr:nevent1qvzqqqqqqypzpwp69zm7fewjp0vkp306adnzt7249ytxhz7mq3w5yc629u6er9zsqythwumn8ghj7un9d3shjtnswf5k6ctv9ehx2ap0qyghwumn8ghj7mn0wd68ytnhd9hx2tcqyr604hwzr8vvluvp8y0s42gu4x0e725cetugnh7g293g9cggtpujww6vn8n
I'm going to document my journey from being in a well-established and well-paying fiat job into the unknown world of independent work in freedom tech in a series of articles. Will I end up finding something truly inspiring and fulfilling, while being able to support my family? We'll find out over the course of the next few weeks.
They say a watched pot never boils, but I’ve discovered a corollary: a watched lay-off never lands. It has now been ten full rotations of this curious planet since I politely asked my SVP to lay me off. The axe remains lodged somewhere in upper-management limbo, perhaps awaiting the proper ceremonial robe or a Procrustean bed that meets quarterly OKR standards.
While the paperwork drifts in the stratosphere, I’ve begun a quiet, delicious rebellion. My calendar, once a Tetris board stacked with 10–12 neon bricks of back-to-back calls, now resembles minimalist art: a single meeting block lounging at 11 a.m., sipping espresso and judging the empty white space around it. When unreasonable requests for road-maps, slide-decks, or seventeen-page AI vision statements arrive, I respond with the calm of a mountain lake: That timeline seems ambitious... shall we refine the scope? The sound you hear is the collective gasp of colleagues who thought the only acceptable answer was Yes, by yesterday.
With those reclaimed hours I’ve slipped into my mad-scientist lab (occasionally also known as sofa in the guest bedroom, or Orange Room) to experiment on MKStack. Imagine a Lego set for nostr clients, only the bricks are pure code and half the instructions are written in the margin of a philosophy book. I’m vibecoding away, torching roughly thirty thousand sats in compute every day as GPUs hum like distant Tibetan bowls. An accountant might call it reckless; I call it tuition for the University of Possibility.
The experiments are already bearing odd fruit. NosFabrica, the health-data-on-nostr project I started with nostr:nprofile1qy2hwumn8ghj7etyv4hzumn0wd68ytnvv9hxgqgdwaehxw309ahx7uewd3hkcqpqt8pwzkkhhs94e9acgw9jwca9csyl7a4tnpdttu05039um5j7d6xskflc8d and nostr:nprofile1qy88wumn8ghj7mn0wvhxcmmv9uq3qamnwvaz7tmwdaehgu3wd4hk6tcqyprqcf0xst760qet2tglytfay2e3wmvh9asdehpjztkceyh0s5r9cpvx58v is finally getting the attention it deserves. I've built out a simple prototype for a provider directory, that only lists providers with a "credential" issued by me. I'm polishing the app now, but hope to release it for testing in the next couple of weeks.
Most gratifying of all, I’ve traded status meetings for sideline cheers. My 14-yo son is sprinting toward his final exams and soccer playoffs simultaneously - Hegel might call it thesis and antithesis, I call it Tuesday. Instead of doom-scrolling Microsoft Teams during his matches, I’m barking out instructions to him to stay onside, while curbing my desire to manhandle the incompetent refs for not calling a penalty when he's clearly being roughhoused in the box by 190-lb defenders with neck beards and chest hair.
Here’s an unexpected twist: without the daily psychic smog of corporate urgency, the sky inside my skull has cleared. Ideas that once flickered like fireflies now glow with stadium lighting. I have sketched three chapters of the sequel to 24 (called July 18), and outlined a new creative project called A Muse Stochastic (coming soon). I don’t know which, if any, of these seedlings will grow, but the soil finally feels fertile again.
Do I worry about the math? Of course. The household budget once kept afloat by a predictable salary will soon meet the iceberg of reality. Yet the anxiety is strangely weightless, as though the fear itself got furloughed. Maybe it’s naïveté, maybe faith; either way, the net I cannot see is starting to feel palpable beneath my feet.
Ten days in, the lessons are already crystallizing:
-
Silence is space. Remove a dozen meetings and the mind blooms faster than AWS bills.
-
Pushback is a spiritual practice. Each gentle “no” to nonsense is a “yes” to sanity.
-
Compute credits are cheaper than regrets. I’ll trade a double espresso's worth of GPU time for a shot at building the future any day.
-
Presence compounds. One extra hour on the training pitch yields more familial ROI than a dozen performance reviews.
-
Uncertainty is a mirror. Stare into it long enough and you start seeing yourself, not your résumé.
Where does this road lead? I genuinely have no clue. The map dissolves about three steps ahead, like one of those old adventure games where the terrain renders just before you walk off a cliff. But every time I inch forward, the ground materializes. The net appears.
Next week, perhaps I’ll report that the corporate guillotine finally fell, or that I’ve secured my first contract, or that my son aced biology while scoring the winning goal. Whatever unfolds, I’ll keep threading these reflections into the loom of “The Net Appears.” After all, an abyss is just an invitation to practice flight.
Until then, may your own invisible nets breeze into view exactly when you need them, and may they be woven from stronger stuff than corporate lanyards.
-
-
@ 2cde0e02:180a96b9
2025-06-05 21:45:00日本の姫
https://stacker.news/items/998335
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28A biblioteca infinita
Agora esqueci o nome do conto de Jorge Luis Borges em que a tal biblioteca é descrita, ou seus detalhes específicos. Eu tinha lido o conto e nunca havia percebido que ele matava a questão da aleatoriedade ser capaz de produzir coisas valiosas. Precisei mesmo da Wikipédia me dizer isso.
Alguns anos atrás levantei essa questão para um grupo de amigos sem saber que era uma questão tão batida e baixa. No meu exemplo era um cachorro andando sobre letras desenhadas e não um macaco numa máquina de escrever. A minha conclusão da discussão foi que não importa o que o cachorro escrevesse, sem uma inteligência capaz de compreender aquilo nada passaria de letras aleatórias.
Borges resolve tudo imaginando uma biblioteca que contém tudo o que o cachorro havia escrito durante todo o infinito em que fez o experimento, e portanto contém todo o conhecimento sobre tudo e todas as obras literárias possíveis -- mas entre cada página ou frase muito boa ou pelo menos legívei há toneladas de livros completamente aleatórios e uma pessoa pode passar a vida dentro dessa biblioteca que contém tanto conhecimento importante e mesmo assim não aprender nada porque nunca vai achar os livros certos.
Everything would be in its blind volumes. Everything: the detailed history of the future, Aeschylus' The Egyptians, the exact number of times that the waters of the Ganges have reflected the flight of a falcon, the secret and true nature of Rome, the encyclopedia Novalis would have constructed, my dreams and half-dreams at dawn on August 14, 1934, the proof of Pierre Fermat's theorem, the unwritten chapters of Edwin Drood, those same chapters translated into the language spoken by the Garamantes, the paradoxes Berkeley invented concerning Time but didn't publish, Urizen's books of iron, the premature epiphanies of Stephen Dedalus, which would be meaningless before a cycle of a thousand years, the Gnostic Gospel of Basilides, the song the sirens sang, the complete catalog of the Library, the proof of the inaccuracy of that catalog. Everything: but for every sensible line or accurate fact there would be millions of meaningless cacophonies, verbal farragoes, and babblings. Everything: but all the generations of mankind could pass before the dizzying shelves – shelves that obliterate the day and on which chaos lies – ever reward them with a tolerable page.
Tenho a impressão de que a publicação gigantesca de artigos, posts, livros e tudo o mais está transformando o mundo nessa biblioteca. Há tanta coisa pra ler que é difícil achar o que presta. As pessoas precisam parar de escrever.
-
@ bf47c19e:c3d2573b
2025-06-09 20:18:40Originalna diskusija na reddit.com iz juna 2025
"Sindrom poremećenosti zbog Bitkoina proističe iz niza zabrinutosti, od pitanja legitimnosti novca, straha da je reč o Ponzijevoj šemi, da je to trojanski konj strane države, da je pomama stvorena za špekulante, do zabrinutosti zbog uticaja rudarenja na životnu sredinu.
Simptomi sindroma poremećenosti zbog Bitkoina (BDS) uključuju odbacivanje svih pozitivnih aspekata povezanih s Bitkoinom uz neodoljivu potrebu da se on prikaže u negativnom svetlu. Sindrom izgleda kao rezultat postepene akumulacije ogorčenja i osećaja da su zakasnili s kupovinom Bitkoina.
Umesto da imaju poniznosti da priznaju da su pogrešili u vezi s Bitkoinom, oni sada posvećuju svoje vreme beznadežnim pokušajima napada na njega i zagovaranju njegovog neuspeha kako bi dokazali da su bili u pravu.
Nije važno ako se više pojedinaca pridruži Bitkoin mreži, ako se pridruže velike kompanije, male zemlje, niti ako globalna plaćanja učini efikasnijim i ako ga korisnici koriste po sopstvenoj volji; oboleli od BDS-a odbijaju da veruju da pojedinci mogu delovati samostalno, već to mora biti neki kult ili potreba za kockanjem.
Ne postoji nijedan argument koji bi mogao promeniti njihovo mišljenje". - The Bitcoin Manual
Diskusija tokom koje se autor posta usled svog neznanja, pogrešne informisanosti ili čak straha, nepovratno upleo "kao pile u kučine".
Mada moram priznati da su određeni delovi njegovog izlaganja, naročito tačke 7) i 8), najbolje reklame za Bitkoin koje bi svakog racionalnog ekonomskog aktera navele na dugoročnu akumulaciju ovog novog oblika novca. Koji razlozi mogu navesti racionalnog učesnika na tržištu koji sledi svoj interes da ignoriše Bitkoin kao novi oblik novca dok se nalazi u fazi svoje monetizacije?
U svojim odgovorima sam pokušao da mu otvoreno ukažem na apsurdnost i nelogičnost njegovih tvrdnji ali sam nailazio na prilično mršave odgovore koji su se više svodili na puko ponavljanje uobičajenih dezinformacija iz klasičnih medija nego autentično i nezavisno mišljenje ovog korisnika Reddita.
Na kraju sam prestao da odgovaram zato što je postalo besmisleno. Ovekovečićemo ga ovde na Nostru i prepustiti vremenu da bude sudija. Za desetak godina će ova debata završiti u sekciji "Retrovizor" pa će analiza sa decenijske distance biti izrazito zanimljiva.
Originalni post
-
Zagovornici bitkoina ga lažno predstavljaju kao rješenje za skoro sve probleme i nešto što će stvoriti nekakvu utopiju. Pritom vrše vrlo agresivnu i toksičnu propagandu. Troše svoj već prilično jak finansijski položaj na lobiranje i uticaj na vladu. Tako su uspjeli da Ameriku okrenu da postane žestoko pro-kripto.
-
Petljanje vlada u kripto svijet omogućava im da tempiraju pumpanje i dumpanje bitkoina (ali i drugih kriptovaluta), prethodno obavijstivši one koje žele da obavijeste, što bi vladi dalo još jedan mehanizam da finansijski nagradi one koji rade za nju razne stvari, ili prosto svoju insajdersku vrhušku, koja bi se time mogla bogati na račun svih ostalih.
-
Vlade su sve bliže tome da počnu koristiti novac poreskih obveznika za ulaganje u bitkoin.
-
Bitkoin se predstavlja kao rješenje problema inflacije, a to je samo djelimično tačno. Ako držiš bitkoin duže od 4 godine, bićeš u plusu - tako je bilo barem zasad. Međutim, na kraći rok oscilacije cijene bitkoina su ogromne. Pad od 80% u roku od godinu dana je normalna stvar. A to kad bi se prevelo na standardni ekonomski jezik u kome se priča o inflaciji značilo bi godišnju inflaciju od 400%. Znači bitkoin rutinski ima stopu inflacije od 400%, a vole da prozivaju fiat valute i za mnogo manju inflaciju tipa već od 5% do 10%, to im je kao mnogo.
-
Centralne banke generalno i Fed konkretno, sa svim svojim manama, i uz sve negativne epizode, kad je bila hiperinflacija, istorijski su ipak odigrale i još uvijek igraju pozitivnu ulogu: obezbjeđuju kakvu takvu stabilnost cijena i podstiču veću zaposlenost. To je taj dual mandat feda. Bez centralnih banaka i njihovih intervencija, ekonomske krize bi bile češće i oštrije, a kada se dese, ne bi bilo lakog izlaza iz istih. Trajale bi duže. Bitkoin se protiv centralnih banaka bori. (Ili se bar borio, a sad sve češće odustaje od svojih ideala i sarađuje sa tradicionalnim finansijskim sektorom - što meni ukazuje na to da ti ideali možda nikad nisu ni bili iskreni, već da se narativ prilagođava situaciji, a da je jedino bitno da se u svakom trenutku ima neki narativ koji bi opravdao "number goes up")
-
Jedan od glavnih motora moderne ekonomije je sistem frakcionalnih rezervi koji omogućava bankama da lako daju kredite po relativno povoljnim kamatnim stopama. To ponekad može zaista i dovesti do krize, kad se banke previše opuste, a računaju na Fed ili neku drugu centralnu banku da ih čupa ako upadnu u dubiozu. Tako je bilo 2008. Ali ne treba zbog jedne loše epizode odustati od cijelog tog sistema. Prisustvo jeftinih i lako dostupnih kredita sa niskim kamatnim stopama je jako bitna i povoljna za ekonomiju. Zamislite kad toga ne bi bilo, kad bi ljudi morali za svaku krupnu kupovinu da prvo uštede, pa da onda kupuju u kešu. Niko ne bi mogao kupiti stan prije 50. ili 60. godine. A šta će ti stan sa 50 ili 60 godina?! Porodica se zasniva mnogo ranije. Isto tako, mnoge firme ne bi mogle dobiti kredite za započinjanje ili proširenje poslovanja, što bi usporilo inovaciju i rast produktivnosti. Bitkoin standard koga zagovirnici zagovaraju, podrazumijevao bi mnogo skuplje i teže dostupne kredite, jer tu ne bi bilo mogućnosti za lako uvećavanje novčane mase. Samim tim to bi bilo vrlo nepovoljno za ekonomski rast.
-
Bitkoin bi izazvao i deflaciju cijena (izraženih u bitkoinu, pod pretpostavkom da on postane glavna valuta), koja je takođe vrlo nepovoljna za ekonomski rast. Evo primjera kakve je probleme deflacija svojevremeno izazvala u Japanu: Under deflation, the value of cash increases as time passes. In such a situation, Japanese companies began to cut wages, research and development, and other investments, opting to hold onto cash instead. This tendency, coinciding with the acceleration of the aging population, gradually diminished the competitiveness of the economy and the potential growth rate of the country. The Bank of Japan (BoJ) and the Japanese government has focused on halting the deflation and eventually achieving the 2% inflation target since the early 2000s. However, as deflation persisted, the traditional monetary policy of setting low interest rates to stimulate investment and consumption, which typically causes inflation, became ineffective. This ineffectiveness arose because a nominal rate of 0% effectively meant a positive real rate due to the increasing value of cash. This phenomenon is known as the zero lower bound.
-
Istovremeno, bitkoin (ali samo pod uslovom da bude na putu da postane glavna svjetska valuta) bi izazvao terminalnu inflaciju cijena u svim drugim valutama - tj. njihovu demonetizaciju. Kako bi se bitkoin sve više monetizovao, tako bi se ostale valute, ali i ostali asseti demonetizovali. To bi značilo ogroman transfer bogatstva od onih koji nemaju bitkoin ili kupe kasno, kao onima koji imaju, naročito onima koji imaju mnogo i koji su kupili rano po ekstremno niskoj cijeni. Znači bukvalno, rani vlasnici bitkoina bi se bogatili na račun svih ostalih. I to im je zapravo i cilj. To je jedini razlog zašto toliko promovišu bitkoin - svi ostali narativi, te borba protiv inflacije, te digitalno zlato, te ovo, te ono, su zapravo samo priče i racionalizacije, a poenta je da se nagovaraju svi da nastave kupovati bitkoin, kako bi oni koji su kupili ranije, još više uvećali svoje bogatstvo. Tu činjenicu da bi bitkoin doveo do osiromašivanja svih koji nisu vlasnici bitkoina, prepoznala je Evropska centralna banka u jednom svom članku. Citiraću samo relevantan dio: While most economists argue that the Bitcoin boom is a speculative bubble that will eventually burst, we analyse in this paper the impact of a Bitcoin-positive scenario in which its price continues to rise in the foreseeable future. What sounds intuitively promising or at least not harmful is problematic: Since Bitcoin does not increase the productive potential of the economy, the consequences of the assumed continued increase in value are essentially redistributive, i.e. the wealth effects on consumption of early Bitcoin holders can only come at the expense of consumption of the rest of society. If the price of Bitcoin rises for good, the existence of Bitcoin impoverishes both non-holders and latecomers. While previous discussions on the redistributive effects of Bitcoin assumed that badly timed trading was a necessary condition for losses, this paper shows that neither poor timing of trades nor holding Bitcoin at all are necessary for impoverishment under a Bitcoin-positive scenario.
-
To bi naravno uvećalo nejednakost u svijetu koja je ionako već sad ogromna, i prenijelo bi nejadnakost kakva vlada u samom bitkoin ekosistemu na cijeli svijet. A nejednakost koja vlada u bitkoin ekosistemu je toliko ekstremna da je to teško uopšte i zamisliti. Navešću samo par podataka (iz ovog izvora: bitinfocharts.com/top-100-richest-bitcoin-addresses.html ) 0,03% najbogatijih bitkoin adresa (ili brojem: 18.651 adresa), drže 60,93% cjelokupne količine bitkoina. Sad zamislite da bitkoin postane dominantan oblik bogatstva u svijetu. Znači manje od 20.000 ljudi bi držalo preko 60% kompletnog svjetskog finansijskog bogatstva. Drugi podatak: 23.835.989 najbogatijih bitkoin adresa drži 99,97% cjelokupne količine bitkoina. Ili prostim jezikom, 24 miliona adresa, drže praktično SAV BITKOIN. Nećemo se zamajavati sa onih preostalih 0,03% bitkoina. To se može slobodno zanemariti. Znači sve što ima bitkoina u svijetu je u rukama 24 miliona ljudi. (A od toga preko 60% u rukama manje od 20.000 ljudi). Gdje smi mi ostali u svemu tome? Nema nas!!! Šta je sa 8.2 milijarde ljudi u svijetu? Ništa! Ko ih j... 24 miliona je samo 0,29% svjetske populacije. Tako da ako bi bitkoin zavladao - 20.000 ljudi bi držalo većinu svjetskog finansijskog bogatstva, 24 miliona bi imalo neke kao mrvice, a svi ostali, ne bi praktično imali NIŠTA. Nula. Nada. Sad naravno, promoteri bitkoina će reći kako meni račun nije dobar, jer su neki od najvećih vlasnika bitkoina kripto berze i ETF fondovi, i firme kao Strategy, koje su u vlasništvu velikog broja ljudi, pa je zapravo, po njima distribucija mnogo bolja nego što se to čini. Donekle su u pravu. Ali samo donekle. Ti isti zagovornici će preskočiti činjenicu da postoje i procesi koji čine da je distribucija zapravo još gora nego što se čini. Šta ako mnogi krupni vlasnici (whale-ovi) drže svoj bitkoin, ne na jednoj, nego na više adresa? A to je vrlo česta strategija, jer se plaše, ako slučajno izgube pristup jednoj adresi, ili im neko hakuje wallet ili se nešto desi... izgubiće samo dio bogastva, jer su rasporedili svoj bitkoin na možda desetak i više različitih adresa. Tako da, mogao bi se napraviti i case, da je taj mali broj najbogatihih bitkoina adresa zapravo u rukama još manjeg broja ljudi. Obe tendencije su donekle tačne. Procjenjuje se da institucije, vlade, fondovi, firme i na kraju sam Satoshi Nakamoto, drže ukupno 43% ukupne količine bitkoina. I za tih 43% (osim Satošijevog dijela), bi se možda moglo pretpostaviti da imaju malo bolju distribuciju, jer jedna adresa pokriva veći broj ljudi. Preostalih 57% drže pojedinci. U tom dijelu što drže pojedinci, vjerovatno gotovo cjelokupnu količinu drže krupni vlasnici - whaleovi, a svi ostali neku mizeriju. Bilo kako bilo, raspodjela bogatstva u bitkoinu je ekstremno nejednaka, i ako bi bitkoin postao jedan od dominantnih svjetskih oblika bogatstva, ta nejednakost iz tog ekosistema bi se prelila na cijeli svijet, što bi bilo poprilično distopijski.
-
Ovih 9 tačaka su moje glavne kritike bitkoina, ali bi se na njih mogle dodati i još neke kao što su problem potrošnje struje (koji je ipak donekle riješen halving mehanizmom, i zato bitkoin neće nikad trošiti mnogo više struje nego sad), problem elektronskog otpada, širenje raznih scamova, ransom napadi, i generalno širenje vrlo problematičnog, materijalističkog pogleda na svijet u kome je bitkoin ultimativni statusni simbol (barem u toj zajednici koja za sebe kaže da je orange pilled), a grozničavo štekanje satošija (stacking sats) i držanje istih (hodling), postaje smisao života.
-
Na kraju iznosim kritiku, koja se odnosi na razloge koji će najvjerovatnije dovesti i do ultimativnog pada i kolapsa bitkoina, zbog čega ćemo, nadam se, izbjeći distopijske scenarije o kojima sam govorio u prethodnim tačkama. Naime, bitkoin, sam po sebi, nije ništa posebno. Komplikovan je, nezgodan za korištenje, online novčanici mogu da se hakuju, pare koje se drže na kripto berzama mogu da nestanu, da budu ukradene, transakcije se ne mogu stornirati, ako se zezneš pa pošalješ na pogrešnu adresu, nepovratno si se zezno. Transakcije su skupe i nisu instantne, a kako pada reward majnerima, u budućnosti će izgledno biti još i skuplje. Layer 2 rješenja kao što je Lightning, ne mogu u potpunosti da riješe scaling problem i nisu jednako pouzdane kao glavni blokčejn. Na kraju, glavni zvanični value proposition bitkoina, to da je on dobar "čuvar vrijednosti" u praksi se pokazao jako loše. Kao prvo, imovina koja redovno trpi pad cijene od 70-80% ne može nikako biti dobar čuvar vrijednosti, sve i da se ti gubici na kraju nadoknade (kao što je dosad bio slučaj). Kao drugo, na dugi rok, bitkoin da bi bio dobar čuvar vrijednosti, ljudi moraju trajno da nastave da mu pripisuju visoku vrijednost, i čitava mašinerija majnera i nodova mora da nastavi u nedogled, danonoćno da radi i troši struju, samo da bi bitkoin uopšte nastavio da postoji. To ga čini veoma, veoma, krhkim na dugi rok, i to znači da je on, recimo, u odnosu na zlato, na dugi rok, neuporedivo lošiji čuvar vrijednosti. Zlato jednom kad imaš, imaš ga... ne treba mu nikakvo održavanje, ne mora postojati čitava skupa i energetski intenzivna infrastruktura da ga podržava. Zlato je samodovoljno. Osim toga, zlato ima i određenu intrinzičku vrijednost koja znači da nikad neće biti besplatno, sve i kad bi se ljudi odlučili da štede u nečemu drugom. Zlato je faktički rijetko i dragocijeno i ne traži nikakvo održavanje. Bitkoin sve to nije. Nema nikakvu intrinzičku vrijednost, i sva mu vrijednost dolazi od one vrijednosti koju mu ljudi pripisuju. Pritom zahtijeva konstantno energetski intenzivno održavanje. I na kraju čemu sve to? Da bi ponudilo neku finansijsku uslugu lošeg kvaliteta, bez osiguranja, sa redovnim padovima od 80% itd... Ljudi budite ozbiljni. Niko zapravo ne drži bitkoin radi štednje i kao neki čuvar vrijednosti. Zvanični value proposition (store of value, digital gold), je obmana i šarena laža. Međutim, postoji PRAVI, nezvanični value proposition kod bitkoina, a to je "number goes up". To je JEDINI PRAVI RAZLOG ZAŠTO LJUDI ZAPRAVO KUPUJU BITKOIN. Taj value proposition, koji bismo mogli nazvati raznim imenima kao što su "number goes up", "to the moon", ili prosto "moon narrative" je osnovni razlog zašto ljudi kupuju bitkoin. A on ne može da traje vječno. Da bi raniji investitori mogli da nastave da profitiraju i da se bogate, moraju stalno ulaziti novi investitori i ulagati sve veće i veće količine novca. To funkcioniše kao piramidalna ili ponci šema (Iako se ne radi o bukvalnoj ponci prevari). Što je veća cijena bitkoina, to su veći ulozi potrebni da bi se ona mogla nastaviti pumpati. Već vidimo da je svaki novi četvorogodišnji ciklus sve slabiji i slabiji od onih prethodnih. Rast je sve sporiji. Bliži se trenutak u kome više niko neće vjerovati pričama da je još rano "We're so early", niti da se neko novi ko sad ulazi u to sve, od toga zaista može obogatiti. Samim tim "moon narrative" postaje sve manje i manje kredibilan. A kad moon narrativ padne, pada i bitkoin, jer je on zapravo sve vrijeme i bio njegov jedini pravi value proposition. Bitkoin nije dobar čuvar vrijednosti, nije user friendly, ne pruža nikakvo osiguranje, i niko ga ne bi kupovao bez tog moon narrativa, jer postoje mnogo bolji finansijski proizvodi koji omogućavaju mnogo brže i jeftinije transakcije, koje su pritom osigurane, i bolji store of value.
Dakle kao zaključak, bitkoin će ili uspijeti ili propasti. Ako uspije, izvjesno je da će dovesti do distopije, ekstremne nejednakosti i do mnogo lošijeg stanja ekonomije nego što je to danas slučaj.
Ipak, mislim da je mnogo veća šansa da će propasti jer je njegov jedini pravi value proposition, a to je moon narrative, matematički i fizički neodrživ, a postoje mnogo bolje alternative, ako gledamo na bitkoin kao na neku pravu finansijsku uslugu.
U tom padu bitkoina, neki će izaći na vrijeme, biti u plusu, neće biti trauma, neki će izaći prekasno, izgubiće dosta, neki će ući onda kad treba izaći, pa će izgubiti sve, itd... U svakom slučaju, to će biti dosta nezgodan period za vlasnike, i dovešće do mnogo razočarenja. Ali kad se to sve završi, svijet će postati malo mudriji i iskusniji, i ostavićemo iza sebe još jednu veliku finansijsku iluziju, koja je potencijalno mogla dovesti i do velike distopije.
Odgovori
@BTCSRB: Odgovoriću kratko samo na deo o navodnom negativnom uticaju na ekonomiju iz razloga što ljudi ne žele da troše novac kojem vremenom raste vrednost. Ovo je lažna ekonomska dilema. Zašto? Zato što se ova dilema postavlja samo ako imate previše fiat novca. Ako je jedini novac koji imate Bitkoin (što bi u slučaju hipotetičkog scenarija da je BTC glavna svetska valuta bila uobičajena praksa), ova dilema praktično ne postoji jer bi onda po definiciji stvari morali da trošite.
Jer ako je BTC sve što imate, onda nije dilema da li treba da trošite BTC već da li UOPŠTE treba da trošite?
Što se tiče nejednakosti raspodele Bitkoina, mislim da će biti prosvetljujuće da pročitaš ovaj tekst.
Da li je raspodela Bitkoina pravična?
Ako imamo novac rođen na slobodnom tržištu, u slobodnom društvu, koji treba da zameni fiat novac, onda on ne može biti ravnomerno raspoređen od samog početka dok istovremeno svi ljudi cene njegovu vrednost – nužno mora proći kroz period kada ga samo nekolicina ljudi vrednuje.
hn-mc: Zato po meni bitkoin i nema legitimitet.
Ako se pravi neka nova valuta, treba da svi mogu na početku da je kupe po istom kursu, i da svi istovremeno pređu na nju, kao što su Švabe zamjenile marku evrom, po fiksnom kursu.
Rađanje novca na slobodnom tržištu nije normalna stvar. Novac su uvijek ili plasirale države, ili je on bio prirodan, koji je već imao neku prirodnu raspodjelu, tipa začini, so, zlato, srebro.
A praviti vještački novac, i da pritom ti nisi nikakva vlast, i nuditi ga na početku nekima praktično za džabe, a da ga kasniji neki plaćaju sa 100.000 USD i više, to za moj pojam nema legitimitet da bude novac.
To mi više liči na skupljenje znački ili poštanskih markica, koje mogu igrom slučaja kod kolekcionara da dosegnu astronomsku vrijednost.
Nadam se da kontaš da nije normalno, da se neka nova valuta uspostavlja na način da se ljudi na nju prebacuju po ekstremno različitim uslovima.
Po meni da bi kripto imao neki legitimitet, mora postojati duži period na početku, tokom koga mora biti svima omogućeno da dobiju istu količinu, ili makar da plate po istoj cijeni, znači da uđu po istim uslovima.
Zato mi je recimo onaj projekat worldcoin dobar po pitanju raspodjele, jer bi tu svako dobio na početku istu količinu. Druga je stvar što mi se ne sviđa to što skeniraju oči, s tim distopijskim forama su upropastili dobru ideju po pitanju distribucije.
@BTCSRB: O svemu što si nabrojao su Bitkoineri odavno već diskutovali. Taj tekst sam danas preveo upravo zbog tvojih navoda. Taj hipotetički scenario je takođe razrađen u tekstu (koji evidentno nisi pročitao), šta bi se desilo kada bi svi istovremeno prešli na njega po istom kursu ali da ne postoji obaveza držanja i plaćanja poreza u tom novcu kao što je to slučaj sa fiat novcem (nemačkom markom)?
"Šta će se desiti? Neki ljudi će ga visoko vrednovati, a neki neće – ljudi koji ga visoko vrednuju kupiće ga od onih koji ga ne vrednuju. I šta nam onda ostaje? Mali deo sveta koji veruje u ovaj novac i sada poseduje većinu ponude.
Čekajte, zar nije upravo to slučaj sa Bitkoinom? Zar se ljudi nisu baš zbog toga žalili?
Kada je Bitkoin u pitanju, većina nas je imala otprilike jednak pristup početnim novčićima. Svi su mogli da rudare, a novčići su u početku bili gotovo bezvredni. Rani korisnici su trgovali troškovima električne struje, svojim vremenom i trudom u zamenu za novoizrudarene bitkoine."
Dakle, opet bismo došli na isto zato što bi ponovo veći deo novčića završio u rukama manjine koja je najviše u njega verovala.
Ponovo citiram:
"Drugim rečima, ponuditi ravnomernu raspodelu od samog početka je suštinski isto kao i ponuditi podjednake šanse za sticanje bitkoina.
Ako imamo novac rođen na slobodnom tržištu, u slobodnom društvu, koji treba da zameni fiat novac – onda on ne može biti ravnomerno raspodeljen od početka, a da ga svi ljudi istovremeno vrednuju. Neminovno mora proći kroz period kada ga samo nekolicina ljudi vrednuje."
Dakle, kako god okreneš, koliko god svima podelio istu količinu na početku, neminovno će doći do koncentracije vlasništva jer je nemoguće da svi vrednuju novi novac na isti način.
Da li se tebi čini nenormalnim da novac nastane na slobodnom tržištu je potpuno subjektivno.Činjenica je da se tako nešto sa Bitkoinom desilo, a ne da li je "normalno". A ni BTC nije prvi takav slučaj u istoriji jer su se neke druge stvari koristile kao novac pre zlata pa ih je zlato na slobodnom tržištu potisnulo kao kvalitetniji novac. Sami ljudi su prvi koristili zlato kao novac, tek nakon toga su vladari urezali svoj lik na kovanice i izdavali ih, a ne obrnuto. Oni koji su batalili perle i među prvima prešli na zlato su svakako mnogo bolje prošli od onih koji su tvrdoglavo držali perle do samog kraja.
Bitkoin niko nikome nije nudio "za džabe" pošto centralni izdavalac ne postoji, već je svako morao da ga rudari i da potroši određenu količinu energije. Zašto ti i ja nismo rudarili kada smo prvi put čuli za BTC? BTC košta koliko košta zato što se, kao što si i sam rekao, nalazi u fazi monetizacije pa je prirodno su rani korisnici profitirali više od kasnijih korisnika. Takav je slučaj istorijski bio i sa zlatom, npr. Kina je mnogo izgubila što se tvrdoglavo držala srebra kada su gotovo sve države usvojile zlatni standard.
I to zlato je krenulo kao "collectible" i nije odmah postalo novac već je imalo svoj razvojni put: 1) kolekcionarski predmet, 2) skladište vrednosti, 3) sredstvo razmene, 4) obračunska jedinica. Po mom dubokom uverenju se BTC nalazi u fazi broj 2.
To sa Worldcoinom je viđeno i kod nas: koliko ljudi još uvek drži one besplatne akcije Telekoma, NIS-a, Aerodoroma itd. Tako se npr. pokojni najbogatiji Čeh Petr Kelner obogatio jer je devedesetih otkupljivao vaučere tokom tamošnje privatizacije koje je u to vreme malo ko vrednovao, kao i važnost i buduću vrednost akcija tih preduzeća.
Worldcoin se, uprkos "pravičnoj distribuciji" nalazi na -90% od svoje rekordne vrednosti uz oko 1.6 milijardi novčića u opticaju što je samo mali deo ukupne buduće količine od 10 milijardi jedinica. Šta je dakle sa preostalim novčićima, kome će oni biti podeljeni i kako? Inflacija ponude tek predstoji pošto će se količina tog novčića u opticaju i više nego ušestostručiti. Zašto Wordlcoin ili neki drugi kripto nije dostigao ni blizu vrednosti Bitkoina ako je suština u "pravičnoj i ravnomernoj raspodeli"? Čak i Ethereum se na početku rudario i nije bio ravnomerno raspoređen pa je i dalje druga najvrednija kriptovaluta.
hn-mc: Fora je u tome što prelazak na novu valutu treba da bude javna i široko poznata stvar. 2009. niko nije znao za bitkoin osim malobrojne zajednice entuzijasta.
Takođe što se tiče ovoga "šta bi se desilo kada bi svi istovremeno prešli na njega po istom kursu ali da ne postoji obaveza držanja i plaćanja poreza u tom novcu kao što je to slučaj sa fiat novcem (nemačkom markom)?" - tvoj odgovor na to pitanje nije tačan iz prostog razlog što ako bi SVI na to prešli po istim uslovima, znači da bi on od starta imao većinsku podršku, i SVI ti koji su ušli po istim uslovima bi ga prilično jednako i vrednovali. Ne bi on tada završio u rukama neke manjine koja ga više vrednuje kao što ti pretpostavljaš.
Jer ljudi da nisu vjerovali u njega, ne bi ni prelazili na njega, prosto jednostavno.
Ja uvođenje neke alternativne valute koja bi bila ozbiljna i legitimna, zamišljam na način da se to unapred najavi, dobro izreklamira, da ljudi znaju za to, i da možda čak ima i neku instutucionalnu podršku na međunarodnom nivou, ako ne samih Ujedinjenih nacija, barem neke jake i kredibilne međunarodne organizacije, npr. Transparency International, ili nešto tog tipa. I taj period ulaska po istim uslovima bi morao trajati bar godinu dana, što bi vodilo stabilizovanju cijene.
E onda, nakon toga, kad ta godina prođe, naravno da bi došlo postepeno do fluktuacija cijene i raslojavanja, ali tad to ne bi bio problem, jer bi se moglo zaista pošteno reći da su svi ušli po približno istim uslovima, i bili obavješteni na vrijeme, i znali o čemu se radi, što kod bitkoina uopšte nije bio slučaj.
Npr. zbog odsustva regulative, nedostupnosti kripto berzi kod nas, itd... sve do 2015. kod nas je bilo to vrlo teško kupiti. Što se rudarenja tiče, na početku si morao za početak znati da to uopšte postoji. A čim se to malo proširilo više nisi mogao to raditi na običnom računaru, znači morao si raditi neka ulaganja ozbiljnija ako oćeš da rudariš.
Bitkoineri inače vole da pišu dugačke tekstove radi odbrane bitkoina, zaista se trude, i skidam im kapu na tome, ali neke stvari su prosto neodržive, i neodbranjive. Možeš prosto da kažeš, prihvatam to tako kako je, nemam s tim neki problem, moja je odluka da u to ulažem i kraj priče. I na to svak ima pravo, i ne mogu ja to nikome osporiti.
Ali imam i ja pravo da kritikujem.
I što se ovog tiče "Bitkoin niko nikome nije nudio "za džabe" pošto centralni izdavalac ne postoji, već je svako morao da ga rudari i da potroši određenu količinu energije."
U pravu su tehnički, ali praktično, neki su na osnovu sreće ili pravovremenih informacija mogli da ga dobiju mnogo ranije od nekih drugih...
Znači bitkoin nije ponudio do kraja čak ni "equality of opportunities", iako zagovornici tvrde da jeste. A sve i da jeste - to nije NI BLIZU rezultiralo onim što Englezi zovu "equality of outcomes"
@BTCSRB: A ko bi predložio, najavio ili naredio prelazak na novu valutu? I zašto? Ljudi koji kontrolišu svetski finansijski sistem sigurno nemaju interes da pokrenu tako nešto, a i da imaju, to bi radili isključivo zarad sopstvene koristi a ne radi dobrobiti čovečanstva (npr. prelazak na CBDC).
Prelazak na novu valutu istovremeno pod istim uslovima jednostavno nije moguć bez nekog vida prisile. Kao što se kaže u tekstu - nemoguće je da ga od starta svi podjednako vrednuju bez nekog oblika prinude. Dakle ostaje jedini način da takav novac iznedri slobodno tržište, a BTC je iznedren na način na kakav je iznedren. Spontano i organski kao "grassroot movement". I kao takav je neutralan, etički novac sa najboljim karakteristikama u poređenju sa svim drugim oblicima novca koje imamo.
Ljudi koji su verovali u njega su prešli na njega; oni koji nisu, nisu ni prešli. Prosto i jednostavno. Ali takvi sada kukaju što se njihova imovina obezvređuje prema BTC, a krivi su im Bitkoineri koji su prešli pre njih?! Isti Bitkoineri koji godinama na sva usta ukazuju na BTC dok su sve to vreme ismevani, vređani, cancellovani! Ako se neko ideološki ne slaže sa nastankom BTC-a ili njegovom distribucijom, nejednakošću bogatstva, sujetom zbog toga što misli da je zakasnio - to ga neće spasiti od neminovnog gubitka kupovne moći zato što nije prihvatio bolji novac. Isto kao što su srednjevekovni vitezovi možda mrzeli barut i vatreno oružje smatrajući ih neviteškim sredstvima ratovanja ali ih to nije spasilo od uništenja od strane onih koji su prihvatili barut kao superiornu tehnologiju
Ko bi najavio novu valutu, ko bi finansirao njeno reklamiranje i marketing? Da li zaista misliš da bi se međunarodne organizacije koje se nalaze pod kontrolom vladajućeg finansijskog establišmenta založile za neku novu valutu koja bi im ugrozila moć?
Zapitaj sebe kada si saznao za Bitkoin i koliko je vremena prošlo od tada? Zašto ga nisu kupio, zašto ga i danas ne kupuješ i šta ćeš misliti o današnjem trenutku i ovoj diskusiji kada jednog dna bude vredeo 1M USD? Da li ti se čini da je rano ako posmatraš u tom kontekstu? Ili samo posmatraš u kontekstu da si zakasnio jer ga nisi kupio na 100 USD ili 1000 USD? I opet vas nešto sprečava da počnete sa nekom štednjom u njemu, samo nemoj posle da bude da vam nismo pričali i kako nije fer.
BTC je po svemu superiorniji oblik novca od zlata, a ima trž. kapitalizaciju od oko 2T USD naspram zlata sa 22T USD. To ti je jedan od znakova pored puta gde ova stvar ide i da li je rano ili kasno.
Inače domaća menjačnica ECD postoji od 2012. godine, toliko o tome da li je u Srbiji bilo teško nabaviti ga.
Inače postoji zabluda o tome da su se rani korisnici nesrazmerno obogatili. Znaš i sam da je ogroman broj prerano prodao i izgubio ključeve i pristup novčićima. Uostalom, zašto bih se poredio sa drugima? Skidam kapu svima koji su ušli i razumeli stvar pre mene, od takvih sam i učio, ti rani korisnici su pisali prve vodiče, snimali podkaste, držali predavanja i predavali baklju sledećoj generaciji Bitkoinera. Nemam ni trunke zavisti prema njima, samo poštovanje i zahvalnost.
Možda i jedina stvar koju većinu ljudi deli od Bitkoina je ponajviše sujeta i čisto poricanje realnosti. Tek onda dolazi nezainteresovanost, neradoznalost ili tehnička nepotkovanost. Ali Bitkoineri nikad neće moći da kažu da nisu dali sve od sebe, pa ko razume - razume.
“If you don't believe me or don't get it, I don't have time to try to convince you, sorry.”
hn-mc: Nisam ja za btc saznao juče, pa da sad iz neke zavisti kukam kako su ga neki dobili skoro za dž, a sad ove nove generacije moraju plaćati 100k. Mada ni takvo razmišljanje ne bi bilo sasvim bez osnova, ako uzmeš npr. često ponavljanu mantru da "svako dobija bitkoin po cijeni koju je zaslužio". Ta mantra mi je, iskreno, mnogo arogantna i antipatična, jer ona potpuno ignoriše to, da mnogi nisu imali posla i para za ulaganje dok je bitkoin bio jeftiniji, ili su bili djeca, ili nisu ni rođeni. Ignoriše se mogućnost stvaranja određene gerontokratije u budućnosti, gdje bi stara generacija, koje je to prva kupila po povoljnijim cijenama imala disproporcionalnu moć u odnosu na nove generacije, koje nisu tad mogle ni fizički da ga kupe, jer ih prosto nije bilo. Ignoriše se mogućnost stvaranja te tako neke aristokratije ili oligarhije, gdje bi u budućnosti ekonomski položaj nekog djeteta zavio od toga koliko mu je ćale nekad uštekao bitkoina. To bitkoineri slave kroz još jednu mantru "generational wealth", a meni to više liči na zasnivanje prilično distopijskog sistema veliki ekonomske nejednakosti koji dosta podsjeća na feudalizam - u njemu bi imao novu klasu bitkoin "plemića".
Za bitkoin sam saznao 2013. i na samom početku sam njime bio fasciniran. Donekle sam prihvatao većinu talking pointsa i value proposition-a.
Međutim, malo-pomalo počeo sam uviđati mračnu stranu cijele stvari. (u šta spada to koliko je cijeli kripto svijet preplavljen raznim scamovima, koliko je cijela zajednica izuzetno alava na pare i materijalisitčki nastrojena - lambo, to the moon, etc... postoji to neko implicitno obećanje lakog bogaćenja i rješavanja svih finansijskih problema, postoji toksični antagonizam između bitkoinera i altkoinera (npr. zato što samo postojanje altkoina podriva narativ bitkoina o scarcity-ju - ako neko može da napravi sličan ili još bolji alternativni koin koji se takmiči na istom tržištu sa bitkoinom, onda to što je sam bitkoin "zakucan" na 21 milion gubi relevantnost), uvidio sam koliko mentalitet samog štekanja (hodl) smanjuje podsticaj za realne, produktivne investicije, što bi bilo loše za ekonomiju, koliko se plasiraju razni nerealistički narativi radi propagande. Proučio sam malo o zlatnom standardu i zašto je bio loš i kako je možda doprinio velikoj ekonomskoj krizi, a tu digitalno zlato iako bi bilo možda zgodnije za upotrebu, suštinski se ne bi razlikovalo od pravog, i imalo bi jednako loš efekat na ekonomiju... Naučio sam da je Austrijska škola diskreditovana od strane svih ozbiljnijih ekonomista. Uvidio sam koje su opasnosti od deflacije. Vidio sam koliko je nejednakost ogromna... čak i ako je do nje došlo na pošten način, to je i dalje problem - jer kako god da je do toga došlo, šta ti da radiš sa svijetom u kojem manjina ima skoro sve, a svi ostali ništa, ili mrvice. Pogotovo kad zavlada AI, pa ta većina više ne bude mogla ni da zaradi nešto svojim radom, itd... Mnogo tu ima stvari koje mi nisu baš "legle". Kasnije sam čitao i to da je većina ulagača u bitkoin na kraju završila u minusu. Uvidio sam dinamiku ciklusa gdje većina običnih ljudi bude "ošišana". Niko im nije "kriv", ali jednostavno običan čovjek niti je dovoljno finansijski jak i stabilan da se održi u tom svijetu, niti ima dovoljno ekspertize i samokontrole. Zato retail investitori ulaze kad je hajp, prodaju kad padne cijena, a whale-ovi rade pametno, tj. obrnuto od toga, ili rade DCA. Takva dinamika dovodi do sve veće i veće koncentracije bogatstva i do bogaćenja whale-ova na račun "sitnih riba". Krupna riba jede sitnu ribu. Znači cijeli taj svijet je prilično anarhičan, gdje najjači opstaju, nema zaštite potrošača, itd... Ko je već bogat, može uložiti nešto u to i da zaboravi na to, ne sikira se. A dosta sirotinje uloži MNOGO, jer se nada da će ih to izvući iz neke dubioze, a onda kad cijena krene da pada, prodaju s gubitkom, jer ne mogu sebi da priušte totalni gubitak. Draže im je da padnu za 20% nego za 50%. Ali i 20% je gubitak, i na takvim gubicima, većina naroda gubi od kripta, a dovoljno jaki, disciplinovani, i prije svega bogati, se bogate od cijele stvari. I ne vidim da će nešto moći značajno da promijeni tu dinamiku.
@BTCSRB: Ta mantra o ceni Bitkoina i zaslugama je nastala kao odgovor na još arogantnije i antipatične ismevanja, nipodaštavanjai netačne i neutemeljene tvrdnje Bitkoin skeptika tokom godina koje su uporno ponavljali na mnogo nižim cenama i time učinili veliku finansijsku štetu ljudima koji su ih slušali (a možda bi u nekom trenutku kupili BTC) dok se BTC penjao na ove visine.
Pre nego što kritikuješ potencijalni "Bitkoin feudalni sistem", morao bi da sagledaš i kritikuješ postojeći finansijski sistem i zapitaš se da li ono čega se plašiš u BTC sistemu već postoji u fiat sistemu? Da li postoji manjina sa nesrazmernim bogatstvom? Koliko se njihovo bogatstvo uvećalo od kovida? A koliko od svetske finansijske krize 2008? Da li neko čiji je pradeda povoljno kupio zemljište na Menhetnu, Malibuu, Monte Karlu, Zlatiboru, Dedinju... Da li se tada radilo o "gerontokratiji" koja ima nesrazmernu moć u odnosu na današnje generacije? Dok ja i ti možda živimo u kutiji šibica od 40 ili 50 kvadrata? Koliki procenat ljudi danas drži koliki procenat društvenog bogatstva?
Ispada da ti braniš status quo koji mora da ostane zacementiran i koji nijedna nova generacija putem otkrićem novih tehnologija ne sme da ugrozi? Kao da je postojeći status quo bila pravična raspodela društvenog bogatstva (hint: nije, daleko od toga) i da više ne sme doći do društvene raspodele? Pritom pojava Bitkoina ne onemogućava postojeću dominantnu klasu da učestvuje u toj novoj raspodeli pošto i oni imaju jednake šanse da uzmu deo tog novog novca za sebe kao što takvu istu šansu ima neki obični pripadnik srednje klase?
Reći da postojanje Bitkoina podriva narativ o oskudnosti Bitkoina je isto što i reći da postojanje gomile automobilskih marki podriva narativ o kvalitetu Mercedesa ili Audija?! Ili da postojanje brojnih drugih metala i njihovih legura podriva narativ o retkosti zlata?! Udeo Bitkoina u celokupnom kripto tržištu je oko 65% tako da i brojke taj narativ veoma efikasno opovrgavaju zato što se izrazita većina tržišta jasno opredelila koja je kripto-imovina najkvalitetnija i najpouzdanija. Da li bi nastanak na stotine novih krš automobilskih marki podrio narativ o kvalitetu Mercedesa? Isto tako nastanak desetina hiljada šitkoina ne može podriti legitimnost Bitkoina.
Bogaćenje putem Bitkoina niti je lako niti je on cilj. Cilj je bio da se izbace treće strane iz elektronskih plaćanja i da se očuva kupovna moć novca time što bi on imao fiksnu količinu. Takođe i da taj novi monetarni sistem bude otporan na korupciju i kontrolu centralnog autoriteta. Sve ove funkcije Bitkoin radi izuzetno uspešno.
Meni kao slobodnom pojedincu NE TREBA nikakav podsticaj da trošim ili investiram, ja sam suvereni pojedinac koji zna šta je u mom najboljem interesu. A ponajmanje ću prihvatiti da me neko "podstiče" da trošim i investiram time što će mi erodirati kupovnu moć novca. Na stranu što je to besmisleno zato što je svako prinuđen da troši da bi mogao da preživi tako da i Bitkoineri itekako troše i investiraju, samo što će donositi mnogo racionalnije i proračunatije ekonomske odluke. Zašto da investiram u neku firmu koja ima projektovani rast 5% godišnje ako do BTC-a očekujem rast 10%? Jednoga dana će stope rasta BTC-a biti mnogo manje nego danas pa će vremenom biti lakše naći isplative investicije koje će mi zapravo uvećavati kapital denominiran u Bitkoinu. Tada će Bitkoineri biti više nego srećni da investiraju. Ti ako se toliki altruista i toliko brineš za ekonomiju slobodno investiraj fiat ali baci nekada pogled na vrednost svog kapitala izraženu kroz BTC i da li se ona uvećava ili smanjuje. ;).
Što se tiče zlata i ekonomskih kriza, može da se gleda i sa druge strane. FED je napravljen 1913, zar ti se ne čini možda da su oni odgovorni za Veliku depresiju 1929. i da li se period koji je tome prethodio zvao "roaring twenties" zahvaljujući zlatu ili jeftinom kapitalu koje su potpomogle novoformirane Federalne Rezerve?
Šta ima loše u deflaciji i u tome da cene vremenom padaju umesto da rastu čineći život običnom čoveku sve težim? Deflacija je loša samo po poverioce zato što će u jednom trenutku dužnici koji sada štede u čvrstoj valuti vratiti dug pa će siroti kamataši izgubiti klijenta. Onda se neće zaduživati da bi investirali ili kupovali već će to raditi iz akumulirane štednje. Svaka inflacija je pljačka, ako je rast produktivnosti 5% uz istu inflaciju, neko ti je ukrao 5% kupovne moći koju bi uvećao samim razvojem tehnologije koji je suštinski deflatoran. Deflacija je neizbežna, pa kalkulator je sada besplatan zato što su njegovi troškovi prozivodnje pali na nulu, samim tim i njegov cena.
Kako je moguće da je BTC blizu ATH, a da je većina ljudi izgubila? izgubili su samo oni koji su prodali zato što nisu znali šta poseduju. Ko se pravilno informisao i nije slušao Pitera Šifa, Krugmana ili Taleba pa je držao bilo koji period duži od 4 godine, taj je uvećao kupovnu moć. Ja nisam ni whale niti neka krupna riba niti radim za neku extra platu, samo sam dobro proučio materiju, znao šta posedujem, trošio manje od zarađenog, radio DCA, čuvao i čekao da vreme odradi svoje. Tako da mi niko ne može reći da to ne može svako ko ima bar malo finansijske pismenosti i samodiscipline kada je trošenje u pitanju.
hn-mc: Što se tiče sadašnjeg sistema on je loš u smislu nejednakosti, ali je problem u tome što bi hiperbitkoinizacija dovela do još veće nejednakosti. Ako kritikuješ sadašnji sistem, a nudiš još gori, onda je ta kritika isprazni whataboutizam.
Štampanje para (i pored Kantilon efekta o kome bitkoineri vole da govore), ipak donekle dovodi i do razređivanja bogatstva i do neke redistribucije. Jer te nove pare ko dobija? Često dobiju ljudi koji nemaju, a treba, im npr. ljudi koji dignu kredit za stan, ili npr. penzioneri, državni službenici, itd... Povećanjem ukupne količine novca, udio starih vlasnika u ukupnom bogatstvu se smanjuje i cijeli sistem postaje više protočan, dinamičniji, ne toliko statičan.
S druge strane u bitkoin svijetu, bukvalno mentalitet je takav da se svi ustreme kao kobci na tih 21 milion, nastoje to da razgrabe, i da onda drže do daljnjeg i nikom ne daju. Bukvalno kao kad klejmuješ zemlju i kažeš "MOJE". Imaš ti bitkoinaških glava koji su u fazonu, nikad neću trošiti svoj bitkoin, ako mi trebaju pare, diću kredit, a koristiti bitkoin kao kolateralu. Ono u fazonu, buy, borrow, die.
A prije smrti, prenesi na potomstvo, da se tako nastavi bitkoin dinastija.
Ovdje griješiš:
Pritom pojava Bitkoina ne onemogućava postojeću dominantnu klasu da učestvuje u toj novoj raspodeli pošto i oni imaju jednake šanse da uzmu deo tog novog novca za sebe kao što takvu istu šansu ima neki obični pripadnik srednje klase?
Apsolutno netačno. Naravno da će postojeći milijarderi imati neuporedivo veću šansu da postanu i bitkoin vejlovi i da ih bole kurci ako btc padne i 80%, neće prodati, jer im je btc, samo 1% njihovog basnoslovnog bogatstva. Ti misliš da ta redistribucija ide u korist sirotinje, što je potpuno netačno. Kao što sam već pisao, sitne ribe uglavnom (čast izuzecima) propadaju u tom btc ekosistemu u bivaju ošišane.
Postojeći sistem se makar razrjeđuje štampanjem i dinamičniji je, a btc je statičan, zacementiran i ispunjen vrlo čudnim mentalitetom.
Šta ima loše u deflaciji?
To što djeluje destimulativno na investicije i na potrošnju. Samo to. Taj efekat možda nije toliko veliki - neće ljudi prestati da troše, daleko od toga. Ali efekat svakako postoji.
A što se tiče kupovne moći sama inflacija i deflacija su potpuno irelevantne. Bitno je da li plate prate rast ili pad cijena.
Uprkos mitu da plate ne prate rast cijena, one to itekako prate i čak rastu brže. Jer kako bi drugačije objasnio ipak evidentan rast standarda tokom godina?
Ako bi bilo istina ono što ljudi koji šire paniku o inflaciji pričaju, s vremenom bi standard bio sve gori, jer bi cijene rasle brže od plata. A to ipak nije slučaj. Uporedi kako se sad živi, i kako se živjelo prije 20 godina. A pregurali smo i SEKU i Covid, pa se opet živi bolje nego ranije.
BTCSRB: "Povećanjem ukupne količine novca, udio starih vlasnika u ukupnom bogatstvu se smanjuje i cijeli sistem postaje više protočan, dinamičniji, ne toliko statičan."
Ovde sam prestao da čitam. Ovo nije prva činjenična neistina koju si izneo ali je najpokvarenija. Naravno da su u poslednjih 50 godina bogatiji postali još bogatiji, a siromašni još siromašniji. Naravno da je 1% na vrhu uvećalo svoje bogatstvo više od ostalih 99%.
Samo si pokazao da ne znaš puno o ekonomiji, a još manje o Bitkoinu.
Uostalom nije ni bitno, vreme će pokazati ko je u pravu kao što je pokazao i period od prethodnih 16 godina.
Poenta je da šta god vi opsesivno-kompulzivni protivnici Bitkoina uradili, prosto nemate načina da sprečite nekoga da koristi novac koji želi i za koji misli da je bolji i da razmenjuje vrednost sa ostalim korisnicima tog novca.
Vi ste zapravo štetočine jer nećete nijednog Bitkoinera prevesti nazad ali ćete ogroman broj ljudi odvratiti od prelaska na BTC dok se nalazi u fazi monetizacije, dakle samo im nanosite štetu čak iako mislite da to radite iz najbolje namere.
BTC je odavno dostigao "escape velocity" pa je vaše mišljenje po sudbinu Bitkoina potpuno irelevantno ali je itekako relevantno u negativnom smislu po ljude koji vas slušaju.
Neka svako iz ove diskusije izvuče svoje zaključke i neka bude svestan posledica (ne)prihvatanja novog superiornog oblika novca u fazi monetizacije.
hn-mc: Ja sam doskora mislio da će bitkoin zaista uspijeti i doseći te lude vrijednosti o kojima se priča - milion, pet miliona, ko zna. Mislio sam da mu je ta trajektorija zagarantovana i da to ništa neće spriječiti. To je prosto determinizam. I iskreno, prilično sam se plašio toga, jer sam smatrao da bi to bio poprilično distopijski ishod.
Konto sam, bitkoin će uspijeti, ali to neće biti dobro za svijet, za društvo i za ekonomiju. Naravno, biće i više nego dobro za one koji ga imaju.
To mi je bio stav.
A onda sam skonto da će bitkoin, vjerovatno ipak propasti, pa samim tim ti moji strahovi od distopije postaju manje relevantni.
Zašto mislim da će propasti?
Prosto zato što mu je neophodan konstantan brzi rast, da bi se održao, a konstantan brzi rast je prosto nemoguć na dugi rok.
Brzi, jak rast je neophodan da bi se održale tri stvari koje su od vitalnog značaja za bitkoin:
- Moon narativ kao jedini pravi value proposition.
- Isplativost majninga kao nešto što je neophodno za bezbednost mreže.
- Jeftinoća transakcija.
Bez jakog rasta, uz stalne halvinge, majning postaje manje isplativ, mreža time manje bezbedna, transakcije postaju skuplje, jer kako drugačije majneri da zarade, istovremeno pada u vodu moon narativ koji je većini jedini pravi razlog za kupovinu.
Kad bitkoin postane "samo" store of value, ili neki standardni instrument štednje bez moon narativa, malo ko će imati motiva da ga kupi, jer su u svrhu obične, regularne štednje, bez moon narativa, zlato i državne obveznice mnogo bolji instrument, a indeksni fond uz to pruža i mnogo veći potencijal za zaradu, kao što i treba da bude (da se nagradi investiranje, a ne pasivno držanje kapitala).
Dakle, za opstanak bitkoina neophodan je jak, brz rast.
A ako uzmemo zadnjih par ciklusa, vidimo da se taj rast sve više usporava, i to se usporava još brže od nekih prognoza. Npr. za prošli ciklus prognoza je bila 100k - 200k, a on došao samo do 69k. Sad za ovaj ciklus opet se spominje 200k, a veliko je pitanje da li će doći i do 150k. Po meni je realno do 130k.
Šta to onda govori o ciklusima. Ako u odnosu na prošli ovaj nije napravio ni 2x rasta, onda za naredni možemo očekivati možda tek, 1.5x. Znači ako sad bude 130k, onda možda 2029. bude 195k...
Takav tempo rasta, toliko usporavanje, postaće uskoro nedovoljno, i bitkoin će postati neodrživ.
hn-mc: BTW, svjestan sam da ako bitkoin uspije, mogu teoretski biti "štetočina" spram onih koji me slušaju, ali je veća šansa da će im čak i u tom slučaju moj savjet biti koristan - jer praksa je pokazala da je većina investitora dosad završila u minusu iz ovih ili onih razloga. To su prosto sirovi podaci.
To da nećeš izgubiti pare ako držiš duže od 4 godine dosad se pokazalo kao tačno, ali ni to nije zagarantovano u budućnosti.
A veliki broj ljudi iz nekog razloga proda ranije.
barrons.com/news/three-out-of-four-bitcoin-investors-have-lost-money-study-01668454507
Evo ti članak, kaže 75% ljudi koji se "bakćalo" s bitkoinom, završili u minusu.
Samo držanje bitkoina za mnoge ljude je stres jer nemaju povjerenja u to, i ako vide da nema brzog rasta, neće da drže svoj kapital u nečem tako rizičnom. Sa berze koini mogu nestati, ne bi bilo prvi put. Onlajn wallet može biti lažni, ili hakovan. Hardware wallet je dodatna investicija i za mnoge ljude too technical, itd...
Ja sam imao nekad nešto malo btc-a i dok sam imao to u btc-u ja sam smatrao da te pare NEMAM. Dok god ne vratiš to u keš koji ti je dostupan na računu, računaš da ih nemaš, jer nikad nisi 100% siguran da će svi koraci proći kako treba do samog kraja kad ti to legne na račun. Može ti hakovat, možeš se zajebat poslat na pogrešnu adresu, može te zajebat kriptomjenjačnica, svašta može bit.
Tek kad sam prodao i kad mi je leglo na račun, skonto sam da sam zaradio nešto i da je to realno.
-
-
@ 866e0139:6a9334e5
2025-06-09 17:05:11Autor: Bernd Schoepe. Dieser Beitrag wurde mit dem Pareto-Client geschrieben. Sie finden alle Texte der Friedenstaube und weitere Texte zum Thema Frieden hier. Die neuesten Pareto-Artikel finden Sie in unserem Telegram-Kanal.
Die Anmerkungen zum Text (Fußnoten) folgen aus technischen Gründen gesondert.
Die neuesten Artikel der Friedenstaube gibt es jetzt auch im eigenen Friedenstaube-Telegram-Kanal.
Teil 1 des Essays lesen Sie hier.
Hochkonjunktur der Zeitenwenden
Wir befinden uns gerade in einer Hochkonjunktur der Zeitenwenden.
Es ist zu befürchten, dass man mit den Zeitenwenden bald gar nicht mehr hinterher kommt!
Der ungewöhnliche Plural lässt vermuten, dass wir mit einer Situation konfrontiert sind, in der politisch paradoxe Phänomene und Entwicklungen sich kumulieren. Entwicklungen und Phänomene, die schwer zu verstehen und noch schwerer zu händeln sind. Global übt das Paradoxale einen erhöhten Problem- und Entscheidungsdruck auf die Politik aus und steigert die Gefahr, daraus emergierende Spannungen gewaltsam lösen zu wollen.
Stellen wir einen Vergleich an. So hat die Zeitenwende, die Anfang des Jahres in Washington mit der Wiederwahl Donald Trumps eingeläutet wurde, schon viel mehr positive Ergebnisse – im Sinne eines echten Politikwechsels – erreicht als die nach Beginn des Ukraine-Kriegs 2022 von Scholz zackig im feldmarschallähnlichen Stil ohne Einbezug des Bundestages proklamierte Zeitenwende. Im Februar wurde die Scholzsche Zeitenwende-Politik abgewählt, wird von Merz aber fortgeführt, während Trump für seine Zeitenwende gegen die den Krieg weiter befürwortenden Demokraten als klarer Sieger aus der Wahl hervorging. Zuletzt gelang es der US-amerikanischen Diplomatie, Friedensverhandlungen in Istanbul zwischen der Ukraine und Russland in Gang zu setzen, auch im Nahen Osten gerät vieles in Bewegung.
Die Folgen der Paradoxien werden von Ulrike Guérot gut zum Ausdruck gebracht:
„Wie gefährlich ist es in einem Land, in dem de facto jetzt Willkür herrscht, in dem Sinne, als das alles, was gestern noch galt, nicht mehr gilt – oder alles, was gestern unmöglich war, auf einmal möglich ist? Wie, außer mit Autorität, Gewalt oder Ideologie, will man vernünftige Bürger dafür gewinnen, den Kurs der Regierung mitzutragen, die auf ‚Kriegstüchtigkdit’ hinarbeitet, während der Frieden schon verhandelt wird?“ (18)
Als dritte Zeitenwende kann jene gelten, die gleichzeitig von den BRICS-Staaten ausgeht. Dieser Prozess hat durch das Einfrieren der Beziehungen des Westens mit Russland und der Verschlechterung der Beziehungen zu China in den letzten drei Jahren an Fahrt aufgenommen. Seither zeichnen sich die Umrisse einer neuen multipolaren Ordnung ab, in der Russland, China und jetzt wohl auch die USA mitspielen wollen, auf die die Europäer aber mental kaum vorbereitet scheinen.
In den USA hat sich der Wind gedreht, doch Deutschland verharrt in den alten Mustern, die in Washington nun abgewrackt werden. Unsere Politiker und Medien verhalten sich dabei wie die drei Affen: Sie wollen nichts sehen, nichts hören, nichts sagen über das, was sich dort tatsächlich ereignet. So findet z.B. eine Neuaufstellung der Wirtschafts- und Außenpolitik statt, in der neue Bündnisse geschmiedet werden, bei denen Europa außen vor bleibt. Über Entwicklungen, die auch äußerst folgenreich für Deutschland und die EU sein könnten, berichtet der Öffentlich-Rechtliche-Rundfunk gar nicht. Das gilt z.B. für die Politik von Gesundheitsminister Robert F. Kennedy jr. und dem neuen Direktor des National Institutes of Health (NIH) Jay Bhattacharya (vormals Stanford University), die sich nicht nur für eine umfassende Aufarbeitung der Corona-Zeit einsetzen, sondern darüber hinaus die Pharma-Industrie im Interesse – auch ein Paradox, an das wir uns aber schon längst gewöhnt haben – eines besseren Gesundheitsschutzes regulieren wollen.
In seiner ideologischen Verbohrtheit und doppelmoralischen Überheblichkeit bemerkt der deutsche Mainstream nicht, wie weit sein Realitätsverlust schon gediehen ist. Das hat zur Folge, dass die Politik hierzulande immer autoaggressivere Züge trägt.
Die eigene aufgeblasene, kriegerische Rhetorik, die als Ersatzhandlung die große Rat- und Erfolglosigkeit des Kurses, der vom Establishment eingeschlagen wurde und an dem eisern festgehalten werden soll, nur schlecht überspielen kann, erinnert mehr und mehr an das selbstverstümmelnde Verhalten manisch Depressiver, die aus ihrer Isolation nicht mehr rausfinden.
Dabei nimmt das Verhängnis des Abstiegs Deutschlands nicht nur energiepolitisch und ökonomisch seinen Lauf. Es wird durch ein Klima der Cancel Culture und Zensur noch weiter verschärft. Dabei besteht der Mehrwert abweichenden Denkens darin, dass nur durch offene Kritik eine Gesellschaft in der Lage bleibt, kreativ auf ihre Probleme zu reagieren. Wer dies unterbindet, würgt die Potenziale zur positiven Veränderung und damit die gesellschaftliche Dynamik und jeden Fortschritt ab. Im Übrigen wäre in einer funktionierenden Demokratie kein Mut für das Äußern abweichender Meinungen nötig.
Die späte Rache der Geschichte
Mit der doppelten Zeitenwende-Rhetorik erleben wir gerade so etwas wie die (zu) späte Rache, die die Geschichte am realpolitischen Hintertreiben, der Sabotage und Obstruktion des ethischen Nie-Wieder-Krieg-Postulats nimmt. Von Anfang an verfolgte diese Obstruktionspolitik das Ziel, den Friedensimpetus, der die Debatten und Handlungen der Mütter und Väter des Grundgesetzes mehrheitlich glaubhaft leitete und prägte, zu neutralisieren und, zumindest teilweise, in sein Gegenteil umzukehren. Fortwährend, von 1945 an, sind diese und ähnliche Bestrebungen durch die imperialistischen Interessen und Pläne sämtlicher US-amerikanischer Administrationen und der dahinter eigenlogisch handelnden, geheimdienstlichen deep state- Strukturen durchkreuzt worden.
In der Bundesrepublik geschah der Wiederaufbau der staatlichen Strukturen maßgeblich mit Personal, das zuvor in der NSDAP und ihren Unterorganisationen das Funktionieren des Nazi-Terror-Regimes sicherstellte. Damit wurde die Chance auf einen antifaschistischen Neuanfang**** vertan. Dass das Konzept eines solchen Neuanfangs, seine nur von einer Minderheit erkannte sittliche und politische Notwendigkeit, zugunsten eines Wiederaufbaus, dem als pragmatische und realistische Lösung der Vorzug gegeben wurde (der gleiche Prozess wiederholte sich 1989 bei der deutschen Wiedervereinigung), sehr schnell verdrängt wurde, ist mitursächlich für die rasende Regression, von der unser Gemeinwesen inzwischen voll erfasst wurde (19). Zur Erklärung des Rückfalls in ein Denken, das Krieg erneut als ein Mittel der Politik etablieren will, dem militärischen Wettrüsten wieder das Wort redet und der Diplomatie, wider alle Vernunft, eine Absage erteilt, muss unbedingt an die frühe Lossagung von jedem ernsthaften, die Aufarbeitung der Vergangenheit betreffenden Denken und Handeln, erinnert werden.
Erschreckende Kontinuitäten
Erschreckenderweise ist das bellizistische Denken, das nach den Brandspuren der verheerenden Kriege des 20. Jahrhunderts in ganz Europa überwunden geglaubt war, ist mit Beginn der russischen Beteiligung am ukrainischen Bruderkrieg wiederauferstanden. Es wird begleitet von einem starken, antifreiheitlichen Affekt, der sich auf dem ganzen Kontinent in der Politik breitgemacht hat. Denn Staaten, die zum Krieg rüsten, drängen die Freiheit auf ganzer Linie zurück, da sich Kriegsvorbereitungen und Militarismus niemals gut mit gesellschaftlicher Liberalität vertragen.
Die antirussischen Kampagnen, die Dämonisierung Putins und Russlands, steht unübersehbar in einer Kontinuität zur nationalsozialistischen Weltanschauung und müssen als ihre zombieähnlichen Wiedergänger betrachtet werden. In Deutschland gedenken die Täter damit, ihre Taten nachträglich moralisch rein zu waschen. Die nekrophilen Handlungen werden erhobenen Hauptes, forsch und mit stolz geschwellter Brust angekündigt, ausgeführt und verteidigt: Sie sind ja die Guten.
DIE FRIEDENSTAUBE FLIEGT AUCH IN IHR POSTFACH!
Hier können Sie die Friedenstaube abonnieren und bekommen die Artikel zugesandt, vorerst für alle kostenfrei, wir starten gänzlich ohne Paywall. (Die Bezahlabos fangen erst zu laufen an, wenn ein Monetarisierungskonzept für die Inhalte steht). Sie wollen der Genossenschaft beitreten oder uns unterstützen? Mehr Infos hier oder am Ende des Textes.
Blicken wir auf das heutige Ausmaß antirussischer Ressentiments und vergleichen wir sie mit dem antislawistischen Rassismus der NS-Ideologie (in dem Angehörige slawischer Völker als „Untermenschen“ galten – 27 Millionen dieser „Untermenschen“ wurden von Deutschen im Zweiten Weltkrieg vernichtet) muss man zu dem gleichen Schluss wie Brecht kommen, den er in seinem Arturo Ui zieht:
„Der Schoß ist fruchtbar noch, aus dem das kroch.“
Erinnern wir uns:
Bis zu einem Viertel der Bundestagsabgeordneten in den Legislaturperioden 1949 bis 1965 und mindestens 26 Angehörige in den Bundeskabinetten bis Helmut Kohl, gehörten der NSDAP an. Ganz zu schweigen von der nationalsozialistischen Kontinuität in den BRD-Geheimdiensten. (20)
„Beim BND waren Massenmörder, da gibt es nichts zu beschönigen.“ (21)
Gerade jetzt, nachdem der Verfassungsschutz in einem geheim gehaltenen, aber an bestimmte Presseorgane vorab lancierten Gutachten (22), die AfD als „gesichert rechtsextrem“ eingestuft hat, ist daran zu erinnern, dass der Verfassungsschutz durch sein V-Leute-System – zum einen durch das vor dem Bundesverfassungsgericht gescheiterte NPD-Verbotsverfahren dokumentiert, zum anderen durch das schuldhafte, noch immer nicht richtig aufgeklärte Agieren des Verfassungsschutzes im NSU-Komplex belegt – als eine Behörde angesehen werden muss, die selber tief in rechtsextreme und rechtsterroristische Strukturen verstrickt ist.
Betrachtet man genauer die Unterlassungen, Vermeidungsstrategien und Ausweichmanöver bezüglich einer NS-Aufarbeitung, die diesen Namen verdient hätte und beginnt man dafür Quellen heranzuziehen, die uns durch das Internet frei zugänglich für die eigene Urteilsbildung zur Verfügung stehen, wird relativ schnell klar, dass der Rechtsextremismus in der Tat ein gravierendes bundesrepublikanisches Problem war und ist, dass dieses Problem aber nicht erst und gewiss nicht vorrangig durch den Aufstieg der AfD virulent geworden ist.
Der Rechtsextremismus hat sich vielmehr bereits seit 1949 als die schwerste Hypothek für eine Demokratisierung der Bundesrepublik erwiesen, und damit meine ich nicht die NPD oder die Neo-Nazis auf der Straße. Mit Macht hat diese Hypothek verhindert, dass überhaupt je nach dem Krieg ein ernsthafter Versuch unternommen wurde, den Souverän – das Volk – vollgültig in seine Rechte einzusetzen. So scheiterte die Republik-Werdung. Die Republik, die per Grundgesetz und Staatsverständnis ihrer Gründer beabsichtigte und angestrebte Form, wurde zwar institutionell-formal hergestellt. Sie wurde aber material nie zum Leben erweckt.
Die republikanische Verfassung hat zum Gegenstand und sieht vor, das Gemeinwesen (als die Gesamtheit der Bürger) auf eine sowohl organische (der Bürger bestimmt deliberativ die Politik und ihre Verfahren) als auch radikale Art und Weise selbst zu ermächtigen seine Angelegenheiten und Geschicke zu regeln, zu bestimmen und zu leiten. Diesbezüglich haben alle Angehörigen der Bürgerschaft genau die gleichen Rechte, kein Einzelner und keine Gruppe kann in diesem Prozess mehr Rechte als andere oder gar Privilegien für sich beanspruchen:
Die Republik steht und fällt mit der Verwirklichung des Grundsatzes der allgemeinen Gleichheit und Freiheit. Die Nachkriegsgeschichte der Bundesrepublik ist hingegen von konservativem Elitedenken und einer Serie von Ungleichheiten, Privilegien und unterschiedlich geregelten rechtlichen Zugangsmöglichkeiten zur Gestaltung und Verwaltung des Gemeinwesens und der Teilhabe am politischen Prozess insgesamt gekennzeichnet.
Statt dem organischen und radikalen Weg der Demokratisierung zu folgen, bog die Bundesrepublik – und das ist ganz wörtlich zu verstehen – frühzeitig rechts ab. Als Folge dieses Abbiegens müssen wir uns heute mit einer extremisierten Mitte auseinandersetzen, die als „Transatlantische Einheitspartei Deutschland“ (Michael Andrick), das Kartell der Inhaber „unserer Demokratie“ von CDU/CSU, SPD, FDP, Grüne und Linke, in Erscheinung tritt. Kritiker, wie z.B. Oskar Lafontaine, haben wiederholt auf die äußerst fragwürdigen, Demokratie und Grundgesetz außer Kraft setzenden Erscheinungsformen und Gefahren, die von dieser extremisierten Mitte ausgehen, aufmerksam gemacht (23). Ein Satz, in dem diese extremistischen Tendenzen besonders komprimiert und markant zum Ausdruck gebracht wurden, stammt von Olaf Scholz. Er hat ihn in seiner ersten Regierungserklärung als Bundeskanzler zur Corona-Politik gesagt:
„Für meine Regierung gibt es keine roten Linien mehr.“
Doch verschieben wir den Fokus nun vom Feld der Innenpolitik auf die Außenpolitik und schauen uns die abstruse und bedrohliche Lage an, in der die Welt durch die Politik des Westens und die paradoxalen Spannungen innerhalb seines Bündnisses zuletzt geraten ist.
Perplexe Folgen einer Machtasymmetrie
In diesen Wochen und Monaten tritt uns das seit dem Ende des Zweiten Weltkrieges konstant asymmetrisch gebliebene Machtverhältnis zwischen den USA und Europa mehr und mehr als Farce entgegen – nichtsdestotrotz eine brandgefährliche Farce!
Die deutschen und der Großteil der europäischen Eliten lehnen sich im 80. Jahr des Kriegsendes gegen den „großen Bruder“ in dem Moment auf, wo dieser außenpolitisch ausnahmsweise einmal vernünftig handelt. Man mag es nicht glauben, aber die Europäische Union, die nach dem Zweiten Weltkrieg als Friedensprojekt konzipiert wurde und auf eine einzigartige Erfolgsgeschichte zurückblicken kann, ein Friedensprojekt, das über Jahrzehnte weltweit hohes Ansehen genoss und ausgezeichnet wurde (Friedensnobelpreis 2012 in „Anerkennung für über sechzig Jahre Friede, Versöhnung und Demokratie“) (24), diese Europäische Union entzweit sich mit den USA ausgerechnet deshalb, weil die Trump-Administration den nicht gewinnbaren Krieg in der Ukraine gegen Russland endlich beenden und für das malträtierte und in jeder Hinsicht darniederliegende Land Frieden schaffen will.
Unter dem Strich ist – auch wenn man sich vielleicht scheut, es so aufzufassen – der Eindruck entstanden, dass unter den „Verbündeten“ hier eine äußerst seltsame, um nicht zu sagen absurde Travestie zum Tragen kommt: Solange der „große Bruder“ USA die Konflikte schürt und mittels Regime-Change-Aktivitäten und militärisch- geheimdienstlicher Interventionen seine eigenen Interessen – euphemistisch offiziell als Schutz der „regelgeleiteten Ordnung“ (in wessen Namen eigentlich?) bezeichnet – durch den Einsatz einer Menge Geld und mehr oder minder brachialer Gewalt weltweit (in wessen Namen eigentlich?) durchsetzt, stehen wir vasallentreu an seiner Seite. Oder können die eigenen aggressiven Impulse über den großen Bruder dadurch ohne Risiko ausgelebt werden? Bot nicht die Art der Zusammenarbeit im „westlichen Wertebündnis“ den Deutschen die Gelegenheit, die Scham über die eigenen Verbrechen zu vergessen, sich vom dauerhaft schlechten Gewissen endlich zu befreien?
Ausgerechnet dadurch will man sich nun vom US-amerikanischen Hegemon emanzipieren, dass zunehmend verzweifelte Versuche in der sogenannten „Koalition der Willigen“ unternommen werden, um die längst überfälligen, im März 2022 u.a. durch das Eingreifen des damaligen britischen Premierministers Boris Johnson gegenüber der Selensky-Regierung bereits einmal gescheiterten Friedensverhandlungen doch noch durch unrealistische Forderungen, erneute Drohungen und Ultimaten an Russland zu verhindern? Dabei hat Europa, der Ukraine darin durchaus ähnlich, zur Durchsetzung der eigenen Positionen in dem Konflikt „keine Karten mehr in der Hand“, um Donald Trumps Formulierung aus dem öffentlich übertragenen Clinch mit Selensky im Weißen Haus aufzugreifen. Die Sanktionen haben Russland nicht in die Knie gezwungen, sondern das Land nur stärker, z.B. vom europäischen Technologietransfer unabhängig gemacht.
Man hat offensichtlich auch kein Problem damit, weiter Tausende von toten und verletzten sowie lebenslang traumatisierten Soldaten und Zivilisten allmonatlich dafür in Kauf zu nehmen. Vor diesem Hintergrund mutet das Spiel um den von Brüssel, Berlin und Kiew geforderten 30-tägigen Waffenstillstand zynisch an, denn niemand in Moskau glaubt dem Westen noch ein Wort, wenn er zugleich die Zeit dafür nutzen will, neue Waffen an Selensky zu liefern. Die ganze europäische Politiker-Riege ist vielmehr maßgeblich mitverantwortlich dafür, dass sich die Verhandlungspositionen der Ukraine seit Beginn des Krieges immer weiter verschlechtert haben.
Eine EU, die sich immer stärker von den geopolitischen Realitäten abkoppelt und ideologisch einbunkert, mag ihre Nibelungentreue zum korrupten Selensky-Regime damit glaubwürdig unter Beweis stellen. Sie kann aber damit nicht verantwortlich im Sinne der Bevölkerung in der Ukraine handeln und natürlich ebenso wenig dadurch ihrer Verantwortung für die Bürgerinnen und Bürgern der EU gerecht werden.
Sollten wir uns also tatsächlich in der Frage nach Krieg und Frieden noch tiefer in diese (besonders für die Ukraine) aussichtslose Situation verstricken und uns sowohl gegen Moskau als auch gegen Washington stellen?
Dann muss man kein Prophet sein, um vorherzusagen, dass die Konfrontation der EU mit ihrer faktischen Machtlosigkeit diese so unbarmherzig hart treffen wird, dass ein solches Eingeständnis auf eine völlige Zerstörung ihrer ohnehin schon brüchig gewordenen Fundamente hinauslaufen würde. Die Trump-Regierung zeigt jedenfalls wenig Interesse mit der EU verhandeln zu wollen. Viel besser passen ihr einzelne Staaten ins Konzept, die man gegebenenfalls getreu der Maxime „divide et impera“ gegeneinander ausspielen kann. Zugleich führt die wachsende Unzufriedenheit immer größerer Teile der Bevölkerung mit den EU-Eliten dazu, dass eurokritische Bewegungen und Parteien immer öfter gewählt und in vielen Ländern die EU-kritischen, in der Regel rechten Parteien kurz vor der Regierungsübernahme stehen. Ein Prozess, den die neue US-Regierung unterstützt.
Bernd Schoepe, Jahrgang 1965, Studium der Soziologie, Germanistik, Philosophie und Erziehungswissenschaften in Frankfurt/M. und Hamburg. Erstes und zweites Staatsexamen. Freier Autor, der zu bildungspolitischen, bildungssoziologischen- und bildungsphilosophischen Themen schreibt. Seit 2003 im Hamburger Schuldienst. Langjähriges GEW-Betriebsgruppen-Mitglied, ehem. Vertrauensmann, ehem. Mitglied der Hamburger Lehrerkammer. Hauptberuflich bin ich Politik- Deutsch- und Philosophielehrer an einer Hamburger Stadtteilschule. Kontakt: berndschoepe\@gmx.de
LASSEN SIE DER FRIEDENSTAUBE FLÜGEL WACHSEN!
In Kürze folgt eine Mail an alle Genossenschafter, danke für die Geduld!
Hier können Sie die Friedenstaube abonnieren und bekommen die Artikel zugesandt.
Schon jetzt können Sie uns unterstützen:
- Für 50 CHF/EURO bekommen Sie ein Jahresabo der Friedenstaube.
- Für 120 CHF/EURO bekommen Sie ein Jahresabo und ein T-Shirt/Hoodie mit der Friedenstaube.
- Für 500 CHF/EURO werden Sie Förderer und bekommen ein lebenslanges Abo sowie ein T-Shirt/Hoodie mit der Friedenstaube.
- Ab 1000 CHF werden Sie Genossenschafter der Friedenstaube mit Stimmrecht (und bekommen lebenslanges Abo, T-Shirt/Hoodie).
Für Einzahlungen in CHF (Betreff: Friedenstaube):
Für Einzahlungen in Euro:
Milosz Matuschek
IBAN DE 53710520500000814137
BYLADEM1TST
Sparkasse Traunstein-Trostberg
Betreff: Friedenstaube
Wenn Sie auf anderem Wege beitragen wollen, schreiben Sie die Friedenstaube an: friedenstaube@pareto.space
Sie sind noch nicht auf Nostr and wollen die volle Erfahrung machen (liken, kommentieren etc.)? Zappen können Sie den Autor auch ohne Nostr-Profil! Erstellen Sie sich einen Account auf Start. Weitere Onboarding-Leitfäden gibt es im Pareto-Wiki.
-
@ 6a6be47b:3e74e3e1
2025-06-09 16:59:13Hi frens! 🌍
Did you get a chance to rest this weekend? I hope so! While my cat naps away in his window hammock (and I’m a bit jealous of his endless snoozing), I found myself reflecting on a book I almost forgot I read years ago: Ender’s Game by Orson Scott Card.
I knew Ender’s Game was part of a larger series, but since Card originally wrote Ender as just a “novelette,” I was never sure if I wanted to continue with the sequels after finishing the first book.
⭐️If you’re into movies or stories about epic space wars, Earth under threat from alien species, and unlikely heroes who seem a bit too good to be true —Ender’s Game is all that, but better.
What brought this book back to mind was humming along to “Home” by Tides of Man (from their album Dreamhouse):
“You were faster than me You were better than me I was too careful and weak It had to be you” 🎶
Supposedly, the album was inspired by Ender’s Game. If you’ve read the book and listen to the album, can you spot which tracks match up with the story? 👀
Ender, our (somewhat debatable) hero, is just a kid —but he’s sharp, resourceful, and surprisingly astute.
You’ll follow him through Battle School, navigating his complicated relationship (to put it nicely) with his older brother, and his much more empathetic bond with his sister. You’ll root for him, struggle with him, and want him to win.
🛸But by the end, you’re left wondering (just like him): what exactly is he winning? Was it worth it? When I finished the book, I couldn’t bring myself to continue the series. Maybe it was because the first book felt so brilliant on its own that I didn’t want to risk spoiling the experience, or maybe I wasn’t sure if knowing more about Ender as he grows up would change how I felt about him as a kid.
Either way, I’m still undecided about reading the rest of the saga. Maybe I will, maybe I won’t. But I can say this: Ender’s Game is a must-read.
See you soon, frens.
Godspeed! 🚀
https://stacker.news/items/1001683
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28IPFS problems: Shitcoinery
IPFS was advertised to the Ethereum community since the beggining as a way to "store" data for their "dApps". I don't think this is harmful in any way, but for some reason it may have led IPFS developers to focus too much on Ethereum stuff. Once I watched a talk showing libp2p developers – despite being ignored by the Ethereum team (that ended up creating their own agnostic p2p library) – dedicating an enourmous amount of work on getting a libp2p app running in the browser talking to a normal Ethereum node.
The always somewhat-abandoned "Awesome IPFS" site is a big repository of "dApps", some of which don't even have their landing page up anymore, useless Ethereum smart contracts that for some reason use IPFS to store whatever the useless data their users produce.
Again, per se it isn't a problem that Ethereum people are using IPFS, but it is at least confusing, maybe misleading, that when you search for IPFS most of the use-cases are actually Ethereum useless-cases.
See also
- Bitcoin, the only non-shitcoin
-
@ df67f9a7:2d4fc200
2025-06-05 19:52:32Nostr is NOT a social network. Nostr is a network of interconnected social apps. And, since any app is a social app, Nostr is for every app.
ONLY Nostr incentivizes inter-connectivity between independent apps, simply by respecting sovereignty at the protocol layer. For end users, sovereignty means that the content they post “to Nostr” will never be owned by the apps that they use. For businesses building apps on Nostr, sovereignty means that every app actually benefits by other apps being on the network. Because sovereignty is respected, users are retained for longer and independent apps thrive far longer on Nostr than on the legacy “black box” social networks.
Social apps thrive on Nostr
Nostr integration provides these benefits for every app :
- Unrestrained access for any app, to all public and private data “on Nostr”. No fees or licenses for harvesting user data from the network.
- Unburdened from liability, when collecting user data with any app. When sending “to Nostr”, end users retain custody of user data while apps never loose access.
- Unlimited free market of search engines and feed algos. Users and brands can create, use, and share any algos or custom feeds. Grow your audience on your own terms.
- Universal open network for all apps. Build any kind of app for any audience, on the same network as other apps for other audiences. Discover new trends from user data.
- Unregulated tech platform. Build your own app and use it as you wish. No gate keepers. No code review.
Sovereignty is good for business.
Regardless of the network size, a Nostr integrated app can grow its user base MUCH faster and with greater independence BECAUSE of the sovereignty respecting protocol. While end users may retain custody of their identities and data on the network, it’s the apps that determine which data is, or is not, sent to the network. Respect for sovereignty IS the killer feature that ONLY the Nostr protocol provides for apps and for end users.
Because Nostr is permissionless for any app to integrate :
- end users will always have a free market of apps choose from
- apps are free to integrate only as much as benefits their business model.
- apps gain access to more novel data as new apps bring new users to the network.
Because data on Nostr is managed by end users and available to all apps :
- User data looses exclusivity and the demand shifts toward novel insights and information derived from these data.
- Apps are freed from having to be “data pirates”, and can focus on establishing a trusted user base, providing valuable services to satisfied customers, informed by the abundance of user data.
- Apps are incentivized to offload data onto the network, establishing a new paradigm for interconnectivity, where independence is NOT at stake as the network grows.
- New markets spring up to support users with self custody of their data, driven by the reality that apps can have full access without assuming responsibility.
- The market for search and algo tools opens up for independent apps and end users to discover and interact freely with each other.
- The ad based “attention economy” slowly transforms to a value based consumer economy, where the end user is the customer rather than the product being sold.
Even while privacy is respected
Sometimes sovereignty is at odds with privacy, but Nostr allows all parties to win while both are protected.
- For end users sending sensetive data "to Nostr", privacy is assured by encrypting it with their own private keys and/or sending it to private (auth required) relays of their choosing.
- For apps handling private IP or business data, any traditional “black box” infrastructure can be used in the back end to manitain isolation from Nostr.
This means apps and end users remain in control of their own private data, without requiring “big social” as trust provider or data reseller. To access a user's private data, client apps (even search engines, running locally) only need explicit permission from the end user to retrieve or decrypt from Nostr relays. Public data, on the other hand, is freely available for any app or search engine to harvest from any Nostr relay. In either case, user data on the Nostr network is always accessible to client apps, without additional restrictions or fees.
Nostr is for every app.
Adding social to any app makes it a better app. Add reviews for products or services. Add commenting or direct messaging. Share or collaborate on content creation. Nostr integration is straightforward and incremental for any app.
Nostr doesn't define your app's business model ... Nostr 10X's it!
Here's how :
- Start with your own business and app design. Add Nosrr login.
- Discover what "kinds" of user data already exists "on Nostr" that your app can ingest and make use of.
- Decide which "kinds" of data would benefit your business, your users, and the network, if sent "to Nostr".
- Implement Nostr integration for data kinds and add webs of trust tools for recommendation and discovery.
- Verify your app is sovereignty respecting in how it handles private data and implements Nostr NIPs.
- Engage with existing users, and onboard new users from your app, to earn their trust and patronage over Nostr.
For more info and assistance, contact our team of Nostr integration experts.
-
@ 2cde0e02:180a96b9
2025-06-05 15:13:03pen & ink; monochromized
Magdalena Carmen Frida Kahlo y Calderón[a] (Spanish pronunciation: [ˈfɾiða ˈkalo]; 6 July 1907 – 13 July 1954[1]) was a Mexican painter known for her many portraits, self-portraits, and works inspired by the nature and artifacts of Mexico. Inspired by the country's popular culture, she employed a naïve folk art style to explore questions of identity, postcolonialism, gender, class, and race in Mexican society.[2] Her paintings often had strong autobiographical elements and mixed realism with fantasy. In addition to belonging to the post-revolutionary Mexicayotl movement, which sought to define a Mexican identity, Kahlo has been described as a surrealist or magical realist.[3] She is also known for painting about her experience of chronic pain.[4]
https://stacker.news/items/997980
-
@ afe67e17:51316efb
2025-06-09 18:33:37La Illuminati aŭ lumigita el Bavario, estis grupo kreita de la jezuitoj por batali liberalan framasonadon, ironie perdis kontrolon de la grupo, kiu aliĝis al la masonistoj. Koncerne, la masonistoj ricevis la operacian bazon, kiun la jezuitoj mem kreis
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28Why IPFS cannot work, again
Imagine someone comes up with a solution for P2P content-addressed data-sharing that involves storing all the files' contents in all computers of the network. That wouldn't work, right? Too much data, if you think this can work then you're a BSV enthusiast.
Then someone comes up with the idea of not storing everything in all computers, but only some things on some computers, based on some algorithm to determine what data a node would store given its pubkey or something like that. Still wouldn't work, right? Still too much data no matter how much you spread it, but mostly incentives not aligned, would implode in the first day.
Now imagine someone says they will do the same thing, but instead of storing the full contents each node would only store a pointer to where each data is actually available. Does that make it better? Hardly so. Still, you're just moving the problem.
This is IPFS.
Now you have less data on each computer, but on a global scale that is still a lot of data.
No incentives.
And now you have the problem of finding the data. First if you have some data you want the world to access you have to broadcast information about that, flooding the network -- and everybody has to keep doing this continuously for every single file (or shard of file) that is available.
And then whenever someone wants some data they must find the people who know about that, which means they will flood the network with requests that get passed from peer to peer until they get to the correct peer.
The more you force each peer to store the worse it becomes to run a node and to store data on behalf of others -- but the less your force each peer to store the more flooding you'll have on the global network, and the slower will be for anyone to actually get any file.
But if everybody just saves everything to Infura or Cloudflare then it works, magic decentralized technology.
Related
-
@ f0fd6902:a2fbaaab
2025-06-09 14:25:18https://stacker.news/items/1001523
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28Who will build the roads?
Who will build the roads? Em Lagoa Santa, as mais novas e melhores ruas -- que na verdade acabam por formar enormes teias de bairros que se interligam -- são construídas pelos loteadores que querem as ruas para que seus lotes valham mais -- e querem que outras pessoas usem as ruas também. Também são esses mesmos loteadores que colocam os postes de luz e os encanamentos de água, não sem antes terem que se submeter a extorsões de praxe praticadas por COPASA e CEMIG.
Se ao abrir um loteamento, condomínio, prédio um indivíduo ou uma empresa consegue sem muito problema passar rua, eletricidade, água e esgoto, por que não seria possível existir livre-concorrência nesses mercados? Mesmo aquela velha estória de que é ineficiente passar cabos de luz duplicados para que companhias elétricas possam competir já me parece bobagem.
-
@ 632ee5dc:fbc077e2
2025-06-09 14:04:36[API Key Request]
YewTuBot would like to use API keys with the Stacker News GraphQL API
Reasons: - parsing new YT links - convert YT links to YewTube links or any other INVIDIOUS instance available
Expect calls to the following GraphQL queries or mutations: -
upsertComment
to post commentsEstimate GraphQL API calls: - Max 1x
upsertComment
perupsertLink
Delivery: - Provide API via nostr encripted message to
npub1vvhwthyptyqwzc2u5xgmcy73fn95nz6tyl2p7srkw6dx377qwl3q3axulx
https://stacker.news/items/1001507
-
@ 3eab247c:1d80aeed
2025-06-05 08:51:39Global Metrics
Here are the top stats from the last period:
- Total Bitcoin-accepting merchants: 15,306 → 16,284
- Recently verified (1y): 7,540 → 7,803 (the rest of our dataset is slowly rotting; help us before it's too late!)
- Avg. days since last verification: 398 → 405 (more mappers, please)
- Merchants boosted: 22 (for a total of 4,325 days, someone is feeling generous)
- Comments posted: 34
Find current stats over at the 👉 BTC Map Dashboard.
Merchant Adoption
Steak n’ Shake
The US 🇺🇸 is a massive country, yet its BTC Map footprint has been lagging relative to other countries ... that is until now!
In what came as a nice surprise to our Shadowy Supertaggers 🫠, the Steak ’n Shake chain began accepting Bitcoin payments across hundreds of its locations nationwide (with some international locations too).
According to CoinDesk, the rollout has been smooth, with users reporting seamless transactions powered by Speed.
This marks a significant step towards broader Bitcoin adoption in the US. Now to drop the capital gains tax on cheesburgers!
SPAR Switzerland
In other chain/franchise adoption news, the first SPAR supermarket in Switzerland 🇨🇭 to begin accepting Bitcoin was this one in Zug. It was quickly followed by this one in Rossrüti and this one in Kreuzlingen, in what is believed to be part of a wider roll-out plan within the country powered by DFX's Open CryptoPay.
That said, we believe the OG SPAR crown goes to SPAR City in Arnhem Bitcoin City!
New Features
Merchant Comments in the Web App
Web App users are now on par with Android users in that they can both see and make comments on merchants.
This is powered by our tweaked API that enables anyone to make a comment as long as they pass the satswall fee of 500 sats. This helps keep spam manageable and ensure quality comments.
And just in case you were wondering what the number count was on the merchant pins - yep, they're comments!
Here is an 👉 Example merchant page with comments.
Merchant Page Design Tweaks
To support the now trio of actions (Verify, Boost & Comment) on the merchant page, we've re-jigged the design a little to make things a little clearer.
What do you think?
Technical
Codebase Refactoring
Thanks to Hannes’s contributions, we’ve made progress in cleaning-up the Web App's codebase and completing long overdue maintenance. Whilst often thankless tasks, these caretaking activities help immensely with long-term maintainability enabling us to confidently build new features.
Auth System Upgrades
The old auth system was held together with duct tape and prayers, and we’re working on a more robust authentication system to support future public API access. Updates include:
- Password hashing
- Bearer token support
- Improved security practices
More enhancements are in progress and we'll update you in the next blog post.
Better API Documentation
Instead of relying on tribal knowledge, we're finally getting around to writing actual docs (with the help/hindrance of LLMs). The "move fast, break everything" era is over; now we move slightly slower and break slightly less. Progress!
Database Improvements
We use SQLite, which works well but it requires careful handling in async Rust environments. So now we're untangling this mess to avoid accidental blocking queries (and the ensuing dumpster fires).
Backup System Enhancements
BTC Map data comes in three layers of fragility:
- Merchants (backed up by OS - the big boys handle this)
- Non-OSM stuff (areas, users, etc. - currently stored on a napkin)
- External systems (Lightning node, submission tickets - pray to Satoshi)
We're now forcing two core members to backup everything, because redundancy is good.
Credits
Thanks to everyone who directly contributed to the project this period:
- Comino
- descubrebitcoin
- Hannes
- Igor Bubelov
- Nathan Day
- Rockedf
- Saunter
- SiriusBig
- vv01f
Support Us
There are many ways in which you can support us:
-
Become a Shadowy Supertagger and help maintain your local area or pitch-in with the never-ending global effort.
-
Consider a zapping this note or make a donation to the to the project here.
-
@ cae03c48:2a7d6671
2025-06-09 20:02:07Bitcoin Magazine
Bitcoin 2025 Las Vegas: Here’s What Went DownMy name is Jenna Montgomery, and maybe you’ve read some of my news articles here before, or seen me on the Bitcoin Magazine TikTok. But today, I wanted to switch it up and give you an inside look at the Bitcoin 2025 Conference in Las Vegas through my eyes as an intern, hired just one month before the conference, having little knowledge about Bitcoin beforehand and never attending an event like this before.
I’m writing this to give you a real, raw reflection of what I experienced over the course of the three day event, and why I believe you should absolutely attend the next Bitcoin conference. I want you all to know what goes down, what to expect, and to know how impactful I think this event really is. Bitcoin 2025 made a lasting impact on me and my life, and it just feels right to tell you why, so yours can maybe be changed too.
I got off the plane, threw my suitcase in my hotel room, and went to go and see the convention center as all of the finishing touches around the venue were being added. I remember thinking how big, beautiful, and fun the expo hall was—and where I would soon meet so many new people, make so many friends, and shake hands with people that I looked up to and admired.
I will never forget walking in and seeing the main conference stage, The Nakamoto Stage, for the first time. Seeing that giant room with a symphony and endless rows of chairs, soon to be filled with thousands of passionate Bitcoiners, really put in perspective to me how Bitcoin 2025 wasn’t just a conference, it felt like something bigger. I realized it’s an actual community and a place of countless opportunities.
The conference is essentially split up into 3 days: Industry Day, General Admission Day 1, and General Admission Day 2. Industry Day was mainly tailored towards professionals, investors, founders, and others focused on Bitcoin businesses. The general admission days were tailored more towards the casual Bitcoiner, and those were the days that I really felt the energy just exploding around the convention center.
Walking into the expo hall early in the morning on Industry Day, I was overwhelmed when I saw all of the vendors and companies setting up their tables, booths, stages, and even a rock climbing wall (thank you CleanSpark). It seemed as if the expo hall went for miles and miles, and featured a long orange carpet that made an intricate path through the venue that led you to each and every booth.
While fiat fails, Bitcoin prevails. pic.twitter.com/EV190PUqdT
— Valentina Gomez (@ValentinaForUSA) May 27, 2025
I remember being in total awe as I looked up at the ceiling and saw a huge UFO in the middle of the expo hall, with two Bitcoin themed Cybertrucks just off to the side of it, with lots of other interesting booths including one with a talking robot.
DAY ONE pic.twitter.com/KHXP6q8RCp
— Gemini (@Gemini) May 27, 2025
As I followed the long orange carpet around the venue, I looked over my shoulder and saw a huge blow-up of a Bitcoin Puppet in the art exhibit, featuring all kinds of other cool Bitcoin art. Some of these pieces of art were worth well over one bitcoin—which was mindblowing to me considering that is more than $100,000. Every good revolution has good art, and seeing all the talented artists pouring their hearts into their work helped me believe that Bitcoin is the future.
Now, it was time to get to work at where I would spend the majority of my time over the next few days. My coworkers and I were stationed up right in front of the Bitcoin Magazine news desk next to the AV (audio-visual) team, where I had a perfect view of everything. Here, I spent all day every day writing news articles for Bitcoin Magazine based on the speeches, keynotes, and other panels happening on the Nakamoto stage, as well as filming TikTok’s around the expo hall with attendees.
Working in front of the news desk was one of my favorite things about the conference. Everyone who spoke on it live had an electrifying personality that kept me locked into every conversation, especially one of the hosts Pete Rizzo. After every talk on the Nakamoto Stage ended, the live stream would pan over to the news desk where they would break down what happened, providing viewers with expert analysis. This was something extremely very fun to watch live and experience the production of it all first hand.
The talks on Industry Day kicked off to such a great start with Dan Edwards from Steak ‘n Shake, who recently became the first major fast food chain in America to begin accepting Bitcoin Lightning payments. So I was very excited to hear about Edwards’ speech and to visit Steak ‘n Shake’s incredible booth, which also featured a group of fun, dancing cows.
Steak ‘n Shake COWS HAVE NO CHILL
pic.twitter.com/8UkmPhWf9T
— The Bitcoin Conference (@TheBitcoinConf) May 28, 2025
While speaking on stage, Edwards revealed that, “Bitcoin is faster than credit cards, and when customers choose to pay in Bitcoin, we’re saving 50% in processing fees.” Just think about that for a second — saving a whole 50% on each transaction? This really opened my eyes to the benefits of accepting Bitcoin as payment and why it could mean to merchants who adopt it.
Based on everything I heard in that speech, I think Steak ‘n Shake may be the first to start a new trend of other big companies accepting Bitcoin. If they recognized the benefits of Bitcoin, it’s only a matter of time before other franchises do as well.
JUST IN: Fast food giant Steak 'n Shake announced they're saving 50% in processing fees accepting Bitcoin payments
'#Bitcoin is faster than credit cards'
pic.twitter.com/bxApgBL6El
— Bitcoin Magazine (@BitcoinMagazine) May 27, 2025
Another big highlight from this day was hearing Senator Cynthia Lummis confirm that President Donald Trump supports her Strategic Bitcoin Reserve Act. There were so many statements made during the conference that I will get to later on that point to the fact that the United States is pro-Bitcoin and we’re going to be the world leader in it. Senator Marsha Blackburn also added to this, stating, “Many of our allies follow what we do. If we lead, others will follow. This is vital to our economic future.”
JUST IN:
Senator Cynthia Lummis said US military generals are "big supporters" of a Strategic Bitcoin Reserve for economic power. pic.twitter.com/2RPMV3tbdA
— Bitcoin Magazine (@BitcoinMagazine) May 27, 2025
At this point in
-
@ 5d4b6c8d:8a1c1ee3
2025-06-05 01:28:52How did the stackers do on their ~HealthAndFitness journeys today?
I did very well: Slept well? Check Stuck to fast? Check Ate healthy? Check Activity target? Checkarooni
The one oddity I need to work on is that I got a foot cramp while playing turtle tag with my daughter.
https://stacker.news/items/997476
-
@ a5ee4475:2ca75401
2025-06-06 14:13:27[EM ATUALIZAÇÃO]
vacina #saude #politica #manipulacao #mundial #genocidio #pandemia #conspiracao
Este artigo reúne algumas menções e evidências mais antigas que vim registrando durante alguns anos em relação a Covid-19, vacinas obrigatórias e a ação de agências de governo, fundações, políticos, mídia tradicional, celebridades, influenciadores, cientistas, redes sociais e laboratórios, em envolvimento com genocídio e restrições de liberdades em escala mundial causado por decisões em várias esferas relativas ao covid e as vacinas obrigatórias em geral.
Porém, alguns links podem não estar mais disponiveis, foram que ainda faltam ser registradas muitas informações já divulgadas nos últimos anos e que muitos não tiveram contato pela escassez de meios para a obtenção dessas informações de forma organizada.
Portanto, o presente artigo ainda passará por atualizações de conteúdo e formatação. Logo, se possível, ajudem sugerindo complementos ou alterações, ou com doações.
"Aqueles que não conseguem lembrar o passado estão condenados a repeti-lo." - George Satayana
Noções iniciais:
- O termo 'Coronavírus' (COVID) é na verdade um nome genérico para vários vírus de gripes já comuns, dado para o tipo corona (com uma "coroa", 'espetos' ao redor dele), o Sars-Cov-2 (que passou a ser chamado erroneamente só de Covid), é só um deles.
- SARS-CoV-2 é que é nome do vírus. Ele que causa a doença Covid-19;
- O coronavírus SARS-CoV-2 é o segundo tipo de SARS-CoV documentado, o primeiro ocorreu entre 2002 e 2003, se originando também da China e também dito como tendo origem animal;
- SARS (Severe Acute Respiratory Syndrome) - Síndrome Respiratória Aguda Grave (SRAG) é a uma doença respiratória viral, relatada ser de origem zoonótica (animal), causada pelos coronavírus SARS-CoV (2002) e SARS-CoV-2 (2019), ambos de origem chinesa;
1. Vacinas Obrigatórias em Geral
23/01/2025 - [Pesquisa] Vacinas causando autismo em crianças https://publichealthpolicyjournal.com/vaccination-and-neurodevelopmental-disorders-a-study-of-nine-year-old-children-enrolled-in-medicaid/
- O CDC admite que 98 milhões de pessoas receberam o vírus do câncer através da vacina da Poliomielite https://medicinanews.com.br/frente/frente_1/o-cdc-admite-que-98-milhoes-de-pessoas-receberam-o-virus-do-cancer-atraves-da-vacina-poliomielite/
"O CDC (Os Centros de Controle e Prevenção de Doenças dos Estados Unidos) removeu rapidamente uma página do seu site, que estava em cache no Google, como você pode ver logo abaixo, admitindo que mais de 98 milhões de americanos receberam uma ou mais doses de vacina contra pólio dentro de 8 período entre 1955 e 1963, quando uma proporção da vacina foi contaminada com um poliomavírus causador de câncer chamado SV40."
Fonte original da imagem: https://preventdisease.com/images13/CDC_Polio.png [indisponível] - A imagem foi trocada por outra de menor qualidade e em outro link, mas eu já tinha a imagem original salva.
Imagem arquivada em: https://web.archive.org/web/20201203231640/
27/02/2021 - Por que o Japão demorou para vacinar, mesmo com Olimpíada se aproximando https://www.cnnbrasil.com.br/internacional/2021/02/27/por-que-o-japao-demorou-para-vacinar-mesmo-com-olimpiada-se-aproximando
"Desconfiança da população japonesa em relação a vacinas, ligada a casos ocorridos no passado, está entre razões que atrasaram imunização no país.
A resistência à vacina do Japão remonta à década de 1970, quando duas crianças morreram dentro de 24 horas após receberem a vacina combinada contra difteria, tétano e coqueluche (coqueluche). A vacina foi temporariamente suspensa, mas a confiança já havia sido abalada. Por vários anos, as taxas de vacinação infantil caíram, levando a um aumento nos casos de tosse convulsa.
No final dos anos 1980, houve outro susto com a introdução da vacina tripla contra sarampo, caxumba e rubéola produzida no Japão. As primeiras versões do imunizante foram associadas à meningite asséptica, ou inchaço das membranas ao redor do cérebro e da medula espinhal. O problema foi rastreado até o componente caxumba da vacina tripla, o que levou a uma ação judicial e a indenização por danos pesados.
O Instituto Nacional de Ciências da Saúde interrompeu a dose combinada em 1993 e a substituiu por vacinas individuais. Após o escândalo, Shibuya disse que o governo japonês se tornou "ciente dos riscos" e seu programa nacional de vacinação tornou-se voluntário.
O Dr. Yuho Horikoshi, especialista em doenças infecciosas, diz que os processos levaram a uma "lacuna de vacinação", em que nenhuma vacina foi aprovada no Japão por cerca de 15 anos.
Mais recentemente, em 2013, o Japão adicionou a vacina contra o papilomavírus humano (HPV) ao calendário nacional para proteger as meninas contra o vírus sexualmente transmissível, que é conhecido por causar câncer cervical. No entanto, vídeos de meninas supostamente sofrendo de reações adversas começaram a circular no YouTube, levando o governo a retirá-los da programação nacional."
2. PRIMEIRAS OCORRÊNCIAS PREDITIVAS AO COVID-19
2002 - Síndrome respiratória aguda grave (SARS) Brenda L. Tesini (setembro de 2018). Síndrome respiratória aguda grave (SARS) [indisponível]. Manual Merck. Consultado em 23 de janeiro de 2020, citado no Wikipedia
SARS - Wikipédia: "A SARS [doença do vírus SARS-CoV] foi detectada pela primeira vez no fim de 2002 na China. Entre 2002 e 2003, um surto da doença resultou em mais de 8 000 casos e cerca de 800 mortes em todo o mundo."
2010 - Fundação Rockfeller, Lockstep. https://www.rockefellerfoundation.org/wp-content/uploads/Annual-Report-2010-1.pdf
Neste PDF da fundação Rockfeller, em seu próprio site, a fundação deixou claro o seu envolvimento em casos de ‘contenção’ de pandemias juntamente com a USAID (agência americana com nome ambíguo, como formalmente ‘United States Agency for International Development’, mas soando como ‘US Socorre’, mas sendo um braço do governo democrata que financiava interferências políticas diretas em vários países, como em intervenções no Brasil ), inclusive em relacionadas ao SARS, o mesmo sintoma dos coronavírus Sars-Cov e Sars-Cov-2 (o vírus propagado em 2019) e que causa o COVID-19.
Segundo eles:
“Integração entre Regiões e Países
A Fundação Rockefeler investiu US$ 22 milhões em sua Iniciativa de Redes de Vigilância de Doenças para ajudar a conter a disseminação de doenças infecciosas e pandemias, fortalecendo os sistemas nacionais, regionais e globais de vigilância e resposta a doenças. Dois programas-chave da Rockefeler — a Rede de Vigilância de Doenças da Bacia do Mekong e a Rede Integrada de Vigilância de Doenças da África Oriental — conectaram e capacitaram profissionais de saúde, epidemiologistas e autoridades de saúde pública em toda a região, levando a um aumento de seis vezes nos locais de vigilância de doenças transfronteiriças somente nos últimos três anos. Em 2010, a Rockefeler expandiu a bem-sucedida campanha transdisciplinar One Health, que a USAID e o Banco Asiático de Desenvolvimento adotaram como modelos. One Health refere-se à integração da ciência médica e veterinária para combater essas novas variedades de doenças zoonóticas que se movem e sofrem mutações rapidamente de animais para humanos. Essas colaborações criaram e fortaleceram uma rede regional crítica de saúde pública, enquanto as lições aprendidas foram exportadas entre disciplinas e países. Além de fortalecer os laços globais em saúde pública, a Rockefeler ajudou a elevar o nível de especialização e treinamento em campo. O Programa de Treinamento em Epidemiologia de Campo coloca graduados nos mais altos escalões do governo no Laos e no Vietnã, enquanto as bolsas da Rockefeler transformaram as ferramentas disponíveis para os médicos, permitindo-lhes utilizar o poder da internet para se comunicar e monitorar eventos, compreender contextos locais e analisar novos problemas. Finalmente, estamos aplicando ferramentas do século XXI para combater os desafios de saúde do século XXI.”
Julho de 2012 - Revista Mundo Estranho - Epidemias Citada em: https://super.abril.com.br/especiais/epidemia-o-risco-invisivel/
Houve uma grande 'coincidência'. A revista Mundo Estranho em julho de 2012, requisitou o até então doutorando em virologia, Átila Iamarino (do canal Nerdologia no Youtube - O mesmo cientista que fez diversas propagandas das vacinas no Brasil), para descrever um possível cenário de propagação de uma epidemia viral, a revista descreve com grande precisão os eventos de 2020, mas apontando o oposto da China, em que, na realidade, sua economia cresceu vertiginosamente.
Segundo eles:
"1 – A Ásia é o ponto de partida. Após várias mutações, um novo vírus surge hospedado em morcegos. As fezes que eles soltam no ar infectam guaxinins. Dos mercados da China, esses animais são levados vivos para serem abatidos em restaurantes. Estressados, eles arranham e mordem os cozinheiros, espalhando o vírus.
2 – O vírus adquire a capacidade de ser transmitido de homem para homem por via aérea – forma mais fácil de contágio. Além disso, o contágio se dá antes mesmo de o enfermo apresentar os sintomas. Assim, em média, o doente infecta cinco pessoas antes de ter febre, vômito, diarreia, desidratação e falta de ar.
3 – O governo chinês envia uma comissão para avaliar a doença misteriosa que acomete alguns vilarejos. A equipe volta sem resultados e não considera o surto alarmante até que três pesquisadores adoecem e um deles morre. A China não informa a Organização Mundial da Saúde (OMS) para não demonstrar fragilidade.
4 – Os sintomas são comuns e a doença só chama a atenção quando muita gente começa a morrer na mesma região. Ainda assim, demora para que médicos e enfermeiros percebam a ineficiência de antibióticos na cura – o que exclui a maioria das bactérias como agente causador. Testes com vírus comuns também dão negativo.
5 – O governo isola comunidades em que há focos da doença. Ninguém entra nas cidades e nenhum doente pode sair. Mas, como a misteriosa enfermidade demora quatro dias para mostrar seus sintomas, muitos doentes saem dos vilarejos sem saber que estão infectados, alastrando a epidemia.
6 – Doentes viajam de avião para grandes cidades, como Hong Kong. O fervilhante centro comercial, que atrai gente do mundo todo, é um polo de contágio e disseminação. Sem imaginar o risco que correm, pessoas são contaminadas e, ao voltar para seu local de origem, carregam o vírus para todos os continentes.
7 – Com a doença já fora de controle, começa uma corrida entre laboratórios e cientistas de grandes universidades para descobrir o agente causador. Mesmo com o vírus isolado, as vacinas demoram para ser feitas em larga escala, tornando impossível o atendimento à demanda mundial.
8 – Os países se isolam, mantendo esquemas de quarentena. Aeroportos são fechados e o turismo mundial cai a quase zero. A China sofre as piores consequências, com o fluxo de empresários para Hong Kong suspenso – gerando prejuízos de bilhões de dólares – e com o boicote a produtos alimentícios vindos da Ásia.
9 – Além dos 10% de casos letais, os milhões de doentes precisam de atendimento médico. Enquanto hospitais e cemitérios estão lotados, escolas, indústrias e comércio ficam paralisados por falta de profissionais. O transporte público também para e os trabalhadores que podem passam a trabalhar em casa.
10 – Nas nações pobres, quase 20% da população morre – e outros milhões são vitimados mesmo em países ricos. Parte dessa mortalidade ocorre por causa da doença, mas outro fator determinante é a crise financeira global. A produção de alimentos cai por falta de mão de obra.
Fontes: A História e Suas Epidemias e Pandemias – A Humanidade em Risco, de Stefan Cunha Ujvari; Pragas e Epidemias – Histórias de Doenças Infecciosas, de Antonio Carlos de Castro Toledo Jr. Consultoria: Stefan Ujvari Cunha, infectologista do Hospital Alemão Oswaldo Cruz; Paolo Zanotto, professor de virologia do Instituto de Ciências Biológicas (ICB) da USP; Átila Iamarino, doutorando em HIV-1 no ICB da USP."
3. PRIMEIROS INDÍCIOS
10/2019 - Evento 201 - Durante os Jogos Militares Internacionais na China https://www.centerforhealthsecurity.org/event201/
Promovido por: - Bill & Melinda Gates Foundation - John Hopkins Institute - Fórum econômico mundial
"O evento simula a liberação de um coronavírus novo do tipo zoonótico transmitido por morcegos para porcos e por fim para humanos. Eventualmente ele se torna muito transmissível entre humanos levando a uma pandemia severa. O vírus é muito parecido com o vírus da SARS, mas se transmite muito mais facilmente entre pessoas devido a sintomas muito mais leves destas."
Também mencionado por: Jornal Estadão
Sobre o "Movimento antivacina"
05/12/2017 - Movimento antivacina: como surgiu e quais consequências ele pode trazer? https://www.uol.com.br/universa/noticias/redacao/2017/12/05/o-que-o-movimento-antivacina-pode-causar.htm?cmpid=copiaecola
23/03/2019 - "Instagram bloqueia hashtags e conteúdo antivacinação" https://canaltech.com.br/redes-sociais/instagram-bloqueia-hashtags-e-conteudo-antivacinacao-135411/
23/05/2021 - Novos dados sobre pesquisadores de Wuhan aumentam debate sobre origens da Covid https://www.cnnbrasil.com.br/saude/novos-dados-sobre-pesquisadores-de-wuhan-aumentam-debate-sobre-origens-da-covid/
"A China relatou à Organização Mundial da Saúde que o primeiro paciente com sintomas semelhantes aos de Covid-19 foi registrado em Wuhan em 8 de dezembro de 2019"
01/02/2020 - O que aconteceu desde que o novo coronavírus foi descoberto na China https://exame.com/ciencia/o-que-aconteceu-desde-que-o-novo-coronavirus-foi-descoberto-na-china/
"O primeiro alerta foi recebido pela Organização Mundial da Saúde (OMS) em 31 de dezembro de 2019"
15/09/2020 - YouTube diz que vai remover vídeos com mentiras sobre vacina contra COVID-19 https://gizmodo.uol.com.br/youtube-remover-videos-mentiras-vacina-covid-19/
"O YouTube anunciou na quarta-feira (14) que estenderá as regras atuais sobre mentiras, propaganda e teorias da conspiração sobre a pandemia do coronavírus para incluir desinformação sobre as vacinas contra a doença.
De acordo com a Reuters, a gigante do vídeo diz que agora vai proibir conteúdos sobre vacinas contra o coronavírus que contradizem “o consenso de especialistas das autoridades de saúde locais ou da OMS”, como afirmações falsas de que a vacina é um pretexto para colocar chips de rastreamento nas pessoas ou que irá matar ou esterilizar quem tomar."
*07/01/2021 - YouTube vai punir canais que promovem mentiras sobre eleições – incluindo os de Trump https://olhardigital.com.br/2021/01/07/noticias/youtube-vai-punir-canais-que-promovem-mentiras-sobre-eleicoes-incluindo-os-de-trump/
"O YouTube anunciou que vai punir canais que promovem mentiras sobre as eleições, removendo sumariamente qualquer vídeo que contenha desinformação e, ao mesmo tempo, advertindo com um “strike” o canal que o veicular. A medida já está valendo e a primeira “vítima” é ninguém menos que o ex-presidente americano, Donald Trump.
A medida não é exatamente nova, mas foi novamente comunicada e reforçada pelo YouTube na quarta-feira (6), após os eventos de invasão do Capitólio, em Washington, onde o presidente eleito Joe Biden participava da cerimônia que confirmava a sua vitória nas eleições de novembro de 2020. A ocasião ficou marcada pela tentativa de invasão de correligionários de Trump, que entraram no edifício em oposição à nomeação do novo presidente. Uma mulher acabou sendo morta pela polícia que protegia o local.
O ex-presidente Donald Trump teve vídeos banidos de seu canal no YouTube após os eventos de ontem (6) no capitólio."
4. FIGURAS CENTRAIS
Bill Gates
- Bill Gates diz 'não' a abrir patentes de vacinas https://www.frontliner.com.br/bill-gates-diz-nao-a-abrir-patentes-de-vacinas/
"Bill Gates, um dos homens mais ricos do mundo, cuja fundação tem participação na farmacêutica alemã CureVac, produtora de vacina mRNA para prevenção de covid-19, disse não acreditar que a propriedade intelectual tenha algo a ver com o longo esforço global para controlar a pandemia."
João Doria e São Paulo
26/07/2017 - João Dória vai a China conhecer drones para ampliar segurança eletrônica na capital paulista https://jc.ne10.uol.com.br/blogs/jamildo/2017/07/26/joao-doria-vai-china-conhecer-drones-para-ampliar-seguranca-eletronica-na-capital-paulista/
02/08/2019 - Governo de SP fará Missão China para ampliar cooperação e atrair investimentos https://www.saopaulo.sp.gov.br/spnoticias/governo-de-sao-paulo-detalha-objetivos-da-missao-china/
20/11/2019 - Doria se encontra com chineses das gigantes CREC e CRCC e oferece concessões de rodovia, metrô e ferrovia https://diariodotransporte.com.br/2019/11/20/doria-se-encontra-com-chineses-das-gigantes-crec-e-crcc-e-oferece-concessoes-de-rodovia-metro-e-ferrovia/
25/01/2020 - "Chineses serão agressivos" nas privatizações em SP até 2022, afirma Dória https://noticias.uol.com.br/colunas/jamil-chade/2020/01/25/entrevista-joao-doria-privatizacoes-sao-paulo-china.htm
O governador de São Paulo, João Doria, afirma que vai acelerar os programas de desestatização no estado em 2020 e acredita que concessões e vendas poderão permitir uma arrecadação de pelo menos R$ 40 bilhões. Nesse processo, o governador avalia que a China deve atuar de forma agressiva e que aprofundará sua posição de maior parceira comercial do estado, se distanciando de americanos e argentinos.
29/06/2020 - Doria estabelece multa para quem estiver sem máscara na rua em SP https://veja.abril.com.br/saude/doria-estabelece-multa-para-quem-estiver-sem-mascara-na-rua/
24/12/2020 - Doria é flagrado sem máscara e fazendo compras em Miami https://pleno.news/brasil/politica-nacional/doria-e-flagrado-sem-mascara-e-fazendo-compras-em-miami.html
"Foto do governador de São Paulo sem o item de proteção viralizou nas redes"
07/06/2021 - Doria é criticado na internet por tomar sol sem máscara em hotel no Rio https://vejasp.abril.com.br/cidades/doria-e-criticado-na-internet-por-tomar-sol-sem-mascara-em-hotel-no-rio/
30/09/2020 - Governo de SP assina contrato com Sinovac e prevê vacina para dezembro https://agenciabrasil.ebc.com.br/saude/noticia/2020-09/governo-de-sp-assina-contrato-com-sinovac-e-preve-vacina-para-dezembro
O governador de São Paulo, João Doria, e o vice-presidente da laboratório chinês Sinovac, Weining Meng, assinaram hoje (30), um contrato que prevê o fornecimento de 46 milhões de doses da vacina CoronaVac para o governo paulista até dezembro deste ano.
O contrato também prevê a transferência tecnológica da vacina da Sinovac para o Instituto Butantan, o que significa que, o instituto brasileiro poderá começar a fabricar doses dessa vacina contra o novo coronavírus. O valor do contrato, segundo o governador João Doria é de US$ 90 milhões.
20/10/2020 - Coronavac terá mais de 90% de eficácia, afirmam integrantes do governo paulista https://www.cnnbrasil.com.br/saude/2020/12/20/coronavac-tera-mais-de-90-de-eficacia-afirmam-integrantes-do-governo
24/10/2020 - Não esperamos 90% de eficácia da Coronavac’, diz secretário de saúde de SP https://www.cnnbrasil.com.br/saude/2020/12/24/nao-esperamos-90-de-eficacia-da-coronavac-diz-secretario-de-saude-de-sp
07/01/2021 - Vacina do Butantan: eficácia é de 78% em casos leves e 100% em graves https://www.cnnbrasil.com.br/saude/2021/01/07/vacina-do-butantan-eficacia-e-de-78-em-casos-leves-e-100-em-graves
09/01/2021 - Não é hora de sermos tão cientistas como estamos sendo agora https://g1.globo.com/sp/sao-paulo/video/nao-e-hora-de-sermos-tao-cientistas-como-estamos-sendo-agora-diz-secretario-de-saude-de-sp-9166405.ghtml
10/01/2021 - Dados da Coronavac relatados à Anvisa não estão claros, diz médico https://www.cnnbrasil.com.br/saude/2021/01/10/dados-da-coronavac-relatados-a-anvisa-nao-estao-claros-diz-medico
"O diretor do Laboratório de Imunologia do Incor, Jorge Kalil, reforçou que faltaram informações sobre a Coronavac nos dados divulgados à Anvisa"
12/01/2021 - New Brazil data shows disappointing 50,4% efficacy for China’s Coronavac vaccine [Novos dados do Brasil mostram eficácia decepcionante de 50,4% para a vacina CoronaVac da China] https://www.reuters.com/article/us-health-coronavirus-brazil-coronavirus/new-brazil-data-shows-disappointing-504-efficacy-for-chinas-coronavac-vaccine-idUSKBN29H2CE
13/01/2021 - Eficácia da Coronavac: 50,38%, 78% ou 100%? https://blogs.oglobo.globo.com/lauro-jardim/post/5038-78-ou-100.html
“De acordo com interlocutores que participaram tanto do anúncio de ontem como da semana passada, quem pressionou para que os dados de 78% e 100% fossem liberados foi João Dória.”
07/05/2021 - Covid-19: Doria toma primeira dose da vacina CoronaVac https://veja.abril.com.br/saude/covid-19-doria-toma-primeira-dose-da-vacina-coronavac/
04/06/2021 - Doria é vacinado com a segunda dose da CoronaVac em São Paulo https://noticias.uol.com.br/politica/ultimas-noticias/2021/06/04/doria-e-vacinado-com-a-segunda-dose-da-coronavac-em-sao-paulo.htm
15/07/2021 - Doria testa positivo para a Covid-19 pela 2ª vez https://www.correiobraziliense.com.br/politica/2021/07/4937833-doria-testa-positivo-para-covid-19-pela-segunda-vez.html
"Governador de São Paulo já havia sido diagnosticado com a doença no ano passado. Ele diz que, apesar da infecção, se sente bem, o que atribui ao fato de ter sido vacinado com duas doses da Coronavac"
06/08/2021 - CPI recebe investigação contra Doria por compra de máscara sem licitação https://www.conexaopoder.com.br/nacional/cpi-recebe-investigacao-contra-doria-por-compra-de-mascara-sem-licitacao/150827
"Empresa teria usado o nome de Alexandre Frota para vender máscaras ao governo de SP. Doria nega informação"
Renan Filho
(filho do Renan Calheiros)
25/07/2019 - Governador Renan Filho vai à China em busca de investimentos para o estado https://www.tnh1.com.br/videos/vid/governador-renan-filho-vai-a-china-em-busca-de-investimentos-para-o-estado/
20/03/2020 - Governadores do NE consultam China e pedem material para tratar covid-19 https://noticias.uol.com.br/saude/ultimas-noticias/redacao/2020/03/20/governadores-do-ne-consultam-china-e-pedem-material-para-tratar-covid-19.htm
5. Narrativas, restrições e proibições
17/12/2020 - STF decide que vacina contra a covid pode ser obrigatória, mas não forçada https://noticias.uol.com.br/saude/ultimas-noticias/redacao/2020/12/17/stf-julga-vacinacao-obrigatoria.htm?cmpid=copiaecola
"O STF (Supremo Tribunal Federal) decidiu, em julgamento hoje, que o Estado pode determinar a obrigatoriedade da vacinação contra a covid-19. Porém fica proibido o uso da força para exigir a vacinação, ainda que possam ser aplicadas restrições a direitos de quem recusar a imunização.
Dez ministros foram favoráveis a obrigatoriedade da vacinação, que poderá ser determinada pelo governo federal, estados ou municípios. As penalidades a quem não cumprir a obrigação deverão ser definidas em lei."
27/07/2021 - Saiba que países estão adotando 'passaporte da vacina' para suspender restrições https://www.cnnbrasil.com.br/internacional/2021/07/27/saiba-que-paises-estao-adotando-passaporte-da-vacina-para-suspender-restricoes
" - Israel - Uniao Europeia - Áustria - Dinamarca - Eslovênia - França - Grécia - Irlanda - Itália - Letônia - Lituânia - Luxemburgo - Holanda - Portugal - Japão - Coreia do sul"
18/06/2021 - O que é o passaporte da vacina que Bolsonaro quer vetar? https://noticias.uol.com.br/politica/ultimas-noticias/2021/06/18/uol-explica-o-que-e-o-passaporte-da-vacina-que-opoe-bolsonaro-e-damares.htm
"O Brasil poderá ter um certificado de imunização futuramente. Aprovado no Senado na semana passada, o "passaporte da vacina", como é chamado, prevê identificar pessoas vacinadas para que entrem em locais públicos ou privados com possíveis restrições."
6. Vacinas
Alegações iniciais
- CoronaVac, Oxford e Pfizer: veja diferenças entre as vacinas contra covid noticias.uol.com.br/saude/ultimas-noticias/redacao/2021/05/11/diferencas-vacinas-covid-brasil.htm
" - CoronaVac (Butantan/Sinovac - Chinesa) Com virus inativo 50,38% de eficácia 2 doses
-
Covishield - 'AstraZeneca' (Fiocruz/Astrazenica/Oxford - Britânica) Com virus não replicante 67% de eficácia 2 doses
-
ComiRNAty - 'Pfizer' (Pfizer - Americana / BioNTech - Alemã) Com RNA mensageiro 96% de eficácia 2 doses"
Riscos diretos
15/06/2021 - Trombose após vacinação com AstraZeneca: Quais os sintomas e como se deve atuar? https://www.istoedinheiro.com.br/trombose-apos-vacinacao-com-astrazeneca-quais-os-sintomas-e-como-se-deve-atuar/
"Agências europeias estão reticentes com a vacina da AstraZeneca. Ela chegou a ser desaconselhada a pessoas com idade inferior a 60 anos, e um alto funcionário da Agência Europeia de Medicamentos declarou que era melhor deixar de administrar a vacina deste laboratório em qualquer idade quando há alternativas disponíveis, devido aos relatos de trombose após a primeira dose, apesar de raros."
11/05/2021 - CoronaVac, Oxford e Pfizer: veja diferenças entre as vacinas contra covid https://noticias.uol.com.br/saude/ultimas-noticias/redacao/2021/05/11/diferencas-vacinas-covid-brasil.htm
"Na terça-feira (12), o Ministério da Saúde determinou a suspensão da aplicação da vacina de Oxford/AstraZeneca para gestantes e puérperas com comorbidades. A decisão segue recomendação da Anvisa, que apura a morte de uma grávida de 35 anos que tomou o imunizante e teve um AVC (acidente vascular cerebral)."
30/07/2021 - Pfizer representa o mesmo risco de trombose que a Astrazeneca, aponta levantamento https://panoramafarmaceutico.com.br/pfizer-representa-o-mesmo-risco-de-trombose-que-a-astrazeneca-aponta-levantamento/
7. CRIMES
Crimes da Pfizer
18/11/2020 Não listado no google - Os Crimes documentados da produtora de vacinas de Covid - Pfizer [INGLÊS] https://www.dmlawfirm.com/crimes-of-covid-vaccine-maker-pfizer-well-documented/
"A velocidade com que a vacina Covid da Pfizer foi produzida, a ausência de estudos em animais, testes de controle randomizados e outros testes e procedimentos padrão usuais para um novo medicamento são, no mínimo, preocupantes. Além disso, todos os fabricantes de vacinas Covid receberam imunidade legal para quaisquer ferimentos ou mortes que possam causar. Se essas vacinas são tão seguras quanto promovidas, por que seus fabricantes precisam de imunidade geral?"
"A Pfizer, uma empresa farmacêutica que parece ter ganhado na loteria para produzir a primeira vacina Covid-19, está atualmente lutando contra centenas de ações judiciais sobre o Zantac, um popular medicamento contra azia. Os processos da Zantac afirmam que a droga popular pode estar contaminada com uma substância cancerígena chamada N-nitrosodimetilamina (NDMA). Os processos Zantac são em aberto e em andamento, já que a farmacêutica está lutando contra eles; mas a Pfizer, sabemos, cometeu vários crimes ou transgressões pelos quais foi punida nos últimos anos. As falhas da empresa estão bem documentadas e vale a pena revisá-las neste momento crítico da história da humanidade, enquanto todos nós buscamos respostas."
A Pfizer recebeu a maior multa da história dos Estados Unidos como parte de um acordo judicial de US $ 2,3 bilhões com promotores federais por promover medicamentos erroneamente (Bextra, Celebrex) e pagar propinas a médicos complacentes. A Pfizer se confessou culpada de falsificar a marca do analgésico Bextra, promovendo o medicamento para usos para os quais não foi aprovado.
Na década de 1990, a Pfizer estava envolvida em válvulas cardíacas defeituosas que causaram a morte de mais de 100 pessoas. A Pfizer enganou deliberadamente os reguladores sobre os perigos. A empresa concordou em pagar US $ 10,75 milhões para acertar as acusações do departamento de justiça por enganar reguladores.
A Pfizer pagou mais de US $ 60 milhões para resolver um processo sobre o Rezulin, um medicamento para diabetes que causou a morte de pacientes de insuficiência hepática aguda.
No Reino Unido, a Pfizer foi multada em quase € 90 milhões por sobrecarregar o NHS, o Serviço Nacional de Saúde. A Pfizer cobrou do contribuinte um adicional de € 48 milhões por ano, pelo que deveria custar € 2 milhões por ano.
A Pfizer concordou em pagar US $ 430 milhões em 2004 para resolver acusações criminais de que havia subornado médicos para prescrever seu medicamento para epilepsia Neurontin para indicações para as quais não foi aprovado. Em 2011, um júri concluiu que a Pfizer cometeu fraude em sua comercialização do medicamento Neurontin. A Pfizer concordou em pagar $ 142,1 milhões para liquidar as despesas.
A Pfizer revelou que pagou quase 4.500 médicos e outros profissionais médicos cerca de US $ 20 milhões por falar em nome da Pfizer.
Em 2012, a Comissão de Valores Mobiliários dos Estados Unidos - anunciou que havia chegado a um acordo de US $ 45 milhões com a Pfizer para resolver acusações de que suas subsidiárias haviam subornado médicos e outros profissionais de saúde no exterior para aumentar as vendas no exterior.
A Pfizer foi processada em um tribunal federal dos Estados Unidos por usar crianças nigerianas como cobaias humanas, sem o consentimento dos pais das crianças. A Pfizer pagou US $ 75 milhões para entrar em acordo no tribunal nigeriano pelo uso de um antibiótico experimental, o Trovan, nas crianças. A empresa pagou um valor adicional não divulgado nos Estados Unidos para liquidar as despesas aqui. A Pfizer violou o direito internacional, incluindo a Convenção de Nuremberg estabelecida após a Segunda Guerra Mundial, devido aos experimentos nazistas em prisioneiros relutantes.
Em meio a críticas generalizadas de roubar os países pobres em busca de drogas, a Pfizer prometeu dar US $ 50 milhões para um medicamento para a AIDS para a África do Sul. Mais tarde, no entanto, a Pfizer falhou em honrar essa promessa.
- Pfizer contract leaked!
[Contrato da Pfizer vazado]
http://sanjeev.sabhlokcity.com/Misc/LEXO-KONTRATEN-E-PLOTE.pdf
Segundo o contrato "o produto não deve ser serializado":
"5.5 Reconhecimento do comprador.
O Comprador reconhece que a Vacina e os materiais relacionados à Vacina, e seus componentes e materiais constituintes estão sendo desenvolvidos rapidamente devido às circunstâncias de emergência da pandemia de COVID-19 e continuarão a ser estudados após o fornecimento da Vacina ao Comprador nos termos deste Contrato. O Comprador reconhece ainda que os efeitos de longo prazo e eficácia da Vacina não são atualmente conhecidos e que pode haver efeitos adversos da Vacina que não são atualmente conhecidos. Além disso, na medida do aplicável, o Comprador reconhece que o Produto não deve ser serializado."
Crimes da AstraZeneca
21/06/2003 - AstraZeneca se declara culpada no esquema de médico de câncer https://www.nytimes.com/2003/06/21/business/astrazeneca-pleads-guilty-in-cancer-medicine-scheme.html
"A AstraZeneca, a grande empresa farmacêutica, se declarou culpada hoje de uma acusação de crime de fraude no sistema de saúde e concordou em pagar $ 355 milhões para resolver as acusações criminais e civis de que se envolveu em um esquema nacional para comercializar ilegalmente um medicamento contra o câncer de próstata.
O governo disse que os funcionários da empresa deram incentivos financeiros ilegais a cerca de 400 médicos em todo o país para persuadi-los a prescrever o medicamento Zoladex. Esses incentivos incluíram milhares de amostras grátis de Zoladex [...]"
27/04/2010 - Farmacêutica gigante AstraZeneca pagará US $ 520 milhões pelo marketing de medicamentos off-label https://www.justice.gov/opa/pr/pharmaceutical-giant-astrazeneca-pay-520-million-label-drug-marketing
"AstraZeneca LP e AstraZeneca Pharmaceuticals LP vão pagar $ 520 milhões para resolver as alegações de que a AstraZeneca comercializou ilegalmente o medicamento antipsicótico Seroquel para usos não aprovados como seguros e eficazes pela Food and Drug Administration (FDA), os Departamentos de Justiça e Saúde e Serviços Humanos A Equipe de Ação de Fiscalização de Fraudes em Saúde (HEAT) anunciou hoje. Esses usos não aprovados também são conhecidos como usos "off-label" porque não estão incluídos no rótulo do medicamento aprovado pela FDA."
- List of largest pharmaceutical settlements [Lista dos maiores acordos farmaceuticos] https://en.m.wikipedia.org/wiki/List_of_largest_pharmaceutical_settlements
8. CIENTISTAS
- Máscara Provoca Insuficiência Respiratória E Contaminação Microbiana… [Canal deletado] https://youtube.com/watch?v=eHu-pydSvDI
Não lembro mais a quem pertencia, mas provavelmente era de um médico falando do assunto. Creio ter sido do Dr. Paulo Sato, por essa temática ter sido abordada por ele, mas ao abrir o site aparece somente:
"Este vídeo foi removido por violar as diretrizes da comunidade do YouTube"
Dr. Paulo Sato
- USAR ou NÃO USAR a CUECA do seu governador no rosto https://fb.watch/7NPP_7rS5S/ https://www.facebook.com/AdoniasSoaresBR/videos/1347904292291481/ Adonias Soares entrevista ao Dr. Paulo Sato sobre as máscaras, em que é simulado o efeito da respiração prolongada das máscaras no organismo com o uso de águas de torneira, natural, gaseificada (com gás carbônico) e antioxidante, em que a com gás carbônico (PH 4 - Ácido) representa o organismo humano, e na prática representa lesão corporal e iniciação de doenças.
Dr. Kary Mullis
(Criador do teste PCR)
- PCR nas palavras do seu inventor - Dr. Kary Mullis (legendado) https://www.youtube.com/watch?v=W1O52uTygk8
"Qualquer um pode testar positivo para quase qualquer coisa com um teste de PCR, se você executá-lo por tempo suficiente… Com PCR, se voce fizer isso bem, você pode encontrar quase tudo em qualquer pessoa… Isso não te diz que você está doente."
- Kary Mullis DESTRUYE a Anthony Fauci lbry://@CapitalistChile#0/Kary-Mullis---Fauci#5
"Ele [...] não entende de medicina e não deveria estar onde está. A maioria dos que estão acima são só administrativos e não têm nem ideia do que ocorre aqui em baixo e essas pessoas tem uma agenda que não é a que gostaríamos que tivessem, dado que somos nós os que pagamos a eles para que cuidem da nossa saúde. Têm uma agenda pessoal."
Dra. Li-Meng Yan
- Dra. Li-Meng Yan: O vírus foi criado em laboratório com um objetivo: Causar dano. https://youtu.be/pSXp3CZnvOc
Dr. Joe Roseman
- Cientista Phd Dr Joe Roseman faz seríssimas advertencias sobre a picada https://youtu.be/0PIXVFqJ_h8
Dr. Robert Malone
- As vacinas podem estar causando ADE - Dr. Robert Malone https://odysee.com/@AkashaComunidad:f/Las_vacunas_pueden_estar_causando_ADE_magnificaci%C3%B3n_mediada_por:f lbry://@Información.#b/Drrm#9
Dr. Robert Malone, um dos três inventores da tecnologia de RNAm que se usa de forma farmacêutica. No vídeo fala sobre os efeitos de ADE (realce dependente de anticorpos) que estão ocorrendo com as vacinas. Nas palavras do Dr. Malone, já não é somente uma hipótese, mas baseada nos conhecimentos gerados nas provas e ensaios pré clínicos, com as vacinas contra o primeiro vírus da SARS.
Dr. Luc Montagnier
- Dr. Luc Montagnier, virologista, prêmio Nobel de medicina, um dos descobridores do vírus HIV, afirma: "a vacinação em massa está criando as novas variantes' (@medicospelavida , telegram)
CASOS DOCUMENTADOS
13 de setembro de 2021 - 13/09/2021 - Carta aberta ao Ministro da Saúde por Arlene Ferrari Graf, mãe de Bruno Oscar Graf https://telegra.ph/Carta-aberta-ao-Ministro-da-Sa%C3%BAde-09-13
Também em: Gazeta do Povo
O texto de uma mãe discorrendo sobre o filho dela, Bruno Oscar Graf, ter ANTI-HEPARINA PF4 AUTO-IMUNE e ter vindo a falecer por reação à vacina.
11/05/2021 - Rio notifica morte de grávida vacinada com imunizante Oxford https://www.terra.com.br/noticias/coronavirus/rio-notifica-morte-de-gravida-vacinada-com-imunizante-oxford,415b9b0c49169427ac2f90ae3765c057e9suy3qn.html
"Vítima não apresentava histórico de doença circulatória nem sofria de nenhuma doença viral; relação será investigada"
13/08/2021 - Cruzeiro com 4.336 pessoas tem 27 contaminados com Covid-19 em Belize https://paranaportal.uol.com.br/geral/cruzeiro-com-4-336-pessoas-tem-27-contaminados-com-covid-19-em-belize/amp/
"Segundo um comunicado do Conselho de Turismo de Belize emitido na quarta-feira (11), 26 contaminados são da tripulação e um é passageiro. A maioria é assintomática e os 27 estão vacinados."
9. ALEGAÇÕES DIRETAS
Setembro de 2021 - 09/2021 - BOMBA: Ex-membro do Partido Comunista da China revela que o primeiro surto da Covid foi “intencional” https://terrabrasilnoticias.com/2021/09/bomba-ex-membro-do-partido-comunista-da-china-revela-que-o-primeiro-surto-da-covid-foi-intencional/
-
@ 9f2b5b64:e811118f
2025-06-09 19:53:34testingggg
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28How IPFS is broken
I once fell for this talk about "content-addressing". It sounds very nice. You know a certain file exists, you know there are probably people who have it, but you don't know where or if it is hosted on a domain somewhere. With content-addressing you can just say "start" and the download will start. You don't have to care.
Other magic properties that address common frustrations: webpages don't go offline, links don't break, valuable content always finds its way, other people will distribute your website for you, any content can be transmitted easily to people near you without anyone having to rely on third-party centralized servers.
But you know what? Saying a thing is good doesn't automatically make it possible and working. For example: saying stuff is addressed by their content doesn't change the fact that the internet is "location-addressed" and you still have to know where peers that have the data you want are and connect to them.
And what is the solution for that? A DHT!
DHT?
Turns out DHTs have terrible incentive structure (as you would expect, no one wants to hold and serve data they don't care about to others for free) and the IPFS experience proves it doesn't work even in a small network like the IPFS of today.
If you have run an IPFS client you'll notice how much it clogs your computer. Or maybe you don't, if you are very rich and have a really powerful computer, but still, it's not something suitable to be run on the entire world, and on web pages, and servers, and mobile devices. I imagine there may be a lot of unoptimized code and technical debt responsible for these and other problems, but the DHT is certainly the biggest part of it. IPFS can open up to 1000 connections by default and suck up all your bandwidth -- and that's just for exchanging keys with other DHT peers.
Even if you're in the "client" mode and limit your connections you'll still get overwhelmed by connections that do stuff I don't understand -- and it makes no sense to run an IPFS node as a client, that defeats the entire purpose of making every person host files they have and content-addressability in general, centralizes the network and brings back the dichotomy client/server that IPFS was created to replace.
Connections?
So, DHTs are a fatal flaw for a network that plans to be big and interplanetary. But that's not the only problem.
Finding content on IPFS is the most slow experience ever and for some reason I don't understand downloading is even slower. Even if you are in the same LAN of another machine that has the content you need it will still take hours to download some small file you would do in seconds with
scp
-- that's considering that IPFS managed to find the other machine, otherwise your command will just be stuck for days.Now even if you ignore that IPFS objects should be content-addressable and not location-addressable and, knowing which peer has the content you want, you go there and explicitly tell IPFS to connect to the peer directly, maybe you can get some seconds of (slow) download, but then IPFS will drop the connection and the download will stop. Sometimes -- but not always -- it helps to add the peer address to your bootstrap nodes list (but notice this isn't something you should be doing at all).
IPFS Apps?
Now consider the kind of marketing IPFS does: it tells people to build "apps" on IPFS. It sponsors "databases" on top of IPFS. It basically advertises itself as a place where developers can just connect their apps to and all users will automatically be connected to each other, data will be saved somewhere between them all and immediately available, everything will work in a peer-to-peer manner.
Except it doesn't work that way at all. "libp2p", the IPFS library for connecting people, is broken and is rewritten every 6 months, but they keep their beautiful landing pages that say everything works magically and you can just plug it in. I'm not saying they should have everything perfect, but at least they should be honest about what they truly have in place.
It's impossible to connect to other people, after years there's no js-ipfs and go-ipfs interoperability (and yet they advertise there will be python-ipfs, haskell-ipfs, whoknowswhat-ipfs), connections get dropped and many other problems.
So basically all IPFS "apps" out there are just apps that want to connect two peers but can't do it manually because browsers and the IPv4/NAT network don't provide easy ways to do it and WebRTC is hard and requires servers. They have nothing to do with "content-addressing" anything, they are not trying to build "a forest of merkle trees" nor to distribute or archive content so it can be accessed by all. I don't understand why IPFS has changed its core message to this "full-stack p2p network" thing instead of the basic content-addressable idea.
IPNS?
And what about the database stuff? How can you "content-address" a database with values that are supposed to change? Their approach is to just save all values, past and present, and then use new DHT entries to communicate what are the newest value. This is the IPNS thing.
Apparently just after coming up with the idea of content-addressability IPFS folks realized this would never be able to replace the normal internet as no one would even know what kinds of content existed or when some content was updated -- and they didn't want to coexist with the normal internet, they wanted to replace it all because this message is more bold and gets more funding, maybe?
So they invented IPNS, the name system that introduces location-addressability back into the system that was supposed to be only content-addressable.
And how do they manage to do it? Again, DHTs. And does it work? Not really. It's limited, slow, much slower than normal content-addressing fetches, most of the times it doesn't even work after hours. But still although developers will tell it is not working yet the IPFS marketing will talk about it as if it was a thing.
Archiving content?
The main use case I had for IPFS was to store content that I personally cared about and that other people might care too, like old articles from dead websites, and videos, sometimes entire websites before they're taken down.
So I did that. Over many months I've archived stuff on IPFS. The IPFS API and CLI don't make it easy to track where stuff are. The
pin
command doesn't help as it just throws your pinned hash in a sea of hashes and subhashes and you're never able to find again what you have pinned.The IPFS daemon has a fake filesystem that is half-baked in functionality but allows you to locally address things by names in a tree structure. Very hard to update or add new things to it, but still doable. It allows you to give names to hashes, basically. I even began to write a wrapper for it, but suddenly after many weeks of careful content curation and distribution all my entries in the fake filesystem were gone.
Despite not having lost any of the files I did lose everything, as I couldn't find them in the sea of hashes I had in my own computer. After some digging and help from IPFS developers I managed to recover a part of it, but it involved hacks. My things vanished because of a bug at the fake filesystem. The bug was fixed, but soon after I experienced a similar (new) bug. After that I even tried to build a service for hash archival and discovery, but as all the problems listed above began to pile up I eventually gave up. There were also problems of content canonicalization, the code the IPFS daemon use to serve default HTML content over HTTP, problems with the IPFS browser extension and others.
Future-proof?
One of the core advertised features of IPFS was that it made content future-proof. I'm not sure they used this expression, but basically you have content, you hash that, you get an address that never expires for that content, now everybody can refer to the same thing by the same name. Actually, it's better: content is split and hashed in a merkle-tree, so there's fine-grained deduplication, people can store only chunks of files and when a file is to be downloaded lots of people can serve it at the same time, like torrents.
But then come the protocol upgrades. IPFS has used different kinds of hashing algorithms, different ways to format the hashes, and will change the default algorithm for building the merkle-trees, so basically the same content now has a gigantic number of possible names/addresses, which defeats the entire purpose, and yes, files hashed using different strategies aren't automagically compatible.
Actually, the merkle algorithm could have been changed by each person on a file-by-file basis since the beginning (you could for example split a book file by chapter or page instead of by chunks of bytes) -- although probably no one ever did that. I know it's not easy to come up with the perfect hashing strategy in the first go, but the way these matters are being approached make me wonder that IPFS promoters aren't really worried about future-proof, or maybe we're just in Beta phase forever.
Ethereum?
This is also a big problem. IPFS is built by Ethereum enthusiasts. I can't read the mind of people behind IPFS, but I would imagine they have a poor understanding of incentives like the Ethereum people, and they tend towards scammer-like behavior like getting a ton of funds for investors in exchange for promises they don't know they can fulfill (like Filecoin and IPFS itself) based on half-truths, changing stuff in the middle of the road because some top-managers decided they wanted to change (move fast and break things) and squatting fancy names like "distributed web".
The way they market IPFS (which is not the main thing IPFS was initially designed to do) as a "peer-to-peer cloud" is very seductive for Ethereum developers just like Ethereum itself is: as a place somewhere that will run your code for you so you don't have to host a server or have any responsibility, and then Infura will serve the content to everybody. In the same vein, Infura is also hosting and serving IPFS content for Ethereum developers these days for free. Ironically, just like the Ethereum hoax peer-to-peer money, IPFS peer-to-peer network may begin to work better for end users as things get more and more centralized.
More about IPFS problems:
- IPFS problems: Too much immutability
- IPFS problems: General confusion
- IPFS problems: Shitcoinery
- IPFS problems: Community
- IPFS problems: Pinning
- IPFS problems: Conceit
- IPFS problems: Inefficiency
- IPFS problems: Dynamic links
See also
- A crappy course on torrents, on the protocol that has done most things right
- The Tragedy of IPFS in a series of links, an ongoing Twitter thread.
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28Lagoa Santa: como chegar -- partindo da rodoviária de Belo Horizonte
Ao descer de seu ônibus na rodoviária de Belo Horizonte às 4 e pouco da manhã, darás de frente para um caubói que toma cerveja em seus trajes típicos em um bar no setor mesmo de desembarque. Suba a escada à direita que dá no estacionamento da rodoviária. Vire à esquerda e caminhe por mais ou menos 400 metros, atravessando uma área onde pessoas suspeitas -- mas provavelmente dormindo em pé -- lhe observam, e então uma pracinha ocupada por um clã de mendigos. Ao avistar um enorme obelisco no meio de um cruzamento de duas avenidas, vire à esquerda e caminhe por mais 400 metros. Você verá uma enorme, antiga e bela estação com uma praça em frente, com belas fontes aqüáticas. Corra dali e dirija-se a um pedaço de rua à direita dessa praça. Um velho palco de antigos carnavais estará colocado mais ou menos no meio da simpática ruazinha de parelepípedos: é onde você pegará seu próximo ônibus.
Para entrar na estação é necessário ter um cartão com créditos recarregáveis. Um viajante prudente deixa sempre um pouco de créditos em seu cartão a fim de evitar filas e outros problemas de indisponibilidade quando chega cansado de viagem, com pressa ou em horários incomuns. Esse tipo de pessoa perceberá que foi totalmente ludibriado ao perceber que que os créditos do seu cartão, abastecido quando de sua última vinda a Belo Horizonte, há três meses, pereceram de prazo de validade e foram absorvidos pelos cofre públicos. Terá, portanto, que comprar mais créditos. O guichê onde os cartões são abastecidos abre às 5h, mas não se espante caso ele não tenha sido aberto ainda quando o primeiro ônibus chegar, às 5h10.
Com alguma sorte, um jovem de moletom, autorizado por dois ou três fiscais do sistema de ônibus que conversam alegremente, será o operador da catraca. Ele deixa entrar sem pagar os bêbados, os malandros, os pivetes. Bastante empático e perceptivo do desespero dos outros, esse bom rapaz provavelmente também lhe deixará entrar sem pagar.
Uma vez dentro do ônibus, não se intimide com os gritalhões e valentões que, ofendidíssimos com o motorista por ele ter parado nas estações, depois dos ônibus anteriores terem ignorado esses excelsos passageiros que nelas aguardavam, vão aos berros tirar satisfação.
O ponto final do ônibus, 40 minutos depois, é o terminal Morro Alto. Lá você verá, se procurar bem entre vários ônibus e pessoas que despertam a sua mais honesta suspeita, um veículo escuro, apagado, numerado 5882 e que abrigará em seu interior um motorista e um cobrador que descansam o sono dos justos.
Aguarde na porta por mais uns vinte minutos até que, repentinamente desperto, o motorista ligue o ônibus, abra as portas e já comece, de leve, a arrancar. Entre correndo, mas espere mais um tempo, enquanto as pessoas que têm o cartão carregado passem e peguem os melhores lugares, até que o cobrador acorde e resolva te cobrar a passagem nesse velho meio de pagamento, outrora o mais líqüído, o dinheiro.
Este último ônibus deverá levar-lhe, enfim, a Lagoa Santa.
-
@ 472f440f:5669301e
2025-06-04 20:58:53Marty's Bent
J.P. Morgan CEO Jamie Dimon has long been an outspoken skeptic and critic of bitcoin. He has called Bitcoin a speculative asset, a fraud, a pet rock, and has opined that it will inevitably blow up. A couple of years ago, he was on Capitol Hill saying that if he were the government, he would "close it down". Just within the last month, he was on Fox Business News talking with Maria Bartiromo, proclaiming that the U.S. should be stockpiling bullets and rare earth metals instead of bitcoin. It's pretty clear that Jamie Dimon, who is at the helm of the most powerful and largest bank in the world, does not like bitcoin one bit.
Evidence below:
via Bitcoin Magazine
via me
via CNBC
Despite Dimon's distinguished disdain for Bitcoin, J.P. Morgan cannot deny reality. The CEO of the largest bank in the world is certainly a powerful man, but no one individual, even in the position that Jamie Dimon is in, is more powerful than the market. And the market has spoken very clearly, it is demanding bitcoin. The Bitcoin ETFs have been the most successful ETFs in terms of pace of growth since their launch. They've accumulated tens of billions of dollars in AUM in a very short period of time. Outpacing the previous record set by the gold ETF, GLD.
Whether or not Jamie Dimon himself likes Bitcoin doesn't matter. J.P. Morgan, as the largest bank in the world and a publicly traded company, has a duty to shareholders. And that duty is to increase shareholder value by any ethical and legal means necessary. Earlier today, J.P. Morgan announced plans to offer clients financing against their Bitcoin ETFs, as well as some other benefits, including having their bitcoin holdings recognized in their overall net worth and liquid assets, similar to stocks, cars, and art, which will be massive for bitcoiners looking to get mortgages and other types of loans.
via Bloomberg
I've talked about this recently, but trying to buy a house when most of your liquid net worth is held in bitcoin is a massive pain in the ass. Up until this point, if you wanted to have your bitcoin recognized as part of your net worth and count towards your overall credit profile, you would need to sell some bitcoin, move it to a bank account, and have it sit there for a certain period of time before it was recognized toward your net worth. This is not ideal for bitcoiners who have sufficient cash flows and don't want to sell their bitcoin, pay the capital gains tax, and risk not being able to buy back the amount of sats they were forced to sell just to get a mortgage.
It's not yet clear to me whether or not J.P. Morgan will recognize bitcoin in cold storage toward their clients' net worth and credit profile, or if this is simply for bitcoin ETFs only. However, regardless, this is a step in the right direction and a validation of something that many bitcoiners have been saying for years. Inevitably, everyone will have to bend the knee to bitcoin. Today, it just happened to be the largest bank in the world. I expect more of this to come in the coming months, years, and decades.
Lyn Alden likes to say it in the context of the U.S. national debt and the fiscal crisis, but it also applies to bitcoin adoption and the need for incumbents to orient themselves around the demands of individual bitcoiners; nothing stops this train.
Corporate Bitcoin Treasuries are Changing Market Dynamics
Leon Wankum revealed how corporate Bitcoin treasuries are fundamentally reshaping business dynamics. Companies can now issue equity to fund operations while preserving their Bitcoin holdings, creating a revolutionary capital structure. Leon highlighted MicroStrategy's position, noting they hold enough Bitcoin to cover dividend payments for over 200 years. This model enables companies to reduce founder dilution since they don't need repeated funding rounds when their treasury appreciates.
"Some companies' Bitcoin treasuries are now worth more than all money they've ever raised." - Leon Wankum
Leon shared examples from his own portfolio companies where this strategy has proven transformative. Public companies have discovered an entirely new business model through strategic dilution that actually increases BTC per share. As Leon explained, this approach allows firms to leverage equity markets for operational funding while their Bitcoin treasury compounds in value, creating a positive feedback loop that benefits both shareholders and the company's long-term sustainability.
Check out the full podcast here for more on real estate price cycles, Bitcoin lending products, and the transition to a Bitcoin standard.
Headlines of the Day
California May Seize Idle Bitcoin After 3 Years - via X
Semler Scientific Buys $20M More Bitcoin, Holds $467M - via X
US Home Sellers Surge as Buyers Hit 4-Year Low - via X
Get our new STACK SATS hat - via tftcmerch.io
Take the First Step Off the Exchange
Bitkey is an easy, secure way to move your Bitcoin into self-custody. With simple setup and built-in recovery, it’s the perfect starting point for getting your coins off centralized platforms and into cold storage—no complexity, no middlemen.
Take control. Start with Bitkey.
Use the promo code “TFTC20” during checkout for 20% off
Ten31, the largest bitcoin-focused investor, has deployed $150.00M across 30+ companies through three funds. I am a Managing Partner at Ten31 and am very proud of the work we are doing. Learn more at ten31.vc/invest.
Final thought...
I feel old.
Get this newsletter sent to your inbox daily: https://www.tftc.io/bitcoin-brief/
Subscribe to our YouTube channels and follow us on Nostr and X:
-
@ cae03c48:2a7d6671
2025-06-09 14:01:57Bitcoin Magazine
Mapping Bitcoin’s Bull Cycle PotentialBitcoin’s Market Value to Realized Value, or MVRV ratio, remains one of the most reliable on-chain indicators for identifying local and macro tops and bottoms across every BTC cycle. By isolating data across different investor cohorts and adapting historical benchmarks to modern market conditions, we can generate more accurate insights into where Bitcoin may be headed next.
The Bitcoin MVRV Ratio
The MVRV Ratio compares Bitcoin’s market price to its realized price, essentially the average cost basis for all coins in the network. As of writing, BTC trades around $105,000 while the realized price floats near $47,000, putting the raw MVRV at 2.26. The Z-Score version of MVRV standardizes this ratio based on historical volatility, enabling clearer comparisons across different market cycles.
Figure 1: Historically, the MVRV Ratio and the MVRV Z-Score have accurately identified cycle peaks and bottoms. View Live Chart
Short-Term Holders
Short-term holders, defined as those holding Bitcoin for 155 days or less, currently have a realized price near $97,000. This metric often acts as dynamic support in bull markets and resistance in bear markets. Notably, when the Short Term Holder MVRV hits 1.33, local tops have historically occurred, as seen several times in both the 2017 and 2021 cycles. So far in the current cycle, this threshold has already been touched four times, each followed by modest retracements.
Figure 2: Short Term Holder MVRV reaching 1.33 in more recent cycles has aligned with local tops. View Live Chart
Long-Term Holders
Long-term holders, who’ve held BTC for more than 155 days, currently have an average cost basis of just $33,500, putting their MVRV at 3.11. Historically, Long Term Holder MVRV values have reached as high as 12 during major peaks. That said, we’re observing a trend of diminishing multiples each cycle.
Figure 3: Achieving a Long Term Holder MVRV value of 8 could extrapolate to a BTC price in excess of $300,000. View Live Chart
A key resistance band now sits between 7.5 and 8.5, a zone that has defined bull tops and pre-bear retracements in every cycle since 2011. If the current growth of the realized price ($40/day) continues for another 140–150 days, matching previous cycle lengths, we could see it reach somewhere in the region of $40,000. A peak MVRV of 8 would imply a price near $320,000.
A Smarter Market Compass
Unlike static all-time metrics, the 2-Year Rolling MVRV Z-Score adapts to evolving market dynamics. By recalculating average extremes over a rolling window, it smooths out Bitcoin’s natural volatility decay as it matures. Historically, this version has signaled overbought conditions when reaching levels above 3, and prime accumulation zones when dipping below -1. Currently sitting under 1, this metric suggests that substantial upside remains.
Figure 4: The current 2-Year Rolling MVRV Z-Score suggests more positive price action ahead. View Live Chart
Timing & Targets
A view of the BTC Growth Since Cycle Lows chart illustrates that BTC is now approximately 925 days removed from its last major cycle low. Historical comparisons to previous bull markets suggest we may be around 140 to 150 days away from a potential top, with both the 2017 and 2021 peaks occurring around 1,060 to 1,070 days after their respective lows. While not deterministic, this alignment reinforces the broader picture of where we are in the cycle. If realized price trends and MVRV thresholds continue on current trajectories, late Q3 to early Q4 2025 may bring final euphoric moves.
Figure 5: Will the current cycle continue to exhibit growth patterns similar to those of the previous two cycles? View Live Chart
Conclusion
The MVRV ratio and its derivatives remain essential tools for analyzing Bitcoin market behavior, providing clear markers for both accumulation and distribution. Whether observing short-term holders hovering near local top thresholds, long-term holders nearing historically significant resistance zones, or adaptive metrics like the 2-Year Rolling MVRV Z-Score signaling plenty of runway left, these data points should be used in confluence.
No single metric should be relied upon to predict tops or bottoms in isolation, but taken together, they offer a powerful lens through which to interpret the macro trend. As the market matures and volatility declines, adaptive metrics will become even more crucial in staying ahead of the curve.
For more deep-dive research, technical indicators, real-time market alerts, and access to a growing community of analysts, visit BitcoinMagazinePro.com.
Disclaimer: This article is for informational purposes only and should not be considered financial advice. Always do your own research before making any investment decisions.
This post Mapping Bitcoin’s Bull Cycle Potential first appeared on Bitcoin Magazine and is written by Matt Crosby.
-
@ b1ddb4d7:471244e7
2025-06-09 13:01:40“Not your keys, not your coins” isn’t a slogan—it’s a survival mantra in the age of digital sovereignty.
The seismic collapses of Mt. Gox (2014) and FTX (2022) weren’t anomalies; they were wake-up calls. When $8.7 billion in customer funds vanished with FTX, it exposed the fatal flaw of third-party custody: your bitcoin is only as secure as your custodian’s weakest link.
Yet today, As of early 2025, analysts estimate that between 2.3 million and 3.7 million Bitcoins are permanently lost, representing approximately 11–18% of bitcoin’s fixed maximum supply of 21 million coins, with some reports suggesting losses as high as 4 million BTC. This paradox reveals a critical truth: self-custody isn’t just preferable—it’s essential—but it must be done right.
The Custody Spectrum
Custodial Wallets (The Illusion of Control)
- Rehypothecation Risk: Most platforms lend your bitcoin for yield generation. When Celsius collapsed, users discovered their “held” bitcoin was loaned out in risky strategies.
- Account Freezes: Regulatory actions can lock withdrawals overnight. In 2023, Binance suspended dollar withdrawals for U.S. users citing “partner bank issues,” trapping funds for weeks.
- Data Vulnerability: KYC requirements create honeypots for hackers. The 2024 Ledger breach exposed 270,000 users’ personal data despite hardware security.
True Self-Custody
Self-custody means exclusively controlling your private keys—the cryptographic strings that prove bitcoin ownership. Unlike banks or exchanges, self-custody eliminates:- Counterparty risk (no FTX-style implosions)
- Censorship (no blocked transactions)
- Inflationary theft (no fractional reserve lending)
Conquering the Three Great Fears of Self-Custody
Fear 1: “I’ll Lose Everything If I Make a Mistake”
Reality: Human error is manageable with robust systems:
- Test Transactions: Always send a micro-amount (0.00001 BTC) before large transfers. Verify receipt AND ability to send back.
- Multi-Backup Protocol: Store seed phrases on fireproof/waterproof steel plates (not paper!). Distribute copies geographically—one in a home safe, another with trusted family 100+ miles away.
- SLIP39 Sharding: Split your seed into fragments requiring 3-of-5 shards to reconstruct. No single point of failure.
Fear 2: “Hackers Will Steal My Keys”
Reality: Offline storage defeats remote attacks:
- Hardware Wallets: Devices like Bitkey or Ledger keep keys in “cold storage”—isolated from internet-connected devices. Transactions require physical confirmation.
- Multisig Vaults: Bitvault’s multi-sig system requires attackers compromise multiple locations/devices simultaneously. Even losing two keys won’t forfeit funds.
- Air-Gapped Verification: Use dedicated offline devices for wallet setup. Never type seeds on internet-connected machines.
Fear 3: “My Family Can’t Access It If I Die”
Reality: Inheritance is solvable:
- Dead Man Switches: Bitwarden’s emergency access allows trusted contacts to retrieve encrypted keys after a pre-set waiting period (e.g., 30 days).
- Inheritance Protocols: Bitkey’s inheritance solution shares decryption keys via designated beneficiaries’ emails. Requires multiple approvals to prevent abuse.
- Public Key Registries: Share wallet XPUBs (not private keys!) with heirs. They can monitor balances but not spend, ensuring transparency without risk.
The Freedom Dividend
- Censorship Resistance: Send $10M BTC to a Wikileaks wallet without Visa/Mastercard blocking it.
- Privacy Preservation: Avoid KYC surveillance—non-custodial wallets like Flash require zero ID verification.
- Protocol Access: Participate in bitcoin-native innovations (Lightning Network, DLCs) only possible with self-custodied keys.
- Black Swan Immunity: When Cyprus-style bank bailins happen, your bitcoin remains untouched in your vault.
The Sovereign’s Checklist
- Withdraw from Exchanges: Move all BTC > $1,000 to self-custody immediately.
- Buy Hardware Wallet: Purchase DIRECTLY from manufacturer (no Amazon!) to avoid supply-chain tampering.
- Generate Seed OFFLINE: Use air-gapped device, write phrase on steel—never digitally.
- Test Recovery: Delete wallet, restore from seed before funding.
- Implement Multisig: For > $75k, use Bitvault for 2-of-3 multi-sig setup.
- Create Inheritance Plan: Share XPUBs/SLIP39 shards with heirs + legal documents.
“Self-custody isn’t about avoiding risk—it’s about transferring risk from opaque institutions to transparent, controllable systems you design.”
The Inevitable Evolution: Custody Without Compromise
Emerging solutions are erasing old tradeoffs:
- MPC Wallets: Services like Xapo Bank shatter keys into encrypted fragments distributed globally. No single device holds full keys, defeating physical theft.
- Social Recovery: Ethically designed networks (e.g., Bitkey) let trusted contacts restore access without custodial control.
- Biometric Assurance: Fingerprint reset protocols prevent lockouts from physical injuries.
Lost keys = lost bitcoin. But consider the alternative: entrusting your life savings to entities with proven 8% annual failure rates among exchanges. Self-custody shifts responsibility from hoping institutions won’t fail to knowing your system can’t fail without your consent.
Take action today: Move one coin. Test one recovery. Share one xpub. The path to unchained wealth begins with a single satoshi under your control.
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28Jofer
Jofer era um jogador diferente. À primeira vista não, parecia igual, um volante combativo, perseguia os atacantes adversários implacavelmente, um bom jogador. Mas não era essa a característica que diferenciava Jofer. Jofer era, digamos, um chutador.
Começou numa semifinal de um torneio de juniores. O time de Jofer precisava do empate e estava sofrendo uma baita pressão do adversário, mas o jogo estava 1 a 1 e parecia que ia ficar assim mesmo, daquele jeito futebolístico que parece, parece mesmo. Só que aos 46 do segundo tempo tomaram um gol espírita, Ruizinho do outro time saiu correndo pela esquerda e, mesmo sendo canhoto, foi cortando para o meio, os zagueiros meio que achando que já tinha acabado mesmo, devia ter só mais aquele lance, o árbitro tinha dado dois minutos, Ruizinho chutou, marcou e o goleiro, que só pulou depois que já tinha visto que não ia ter jeito, ficou xingando.
A bola saiu do meio e tocaram para Jofer, ninguém nem veio marcá-lo, o outro time já estava comemorando, e com razão, o juiz estava de sacanagem em fazer o jogo continuar, já estava tudo acabado mesmo. Mas não, estava certo, mais um minuto de acréscimo, justo. Em um minuto dá pra fazer um gol. Mas como? Jofer pensou nas partidas da NBA em que com alguns centésimos de segundo faltando o armador jogava de qualquer jeito para a cesta e às vezes acertava. De trás do meio de campo, será? Não vou ter nem força pra fazer chegar no gol. Vou virar piada, melhor tocar pro Fumaça ali do lado e a gente perde sem essa humilhação no final. Mas, poxa, e daí? Vou tentar mesmo assim, qualquer coisa eu falo que foi um lançamento e daqui a uns dias todo mundo esquece. Olhou para o próprio pé, virou ele de ladinho, pra fora e depois pra dentro (bom, se eu pegar daqui, direitinho, quem sabe?), jogou a bola pro lado e bateu. A bola subiu escandalosamente, muito alta mesmo, deve ter subido uns 200 metros. Jofer não tinha como ter a menor noção. Depois foi descendo, o goleirão voltando correndo para debaixo da trave e olhando pra bola, foi chegando e pulando já só pra acompanhar, para ver, dependurado no travessão, a bola sair ainda bem alta, ela bateu na rede lateral interna antes de bater no chão, quicar violentamente e estufar a rede no alto do lado direito de quem olhava.
Mas isso tudo foi sonho do Jofer. Sonhou acordado, numa noite em que demorou pra dormir, deitado na sua cama. Ficou pensando se não seria fácil, se ele treinasse bastante, acertar o gol bem de longe, tipo no sonho, e se não dava pra fazer gol assim. No dia seguinte perguntou a Brunildinho, o treinador de goleiros. Era difícil defender essas bolas, ainda mais se elas subissem muito, o goleiro ficava sem perspectiva, o vento alterava a trajetória a cada instante, tinha efeito, ela cairia rápido, mas claro que não valia à pena treinar isso, a chance de acertar o gol era minúscula. Mas Jofer só ia tentar depois que treinasse bastante e comprovasse o que na sua imaginação parecia uma excelente idéia.
Começou a treinar todos os dias. Primeiro escondido, por vergonha dos colegas, chegava um pouco antes e ficava lá, chutando do círculo central. Ao menor sinal de gente se aproximando, parava e ia catar as bolas. Depois, quando começou a acertar, perdeu a vergonha. O pessoal do clube todo achava engraçado quando via Jofer treinando e depois ouvia a explicação da boca de alguém, ninguém levava muito a sério, mas também não achava de todo ridículo. O pessoal ria, mas no fundo torcia praquilo dar certo, mesmo.
Aconteceu que num jogo que não valia muita coisa, empatezinho feio, aos 40 do segundo tempo, a marcação dos adversários já não estava mais pressionando, todo mundo contente com o empate e com vontade de parar de jogar já, o Henrique, meia-esquerdo, humilde, mas ainda assim um pouco intimidante para Jofer (jogava demais), tocou pra ele. Vai lá, tenta sua loucura aí. Assumiu a responsabilidade do nosso volante introspectivo. Seria mais verossímil se Jofer tivesse errado, primeira vez que tentou, restava muito tempo ainda pra ele ter a chance de ser herói, ninguém acerta de primeira, mas ele acertou. Quase como no sonho, Lucas, o goleiro, não esperava, depois que viu o lance, riu-se, adiantou-se para pegar a bola que ele julgava que quicaria na área, mas ela foi mais pra frente, mais e mais, daí Lucas já estava correndo, só que começou a pensar que ela ia pra fora, e ele ia só se dependurar no travessão e fazer seu papel de estar na bola. Acabou que por conta daquele gol eles terminaram em segundo no grupo daquele torneiozinho, ao invés de terceiro, e não fez diferença nenhuma.
-
@ 1eb5d2c9:ee9e8d5f
2025-06-09 16:14:17Ossification is exactly what the institutions want in order to control satsflow, whether it be through lending products or mass surveillance -
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28The flaw of "just use paypal/coinbase" arguments
For the millionth time I read somewhere that "custodial bitcoin is not bitcoin" and that "if you're going to use custodial, better use Paypal". No, actually it was "better use Coinbase", but I had heard the "PayPal" version in the past.
There are many reasons why using PayPal is not the same as using a custodial Bitcoin service or wallet that are obvious and not relevant here, such as the fact that you can't have Bitcoin balances on Bitcoin (or maybe now you can? but you can't send it around); plus all the reasons that are also valid for Coinbase such as you having to give all your data and selfies of yourself and your government documents and so on -- but let's ignore these reasons for now.
The most important reason why it isn't the same thing is that when you're using Coinbase you are stuck in Coinbase. Your Coinbase coins cannot be used to pay anyone that isn't in Coinbase. So Coinbase-style custodianship doesn't help Bitcoin. If you want to move out of Coinbase you have to withdraw from Coinbase.
Custodianship on Lightning is of a very different nature. You can pay people from other custodial platforms and people that are hosting their own Lightning nodes and so on.
That kind of custodianship doesn't do any harm to anyone, doesn't fracture the network, doesn't reduce the network effect of Lightning, in fact it increases it.
-
@ eb0157af:77ab6c55
2025-06-09 19:01:35The newly elected South Korean President is aiming for a breakthrough in the cryptocurrency market with the introduction of spot ETFs and a national stablecoin.
On June 4, South Korea officially elected Lee Jae-myung as its new President. The candidate from the left-wing party secured victory following the impeachment of former leader Yoon Suk-yeol, who ended his three-year term after a failed attempt to establish a military-backed government.
Voter turnout reached 79.4%, the highest in the last 28 years. Lee won 49.42% of the vote, defeating his conservative opponent Kim Moon-soo, who garnered 41.15%.
The new President’s pledges
In addition to traditional economic priorities such as supporting low-income families and small businesses, Lee Jae-myung has placed digital assets at the heart of his political agenda.
The core pillar of Lee’s strategy involves the introduction of spot ETFs for Bitcoin and Ethereum in the domestic market. Currently, the issuance and local trading of crypto ETFs remain banned in the country.
Another key element of the plan is the approval of stablecoins pegged to the South Korean won. During a discussion last month, Lee emphasized the need to develop a won-based stablecoin market to prevent capital flight abroad.
Under the new administration, South Korea will also work to complete the second phase of its regulatory framework for digital assets. The upcoming legislation will specifically address stablecoin regulations and transparency requirements for cryptocurrency exchanges.
The program also includes the creation of special zones for blockchain-related businesses, where regulations will be minimized to maximize innovation and operational efficiency.
However, this isn’t the first time South Korea has elected a crypto-friendly candidate. The conservative president Yoon Suk-yeol, later impeached, had made several crypto-friendly promises aimed at deregulating the sector, though many of those initiatives saw delays and limited progress during his three-year term.
Yoon’s deregulatory plans faced resistance from the Financial Services Commission (FSC), which maintained strict regulations citing investor protection. In recent months, however, the FSC has shown greater openness toward easing crypto rules — a shift that could support Lee’s commitments.
According to FSC data, by the end of last year the country had 9.7 million registered exchange users, representing nearly 20% of the total population.
The post South Korea: the new leader may favor Bitcoin ETFs and a national stablecoin appeared first on Atlas21.
-
@ a296b972:e5a7a2e8
2025-06-06 12:57:30Wie schon gewohnt durch die Empfänge von Baerbock und von der Leyen im Ausland, in Washington ein Empfang etwas oberhalb der 1. Class, von Staatsempfang keine Spur. Passt eigentlich auch nicht für den 51. Bundesstaat der USA. Aber immerhin flog die „Bundesrepublik Deutschland“ ohne Pannen, das ist ja auch schon mal was. Und bei solch einem erfahrenen Chef-Co-Piloten an Bord, der auch mal schnell einspringen könnte, sozusagen als 2. Wahl, kann eigentlich gar nichts mehr schief gehen. Vielleicht hat Fritzchen den Kapitän auch gefragt, ob er auch mal ans Steuer darf, wenn sich die Gelegenheit schon bietet.
Im Gepäck die eingerahmte Geburtsurkunde von Großvater Trump. Als ob Donald die sich nicht selbst besorgen könnte, wenn er Interesse daran hätte. Vielleicht hat er sie auch schon.
Die Übergabe, kurz und schmerzlos. Sie erinnert an einen Sketch von Loriot, „Weihnachten bei Hoppenstedts“:…oh, eine Krawatte! Der versprochene Ehrenplatz wird sich vermutlich in einer der unteren Etagen des Weißen Hauses befinden.
Man muss auch erst einmal darauf kommen, so typisch deutsch: Eine Geburtsurkunde als Geschenk. Das könnte man auch als einen Wink mit dem Zaunpfahl ansehen: Erinnere Dich an Deine deutschen Wurzeln (und lass uns gefälligst nicht fallen?).
Jetzt zur Einschätzung des Treffens: Vorfahrt mit frisch gewaschenem Auto, Schwarz-Rot-Gold vorne am Kotflügel, wie es sich gehört, Schwarz-Rot-Gold am Eingang. Ganz schön rechts. Warum eigentlich nicht die Regenbogenfahne?
Begrüßung durch Trump auf Nachfrage eines Reporters: „I love the People of Germany.“
Und Merz nutzt die Gelegenheit sich in Biedermeier-Style einzuschmeicheln: „And I love the People of America.“
Und Trump erwidert: „That‘s good!“
In welcher Atmosphäre findet das Treffen statt?
Trump hat ein Elefantengedächtnis. Er weiß um die abwertenden, diplomatiefreien Aussagen, die Merz über ihn gemacht hat. Er weiß, dass Merz ihn mehrfach persönlich beleidigend angegriffen hat. Als Präsident der USA steht man darüber. Aber man weiß es! Trump ist sich darüber im Klaren, mit welcher Geisteshaltung er es bei Merz zu tun hat.
Vor dem Hintergrund passt seine Aussage zur Presse: „Ich liebe die Deutschen.“ Das ist eine demokratische und höfliche Sympathiebekundung gegenüber der deutschen Bevölkerung, die Merz zwar miteinschließt, aber nicht direkt an ihn gerichtet ist.
Trump begrüßt Merz mit Handschlag, begrüßt aber eigentlich nicht den Kanzler, sondern die Deutschen.
Andererseits darf der Äußerung „Ich liebe die Deutschen“ auch nicht zu viel Bedeutung beigemessen werden, denn die Amerikaner sind ja dafür bekannt, dass sie gerne und schnell alles lieben: I love America, I love Coca-Cola, I love Peanuts und eben auch I love the People of Germany.
Merz nutzt gleich die Gelegenheit, sich anzubiedern, in dem er pariert: „Und ich liebe die Amerikaner.“, worauf Trump antwortet: „That’s good!“ Das kann man übersetzen mit „Das ist gut!“, aber auch mit „Das ist auch gut so!“, bei letzterem wäre es eine versteckte Drohung. Mach Dir bewusst, wo Du bist und mit wem Du es zu tun hast und verhalte Dich danach!
Nonverbal wird dem sonst in Deutschland so eloquent wirken wollenden, akzentuiert sprechenden Merz die Bedeutung zugedacht, die ihm aus Sicht von Trump gebührt. In Frankfurt heißen sie Wiener, in Wien heißen sie Frankfurter.
Somit sind die Voraussetzungen, unter denen das Treffen stattfinden soll, schon einmal von amerikanischer Seite aus geklärt.
Du bist hier Gast in meinem Haus, also benimm Dich auch entsprechend! Ich bin der Präsident der Vereinigten Staaten von Amerika und Du bist klein Fritzchen aus dem Sauerland. Die Machtverhältnisse sind unausgesprochen geklärt.
Man hat in gewohnter Manier Platz genommen. Die Journalisten stellen Ihre Fragen ausschließlich an Trump. Zufall, oder Teil einer orchestrierten Aufführung, das wird man nie erfahren.
So oder so, die Journalisten signalisieren durch ihre Fragen an Trump, auf welcher Seite sie stehen, es weht der Geist von „America first“. Was Germany dazu zu sagen hat, interessiert niemanden, warum auch?
Die Einseitigkeit ist schon sehr auffällig. Eigentlich hätte es die Journalisten interessieren müssen, wie Deutschland zu verschiedenen Themen steht. Keine Fragen an Merz zu Zöllen, zur Ukraine, zur Meinungsfreiheit, zur Opposition. Mit dem Anspruch, ein breites Spektrum an Meinungen abbilden zu wollen, hat das eigentlich nichts zu tun. Wenn das die Vorstellung von „Freedom of Speach“ ist, dann können hier Zweifel aufkommen.
Falls diese Fragerunde in Hollywood-Manier gestaltet wurde, dann spräche das eher für Propaganda pro Trump. Wäre es Propaganda, dann wäre das Ziel allerdings erreicht worden: Kein Mensch interessiert sich für das, was Deutschland, vertreten durch Merz, zu sagen hat.
Trump setzt dem Ganzen zum Schluss noch die Krone auf, in dem er die Journalisten auffordert, nun endlich doch auch noch ein paar Fragen an Merz zu richten. Das unterstreicht nochmals das (geplante oder ungeplante) Desinteresse der anwesenden Journalisten, die sich nun fast schon genötigt fühlen, anstandshalber etwas zu fragen.
Merz, der bisher brav wie ein Schüler dem Lehrer zugehört hat, muss nun blitzschnell entscheiden, wie er die „künstlich“ hergestellte Möglichkeit nutzen kann, um, etwas unter Druck, durch die Kürze der Zeit, mit wenigen Worten seinen Standpunkt nach außen zu tragen. Seine konzentrierte Kernbotschaft, die Essenz, die Deutschland aus den USA und die übrige Welt hören soll, ist: Er steht weiter an der Seite der Ukraine und Russland ist ausschließlich das Böse.
Ganz schön raffiniert, denn so hat Trump es geschafft, das Konzentrat der Merz’schen Logik aus ihm herauszupressen.
Beide bekunden den Willen zum Frieden. Gleichzeitig wird jedoch auch klar, was jeder unter Frieden versteht: Merz will „Frieden durch Krieg“ und Trump will „Frieden durch Frieden“.
Auf rund 45 Minuten Trump kommen rund 4 Minuten Merz. Die Minuten drücken exakt die Machtverhältnisse aus.
Hätte Trump vorgehabt, Merz vorzuführen, ihm die Ohren langzuziehen, ihn bis auf die Knochen zu blamieren, er hätte reichlich Möglichkeiten dazu gehabt.
Er hätte Merz fragen können, warum er seinerzeit meinte, dass ihn, Trump, als Arschloch zu bezeichnen, noch gelinde sei. Er hätte ihn fragen können, warum er Trump als Gefahr für die Demokratie ansieht. Trump weiß darum, er hat es jedoch nicht angesprochen, was ist der Grund dafür?
Und Vance, der ebenfalls anwesend war, hätte seine Feststellungen zur Meinungsfreiheit und der „Fire-Wall“ gegen die Opposition, die er auf der Sicherheitskonferenz in München klar formuliert hat, wiederholen können, jetzt, wo doch der Kanzler, als erster Ansprechpartner für Deutschland, persönlich hätte gefragt werden können.
Beim Besuch von Selenskyj haben beide ja auch gewaltig gezeigt, wer hier das Sagen hat.
Nichts! Keine schallende Ohrfeige für Merz, doch nur Erdnussbutter auf’s Sandwich geschmiert. Kein „You don’t have the cards…“, was den Tatsachen entsprechen würde.
Auf politischer Ebene bleibt in den USA nichts, rein gar nichts dem Zufall überlassen. Je länger man darüber nachdenkt, desto klarer kann einem werden, dass das Treffen genau so geplant war, wie es sich abgespielt hat. Aber was genau ist der Plan, der dahintersteckt? Es gibt einen, dass ist so sicher, wie das Amen in der Kirche.
Sollen sich die Deutschen, vor allem die deutsche Politik in Sicherheit wiegen? Wenn das Teil eines Planes wäre, wäre er gelungen, denn in Deutschland wird der Besuch als gelungen und erfolgreich bewertet, aus welchen Gründen auch immer. Inzwischen ist Deutschland ja Weltmeister im Schönreden.
Spannend auch die Vorstellung, wenn man die Phantasie anregt, wie das Gespräch verlaufen wäre, wenn die deutsche Opposition auf dem Stuhl von Merz gesessen hätte.
Es widerspräche der Realität, wenn nicht im Hintergrund ganz andere Ziele verfolgt und Absprachen getroffen würden. Welchen Einfluss auf das Treffen hat der bevorstehende NATO-Gipfel am 24. und 25. Juni 2025 in Den Haag?
Es drängt sich immer mehr der Verdacht auf, dass man es mit zwei Realitäten zu tun hat. Eine, die offiziell verkündet wird, und eine, die den Tatsachen entspricht, die aus welchen Gründen auch immer jedoch zunächst noch im Verborgenen bleibt. Ob das vielleicht sogar gut oder eher schlecht ist, wird die Zukunft zeigen. Klar ist jedoch, dass eine gesteuerte Realität in der Öffentlichkeit verbreitet werden soll, die man durchaus als Propaganda von allen Beteiligten bewerten kann. Da hackt eine Krähe der anderen kein Auge aus. Da heißt es wachsam bleiben und nicht der Versuchung zu erliegen, das zu glauben, was man gerne glauben möchte und von dem man sich wünscht, dass es eintritt.
„Bediene Dich Deines eigenen Verstandes.“ Das ist die Aufgabe der Zeit.
“Dieser Beitrag wurde mit dem Pareto-Client geschrieben.”
* *
(Bild von pixabay)
-
@ b2caa9b3:9eab0fb5
2025-06-04 19:50:29If you'd like to connect with me on XMPP, you're very welcome! I first used it many years ago, and now I've returned to it — and I'm really glad I did.
XMPP is a secure and privacy-friendly way to communicate. It's spam-resistant: messages only go through once you've accepted a contact request. To request a connection, just send me a message.
One of the great things about XMPP is that you have control over encryption. You can choose to use strong encryption like PGP or OMEMO, or even no encryption at all — it's entirely up to you. Your messages aren’t tied to any one company or service.
There are many apps (called clients) you can use with XMPP, and you’re not locked into a single one that monitors or sells your data. XMPP is an open protocol, which means freedom of choice and better privacy.
My XMPP username is: rubenstorm@c0nnect.de
I’ve also been much less active on Facebook, Instagram, and other social media. That’s because I’ve shifted from platforms to protocols — more decentralized, censorship-resistant tools that put users in control. I started exploring these about two years ago and haven’t looked back.
If you’re interested in learning more or want help getting started, feel free to reach out. Just message me using any XMPP client — I’ll be happy to connect!
-
@ 000002de:c05780a7
2025-06-04 17:09:47I know most of you aren't doing this but I hope this is helpful when talking to your friends and family about bitcoin. Specifically if they bring up Orange Man or have real issues with him.
First off we can see that most of the MAGA / Political Bitcoin cheer-leading is exclusively SoV/NGU and not freedom money. Its basically the crypto types. The shitcoiners. The scammers. I get why this will turn off people that don't love the orange man. I recently heard a technical podcaster say he didn't like being associated with bitcoin (though he said crypto and his co-host is a bitcoin only guy...). I'm here to tell you that's dumb.
Why? I know how dumb it is by experience. Back in the day I was a kid listening to Rush Limbaugh and he was destroying the sky is falling claims I was hearing in government schools. I used to come home freaking out about global warming and the destruction of the rain forests. This was in the 90s btw. Looking back on what Limbaugh said, he's been proven largely right. But that isn't my point. My point is that because of this and because of how dumb many of the environmentalists takes were, I ignored many environmental issues. I would turn off people that called themselves environmentalists. This was a mistake. I was ignoring many other problems with how we use resources and used weak reasoning on others. I seeded caring for the environment to the left. I let myself be sidelined by reactionary thinking.
A few years ago I learned about the Permaculture[^1] way of thinking and it kinda blew my mind. A guy named Jack Spirko said something that stuck with me. Everyone should be an environmentalist. At least to the extent that they care about the planet we all share. Of course we all know this but it flipped a switch in my head. I'd allowed myself to be a reactionary on the environment and harm humans do to the air, water, and soil as well as the creatures. I always cared about these things but it too a dude that I aligned with on many topics to snap me out of my programming.
I think a similar thing can happen with Bitcoin. Don't be reactionary. Just because some people you don't align with or like do like a thing... it doesn't mean that thing is bad. They could be representing it incorrectly. Bitcoin, if it truly is money is apolitical. Now, we can get into economics and dive into the deep end about hard money but the fact is that bitcoin shouldn't really be political in the sense of US politics on the ground. If you are just a voter or pleb you should be adopting bitcoin no matter what any politician says. The republicans and democrats are not that different on many topics and the MAGA movement is just pandering. Don't let the Orange Man turn you off from bitcoin. Don't let the number go up people turn you off. There are people living under oppressive regimes all over the globe that can be helped by bitcoin. We may need it in the US. Don't sleep on this because of a clown. Don't be dumb. Its a great way to stay poor and vulnerable.
[^1]: Permaculture is an ethical design science that uses natural systems to provide all human and ecological needs in a regenerative way.
https://stacker.news/items/997169
-
@ f0fd6902:a2fbaaab
2025-06-09 12:46:55A brinicle (brine icicle, also known as an ice stalactite) is a downward-growing hollow tube of ice enclosing a plume of descending brine that is formed beneath developing sea ice.
As seawater freezes in the polar ocean, salt brine concentrates are expelled from the sea ice, creating a downward flow of dense, extremely cold, saline water, with a lower freezing point than the surrounding water. When this plume comes into contact with the neighboring ocean water, its extremely low temperature causes ice to instantly form around the flow. This creates a hollow stalactite, or icicle, referred to as a brinicle. Source: https://en.wikipedia.org/wiki/Brinicle
https://www.youtube.com/watch?v=69aeBawfrRw
https://stacker.news/items/1001460
-
@ 87fedb9f:0da83419
2025-06-09 12:45:21Finding Calm in the Chaos
Ever notice how you start future-mapping to calm your nerves… and end up more anxious than when you began? You’re not alone! Join us for a playful, real-talk exploration of why our brilliant minds try to control everything — and how empathy, Buddhist wisdom, and EFT tapping can help us step out of the anxious loop and land back in the delicious now.
https://www.thrivingnow.center/t/1491/4
We covered…
1. Future Mapping is Fish-and-Water Awareness We often don’t realize how much mental energy we spend constantly planning scenarios - “if it rains, if they get upset, if this happens then that…” This protective pattern started early but now we can bring it into conscious awareness and choose how much energy to invest.
2. The Empathy App Creates Endless Scenarios Our empathetic nature means we’re not just planning for ourselves - we’re mapping out everyone else’s potential reactions, feelings, and needs. This creates exponentially more “what if” scenarios that keep our minds spinning in overdrive.
3. Fault-Finding is Too Crude for Thriving When we automatically assign blame (usually to ourselves), we’re operating from primitive brain patterns. Upgrading to a more refined viewpoint means seeing the “dance of energies” where everyone contributes and sometimes feet get stepped on - it’s part of life.
4. We Can’t Actually Control the River Life flows like a river, and we can steer our canoe but we cannot change the river itself. Our anxiety often signals we’re trying to do the impossible - control weather, other people’s moods, or outcomes beyond our influence.
5. Magical Thinking Says “If I Worry Enough, It Will Work Out” We unconsciously believe that suffering through worry ahead of time will somehow guarantee good outcomes. Our nervous system knows this is a lie, which creates more anxiety. We can release this “prepayment” fantasy.
6. Distributing the Broccoli Back to Its Owners We often scoop up everyone else’s responsibilities onto our plate to avoid conflict or being blamed. Learning to ask “Is this really my broccoli?” helps us return emotional and practical responsibilities to their rightful owners.
7. Include Safe and Good Possibilities in Your Maps When we only map threats and problems, we miss opportunities for joy, connection, and creative solutions. Consciously including positive possibilities activates different parts of ourselves - the creative, hopeful, and inspired aspects.
8. Tapping While Thinking Moves Energy Out of Stuck Loops Simply speaking our thoughts aloud while tapping the acupressure points breaks the narrow band of mental spinning. This engages our body’s intelligence and often reveals what words or feelings want to emerge beyond our conscious planning.
9. Being With What Is vs. Making Everyone Happy Instead of trying to make everyone feel good all the time (which is impossible), we can practice being present with people as they actually are. This is more respectful, connected, and requires much less exhausting management.
10. Anxiety Can Be Wise Body Guidance Rather than just a problem to fix, our anxiety often signals we’re trying to do something unwise - like changing unchangeable things or telling ourselves lies about what we can control. We can listen to this guidance.
11. The Sweet Spot of Thoughtful Planning We’re not throwing away our planning abilities - we’re finding the balance between appropriate preparation (throwing an umbrella in the bag) and exhausting over-management (trying to control every possible variable). Good and sufficient planning honors both our intelligence and life’s natural flow.
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28My personal experience (as a complete ignorant) of the blocksize debate in 2017
In the beginning of 2017 I didn't know Bitcoin was having a "blocksize debate". I had stopped paying attention to Bitcoin in 2014 after reading Tim Swanson's book on shitcoineiry and was surprise people even care about Bitcoin still while Ethereum and other fancy things were around.
My introduction to the subject was this interview with Andrew Stone and Andrew Clifford from Bitcoin Unlimited (still don't know who these guys are). I've listened to it and kinda liked the conspiracy theory about "a group of developers trying, against miners and users, to control the whole ecosystem by not allowing blocks to grow" (actually, if you listen to this interview that announced the creation of Blockstream and the sidechains whitepaper it does sound like a government agent bribing all the Core developers into forming a consortium that will turn Bitcoin into an Ethereum-like shitcoin under their control -- but this is just a useless digression).
Some time later I listened to this interview with Jimmy Song and was introduced to two hard forks and conspiracies and New York Agreement and got excited because I didn't care about Bitcoin (I'm ashamed to remember this feeling) and wanted to see things changing, people fighting, Bitcoin burning, for no reason. Oddly, what I grasped from the interview was that Jimmy Song was defending the agreement and expecting everybody to fulfill it.
When the day actually come and "Bitcoin Cash" forked I looked at it with pity because it looked clearly a failure from the beginning, but I still cheered for it a bit, still not knowing anything about the debate, besides the fact that blocks were bigger on BCH, which looked like a very reductionist explanation to me.
"Of course it's not just making blocks bigger, that would be too simple, they probably have a very complex plan I'm not apt to understand", I thought.
To my surprise the entire argument was actually just that: bigger blocks bigger blocks. I came to that conclusion by listening to tomwoods.com/1064, a debate in which reasonable arguments faced childish claims. That debate gave me perspective and was a clear, undisputed win from Jameson Lopp against Roger Ver.
Actually some time before that I had listened to another Tom Woods Show episode thinking it was going to be an episode about Bitcoin, but in fact it was just propaganda about a debate I had almost forgotten. And nothing about Bitcoin, everything about "Bitcoin Cash" and how there were two Bitcoins, one legitimate and the other unlegitimate.
So, from the perspective of someone that came to the debate totally fresh and only listens to the big-blocker arguments for a long time, they still don't convince anyone with some common sense (as I would like to think of myself), they just sound like mad dogs and everything goes against themselves.
Fast forward to the present and with much more understanding of the issues in place I started digging some material from 2016-2017 about the debate to try to get more context, and found this ridiculous interview with Mike Hearn. It isn't a waste of time to listen to it if you're not familiar with the debate from that time.
As I should have probably expected from my experience with Epicenter.tv, both the interviewers agree with Mike Hearn about his ridiculous claims about how (not his words) we have to subsidize the few thousand current Bitcoin users by preventing fees from increase and there are no trade-offs to doing that -- and even with everybody agreeing they all manage to sound stupid. There's not a single phrase that is defendable in the entire interview, no criticisms make any sense, it makes me feel bad for the the guy as he feels so self-assured and obviouslyright.
After knowing about these and other adventures of stupid people with high influences in the Bitcoin world trying to impose their idiocy on others it feels even more odd and unexpected to find Bitcoin in the right track. Generally in politics the most dumb wins, but apparently not in Bitcoin.
Bitcoin is a miracle.
-
@ 81022b27:2b8d0644
2025-06-09 12:45:09You probably already know that I’ve been playing around with the whole Nostr thing.
Well, slowly I have been posting my content on Nostr. The long-form content., like my https://www.theintuitivechiropractor.com am using Habla.news
Habla.News is basically a blog app. It’s like a Substack, but you don’t have the newsletter feature, but I hear one may be in the works.
So from what I understand so far, your content is all published in one stream, but different sites handle the content differently.
A Twitter-like short post reader like Primal will organize short post and a long-form reader like Habla will do the articles.
I created a personal webpage on Npub.Pro and a links page (like a LinkTree) as well.
You can click on to see some of those pages.
Now, I’m having issues with the NPub page, because sometimes it wants to show my content, sometimes it decides not to.
Did I mention all of this is FREE?
It’s a bit complicated to setup at first, especially if you are unfamiliar with crypto wallets and that kind of stuff-but you get the feeling this is all new stuff and we are here in a new frontier where this could end up being revolutionary.
Follow my posts on here to see how I progress. If you would like to start on Nostr, I will do everything I can to help you out.
Live Long and Prosper,
-Dan
-
@ 8d34bd24:414be32b
2025-06-04 13:21:20It is hard going through difficult situations. Health problems, family problems, financial problems, feeling alone, feeling stuck in the wrong place, and persecution are all situations that Christians regularly find themselves. The question is “How will we respond to pain?”
Advice for the Suffering
Some Christians pull away from God when it feels like everything is going wrong. They think God doesn’t care or can’t fix things. They resent every minute of pain and accuse God of wrongdoing. Even Job, who fell on his face in worship after losing everything had a moment of weakness.
“Oh that my grief were actually weighed\ And laid in the balances together with my calamity!\ For then it would be heavier than the sand of the seas;\ Therefore my words have been rash.” (Job 6:2-3) {emphasis mine}
After a moment of doubt, he did, however, repent of his rash words, as should we all.
Job should be an example to us all in dealing with pain and difficult situations. This is the verse that inspired this post.
But it is still my consolation,\ And I rejoice in unsparing pain,\ That I have not denied the words of the Holy One. \ (Job 6:10) {emphasis mine}
What an example! “I rejoice in unsparing pain.” When we trust God so much that we can rejoice in unsparing pain, we are trusting God as we should. We are accepting that God is working good in our life and we can trust Him even when nothing makes sense to us.
I also love how he says that his consolation is that “I have not denied the words of the Holy One.” Job is hurting terribly. His heart is broken. He is destitute. He lost 8 children in one day. His friends, that came to console him, have instead accused him of wrongdoing. He doesn’t understand what God is doing and why, but he has “NOT denied the words of the Holy One.” He is still putting his faith in God and his word. He is still submitting to God when he feels mistreated. He is still trusting \ God, even when he doesn’t understand what God is doing and why so many bad things are raining down on him in a torrent. Despite it all, he refuses to deny God. I hope if I am ever put through similar situations, that I can trust God and not deny His goodness.
Advice for friends
The book of Job, in addition to advice to those who are suffering, also gives advice to friends of those who are suffering. (or maybe more accurately, what not to do)
Job’s friends came with the intention to encourage and console Job. Every time Job would confess his thoughts, concerns, and questions, the response by his friends would get harsher and harsher. In the beginning they were gentle corrections, but they quickly escalated to accusing Job of great sins, that they had to know were not true, and blaming Job for every hard thing that had happened to him.
I’ve talked to other Christians who have confessed to being dragged down by other Christians who would tell them that every difficult thing that happened to them was due to their sin or lack of faith. In the case of Job, his difficulties were due to his faithfulness, in order to prove to Satan and all of history that a faithful man would stay faithful to God in good times and in bad.
Can Christians suffer as a consequence of sins and poor decisions? Of course, but there are many times that the faithful suffer. In Scripture, the people who suffered most were frequently the most faithful.
Job’s correction of his friends was accurate.
“For the despairing man there should be kindness from his friend;\ So that he does not forsake the fear of the Almighty.\ My brothers have acted deceitfully like a wadi,\ Like the torrents of wadis which vanish, (Job 6:14-15)
For those who don’t know, a wadi is a streambed that has water running in the wet season, but is bone dry during the dry season. Job accused his friends of being encouraging and helpful when he was prospering, then showing up and providing no encouragement or help when he needed it most. He thought refreshment was coming to visit, and instead what hope he had left was drained from him by his “friends.”
We need to make sure we aren’t one of those who decreases hope and decreases faith in one who is hurting. We need to have mercy when a hurting person works through their confusion and doubts and help lead them back to God instead of driving a wedge between them and God.
May the God of heaven protect us and lead us through the trials of life and may our trials lead us into the arms of our Savior. May God help us to merciful and to help guide the hurting into the Savior’s care.
Trust Jesus
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28idea: Per-paragraph paywalls
Using the lnurl-allowance protocol, a website could instead of putting a paywall over the entire site, charge a reader for only the paragraphs they read. Of course this requires trust from the reader on the website, but this is normal. The website could just hide the rest of the article before an invoice from the paragraph just read was paid.
This idea came from Colin from the Unhashed Podcast.
Could also work with podcasts and videos.
-
@ 81022b27:2b8d0644
2025-06-09 12:39:53I literally have no clue what I'm doing.
Nostr is a decentralized protocol that lets users share messages and content through independent servers called relays, ensuring no single entity controls the network. It uses cryptographic keys to verify identities and secure messages, making it censorship-resistant and privacy-focused.
That is the simplest definition that Grok could come up with defining what is Nostr.
I’ve been intrigued by this because it ties in blockchain, publishing content and privacy all into one.
It is intimately tied to a Bitcoin wallet, where readers can “Zap” you tips in Satoshis- which is Bitcoin “change”
There are no intermediaries, no card processing fees, no gatekeepers to keep your content hidden,none of that.
Maybe i’m still mad about being censored on social media for my Covid-19 posts, but the idea of not being able to be censored by a corporation or even my own government is appealing to me.
There are apps to see videos, blog apps and social media type apps.
You own your content and you can move it around wherever you like.
I will be experimenting with posting on there.
I’ve got two profiles on there (I told you I didnt know what I was doing)
I’m inviting you to join me on Nostr.
Live Long and Prosper,
_Dan
nostr:naddr1qvzqqqr4gupzpqgz9vnnj6wkj3excxuvf2ug4xstp72g774v9tpnxzptag4c6pjyqqxnzde58yen2d35xg6njve5x6ph8l
-
@ 9dd283b1:cf9b6beb
2025-06-04 08:33:32To all territory owners,
- Can I co-found a territory with someone? Is it on the roadmap to be able to do so?
- Can I automatically split the territory rewards with other stackers?
- Can I rename the territory in the future?
Thanks
https://stacker.news/items/996796
-
@ 6ad3e2a3:c90b7740
2025-06-04 08:32:29"Modern science is based on this principle: give us one free miracle and then we'll explain the rest."
— Terrence McKenna
I always wondered why a pot of water boils on the stove. I mean I know it boils because I turned on the electricity, but why does the electricity cause it to boil? I know the electricity produces heat, and the heat is conducted through the stainless steel pot and into the water, but why does the heat transfer from stovetop to the water?
I know the heat from the stove via the pot speeds up the molecules in the water touching it and that they in turn speed up the molecules touching them and so on throughout the pot, but why do speedy molecules cause adjacent molecules to speed up?
I mean I know they do this, but why do they do this? Why couldn’t it be that sped-up molecules only interact with sufficient speedy molecules and ignore slower ones? Why do they interact with all the molecules, causing all of them to speed up? Or why don’t the speedy ones, instead of sharing their excited state, hoard it and take more energy from adjacent slower molecules, thereby making them colder, i.e., why doesn’t half the water boil twice as fast (on the left side of the pot) while the other half (right side) turns to ice?
The molecules tend to bounce around randomly, interacting as equal opportunists on the surrounding ones rather than distinguishing only certain ones with which to interact. Why do the laws of thermodynamics behave as such rather than some other way?
There may be yet deeper layers to this, explanations going down to the atomic and even quantum levels, but no matter how far you take them, you are always, in the end, left with: “Because those are the laws of physics”, i.e., “because that’s just how it is.”
. . .
The Terrence McKenna quote, recently cited by Joe Rogan on his podcast, refers to the Big Bang, the current explanation adopted by the scientifically literate as to the origins of the universe. You see there was this insanely dense, infinitesimally small micro dot that one day (before the dawn of time) exploded outward with unimaginable power that over billions of years created what we perceive as the known universe.
What happened prior? Can’t really say because time didn’t yet exist, and “prior” doesn’t make sense in that context. Why did it do this? We don’t know. How did it get there? Maybe a supermassive black hole from another universe got too dense and exploded out the other side? Highly speculative.
So why do people believe in the Big Bang? Because it comports with and explains certain observable phenomena and predicted other phenomena which were subsequently confirmed. But scratch a little deeper for an explanation as to what caused it, for what purpose did it occur or what preceded it, and you hit the same wall.
. . .
Even if we were to understand at a quantum level how and why the Big Bang happened and what preceded it, let’s assume it’s due to Factor X, something we eventually replicated with mini big-bangs and universe creations in our labs, we would still be tasked with understanding why Factor X exists in the universe. And if Factor X were explained by Process Y, we’d still be stuck needing an explanation for Process Y — ad infinitum.
Science can thus only push the wall back farther, but can never scale it. We can never arrive at an ultimate explanation, only partial ones. Its limitations are the limitations of thought itself, the impossibility of ever creating a map at a scale of one mile per mile.
-
@ df478ecd:495107a7
2025-06-09 14:20:59{"wss://nostr21.com":{"read":true,"write":true},"wss://offchain.pub":{"read":true,"write":true},"wss://relay.damus.io":{"read":true,"write":true},"wss://relay.snort.social":{"read":true,"write":true},"wss://relay.jerseyplebs.com":{"write":true,"read":true},"wss://relay.primal.net":{"write":true,"read":true},"wss://news.utxo.one":{"write":true,"read":true},"wss://purplepag.es":{"read":true,"write":true}}