-

@ df173277:4ec96708
2025-02-07 00:41:34
## **Building Our Confidential Backend on Secure Enclaves**
With our newly released [private and confidential **Maple AI**](https://trymaple.ai/?ref=blog.opensecret.cloud) and the open sourcing of our [**OpenSecret** platform](https://github.com/OpenSecretCloud/opensecret?ref=blog.opensecret.cloud) code, I'm excited to present this technical primer on how we built our confidential compute platform leveraging **secure enclaves**. By combining AWS Nitro enclaves with end-to-end encryption and reproducible builds, our platform gives developers and end users the confidence that user data is protected, even at runtime, and that the code operating on their data has not been tampered with.
## **Auth and Databases Today**
As developers, we live in an era where protecting user data means "encryption at rest," plus some access policies and procedures. Developers typically run servers that:
1. Need to register users (authentication).
2. Collect and process user data in business-specific ways, often on the backend.
Even if data is encrypted at rest, it's commonly unlocked with a single master key or credentials the server holds. This means that data is visible during runtime to the application, system administrators, and potentially to the hosting providers. This scenario makes it difficult (or impossible) to guarantee that sensitive data isn't snooped on, memory-dumped, or used in unauthorized ways (for instance, training AI models behind the scenes).
## **"Just Trust Us" Isn't Good Enough**
In a traditional server architecture, users have to take it on faith that the code handling their data is the same code the operator claims to be running. Behind the scenes, applications can be modified or augmented to forward private information elsewhere, and there is no transparent way for users to verify otherwise. This lack of proof is unsettling, especially for services that process or store highly confidential data.
Administrators, developers, or cloud providers with privileged access can inspect memory in plaintext, attach debuggers, or gain complete visibility into stored information. Hackers who compromise these privileged levels can directly access sensitive data. Even with strict policies or promises of good conduct, the reality is that technical capabilities and misconfigurations can override words on paper. If a server master key can decrypt your data or can be accessed by an insider with root permissions, then "just trust us" loses much of its credibility.
The rise of AI platforms amplifies this dilemma. User data, often full of personal details, gets funneled into large-scale models that might be training or fine-tuning behind the scenes. Relying on vague assurances that "we don't look at your data" is no longer enough to prevent legitimate concerns about privacy and misuse. Now more than ever, providing a **strong, verifiable** guarantee that data remains off-limits, even when actively processed, has become a non-negotiable requirement for trustworthy services.
## **Current Attempts at Securing Data**
Current User Experience of E2EE Apps
While properly securing data is not easy, it isn't to say that no one is trying. Some solutions use **end-to-end encryption** (E2EE), where user data is encrypted client-side with a password or passphrase, so not even the server operator can decrypt it. That approach can be quite secure, but it also has its **limitations**:
1. **Key Management Nightmares**: If a user forgets their passphrase, the data is effectively lost, and there's no way to recover it from the developer's side.
2. **Feature Limitations**: Complex server-side operations (like offline/background tasks, AI queries, real-time collaboration, or heavy computation) can't easily happen if the server is never capable of processing decrypted data.
3. **Platform Silos**: Some solutions rely on iCloud, Google Drive, or local device storage. That can hamper multi-device usage or multi-OS compatibility.
Other approaches include self-hosting. However, these either burden users with dev ops overhead or revert to the "trust me" model for the server if you "self-host" on a cloud provider.
## **Secure Enclaves**
### **The Hybrid Approach**
Secure enclaves offer a compelling middle ground. They combine the privacy benefits of keeping data secure from prying admins while still allowing meaningful server-side computation. In a nutshell, an enclave is a protected environment within a machine, isolated at the hardware level, so that even if the OS or server is compromised, the data and code inside the enclave remain hidden.
App Service Running Inside Secure Enclave
### **High-Level Goal of Enclaves**
Enclaves, also known under the broader umbrella of **confidential computing**, aim to:\
• **Lock down data** so that only authorized code within the enclave can process the original plaintext data.\
• **Deny external inspection** by memory dumping, attaching a debugger, or intercepting plaintext network traffic.\
• **Prove** to external users or services that an enclave is running unmodified, approved code (this is where **remote attestation** comes in).
### **Different Secure Enclave Solutions**
[**AMD SEV**](https://www.amd.com/en/developer/sev.html?ref=blog.opensecret.cloud) **(Secure Encrypted Virtualization)** encrypts an entire virtual machine's memory so that even a compromised hypervisor cannot inspect or modify guest data. Its core concept is "lift-and-shift" security. No application refactoring is required because hardware-based encryption automatically protects the OS and all VM applications. Later enhancements (SEV-ES and SEV-SNP) added encryption of CPU register states and memory integrity protections, further limiting hypervisor tampering. This broad coverage means the guest OS is included in the trusted boundary. AMD SEV has matured into a robust solution for confidential VMs in multi-tenant clouds.
[**Intel TDX**](https://www.intel.com/content/www/us/en/developer/tools/trust-domain-extensions/overview.html?ref=blog.opensecret.cloud) **(Trust Domain Extensions)** shifts from process-level enclaves to full VM encryption, allowing an entire guest operating system and its applications to run in an isolated "trust domain." Like AMD SEV, Intel TDX encrypts and protects all memory the VM uses from hypervisors or other privileged software, so developers do not need to refactor their code to benefit from hardware-based confidentiality. This broader scope addresses many SGX limitations, such as strict memory bounds and the need to split out enclave-specific logic, and offers a more straightforward "lift-and-shift" path for running existing workloads privately. While SGX is now deprecated, TDX carries forward the core confidential computing principles but applies them at the virtual machine level for more substantial isolation, easier deployment, and the ability to scale up to large, memory-intensive applications.
[**Apple Secure Enclave and Private Compute**](https://security.apple.com/blog/private-cloud-compute/?ref=blog.opensecret.cloud) is a dedicated security coprocessor embedded in most Apple devices (iPhones, iPads, Macs) and now extended to Apple's server-side AI infrastructure. It runs its own microkernel, has hardware-protected memory, and securely manages operations such as biometric authentication, key storage, and cryptographic tasks. Apple's "Private Compute" approach in the cloud brings similar enclave capabilities to server-based AI, enabling on-device-grade privacy even when requests are processed in Apple's data centers.
[**AWS Nitro Enclaves**](https://docs.aws.amazon.com/enclaves/latest/user/nitro-enclave.html?ref=blog.opensecret.cloud) carve out a tightly isolated "mini-VM" from a parent EC2 instance, with its own vCPUs and memory guarded by dedicated Nitro cards. The enclave has no persistent storage and no external network access, significantly reducing the attack surface. Communication with the parent instance occurs over a secure local channel (vsock), and AWS offers hardware-based attestation so that secrets (e.g., encryption keys from AWS KMS) can be accessed only to the correct enclave. This design helps developers protect sensitive data or code even if the main EC2 instance's OS is compromised.
[**NVIDIA GPU TEEs**](https://www.nvidia.com/en-us/data-center/solutions/confidential-computing/?ref=blog.opensecret.cloud) **(Hopper H100 and Blackwell)** extend confidential computing to accelerated workloads by encrypting data in GPU memory and ensuring that even a privileged host cannot view or tamper with it. Data moving between CPU and GPU is encrypted in transit, so sensitive model weights or inputs remain protected during AI training or inference. NVIDIA's hardware and drivers handle secure data paths under the hood, allowing confidential large language model (LLM) workloads and other GPU-accelerated computations to run with minimal performance overhead and strong security guarantees.
### **Key Benefits**
One major advantage of enclaves is their ability to **keep memory completely off-limits** to outside prying eyes. Even administrators who can normally inspect processes at will are blocked from peeking into the enclave's protected memory space. The enclave model is a huge shift in the security model: it prevents casual inspection and defends against sophisticated memory dumping techniques that might otherwise leak secrets or sensitive data.
Another key benefit centers on cryptographic keys that are **never exposed outside the enclave**. Only verified code running inside the enclave environment can run decryption or signing operations, and it can only do so while that specific code is running. This ensures that compromised hosts or rogue processes, even those with high-level privileges, are unable to intercept or misuse the keys because the keys remain strictly within the trusted boundary of the hardware.
Enclaves can also offer the power of **remote attestation**, allowing external clients or systems to confirm that they're speaking to an authentic, untampered enclave. By validating the hardware's integrity measurements and enclave-specific proofs, the remote party can be confident in the underlying security properties, an important guarantee in multi-tenant environments or whenever trust boundaries extend across different organizations and networks.
Beyond that, **reproducible builds** can create a verifiable fingerprint proving which binary runs in the enclave. This is a step above a simple "trust us" approach. Anyone can independently recreate the enclave image and verify the resulting cryptographic hash by using a reproducible build system (for example, [our NixOS-based solution](https://github.com/OpenSecretCloud/opensecret/blob/master/flake.nix?ref=blog.opensecret.cloud)). If it matches, then users and developers know precisely how code handles their data, boosting confidence that no hidden changes exist.
It's worth noting that although enclaves shield you from software devs, cloud providers, and insider threats, you do have to trust the **hardware vendor** (Intel, AMD, Apple, AWS, or NVIDIA) to implement their microcode and firmware securely. The entire enclave model could be theoretically undermined if a CPU maker's root keys or manufacturing process were compromised. Fortunately, these companies undergo extensive audits and firmware validations (often with third-party researchers), and their remote attestation mechanisms allow you to confirm specific firmware versions before trusting an enclave. While this adds a layer of "vendor trust," it's still a far more contained risk than trusting an entire operating system or cloud stack, so enclaves remain a strong step forward in practical, confidential computing.
## **How We Use Secure Enclaves**
Now that we've covered the general idea of enclaves let's look at how we specifically implement them in OpenSecret, our developer platform for handling user auth, private keys, data encryption, and AI workloads.
### **Our Stack: AWS Nitro + Nvidia TEE**
• **AWS Nitro Enclaves for the backend**: All critical logic, authentication, private key management, and data encryption/decryption run inside an AWS Nitro Enclave.
• **Nvidia Trusted Execution for AI**: For large AI inference (such as the Llama 3.3 70B model), we utilize Nvidia's GPU-based TEEs to protect even GPU memory. This means users can feed sensitive data to the AI model **without** exposing it in plaintext to the GPU providers or us as the operator. [Edgeless Systems](https://www.edgeless.systems/?ref=blog.opensecret.cloud) is our Nvidia TEE provider, and due to the power of enclave verification, we don't need to worry about who runs the GPUs. We know requests can't be inspected or tampered with.
### **End-to-End Encryption from Client to Enclave**
Client-side Enclave Attestation from Maple AI
Before login or data upload, the user/client verifies the **enclave attestation** from our platform. This process proves that the specific Nitro Enclave is genuine and runs the exact code we've published. You can check this out live on [Maple AI's attestation page](https://trymaple.ai/proof?ref=blog.opensecret.cloud).
Based on the attestation, the client establishes a secure ephemeral communication channel that only that enclave can decrypt. While we take advantage of SSL, it is typically not terminated inside the enclave itself. To ensure there's full encrypted data transfer all the way through to the enclave, we establish this additional handshake based on the attestation document that is used for all API requests during the client session.
From there, the user's credentials, private keys, and data pass through this secure channel directly into the enclave, where they are decrypted and processed according to the user's request.
### **In-Enclave Operations**
At the core of OpenSecret's approach is the conviction that security-critical tasks must happen inside the enclave, where even administrative privileges or hypervisor-level compromise cannot expose plaintext data. This encompasses everything from when a user logs in to creating and managing sensitive cryptographic keys. By confining these operations to a protected hardware boundary, developers can focus on building their applications without worrying about accidental data leaks, insider threats, or malicious attempts to harvest credentials. The enclave becomes the ultimate gatekeeper: it controls how data flows and ensures that nothing escapes in plain form.
User Auth Methods running inside Enclave
A primary example is **user authentication**. All sign-in workflows, including email/password, OAuth, and upcoming passkey-based methods, are handled entirely within the enclave. As soon as a user's credentials enter our platform through the encrypted channel, they are routed straight into the protected environment, bypassing the host's operating system or any potential snooping channels. From there, authentication and session details remain in the enclave, ensuring that privileged outsiders cannot intercept or modify them. By centralizing these identity flows within a sealed environment, developers can assure their users that no one outside the enclave (including the cloud provider or the app's own sysadmins) can peek at, tamper with, or access sensitive login information.
Main Enclave Operations in OpenSecret
The same principle applies to **private key management**. Whether keys are created fresh in the enclave or securely transferred into it, they remain sealed away from the rest of the system. Operations like digital signing or content decryption happen only within the hardware boundary, so raw keys never appear in any log, file system, or memory space outside the enclave. Developers retain the functionality they need, such as verifying user actions, encrypting data, or enabling secure transactions without ever exposing keys to a broader (and more vulnerable) attack surface. User backup options exist as well, where the keys can be securely passed to the end user.
Realtime Encrypted Data Sync on Multiple Devices
Another crucial aspect is **data encryption at rest**. While user data ultimately needs to be stored somewhere outside the enclave, the unencrypted form of that data only exists transiently inside the protected environment. Encryption and decryption routines run within the enclave, which holds the encryption keys strictly in memory under hardware guards. If a user uploads data, it is promptly secured before it leaves the enclave. When data is retrieved, it remains encrypted until it reenters the protected region and is passed back to the user through the secured communication channel. This ensures that even if someone gains access to the underlying storage or intercepts data in transit, they will see only meaningless ciphertext.
Confidential AI Workloads
Finally, **confidential AI workloads** build upon this same pattern: the Nitro enclave re-encrypts data so it can be processed inside a GPU-based trusted execution environment (TEE) for inference or other advanced computations. Sensitive data, like user-generated text or private documents, never appears in the clear on the host or within GPU memory outside the TEE boundary. When an AI process finishes, only the results are returned to the enclave, which can then relay them securely to the requesting user. By seamlessly chaining enclaves together, from CPU-based Nitro Enclaves to GPU-accelerated TEEs, we can deliver robust, hardware-enforced privacy for virtually any type of server-side or AI-driven operation.
### **Reproducible Builds + Verification**
Client verifies enclave attestation document
We build our enclaves on **NixOS** with reproducible builds, ensuring that anyone can verify that the binary we publish is indeed the binary running in the enclave. This build process is essential for proving we haven't snuck in malicious code to exfiltrate data or collect sensitive logs.
Our code is fully open source ([GitHub: OpenSecret](https://github.com/OpenSecretCloud/opensecret?ref=blog.opensecret.cloud)), so you can audit or run it yourself. You can also verify that the cryptographic measurement the build process outputs matches the measurement reported by the enclave during attestation.
## **Putting It All Together**
OpenSecret Offering: Private Key Management, Encrypted Sync, Private AI, and Confidential Compute
By weaving secure enclaves into every step, from authentication to data handling to AI inference, we shift the burden of trust away from human policies and onto provable, hardware-based protections. For app developers, you can offer your users robust privacy guarantees without rewriting all your business logic or building an entire security stack from scratch. Whether you're storing user credentials or running complex operations on sensitive data, the enclave approach ensures plaintext remains inaccessible to even the most privileged parties outside the enclave boundary. Developers can focus on building great apps, while OpenSecret handles the cryptographic "lock and key" behind the scenes.
This model provides a secure-by-design environment for industries that demand strict data confidentiality, such as healthcare, fintech, cryptocurrency apps for secure key management, or decentralized identity platforms. Instead of worrying about memory dumps or backend tampering, you can trust that once data enters the enclave, it's sealed off from unauthorized eyes, including from the app developers themselves. And these safeguards don't just apply to niche use cases. Even general-purpose applications that handle login flows and user-generated content stand to benefit, especially as regulatory scrutiny grows around data privacy and insider threats.
Imagine a telehealth startup using OpenSecret enclaves to protect patient information for remote consultations. Not only would patient data remain encrypted at rest, but any AI-driven analytics to assist with diagnoses could be run privately within the enclave, ensuring no one outside the hardware boundary can peek at sensitive health records. A fintech company could similarly isolate confidential financial transactions, preventing even privileged insiders from viewing or tampering with raw transaction details. These real-world implementations give developers a clear path to adopting enclaves for serious privacy and compliance needs without overhauling their infrastructure.
OpenSecret aims to be a **full developer platform** with end-to-end security from day one. By incorporating user authentication, data storage, and GPU-based confidential AI into a single service, we eliminate many of the traditional hurdles in adopting enclaves. No more juggling separate tools for cryptographic key management, compliance controls, and runtime privacy. Instead, you get a unified stack that keeps data encrypted in transit, at rest, and in use.
Our solution also caters to the exploding demand for AI applications: with TEE-enabled GPU workloads, you can securely process sensitive data for text inference without ever exposing raw plaintext or sensitive documents to the host system.
The result is a new generation of apps that deliver advanced functionality, like real-time encrypted data sync or AI-driven insights, while preserving user privacy and meeting strict regulatory requirements. You don't have to rely on empty "trust us" promises because hardware enclaves, remote attestation, and reproducible builds collectively guarantee the code is running untampered. In short, OpenSecret offers the building blocks needed to create truly confidential services and experiences, allowing you to innovate while ensuring data protection remains ironclad.
## **Things to Come**
We're excited to build on our enclaved approach. Here's what's on our roadmap:
• **Production Launch**: We're using this in production now with [Maple AI](https://trymaple.ai/?ref=blog.opensecret.cloud) and have a developer preview playground up and running. We'll have the developer environment ready for production in a few months.\
• **Multi-Tenant Support**: Our platform currently works for single tenants, but we're opening this up so developers can onboard without needing a dedicated instance.\
• **Self-Serve Frontend**: A dev-friendly portal for provisioning apps, connecting OAuth or email providers, and managing users.\
• **External Key Signing Options**: Integrations with custom hardware security modules (HSMs) or customer-ran key managers that can only process data upon verifying the enclave attestation.\
• **Confidential Computing as a Service**: We'll expand our platform so that other developers can quickly create enclaves for specialized workloads without dealing with the complexities of Nitro or GPU TEEs.\
• **Additional SDKs**: In addition to our [JavaScript client-side SDK](https://github.com/OpenSecretCloud/OpenSecret-SDK?ref=blog.opensecret.cloud), we plan to launch official support for Rust, Python, Swift, Java, Go, and more.\
• **AI API Proxy with Attestation/Encryption**: We already provide an easy way to [access a Private AI through Maple AI](https://trymaple.ai/?ref=blog.opensecret.cloud), but we'd like to open this up more for existing tools and developers. We'll provide a proxy server that users can run on their local machines or servers that properly handle encryption to our OpenAI-compatible API.
## **Getting Started**
Ready to see enclaves in action? Here's how to dive in:\
1. **Run OpenSecret**: Check out our open-source repository at [OpenSecret on GitHub](https://github.com/OpenSecretCloud/opensecret?ref=blog.opensecret.cloud). You can run your own enclaved environment or try it out locally with Docker.\
2. **Review Our SDK**: Our [JavaScript client SDK](https://github.com/OpenSecretCloud/OpenSecret-SDK?ref=blog.opensecret.cloud) makes it easy to handle sign-ins, put/get encrypted data, sign with user private keys, etc. It handles attestation verification and encryption under the hood, making the API integration seamless.\
3. **Play with Maple AI**: Try out [Maple AI](https://blog.opensecret.cloud/maple-ai-private-encrypted-chat/) as an example of an AI app built directly on OpenSecret. Your queries are encrypted end to end, and the Llama model sees them only inside the TEE.\
4. **Developer Preview**: Contact us if you want an invite to our early dev platform. We'll guide you through our SDK and give you access to the preview server. We'd love to build with you and incorporate your feedback as we develop this further.
## **Conclusion**
By merging secure enclaves (AWS Nitro and Nvidia GPU TEEs), user authentication, private key management, and an end-to-end verifiable encrypted approach, **OpenSecret** provides a powerful platform where we protect user data during collection, storage, and processing. Whether it's for standard user management, handling private cryptographic keys, or powering AI inference, the technology ensures that **no one**, not even us or the cloud provider, can snoop on data in use.
**We believe** this is the future of trustworthy computing in the cloud. And it's **all open source**, so you don't have to just take our word for it: you can see and verify everything yourself.
Do you have questions, feedback, or a use case you'd like to test out? Come join us on [GitHub](https://github.com/OpenSecretCloud?ref=blog.opensecret.cloud), [Discord](https://discord.gg/ch2gjZAMGy?ref=blog.opensecret.cloud), or email us for a developer preview. We can't wait to see what you build!
*Thank you for reading, and welcome to the era of enclaved computing.*
-

@ df173277:4ec96708
2025-01-28 17:49:54
> Maple is an AI chat tool that allows you to have private conversations with a general-purpose AI assistant. Chats are synced automatically between devices so you can pick up where you left off.\
> [Start chatting for free.](https://trymaple.ai/)
We are excited to announce that [Maple AI](https://trymaple.ai/), our groundbreaking end-to-end encrypted AI chat app built on OpenSecret, is now publicly available. After months of beta testing, we are thrilled to bring this innovative technology to the world.
Maple is an AI chat tool that allows you to have private conversations with a general-purpose AI assistant. It can boost your productivity on work tasks such as writing documentation, creating presentations, and drafting emails. You can also use it for personal items like brainstorming ideas, sorting out life's challenges, and tutoring you on difficult coursework. All your chats are synced automatically in a secure way, so you can start on one device and pick up where you left off on another.
#### Why Secure and Private AI?
In today's digital landscape, it is increasingly evident that security and privacy are essential for individuals and organizations alike. Unfortunately, the current state of AI tools falls short. A staggering 48% of organizations enter non-public company information into AI apps, according to a [recent report by Cisco](https://www.cisco.com/c/en/us/about/trust-center/data-privacy-benchmark-study.html#~key-findings). This practice poses significant risks to company security and intellectual property.
Another concern is for journalists, who often work with sensitive information in hostile environments. Journalists need verification that their information remains confidential and protected when researching topics and communicating with sources in various languages. They are left to use underpowered local AI or input their data into potentially compromised cloud services.
At OpenSecret, we believe it is possible to have both the benefits of AI and the assurance of security and privacy. That's why we created Maple, an app that combines AI productivity with the protection of end-to-end encryption. Our platform ensures that your conversations with AI remain confidential, even from us. The power of the cloud meets the privacy of local.
#### How Does It Work?
Our server code is [open source](https://github.com/OpenSecretCloud/opensecret), and we use confidential computing to provide cryptographic proof that the code running on our servers is the same as the open-source code available for review. This process allows you to verify that your conversations are handled securely and privately without relying on trust. We live by the principle of "Don't trust, verify," and we believe this approach is essential for building in the digital age. You can read a more in-depth write-up on our technology later this week on this site.
#### How Much Does It Cost?
We are committed to making Maple AI accessible to everyone, so we offer a range of pricing plans to suit different needs and budgets. [Our Free plan allows for 10 chats per week, while our Starter plan ($5.99/month) and Pro plan ($20/month)](https://trymaple.ai/pricing) offer more comprehensive solutions for individuals and organizations with heavier workloads. We accept credit cards and Bitcoin (10% discount), allowing you to choose your preferred payment method.
- Free: $0
- Starter: $5.99/month
- Pro: $20/month
Our goal with Maple AI is to create a product that is secure through transparency. By combining open-source code, cryptography, and confidential computing, we can create a new standard for AI conversations - one that prioritizes your security and privacy.
Maple has quickly become a daily tool of productivity for our own work and those of our beta testers. We believe it will bring value to you as well. [Sign up now and start chatting privately with AI for free.](https://trymaple.ai/) Your secrets are safe in the open.
#### Are You An App Developer?
You can build an app like Maple. [OpenSecret provides secure auth, private key management, encrypted data sync, private AI, and more.](https://blog.opensecret.cloud/introducing-opensecret/) Our straightforward API behaves like other backends but automatically adds security and privacy. Use it to secure existing apps or brand-new projects. Protect yourself and your users from the liability of hosting personal data by checking out [OpenSecret](https://opensecret.cloud/).
<img src="https://blossom.primal.net/feb746d5e164e89f0d015646286b88237dce4158f8985e3caaf7e427cebde608.png">
Enjoy private AI Chat 🤘
<img src="https://blossom.primal.net/0594ec56e249de2754ea7dfc225a7ebd46bc298b5af168279ce71f17c2afada0.jpg">
-

@ df173277:4ec96708
2025-01-09 17:12:08
> Maple AI combines the best of both worlds – encryption and personal AI – to create a truly private AI experience. Discuss personal and company items with Maple, we can't read them even if we wanted to.\
> [Join the waitlist to get early access.](https://trymaple.ai)
We are a culture of app users. Every day, we give our personal information to websites and apps, hoping they are safe. Location data, eating habits, financial details, and health information are just a few examples of what we entrust to third parties. People are now entering a new era of computing that promises next-level benefits when given even more personal data: AI.
Should we sacrifice our privacy to unlock the productivity gains of AI? Should we hope our information won't be used in ways we disagree? We believe we can have the best of both worlds – privacy and personal AI – and have built a new project called Maple AI. Chat between you and an AI with full end-to-end encryption. We believe it's a game-changer for individuals seeking private and secure conversations.
#### Building a Private Foundation
Maple is built on our flagship product, [OpenSecret](https://opensecret.cloud), a backend platform for app developers that turns private encryption on by default. [The announcement post for OpenSecret explains our vision for an encrypted world and what the platform can do.](nostr:naddr1qvzqqqr4gupzphchxfm3ste32hfhkvczzxapme9gz5qvqtget6tylyd7wa8vjecgqqe5jmn5wfhkgatrd9hxwt20wpjku5m9vdex2apdw35x2tt9de3hy7tsw3jkgttzv93kketwvskhgur5w9nx5h52tpj) We think both users and developers benefit when sensitive personal information is encrypted in a private vault; it's a win-win.
#### The Power of Encrypted AI Chat
AI chat is a personal and intimate experience. It's a place to share your thoughts, feelings, and desires without fear of judgment. The more you share with an AI chatbot, the more powerful it becomes. It can offer personalized insights, suggestions, and guidance tailored to your unique needs and perspectives. However, this intimacy requires trust, and that's where traditional AI chatbots often fall short.
Traditional AI chats are designed to collect and analyze your data, often without your explicit consent. This data is used to improve the AI's performance, but it also creates a treasure trove of sensitive information that can be mined, sold, or even exploited by malicious actors. Maple AI takes a different approach. By using end-to-end encryption, we ensure that your conversations remain private and secure, even from us.
#### Technical Overview
So, how does Maple AI achieve this level of privacy and security? Here are some key technical aspects:
- **Private Key:** Each user has a unique private key that is automatically managed for them. This key encrypts and decrypts conversations, ensuring that only the user can access their data.
- **Secure Servers:** Our servers are designed with security in mind. We use secure enclaves to protect sensitive data and ensure that even our own team can't access your conversations.
- **Encrypted Sync:** One of Maple's most significant benefits is its encrypted sync feature. Unlike traditional AI chatbots, which store conversations in local storage or on standard cloud servers, Maple syncs your chats across all your devices. The private key managed by our secure servers means you can pick up where you left off on any device without worrying about your data being compromised.
- **Attestation and Open Code:** We publish our enclave code publicly. Using a process called attestation, users can verify that the code running on the enclave is the same as the code audited by the public.
- **Open Source LLM:** Maple uses major open-source models to maximize the openness of responses. The chat box does not filter what you can talk about. This transparency ensures that our AI is trustworthy and unbiased.
#### Personal and Work Use
Maple is secure enough to handle your personal questions and work tasks. Because we can't see what you chat about, you are free to use AI as an assistant on sensitive company items. Use it for small tasks like writing an important email or large tasks like developing your organization's strategy. Feed it sensitive information; it's just you and AI in the room. Attestation provides cryptographic proof that your corporate secrets are safe.
#### Local v Cloud
Today's AI tools provide different levels of privacy. The main options are to trust a third party with your unencrypted data, hoping they don't do anything with it, or run your own AI locally on an underpowered machine. We created a third option. Maple gives you the power of cloud computing combined with the privacy and security of a machine running on your desk. It's the best of both worlds.
#### Why the Maple name?
Privacy isn't just a human value - it's a natural one exemplified by the Maple tree. These organisms communicate with each other through a network of underground fungal hyphae, sending messages and sharing resources in a way that's completely invisible to organisms above ground. This discreet communication system allows Maple trees to thrive in even the most challenging environments. Our goal is to provide a way for everyone to communicate with AI securely so they can thrive in any environment.
#### Join the Waitlist
Maple AI will launch in early 2025 with free and paid plans. We can't wait to share it with the world. [Join our waitlist today to be among the first to experience the power of private AI chat.](https://trymaple.ai)
[](https://trymaple.ai/waitlist)
-

@ df173277:4ec96708
2025-01-09 17:02:52
> OpenSecret is a backend for app developers that turns private encryption on by default. When sensitive data is readable only by the user, it protects both the user and the developer, creating a more free and open internet. We'll be launching in 2025. [Join our waitlist to get early access.](https://opensecret.cloud)
In today's digital age, personal data is both an asset and a liability. With the rise of data breaches and cyber attacks, individuals and companies struggle to protect sensitive information. The consequences of a data breach can be devastating, resulting in financial losses, reputational damage, and compromised user trust. In 2023, the average data breach cost was $5 million, with some resulting in losses of over $1 billion.
Meanwhile, individuals face problems related to identity theft, personal safety, and public embarrassment. Think about the apps on your phone, even the one you're using to read this. How much data have you trusted to other people, and how would it feel if that data were leaked online?
Thankfully, some incredibly talented cypherpunks years ago gave the world cryptography. We can encrypt data, rendering it a secret between two people. So why then do we have data breaches?
> Cryptography at scale is hard.
#### The Cloud
The cloud has revolutionized how we store and process data, but it has limitations. While cloud providers offer encryption, it mainly protects data in transit. Once data is stored in the cloud, it's often encrypted with a shared key, which can be accessed by employees, third-party vendors, or compromised by hackers.
The solution is to generate a personal encryption password for each user, make sure they write it down, and, most importantly, hope they don't lose it. If the password is lost, the data is forever unreadable. That can be overwhelming, leading to low app usage.
> Private key encryption needs a UX upgrade.
## Enter OpenSecret
OpenSecret is a developer platform that enables encryption by default. Our platform provides a suite of security tools for app developers, including private key management, encrypted sync, private AI, and confidential compute.
Every user has a private vault for their data, which means only they can read it. Developers are free to store less sensitive data in a shared manner because there is still a need to aggregate data across the system.

### Private Key Management
Private key management is the superpower that enables personal encryption per user. When each user has a unique private key, their data can be truly private. Typically, using a private key is a challenging experience for the user because they must write down a long autogenerated number or phrase of 12-24 words. If they lose it, their data is gone.
OpenSecret uses secure enclaves to make private keys as easy as an everyday login experience that users are familiar with. Instead of managing a complicated key, the user logs in with an email address or a social media account.
The developer doesn't have to manage private keys and can focus on the app's user experience. The user doesn't have to worry about losing a private key and can jump into using your app.

### Encrypted Sync
With user keys safely managed, we can synchronize user data to every device while maintaining privacy. The user does not need to do complicated things like scanning QR codes from one device to the next. Just log in and go.
The user wins because the data is available on all their devices. The developer wins because only the user can read the data, so it isn't a liability to them.
### Private AI
Artificial intelligence is here and making its way into everything. The true power of AI is unleashed when it can act on personal and company data. The current options are to run your own AI locally on an underpowered machine or to trust a third party with your data, hoping they don't read it or use it for anything.
OpenSecret combines the power of cloud computing with the privacy and security of a machine running on your desk.
**Check out Maple AI**\
Try private AI for yourself! We built an app built with this service called [Maple AI](https://trymaple.ai). It is an AI chat that is 100% private in a verifiable manner. Give it your innermost thoughts or embarrassing ideas; we can't judge you. We built Maple using OpenSecret, which means you have a private key that is automatically managed for you, and your chat history is synchronized to all your devices. [Learn more about Maple AI - Private chat in the announcement post.](https://blog.opensecret.cloud/maple-ai-private-encrypted-chat/)

### Confidential Compute
Confidential computing is a game-changer for data security. It's like the secure hardware that powers Apple Pay and Google Pay on your phone but in the cloud. Users can verify through a process called attestation that their data is handled appropriately. OpenSecret can help you run your own custom app backend code that would benefit from the security of an enclave.
It's the new version of that lock on your web browser. When you see it, you know you're secure.

#### **But do we want our secrets to be open?**
OpenSecret renders a data breach practically useless. If hackers get into the backend, they enter a virtual hallway of locked private vaults. The leaked data would be gibberish, a secret in the open that is unreadable.
On the topic of openness, OpenSecret uses the power of open source to enable trust in the service. We publish our code in the open, and, using attestation, anyone can verify that private data is being handled as expected. This openness also provides developers with a backup option to safely and securely export their data.
> Don't trust, verify.
### **Join the Movement**
We're currently building out OpenSecret, and we invite you to join us on the journey. Our platform can work with your existing stack, and you can pick and choose the features you need. If you want to build apps with encryption enabled, [send us a message to get early access.](https://opensecret.cloud)
Users and companies deserve better encryption and privacy.\
Together, let's make that a reality.
[](https://opensecret.cloud)
-

@ f9cf4e94:96abc355
2024-12-31 20:18:59
Scuttlebutt foi iniciado em maio de 2014 por Dominic Tarr ( [dominictarr]( https://github.com/dominictarr/scuttlebutt) ) como uma rede social alternativa off-line, primeiro para convidados, que permite aos usuários obter controle total de seus dados e privacidade. Secure Scuttlebutt ([ssb]( https://github.com/ssbc/ssb-db)) foi lançado pouco depois, o que coloca a privacidade em primeiro plano com mais recursos de criptografia.
Se você está se perguntando de onde diabos veio o nome Scuttlebutt:
> Este termo do século 19 para uma fofoca vem do Scuttlebutt náutico: “um barril de água mantido no convés, com um buraco para uma xícara”. A gíria náutica vai desde o hábito dos marinheiros de se reunir pelo boato até a fofoca, semelhante à fofoca do bebedouro.

Marinheiros se reunindo em torno da rixa. ( [fonte]( https://twitter.com/IntEtymology/status/998879578851508224) )
Dominic descobriu o termo boato em um [artigo de pesquisa]( https://www.cs.cornell.edu/home/rvr/papers/flowgossip.pdf) que leu.
Em sistemas distribuídos, [fofocar]( https://en.wikipedia.org/wiki/Gossip_protocol) é um processo de retransmissão de mensagens ponto a ponto; as mensagens são disseminadas de forma análoga ao “boca a boca”.
**Secure Scuttlebutt é um banco de dados de feeds imutáveis apenas para acréscimos, otimizado para replicação eficiente para protocolos ponto a ponto.** **Cada usuário tem um log imutável somente para acréscimos no qual eles podem gravar.** Eles gravam no log assinando mensagens com sua chave privada. Pense em um feed de usuário como seu próprio diário de bordo, como um diário [de bordo]( https://en.wikipedia.org/wiki/Logbook) (ou diário do capitão para os fãs de Star Trek), onde eles são os únicos autorizados a escrever nele, mas têm a capacidade de permitir que outros amigos ou colegas leiam ao seu diário de bordo, se assim o desejarem.
Cada mensagem possui um número de sequência e a mensagem também deve fazer referência à mensagem anterior por seu ID. O ID é um hash da mensagem e da assinatura. A estrutura de dados é semelhante à de uma lista vinculada. É essencialmente um log somente de acréscimo de JSON assinado. **Cada item adicionado a um log do usuário é chamado de mensagem.**
**Os logs do usuário são conhecidos como feed e um usuário pode seguir os feeds de outros usuários para receber suas atualizações.** Cada usuário é responsável por armazenar seu próprio feed. Quando Alice assina o feed de Bob, Bob baixa o log de feed de Alice. Bob pode verificar se o registro do feed realmente pertence a Alice verificando as assinaturas. Bob pode verificar as assinaturas usando a chave pública de Alice.

Estrutura de alto nível de um feed
**Pubs são servidores de retransmissão conhecidos como “super peers”. Pubs conectam usuários usuários e atualizações de fofocas a outros usuários conectados ao Pub. Um Pub é análogo a um pub da vida real, onde as pessoas vão para se encontrar e se socializar.** Para ingressar em um Pub, o usuário deve ser convidado primeiro. Um usuário pode solicitar um código de convite de um Pub; o Pub simplesmente gerará um novo código de convite, mas alguns Pubs podem exigir verificação adicional na forma de verificação de e-mail ou, com alguns Pubs, você deve pedir um código em um fórum público ou chat. Pubs também podem mapear aliases de usuário, como e-mails ou nome de usuário, para IDs de chave pública para facilitar os pares de referência.
Depois que o Pub enviar o código de convite ao usuário, o usuário resgatará o código, o que significa que o Pub seguirá o usuário, o que permite que o usuário veja as mensagens postadas por outros membros do Pub, bem como as mensagens de retransmissão do Pub pelo usuário a outros membros do Pub.
Além de retransmitir mensagens entre pares, os Pubs também podem armazenar as mensagens. Se Alice estiver offline e Bob transmitir atualizações de feed, Alice perderá a atualização. Se Alice ficar online, mas Bob estiver offline, não haverá como ela buscar o feed de Bob. Mas com um Pub, Alice pode buscar o feed no Pub mesmo se Bob estiver off-line porque o Pub está armazenando as mensagens. **Pubs são úteis porque assim que um colega fica online, ele pode sincronizar com o Pub para receber os feeds de seus amigos potencialmente offline.**
Um usuário pode, opcionalmente, executar seu próprio servidor Pub e abri-lo ao público ou permitir que apenas seus amigos participem, se assim o desejarem. Eles também podem ingressar em um Pub público. Aqui está uma lista de [Pubs públicos em que]( https://github.com/ssbc/ssb-server/wiki/Pub-Servers) todos podem participar **.** Explicaremos como ingressar em um posteriormente neste guia. **Uma coisa importante a observar é que o Secure Scuttlebutt em uma rede social somente para convidados significa que você deve ser “puxado” para entrar nos círculos sociais.** Se você responder às mensagens, os destinatários não serão notificados, a menos que estejam seguindo você de volta. O objetivo do SSB é criar “ilhas” isoladas de redes pares, ao contrário de uma rede pública onde qualquer pessoa pode enviar mensagens a qualquer pessoa.

Perspectivas dos participantes
## Scuttlebot
O software Pub é conhecido como servidor Scuttlebutt (servidor [ssb]( https://github.com/ssbc/ssb-server) ), mas também é conhecido como “Scuttlebot” e `sbot`na linha de comando. O servidor SSB adiciona comportamento de rede ao banco de dados Scuttlebutt (SSB). Estaremos usando o Scuttlebot ao longo deste tutorial.
**Os logs do usuário são conhecidos como feed e um usuário pode seguir os feeds de outros usuários para receber suas atualizações.** Cada usuário é responsável por armazenar seu próprio feed. Quando Alice assina o feed de Bob, Bob baixa o log de feed de Alice. Bob pode verificar se o registro do feed realmente pertence a Alice verificando as assinaturas. Bob pode verificar as assinaturas usando a chave pública de Alice.

Estrutura de alto nível de um feed
**Pubs são servidores de retransmissão conhecidos como “super peers”. Pubs conectam usuários usuários e atualizações de fofocas a outros usuários conectados ao Pub. Um Pub é análogo a um pub da vida real, onde as pessoas vão para se encontrar e se socializar.** Para ingressar em um Pub, o usuário deve ser convidado primeiro. Um usuário pode solicitar um código de convite de um Pub; o Pub simplesmente gerará um novo código de convite, mas alguns Pubs podem exigir verificação adicional na forma de verificação de e-mail ou, com alguns Pubs, você deve pedir um código em um fórum público ou chat. Pubs também podem mapear aliases de usuário, como e-mails ou nome de usuário, para IDs de chave pública para facilitar os pares de referência.
Depois que o Pub enviar o código de convite ao usuário, o usuário resgatará o código, o que significa que o Pub seguirá o usuário, o que permite que o usuário veja as mensagens postadas por outros membros do Pub, bem como as mensagens de retransmissão do Pub pelo usuário a outros membros do Pub.
Além de retransmitir mensagens entre pares, os Pubs também podem armazenar as mensagens. Se Alice estiver offline e Bob transmitir atualizações de feed, Alice perderá a atualização. Se Alice ficar online, mas Bob estiver offline, não haverá como ela buscar o feed de Bob. Mas com um Pub, Alice pode buscar o feed no Pub mesmo se Bob estiver off-line porque o Pub está armazenando as mensagens. **Pubs são úteis porque assim que um colega fica online, ele pode sincronizar com o Pub para receber os feeds de seus amigos potencialmente offline.**
Um usuário pode, opcionalmente, executar seu próprio servidor Pub e abri-lo ao público ou permitir que apenas seus amigos participem, se assim o desejarem. Eles também podem ingressar em um Pub público. Aqui está uma lista de [Pubs públicos em que]( https://github.com/ssbc/ssb-server/wiki/Pub-Servers) todos podem participar **.** Explicaremos como ingressar em um posteriormente neste guia. **Uma coisa importante a observar é que o Secure Scuttlebutt em uma rede social somente para convidados significa que você deve ser “puxado” para entrar nos círculos sociais.** Se você responder às mensagens, os destinatários não serão notificados, a menos que estejam seguindo você de volta. O objetivo do SSB é criar “ilhas” isoladas de redes pares, ao contrário de uma rede pública onde qualquer pessoa pode enviar mensagens a qualquer pessoa.


Perspectivas dos participantes
## Pubs - Hubs
### Pubs públicos
| Pub Name | Operator | Invite Code |
| ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ |
| `scuttle.us` | [@Ryan]( https://keybase.io/ryan_singer) | `scuttle.us:8008:@WqcuCOIpLtXFRw/9vOAQJti8avTZ9vxT9rKrPo8qG6o=.ed25519~/ZUi9Chpl0g1kuWSrmehq2EwMQeV0Pd+8xw8XhWuhLE=` |
| [pub1.upsocial.com]( https://upsocial.com/) | [@freedomrules]( https://github.com/freedomrules) | `pub1.upsocial.com:8008:@gjlNF5Cyw3OKZxEoEpsVhT5Xv3HZutVfKBppmu42MkI=.ed25519~lMd6f4nnmBZEZSavAl4uahl+feajLUGqu8s2qdoTLi8=` |
| [Monero Pub]( https://xmr-pub.net/) | [@Denis]( https://github.com/Orville2112) | `xmr-pub.net:8008:@5hTpvduvbDyMLN2IdzDKa7nx7PSem9co3RsOmZoyyCM=.ed25519~vQU+r2HUd6JxPENSinUWdfqrJLlOqXiCbzHoML9iVN4=` |
| [FreeSocial]( https://freesocial.co/) | [@Jarland]( https://github.com/mxroute) | `pub.freesocial.co:8008:@ofYKOy2p9wsaxV73GqgOyh6C6nRGFM5FyciQyxwBd6A=.ed25519~ye9Z808S3KPQsV0MWr1HL0/Sh8boSEwW+ZK+8x85u9w=` |
| `ssb.vpn.net.br` | [@coffeverton]( https://about.me/coffeverton) | `ssb.vpn.net.br:8008:@ze8nZPcf4sbdULvknEFOCbVZtdp7VRsB95nhNw6/2YQ=.ed25519~D0blTolH3YoTwSAkY5xhNw8jAOjgoNXL/+8ZClzr0io=` |
| [gossip.noisebridge.info]( https://www.noisebridge.net/wiki/Pub) | [Noisebridge Hackerspace]( https://www.noisebridge.net/wiki/Unicorn) [@james.network]( https://james.network/) | `gossip.noisebridge.info:8008:@2NANnQVdsoqk0XPiJG2oMZqaEpTeoGrxOHJkLIqs7eY=.ed25519~JWTC6+rPYPW5b5zCion0gqjcJs35h6JKpUrQoAKWgJ4=` |
### Pubs privados
Você precisará entrar em contato com os proprietários desses bares para receber um convite.
| Pub Name | Operator | Contact |
| --------------------------------------------- | ------------------------------------------------------------ | ----------------------------------------------- |
| `many.butt.nz` | [@dinosaur]( https://dinosaur.is/) | [mikey@enspiral.com](mailto:mikey@enspiral.com) |
| `one.butt.nz` | [@dinosaur]( https://dinosaur.is/) | [mikey@enspiral.com](mailto:mikey@enspiral.com) |
| `ssb.mikey.nz` | [@dinosaur]( https://dinosaur.is/) | [mikey@enspiral.com](mailto:mikey@enspiral.com) |
| [ssb.celehner.com]( https://ssb.celehner.com/) | [@cel]( https://github.com/ssbc/ssb-server/wiki/@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519) | [cel@celehner.com](mailto:cel@celehner.com) |
### Pubs muito grandes
 *Aviso: embora tecnicamente funcione usar um convite para esses pubs, você provavelmente se divertirá se o fizer devido ao seu tamanho (muitas coisas para baixar, risco para bots / spammers / idiotas)* 
| Pub Name | Operator | Invite Code |
| --------------------------------------- | ----------------------------------------------- | ------------------------------------------------------------ |
| `scuttlebutt.de` | [SolSoCoG]( https://solsocog.de/impressum) | `scuttlebutt.de:8008:@yeh/GKxlfhlYXSdgU7CRLxm58GC42za3tDuC4NJld/k=.ed25519~iyaCpZ0co863K9aF+b7j8BnnHfwY65dGeX6Dh2nXs3c=` |
| `Lohn's Pub` | [@lohn]( https://github.com/lohn) | `p.lohn.in:8018:@LohnKVll9HdLI3AndEc4zwGtfdF/J7xC7PW9B/JpI4U=.ed25519~z3m4ttJdI4InHkCtchxTu26kKqOfKk4woBb1TtPeA/s=` |
| [Scuttle Space]( https://scuttle.space/) | [@guil-dot]( https://github.com/guil-dot) | Visit [scuttle.space]( https://scuttle.space/) |
| `SSB PeerNet US-East` | [timjrobinson]( https://github.com/timjrobinson) | `us-east.ssbpeer.net:8008:@sTO03jpVivj65BEAJMhlwtHXsWdLd9fLwyKAT1qAkc0=.ed25519~sXFc5taUA7dpGTJITZVDCRy2A9jmkVttsr107+ufInU=` |
| Hermies | s | net:hermies.club:8008~shs:uMYDVPuEKftL4SzpRGVyQxLdyPkOiX7njit7+qT/7IQ=:SSB+Room+PSK3TLYC2T86EHQCUHBUHASCASE18JBV24= |
## GUI - Interface Gráfica do Utilizador(Usuário)
### Patchwork - Uma GUI SSB (Descontinuado)
[**Patchwork**]( https://github.com/ssbc/patchwork) **é o aplicativo de mensagens e compartilhamento descentralizado construído em cima do SSB** . O protocolo scuttlebutt em si não mantém um conjunto de feeds nos quais um usuário está interessado, então um cliente é necessário para manter uma lista de feeds de pares em que seu respectivo usuário está interessado e seguindo.

Fonte: [scuttlebutt.nz]( https://www.scuttlebutt.nz/getting-started)
**Quando você instala e executa o Patchwork, você só pode ver e se comunicar com seus pares em sua rede local. Para acessar fora de sua LAN, você precisa se conectar a um Pub.** Um pub é apenas para convidados e eles retransmitem mensagens entre você e seus pares fora de sua LAN e entre outros Pubs.
Lembre-se de que você precisa seguir alguém para receber mensagens dessa pessoa. Isso reduz o envio de mensagens de spam para os usuários. Os usuários só veem as respostas das pessoas que seguem. Os dados são sincronizados no disco para funcionar offline, mas podem ser sincronizados diretamente com os pares na sua LAN por wi-fi ou bluetooth.
### Patchbay - Uma GUI Alternativa
Patchbay é um cliente de fofoca projetado para ser fácil de modificar e estender. Ele usa o mesmo banco de dados que [Patchwork]( https://github.com/ssbc/patchwork) e [Patchfoo]( https://github.com/ssbc/patchfoo) , então você pode facilmente dar uma volta com sua identidade existente.

### Planetary - GUI para IOS

[Planetary]( https://apps.apple.com/us/app/planetary-app/id1481617318) é um app com pubs pré-carregados para facilitar integração.
### Manyverse - GUI para Android

[Manyverse]( https://www.manyver.se/) é um aplicativo de rede social com recursos que você esperaria: posts, curtidas, perfis, mensagens privadas, etc. Mas não está sendo executado na nuvem de propriedade de uma empresa, em vez disso, as postagens de seus amigos e todos os seus dados sociais vivem inteiramente em seu telefone .
## Fontes
* https://scuttlebot.io/
* https://decentralized-id.com/decentralized-web/scuttlebot/#plugins
* https://medium.com/@miguelmota/getting-started-with-secure-scuttlebut-e6b7d4c5ecfd
* [**Secure Scuttlebutt**]( http://ssbc.github.io/secure-scuttlebutt/) **:** um protocolo de banco de dados global.
-

@ f1597634:c6d40bf4
2024-10-02 09:00:59
E aí, galera do Nostr! Já pensou em como proteger sua privacidade nesse mundo descentralizado? A gente sabe que a liberdade é daora, mas é importante saber como se proteger dos "bisbilhoteiros" que estão sempre à espreita.
**O perigo das fotos:**
- Sabia que as fotos que você posta podem dar muitas informações sobre você? É tipo deixar um mapa do tesouro nas mãos de alguém!
- Pessoal mau intencionadas podem usar essas fotos para descobrir onde você mora, qual seu IP e até mesmo sua identidade!
**Dicas para se proteger:**
- **Escolha seus apps com cuidado:** Nem todos os apps são iguais. Procure aqueles que a galera mais confia e que têm uma boa fama.
- **Ajuste as configurações:** A maioria dos apps tem configurações de privacidade. Mexa nelas para mostrar só o que você quiser para os outros.
- **Cuidado com links:** Não clique em qualquer link que você receber. Pode ser uma armadilha!
Uma boa prática ao navegar pelo Nostr é configurar um Proxy *confiável* no seu aplicativo. No Nostrudel por exemplo é possível configurar um proxy de imagem através das [configurações](https://nostrudel.ninja/#/settings/performance).
<img src="https://blossom.primal.net/d6f191331248dc5cc3e8617c0f94e2a2e44341451e0ec3275cc22b5195ccbdb3.jpg">
**Segundo análise, as redes a seguir ja disponibilizam esses proxies por padrão:**
- Amethyst
- Damus
\
**O que é esse tal de proxy?**
- Imagina que você está usando uma máscara. O proxy é tipo essa máscara, só que para o seu IP. Assim, ninguém vai saber quem você é de verdade.
- É como se você estivesse usando um disfarce para navegar pela internet!
**Outras dicas:**
- **Remover Exif:** Todas as fotos que tiramos possuem metadados, normalmente redes sociais e outras empresas removem esses dados quando recebem a imagem no servidor *(eventualmente pegam os dados)*.
Programas como [ExifCleaner](https://exifcleaner.com) removem essas informações antes do upload.
**Conclusão:**
A internet é um lugar incrível, mas também pode ser perigoso. Seguindo essas dicas, você vai poder curtir o Nostr com mais tranquilidade e sem se preocupar com os "bisbilhoteiros".
**Lembre-se:** A segurança é coisa séria! Compartilhe esse guia com seus amigos e ajude a criar uma comunidade mais segura.
**E aí, curtiu?**
**fonte: [https://victorhugo.info/artigos/nostr-como-se-proteger-1](https://victorhugo.info/artigos/nostr-como-se-proteger-1)**
-

@ a95c6243:d345522c
2025-02-19 09:23:17
*Die «moralische Weltordnung» – eine Art Astrologie.
Friedrich Nietzsche*
**Das Treffen der BRICS-Staaten beim [Gipfel](https://transition-news.org/brics-gipfel-in-kasan-warum-schweigt-die-schweiz) im russischen Kasan** war sicher nicht irgendein politisches Event. Gastgeber Wladimir Putin habe «Hof gehalten», sagen die Einen, China und Russland hätten ihre Vorstellung einer multipolaren Weltordnung zelebriert, schreiben Andere.
**In jedem Fall zeigt die Anwesenheit von über 30 Delegationen aus der ganzen Welt,** dass von einer geostrategischen Isolation Russlands wohl keine Rede sein kann. Darüber hinaus haben sowohl die Anreise von UN-Generalsekretär António Guterres als auch die Meldungen und Dementis bezüglich der Beitrittsbemühungen des NATO-Staats [Türkei](https://transition-news.org/turkei-entlarvt-fake-news-von-bild-uber-indiens-angebliches-veto-gegen-den) für etwas Aufsehen gesorgt.
**Im Spannungsfeld geopolitischer und wirtschaftlicher Umbrüche** zeigt die neue Allianz zunehmendes Selbstbewusstsein. In Sachen gemeinsamer Finanzpolitik schmiedet man interessante Pläne. Größere Unabhängigkeit von der US-dominierten Finanzordnung ist dabei ein wichtiges Ziel.
**Beim BRICS-Wirtschaftsforum in Moskau, wenige Tage vor dem Gipfel,** zählte ein nachhaltiges System für Finanzabrechnungen und Zahlungsdienste zu den vorrangigen Themen. Während dieses Treffens ging der russische Staatsfonds eine Partnerschaft mit dem Rechenzentrumsbetreiber BitRiver ein, um [Bitcoin](https://www.forbes.com/sites/digital-assets/2024/10/23/russia-launches-brics-mining-infrastructure-project/)-Mining-Anlagen für die BRICS-Länder zu errichten.
**Die Initiative könnte ein Schritt sein, Bitcoin und andere Kryptowährungen** als Alternativen zu traditionellen Finanzsystemen zu etablieren. Das Projekt könnte dazu führen, dass die BRICS-Staaten den globalen Handel in Bitcoin abwickeln. Vor dem Hintergrund der Diskussionen über eine «BRICS-Währung» wäre dies eine Alternative zu dem ursprünglich angedachten Korb lokaler Währungen und zu goldgedeckten Währungen sowie eine mögliche Ergänzung zum Zahlungssystem [BRICS Pay](https://en.wikipedia.org/wiki/BRICS_PAY).
**Dient der Bitcoin also der Entdollarisierung?** Oder droht er inzwischen, zum Gegenstand geopolitischer [Machtspielchen](https://legitim.ch/es-ist-ein-sieg-fuer-bitcoin-waehrend-russland-und-die-usa-um-die-krypto-vorherrschaft-kaempfen/) zu werden? Angesichts der globalen Vernetzungen ist es oft schwer zu durchschauen, «was eine Show ist und was im Hintergrund von anderen Strippenziehern insgeheim gesteuert wird». Sicher können Strukturen wie Bitcoin auch so genutzt werden, dass sie den Herrschenden dienlich sind. Aber die Grundeigenschaft des dezentralisierten, unzensierbaren Peer-to-Peer Zahlungsnetzwerks ist ihm schließlich nicht zu nehmen.
**Wenn es nach der EZB oder dem IWF geht, dann scheint statt Instrumentalisierung** momentan eher der Kampf gegen Kryptowährungen angesagt. Jürgen Schaaf, Senior Manager bei der Europäischen Zentralbank, hat jedenfalls dazu aufgerufen, [Bitcoin «zu eliminieren»](https://www.btc-echo.de/schlagzeilen/ezb-banker-es-gibt-gute-gruende-bitcoin-zu-eliminieren-194015/). Der Internationale Währungsfonds forderte El Salvador, das Bitcoin 2021 als gesetzliches Zahlungsmittel eingeführt hat, kürzlich zu [begrenzenden Maßnahmen](https://legitim.ch/el-salvador-iwf-fordert-trotz-nicht-eingetretener-risiken-neue-massnahmen-gegen-bitcoin/) gegen das Kryptogeld auf.
**Dass die BRICS-Staaten ein freiheitliches Ansinnen im Kopf haben,** wenn sie Kryptowährungen ins Spiel bringen, darf indes auch bezweifelt werden. Im [Abschlussdokument](http://static.kremlin.ru/media/events/files/en/RosOySvLzGaJtmx2wYFv0lN4NSPZploG.pdf) bekennen sich die Gipfel-Teilnehmer ausdrücklich zur UN, ihren Programmen und ihrer «Agenda 2030». Ernst Wolff nennt das «eine [Bankrotterklärung](https://x.com/wolff_ernst/status/1849781982961557771) korrupter Politiker, die sich dem digital-finanziellen Komplex zu 100 Prozent unterwerfen».
---
Dieser Beitrag ist zuerst auf *[Transition News](https://transition-news.org/aufstand-gegen-die-dollar-hegemonie)* erschienen.
-

@ a95c6243:d345522c
2025-02-15 19:05:38
**Auf der diesjährigen Münchner** **[Sicherheitskonferenz](https://transition-news.org/in-munchen-der-realitat-ins-auge-sehen)** **geht es vor allem um die Ukraine.** Protagonisten sind dabei zunächst die US-Amerikaner. Präsident Trump schockierte die Europäer kurz vorher durch ein Telefonat mit seinem Amtskollegen Wladimir Putin, während Vizepräsident Vance mit seiner Rede über Demokratie und Meinungsfreiheit für versteinerte Mienen und Empörung sorgte.
**Die Bemühungen der Europäer um einen Frieden in der Ukraine** halten sich, gelinde gesagt, in Grenzen. Größeres Augenmerk wird auf militärische Unterstützung, die Pflege von Feindbildern sowie Eskalation gelegt. Der deutsche Bundeskanzler Scholz [reagierte](https://transition-news.org/gesucht-friedenskanzler) auf die angekündigten Verhandlungen über einen möglichen Frieden für die Ukraine mit der Forderung nach noch höheren «Verteidigungsausgaben». Auch die amtierende Außenministerin Baerbock hatte vor der Münchner Konferenz [klargestellt](https://archive.is/nUpYa):
> «Frieden wird es nur durch Stärke geben. (...) Bei Corona haben wir gesehen, zu was Europa fähig ist. Es braucht erneut Investitionen, die der historischen Wegmarke, vor der wir stehen, angemessen sind.»
**Die Rüstungsindustrie freut sich in jedem Fall über weltweit steigende Militärausgaben.** Die Kriege in der Ukraine und in Gaza tragen zu [Rekordeinnahmen](https://transition-news.org/kriege-sind-fur-waffenproduzenten-und-hedgefonds-f-king-good) bei. Jetzt «winkt die Aussicht auf eine jahrelange große Nachrüstung in Europa», auch wenn der Ukraine-Krieg enden sollte, so hört man aus Finanzkreisen. In der Konsequenz kennt «die Aktie des deutschen Vorzeige-Rüstungskonzerns Rheinmetall in ihrem Anstieg [offenbar gar keine Grenzen](https://finanzmarktwelt.de/rheinmetall-aktie-mit-mega-rally-nachruestung-und-1-000-euro-kursziel-339271/) mehr». «Solche Friedensversprechen» wie das jetzige hätten in der Vergangenheit zu starken Kursverlusten geführt.
**Für manche Leute sind Kriegswaffen und sonstige Rüstungsgüter Waren wie alle anderen,** jedenfalls aus der Perspektive von Investoren oder Managern. Auch in diesem Bereich gibt es Startups und man spricht von Dingen wie innovativen Herangehensweisen, hocheffizienten Produktionsanlagen, skalierbaren Produktionstechniken und geringeren Stückkosten.
**Wir lesen aktuell von Massenproduktion und gesteigerten Fertigungskapazitäten** für Kriegsgerät. Der Motor solcher Dynamik und solchen Wachstums ist die Aufrüstung, die inzwischen permanent gefordert wird. Parallel wird die Bevölkerung verbal eingestimmt und auf Kriegstüchtigkeit getrimmt.
**Das Rüstungs- und KI-Startup Helsing verkündete kürzlich** eine «dezentrale [Massenproduktion](https://www.trendingtopics.eu/helsing-kampfdrohnen-unicorn-startet-dezentrale-massenproduktion-fuer-ukrainekrieg/) für den Ukrainekrieg». Mit dieser Expansion positioniere sich das Münchner Unternehmen als einer der weltweit führenden Hersteller von Kampfdrohnen. Der nächste [«Meilenstein»](https://archive.is/eZsWP) steht auch bereits an: Man will eine Satellitenflotte im Weltraum aufbauen, zur Überwachung von Gefechtsfeldern und Truppenbewegungen.
**Ebenfalls aus München stammt das als** **[DefenseTech-Startup](https://www.trendingtopics.eu/arx-robotics-produktion/)** **bezeichnete Unternehmen** ARX Robotics. Kürzlich habe man in der Region die größte europäische Produktionsstätte für autonome Verteidigungssysteme eröffnet. Damit fahre man die Produktion von Militär-Robotern hoch. Diese Expansion diene auch der Lieferung der «größten Flotte unbemannter Bodensysteme westlicher Bauart» in die Ukraine.
**Rüstung boomt und scheint ein Zukunftsmarkt zu sein.** Die Hersteller und Vermarkter betonen, mit ihren Aktivitäten und Produkten solle die europäische Verteidigungsfähigkeit erhöht werden. Ihre Strategien sollten sogar «zum Schutz demokratischer Strukturen beitragen».
***
Dieser Beitrag ist zuerst auf ***[Transition News](https://transition-news.org/so-klingt-das-aufrustungs-business-startups-und-alte-hasen)*** erschienen.
-

@ 04ed2b8f:75be6756
2025-02-19 08:59:43
Too many people look at greatness like it belongs to someone else. They see the champions, the innovators, the warriors of history and think, *That’s beyond me. I could never do that.* But why? Are they not made of flesh and blood like you? Do they not breathe the same air?
**If another human being has done it, then it’s possible.** And if it’s possible, then what’s stopping you from doing it too?
---
### **Excuses Are for the Weak**
People love to convince themselves that others have *something special*—better genetics, more talent, better luck. They use that as an excuse to stay comfortable.
- *“I could never be a top athlete, I wasn’t born for it.”*
- *“Starting a billion-dollar business? That’s for people who were born rich.”*
- *“Mastering a skill like coding, speaking multiple languages, or becoming a leader? I don’t have that kind of brain.”*
Bullshit.
Every champion, every legend, every revolutionary **started as an ordinary person**—until they chose otherwise.
---
### **Examples of Those Who Refused to Accept Limits**
🔥 **David Goggins**—Once an overweight exterminator. He decided he wanted to be a Navy SEAL. People told him it was impossible. He lost over 100 pounds in three months and endured three Hell Weeks. Now, he’s one of the toughest endurance athletes on the planet.
🔥 **Arnold Schwarzenegger**—Born in a small Austrian town. No connections, no wealth. He became a bodybuilding legend, a Hollywood superstar, and the Governor of California. He *made* it possible.
🔥 **Oprah Winfrey**—Born into poverty, abused as a child, told she wasn’t fit for television. Instead of accepting those limits, she broke them and became one of the most powerful women in media.
🔥 **Elon Musk**—Had no experience building rockets. Yet, when NASA and the world’s top engineers said private space travel was impossible, he ignored them. Now SpaceX is leading space exploration.
What do all these people have in common?
They **refused to believe that greatness was only for others.** They saw what was humanly possible and decided it was within their reach.
---
### **The Only Barrier Is You**
It’s not your background.
It’s not your intelligence.
It’s not luck.
The **only** thing standing between you and what you want is the belief that you can’t do it.
🔥 People run ultra-marathons through the desert.
🔥 People lift cars off their trapped loved ones.
🔥 People break records, survive impossible odds, and push the limits of human ability every single day.
**So what’s your excuse?**
If it’s been done, **it can be done again.** If someone before you has mastered a skill, built an empire, overcome the odds—**then so can you.**
---
### **Now, the Choice Is Yours**
You can stay in the comfort zone, making excuses while others claim the victories.
Or you can accept this truth: **Anything humanly possible is within your reach.**
The only question is—**will you reach for it?**
-

@ c631e267:c2b78d3e
2025-02-07 19:42:11
*Nur wenn wir aufeinander zugehen, haben wir die Chance* *\
auf Überwindung der gegenseitigen Ressentiments!* *\
Dr. med. dent. Jens Knipphals*  
**In Wolfsburg sollte es kürzlich eine Gesprächsrunde von Kritikern der Corona-Politik** mit Oberbürgermeister Dennis Weilmann und Vertretern der Stadtverwaltung geben. Der Zahnarzt und [langjährige](https://transition-news.org/wo-sind-einigkeit-recht-und-freiheit) Maßnahmenkritiker Jens Knipphals hatte diese Einladung ins Rathaus erwirkt und [publiziert](https://www.alexander-wallasch.de/impfgeschichten/brandbrief-zahnarzt-laesst-nicht-locker-showdown-im-wolfsburger-rathaus). Seine Motivation:
> «Ich möchte die Spaltung der Gesellschaft überwinden. Dazu ist eine umfassende Aufarbeitung der Corona-Krise in der Öffentlichkeit notwendig.»
**Schon früher hatte Knipphals Antworten von den Kommunalpolitikern verlangt,** zum Beispiel bei öffentlichen [Bürgerfragestunden](https://archive.is/ttTZc). Für das erwartete Treffen im Rathaus formulierte er Fragen wie: Warum wurden fachliche Argumente der Kritiker ignoriert? Weshalb wurde deren Ausgrenzung, Diskreditierung und Entmenschlichung nicht entgegengetreten? In welcher Form übernehmen Rat und Verwaltung in Wolfsburg persönlich Verantwortung für die erheblichen Folgen der politischen Corona-Krise?
**Der Termin fand allerdings nicht statt** – der Bürgermeister sagte ihn kurz vorher wieder ab. Knipphals bezeichnete Weilmann anschließend als [Wiederholungstäter](https://www.youtube.com/watch?v=b_zzp6jKiHo), da das Stadtoberhaupt bereits 2022 zu einem Runden Tisch in der Sache eingeladen hatte, den es dann nie gab. Gegenüber *Multipolar* [erklärte](https://multipolar-magazin.de/artikel/corona-aufarbeitung-wolfsburg) der Arzt, Weilmann wolle scheinbar eine öffentliche Aufarbeitung mit allen Mitteln verhindern. Er selbst sei «inzwischen absolut desillusioniert» und die einzige Lösung sei, dass die Verantwortlichen gingen.
**Die Aufarbeitung der Plandemie beginne bei jedem von uns selbst,** sei aber letztlich eine gesamtgesellschaftliche Aufgabe, [schreibt](https://peds-ansichten.de/2025/01/plandemie-aufarbeitung/) Peter Frey, der den «Fall Wolfsburg» auch in seinem Blog behandelt. Diese Aufgabe sei indes deutlich größer, als viele glaubten. Erfreulicherweise sei der öffentliche Informationsraum inzwischen größer, trotz der weiterhin unverfrorenen Desinformations-Kampagnen der etablierten Massenmedien.
**Frey erinnert daran, dass Dennis Weilmann mitverantwortlich** für gravierende Grundrechtseinschränkungen wie die 2021 eingeführten 2G-Regeln in der Wolfsburger Innenstadt zeichnet. Es sei naiv anzunehmen, dass ein Funktionär einzig im Interesse der Bürger handeln würde. Als früherer Dezernent des Amtes für Wirtschaft, Digitalisierung und Kultur der Autostadt kenne Weilmann zum Beispiel die Verknüpfung von Fördergeldern mit politischen Zielsetzungen gut.
**Wolfsburg wurde damals zu einem Modellprojekt** des Bundesministeriums des Innern (BMI) und war Finalist im [Bitkom](https://pareto.space/a/naddr1qqxnzden8qen2vejxvenjv35qgs2jhrzgwzvvzgz42kfmef2kr7w8x573k4r62c5ydjh8gyn6dz4ytqrqsqqqa28qyxhwumn8ghj7mn0wvhxcmmvqyv8wumn8ghj7mn0wd68ytn8wfhk7an9d9uzucm0d5qs7amnwvaz7tmwdaehgu3wd4hk6qg5waehxw309ahx7um5wghx77r5wghxgetkqydhwumn8ghj7mn0wd68ytnnwa5hxuedv4hxjemdvyhxx6qpzamhxue69uhhqctjv46x7tnwdaehgu339e3k7mgpz4mhxue69uhhqatjwpkx2un9d3shjtnrdaksz9nhwden5te0wfjkccte9cc8scmgv96zucm0d5q3gamnwvaz7tmjv4kxz7fwv3sk6atn9e5k7qgkwaehxw309aex2mrp0yhxummnw3ezucnpdejqmk3pae)-Wettbewerb «Digitale Stadt». So habe rechtzeitig vor der Plandemie das Projekt [«Smart City Wolfsburg»](https://www.beesmart.city/de/city-portraits/smart-city-wolfsburg) anlaufen können, das der Stadt «eine Vorreiterrolle für umfassende Vernetzung und Datenerfassung» aufgetragen habe, sagt Frey. Die Vereinten Nationen verkauften dann derartige «intelligente» Überwachungs- und Kontrollmaßnahmen ebenso als Rettung in der Not wie das Magazin *[Forbes](https://web.archive.org/web/20200417064208/https://www.forbes.com/sites/simonchandler/2020/04/13/how-smart-cities-are-protecting-against-coronavirus-but-threatening-privacy/#5edf8d0c1cc3)* im April 2020:
> «Intelligente Städte können uns helfen, die Coronavirus-Pandemie zu bekämpfen. In einer wachsenden Zahl von Ländern tun die intelligenten Städte genau das. Regierungen und lokale Behörden nutzen Smart-City-Technologien, Sensoren und Daten, um die Kontakte von Menschen aufzuspüren, die mit dem Coronavirus infiziert sind. Gleichzeitig helfen die Smart Cities auch dabei, festzustellen, ob die Regeln der sozialen Distanzierung eingehalten werden.»
**Offensichtlich gibt es viele Aspekte zu bedenken und zu durchleuten,** wenn es um die Aufklärung und Aufarbeitung der sogenannten «Corona-Pandemie» und der verordneten [Maßnahmen](https://transition-news.org/stopptcovid-gutachten-von-lauterbach-erhalt-vernichtende-analyse) geht. Frustration und Desillusion sind angesichts der Realitäten absolut verständlich. Gerade deswegen sind Initiativen wie die von Jens Knipphals so bewundernswert und so wichtig – ebenso wie eine seiner Kernthesen: «Wir müssen aufeinander zugehen, da hilft alles nichts».
***
Dieser Beitrag ist zuerst auf ***[Transition News](https://transition-news.org/corona-aufarbeitung-in-der-praxis-eine-illusion)*** erschienen.
-

@ a95c6243:d345522c
2025-01-31 20:02:25
*Im Augenblick wird mit größter Intensität, großer Umsicht* *\
das deutsche Volk belogen.* *\
Olaf Scholz im FAZ-[Interview](https://www.youtube.com/watch?v=c3KI1GmdoVc\&t=649s)*  
**Online-Wahlen stärken die Demokratie, sind sicher, und 61 Prozent der Wahlberechtigten** sprechen sich für deren Einführung in Deutschland aus. Das zumindest behauptet eine aktuelle Umfrage, die auch über die Agentur *Reuters* Verbreitung in den Medien [gefunden](https://archive.is/dnZbY) hat. Demnach würden außerdem 45 Prozent der Nichtwähler bei der Bundestagswahl ihre Stimme abgeben, wenn sie dies zum Beispiel von Ihrem PC, Tablet oder Smartphone aus machen könnten.
**Die telefonische Umfrage unter gut 1000 wahlberechtigten Personen** sei repräsentativ, [behauptet](https://www.bitkom.org/Presse/Presseinformation/Knapp-Haelfte-Nichtwaehler-wuerde-online-waehlen) der Auftraggeber – der Digitalverband Bitkom. Dieser präsentiert sich als eingetragener Verein mit einer beeindruckenden Liste von [Mitgliedern](https://www.bitkom.org/Bitkom/Mitgliedschaft/Mitgliederliste), die Software und IT-Dienstleistungen anbieten. Erklärtes Vereinsziel ist es, «Deutschland zu einem führenden Digitalstandort zu machen und die digitale Transformation der deutschen Wirtschaft und Verwaltung voranzutreiben».
**Durchgeführt hat die Befragung die Bitkom Servicegesellschaft mbH,** also alles in der Familie. Die gleiche Erhebung hatte der Verband übrigens 2021 schon einmal durchgeführt. Damals sprachen sich angeblich sogar 63 Prozent für ein derartiges [«Demokratie-Update»](https://www.experten.de/id/4922407/online-wahlen-als-update-des-demokratischen-systems/) aus – die Tendenz ist demgemäß fallend. Dennoch orakelt mancher, der Gang zur Wahlurne gelte bereits als veraltet.
**Die spanische Privat-Uni mit Globalisten-Touch, IE University, berichtete** Ende letzten Jahres in ihrer Studie «European Tech Insights», 67 Prozent der Europäer [befürchteten](https://www.ie.edu/university/news-events/news/67-europeans-fear-ai-manipulation-elections-according-ie-university-research/), dass Hacker Wahlergebnisse verfälschen könnten. Mehr als 30 Prozent der Befragten glaubten, dass künstliche Intelligenz (KI) bereits Wahlentscheidungen beeinflusst habe. Trotzdem würden angeblich 34 Prozent der unter 35-Jährigen einer KI-gesteuerten App vertrauen, um in ihrem Namen für politische Kandidaten zu stimmen.
**Wie dauerhaft wird wohl das Ergebnis der kommenden Bundestagswahl sein?** Diese Frage stellt sich angesichts der aktuellen Entwicklung der Migrations-Debatte und der (vorübergehend) bröckelnden «Brandmauer» gegen die AfD. Das «Zustrombegrenzungsgesetz» der Union hat das Parlament heute Nachmittag überraschenderweise [abgelehnt](https://www.bundestag.de/dokumente/textarchiv/2025/kw05-de-zustrombegrenzungsgesetz-1042038). Dennoch muss man wohl kein ausgesprochener Pessimist sein, um zu befürchten, dass die Entscheidungen der Bürger von den selbsternannten Verteidigern der Demokratie künftig vielleicht nicht respektiert werden, weil sie nicht gefallen.
**Bundesweit wird jetzt zu «Brandmauer-Demos» aufgerufen,** die CDU gerät unter Druck und es wird von Übergriffen auf Parteibüros und Drohungen gegen Mitarbeiter [berichtet](https://www.epochtimes.de/politik/deutschland/brandmauer-proteste-cdu-zentrale-geraeumt-kundgebungen-in-46-staedten-a5023745.html). Sicherheitsbehörden warnen vor Eskalationen, die Polizei sei «für ein mögliches erhöhtes Aufkommen von Straftaten gegenüber Politikern und gegen Parteigebäude sensibilisiert».
**Der Vorwand** **[«unzulässiger Einflussnahme»](https://transition-news.org/die-minister-faeser-und-wissing-sorgen-sich-um-unzulassige-einflussnahme-auf)** **auf Politik und Wahlen** wird als Argument schon seit einiger Zeit aufgebaut. Der Manipulation schuldig befunden wird neben Putin und Trump auch Elon Musk, was lustigerweise ausgerechnet Bill Gates gerade noch einmal bekräftigt und als [«völlig irre»](https://transition-news.org/bill-gates-nennt-musks-einmischung-in-eu-politik-vollig-irre) bezeichnet hat. Man stelle sich die Diskussionen um die Gültigkeit von Wahlergebnissen vor, wenn es Online-Verfahren zur Stimmabgabe gäbe. In der Schweiz wird [«E-Voting»](https://www.ch.ch/de/abstimmungen-und-wahlen/e-voting/) seit einigen Jahren getestet, aber wohl bisher mit wenig Erfolg.
**Die politische Brandstiftung der letzten Jahre zahlt sich immer mehr aus.** Anstatt dringende Probleme der Menschen zu lösen – zu denen auch in Deutschland die [weit verbreitete Armut](https://transition-news.org/ein-funftel-der-bevolkerung-in-deutschland-ist-von-armut-oder-sozialer) zählt –, hat die Politik konsequent polarisiert und sich auf Ausgrenzung und Verhöhnung großer Teile der Bevölkerung konzentriert. Basierend auf Ideologie und Lügen werden abweichende Stimmen unterdrückt und kriminalisiert, nicht nur und nicht erst in diesem Augenblick. Die nächsten Wochen dürften ausgesprochen spannend werden.
***
Dieser Beitrag ist zuerst auf ***[Transition News](https://transition-news.org/wahlen-und-wahlen-lassen)*** erschienen.
-

@ e83b66a8:b0526c2b
2025-02-19 11:00:29
In the UK, as Bitcoin on-ramps become throttled more and more by government interference, ironically more and more off-ramps are becoming available.
So here, as Bitcoin starts its bull run and many people will be spending or taking profits within the next year or so, I am going to summarise my experience with off ramps.
N.B. many of these off-ramps are also on-ramps, but I’m primarily focusing on spending Bitcoin.
Revolut:
At last in the UK, Revolut is a “probation” full bank and so now has most of the fiat guarantees that other legacy banks have.
Apart from its excellent multi-currency account services for fiat, meaning you can spend native currencies in many countries, Revolut have for some time allowed you to buy a selection of Crypto currencies including Bitcoin.
You can send those coins to self custody wallets, or keep them on Revolut and either sell or spend on specific DeFi cards which can be added to platforms like Apple Pay. Fees, as you would expect are relatively high, but it is a very good, seamless service.
Uphold:
This was an exchange I was automatically signed up to by using the “Brave Browser” and earning BAT tokens for watching adds. I have however found the built in virtual debit card, which I’ve added to Apple Pay useful for shedding my shitcoins by cashing them in and spending GBP in the real world, buying day to day stuff.
Xapo Bank:
I signed up about a year ago to the first “Bitcoin Bank” founded by Wences Casares a very early Bitcoiner.
They are based in Gibraltar and offer a USD, Tether and Bitcoin banking service which allows you to deposit GBP or spend GBP, but converts everything into either USD or BTC. You have a full UK bank account number and sort code, but everything received in it is converted to USD on the fly.
They also support Lightning and they have integrated LightSparks UMA Universal Money Addressing protocol explained here:
https://www.lightspark.com/uma
When I signed up the fees were $150 per annum, but they have since increased them to $1,000 per annum for new users.
I have yet to use the bank account or debit card in any earnest, but it will be my main spending facility when I take profits
Strike:
Strike it really focused on cross border payments and sending fiat money around the world for little to no cost using Bitcoin as the transmission rails. You need to KYC to sign up, but you then get, in the UK at least, a nominee bank account in your name, a Lightning and Bitcoin wallet address and the ability to send payments immediately to any other Strike user by name, or any Bitcoin or Lightning address.
In the U.S. they have also recently launched a bill pay service, using your Strike account to pay your regular household bills using either fiat or Bitcoin.
Coinbase:
Back in 2017, I signed up for a Coinbase debit card and was spending Sats in daily life with it automatically converting Sats to GBP on the fly. I let it lapse in 2021 and haven’t bothered to replace it. I believe it is still option to consider.
Crypto.com
I have a debit card which I cannot add to Apple Pay, but I have managed to add it to Curve card: https://www.curve.com/en-gb/ which is in turn added to Apple Pay. This allows me to spend any fiat which I have previously cashed from selling coins.
I currently have some former exchange coins cashed out which I am gradually spending in the real world as GBP.
SwissBorg
Has had a troubled past with the FCA, but does currently allow deposits and withdrawals from UK banks, although Barclays have blocked transactions to my own nominee account within SwissBorg on a couple of occasions. They have a debit card option for investors in their platform, which I am not and they intend to make this generally available in the future. SwissBorg are a not an exchange, but more of a comparison site, searching the market for the best prices and activating deals for you across multiple platforms, taking a commission. They have been my main source for buying BTC and when they are not being interfered with by the FCA, they are excellent. You also get a nominee bank account in their platform in your own name.
-

@ a95c6243:d345522c
2025-01-24 20:59:01
*Menschen tun alles, egal wie absurd,* *\
um ihrer eigenen Seele nicht zu begegnen.* *\
Carl Gustav Jung*  
**«Extremer Reichtum ist eine Gefahr für die Demokratie»,** sagen über die Hälfte der knapp 3000 befragten Millionäre aus G20-Staaten laut einer [Umfrage](https://web.archive.org/web/20250122124803/https://patrioticmillionaires.org/web/20250122124803/https://patrioticmillionaires.org/press/nearly-two-thirds-of-millionaires-think-influence-of-the-super-rich-on-trump-presidency-is-threat-to-global-stability/) der «Patriotic Millionaires». Ferner stellte dieser Zusammenschluss wohlhabender US-Amerikaner fest, dass 63 Prozent jener Millionäre den Einfluss von Superreichen auf US-Präsident Trump als Bedrohung für die globale Stabilität ansehen.
**Diese Besorgnis haben 370 Millionäre und Milliardäre am Dienstag** auch den in Davos beim WEF konzentrierten Privilegierten aus aller Welt übermittelt. In einem offenen Brief forderten sie die «gewählten Führer» auf, die Superreichen – also sie selbst – zu besteuern, um «die zersetzenden Auswirkungen des extremen Reichtums auf unsere Demokratien und die Gesellschaft zu bekämpfen». Zum Beispiel kontrolliere eine handvoll extrem reicher Menschen die Medien, beeinflusse die Rechtssysteme in unzulässiger Weise und verwandele Recht in Unrecht.
**Schon 2019** **[beanstandete](https://www.youtube.com/watch?v=paaen3b44XY)** **der bekannte Historiker und Schriftsteller Ruthger Bregman** an einer WEF-Podiumsdiskussion die Steuervermeidung der Superreichen. Die elitäre Veranstaltung bezeichnete er als «Feuerwehr-Konferenz, bei der man nicht über Löschwasser sprechen darf.» Daraufhin erhielt Bregman keine Einladungen nach Davos mehr. Auf seine Aussagen machte der Schweizer Aktivist Alec Gagneux aufmerksam, der sich seit Jahrzehnten kritisch mit dem WEF befasst. Ihm wurde kürzlich der Zutritt zu einem dreiteiligen Kurs über das WEF an der Volkshochschule Region Brugg [verwehrt](https://transition-news.org/wef-propaganda-an-schweizer-volkshochschule-kritiker-ausgesperrt).
**Nun ist die Erkenntnis, dass mit Geld politischer Einfluss einhergeht,** alles andere als neu. Und extremer Reichtum macht die Sache nicht wirklich besser. Trotzdem hat man über Initiativen wie Patriotic Millionaires oder [Taxmenow](https://www.taxmenow.eu/) bisher eher selten etwas gehört, obwohl es sie schon lange gibt. Auch scheint es kein Problem, wenn ein Herr [Gates](https://transition-news.org/bill-melinda-gates-stiftung) fast im Alleingang versucht, globale Gesundheits-, Klima-, Ernährungs- oder Bevölkerungspolitik zu betreiben – im Gegenteil. Im Jahr, als der Milliardär Donald Trump zum zweiten Mal ins Weiße Haus einzieht, ist das Echo in den Gesinnungsmedien dagegen enorm – und uniform, wer hätte das gedacht.

**Der neue US-Präsident hat jedoch** **[«Davos geerdet»](https://www.achgut.com/artikel/trump_erdet_davos_gruener_betrug_green_new_scam),** wie *Achgut* es nannte. In seiner kurzen [Rede](https://www.weforum.org/meetings/world-economic-forum-annual-meeting-2025/sessions/special-address-by-the-president-of-the-united-states-of-america/) beim Weltwirtschaftsforum verteidigte er seine Politik und stellte klar, er habe schlicht eine «Revolution des gesunden Menschenverstands» begonnen. Mit deutlichen Worten sprach er unter anderem von ersten Maßnahmen gegen den «Green New Scam», und von einem «Erlass, der jegliche staatliche Zensur beendet»:
> «Unsere Regierung wird die Äußerungen unserer eigenen Bürger nicht mehr als Fehlinformation oder Desinformation bezeichnen, was die Lieblingswörter von Zensoren und derer sind, die den freien Austausch von Ideen und, offen gesagt, den Fortschritt verhindern wollen.»
**Wie der** **[«Trumpismus»](https://transition-news.org/trumpismus-zeitenwende-und-tiefer-staat)** **letztlich einzuordnen ist,** muss jeder für sich selbst entscheiden. Skepsis ist definitiv angebracht, denn «einer von uns» sind weder der Präsident noch seine auserwählten Teammitglieder. Ob sie irgendeinen Sumpf trockenlegen oder Staatsverbrechen aufdecken werden oder was aus WHO- und Klimaverträgen wird, bleibt abzuwarten.
**Das** **[WHO](https://transition-news.org/who-bedauert-trumps-entscheidung-sich-aus-der-organisation-zuruckzuziehen)-Dekret fordert jedenfalls die Übertragung der Gelder auf «glaubwürdige Partner»,** die die Aktivitäten übernehmen könnten. Zufällig scheint mit «Impfguru» Bill Gates ein weiterer Harris-Unterstützer kürzlich das Lager gewechselt zu haben: Nach einem gemeinsamen Abendessen zeigte er sich [«beeindruckt»](https://archive.is/SpQ24) von Trumps Interesse an der globalen Gesundheit.
**Mit dem** **[Projekt «Stargate»](https://transition-news.org/us-privatsektor-will-500-milliarden-dollar-in-ki-investieren-krebsimpfstoffe)** **sind weitere dunkle Wolken am Erwartungshorizont** der Fangemeinde aufgezogen. Trump hat dieses Joint Venture zwischen den Konzernen OpenAI, Oracle, und SoftBank als das «größte KI-Infrastrukturprojekt der Geschichte» angekündigt. Der Stein des Anstoßes: Oracle-CEO Larry Ellison, der auch Fan von KI-gestützter [Echtzeit-Überwachung](https://transition-news.org/oracle-kundigt-neues-ki-rechenzentrum-mit-eigenen-atomreaktoren-an) ist, sieht einen weiteren potenziellen Einsatz der künstlichen Intelligenz. Sie könne dazu dienen, Krebserkrankungen zu erkennen und individuelle mRNA-«Impfstoffe» zur Behandlung innerhalb von 48 Stunden zu entwickeln.
**Warum bitte sollten sich diese superreichen «Eliten» ins eigene Fleisch schneiden** und direkt entgegen ihren eigenen Interessen handeln? Weil sie Menschenfreunde, sogenannte Philanthropen sind? Oder vielleicht, weil sie ein schlechtes Gewissen haben und ihre Schuld kompensieren müssen? Deswegen jedenfalls brauchen «Linke» laut Robert Willacker, einem deutschen Politikberater mit brasilianischen Wurzeln, rechte Parteien – ein ebenso überraschender wie humorvoller [Erklärungsansatz](https://www.youtube.com/watch?v=s63_8flX1zk).
**Wenn eine Krähe der anderen kein Auge aushackt,** dann tut sie das sich selbst noch weniger an. Dass Millionäre ernsthaft ihre eigene Besteuerung fordern oder Machteliten ihren eigenen Einfluss zugunsten anderer einschränken würden, halte ich für sehr unwahrscheinlich. So etwas glaube ich erst, wenn zum Beispiel die [Rüstungsindustrie](https://transition-news.org/schweiz-zunehmende-beteiligung-an-eu-militarprojekten) sich um Friedensverhandlungen bemüht, die [Pharmalobby](https://transition-news.org/eu-lobbyisten-gegen-pfas-verbot) sich gegen institutionalisierte Korruption einsetzt, [Zentralbanken](https://transition-news.org/digitale-wahrung) ihre CBDC-Pläne für Bitcoin opfern oder der ÖRR die Abschaffung der Rundfunkgebühren fordert.
***
Dieser Beitrag ist zuerst auf ***[Transition News](https://transition-news.org/elitare-anti-eliten-und-superreiche-anti-reiche)*** erschienen.
-

@ fd78c37f:a0ec0833
2025-02-19 06:39:05
In this edition, we invited Kofi and Sean from BitcoinDua to share their journey of introducing Bitcoin to the community and driving its widespread adoption, and discuss how trust and collaboration have played key roles in promoting Bitcoin locally and building a circular economy.
**YakiHonne**: Welcome, Kofi. It's truly an honor and a pleasure to have you with us today. Before we begin, let me briefly introduce YakiHonne. YakiHonne is a decentralized media client built on Nostr—a protocol designed to empower freedom of speech through technology. It enables creators to own their voices and assets while offering innovative tools like smart widgets, verified notes, and support for long-form content. Today, we're excited to learn more about your community. Could you please introduce yourself, Kofi?
**Kofi**:Hello, I'm Mawufemor Kofi Folivi from Ghana. I'm the founder of the Talent Tahuf Foundation, an NGO, as well as BitcoinDua. The Talent Tahuf Foundation is an incorporated organization and serves as the parent entity for BitcoinDua. We operate in Agbozume, in the Volta region of Ghana.
**YakiHonne**: Thank you very much, Kofi.Let's start with the first question: What initially sparked your interest in Bitcoin, and what inspired you to build a community around it?
**Kofi**:I'm glad we're revisiting this question, as I've heard it on many podcasts before, and it's a pleasure to share my journey again.I've been working in this space for over 20 years, often with very little support. Through perseverance and hard work, a friend of mine—who serves as the Public Relations Officer for the Africa Bitcoin Conference (ABC)—invited me to attend their 2022 conference. He even purchased a ticket for me, which made the experience even more special.
**Kofi**:At the conference, I encountered Bitcoin for the first time in a meaningful way. I had the opportunity to see Jack Dorsey speak and even took a picture with him. Later on, my friend introduced me to Herman Viva, and I mentioned that I run an NGO—a role I've held for many years.
**Kofi**:Listening to the discussions about Bitcoin at the conference sparked a realization: perhaps I could contribute to the Bitcoin ecosystem. My friend encouraged me to take action by asking me to "orange pill" someone and onboard a merchant to accept Bitcoin, with the goal of creating a circular economy in our community. I took on this challenge, recorded my progress on video, and shared it with him. His positive response and support, coupled with the trust I've built within my community, further solidified my commitment.
**YakiHonne**: It was wonderful to hear that you attended the African Bitcoin Conference—it sounds like an amazing event. I'm really impressed with how effectively you networked and made valuable connections there. I truly appreciate that you're already engaging with merchants and actively encouraging more people to trade and adopt Bitcoin. I know you've already shared how the community started, how he encouraged you to create one and adopt Bitcoin, and how you successfully did that. So now, could you tell us how you managed to attract new members to your community?
**Kofi**:To go back to the beginning, we started by organizing growth circles when I returned. These were groups where we focused on activities like aerobics. I used these circles as an opportunity to introduce Bitcoin to people I had already built relationships with. I shared my experience with Bitcoin, showing them how it could be used to buy credit. I demonstrated by purchasing credit for myself and for them, and I gave them cards, allowing them to buy their own credit as well.
**Kofi**:This is how it all began. Since we were working with young people who shared the desire to grow together as a community, we emphasized that we didn't need to rely on the government. The national resources are limited, and if you're not close to the government, it’s very hard to benefit from them. We realized it was difficult to wait for the government to support our development. So, we turned to Bitcoin as a tool to help us move forward. This approach helped us establish a platform based on trust within the community.
**Kofi**:Now, as an organization, we have the resources to help the community grow and develop skills among our peers. This is how we were able to attract members to our Bitcoin community.

**YakiHonne**: Would you mind sharing with us some of the challenges you faced while starting up the community?
**Kofi**:Thank you for asking this question. As I mentioned earlier, since we've already built trust, one thing we faced was that anything new can be quite difficult to introduce. It took some time for people to understand the concept of Bitcoin, especially the idea that it’s money.
**Kofi**:We kept repeating the phrase “Bitcoin is money,” but the challenge was that you can’t physically show Bitcoin in the same way you can show traditional money. So, when people asked, “How can I use it to pay?” it became an issue. To address this, I started by onboarding the first merchant. I explained to them, "I’m giving you this Bitcoin to pay for goods, and I’ll give you extra if you accept it." The merchant agreed to take both Bitcoin and fiat currency.
**Kofi**:Over time, the merchant saw the value of Bitcoin growing. Eventually, they came to me asking to exchange the Bitcoin for cash. To help, I onboarded them onto BitNob, where they could experience transferring Bitcoin from one wallet to another and even withdrawing it into their local currency or bank account. We completed the transaction, and that became a reference point for everyone else we were working with.
**YakiHonne**: The way you approached it—getting a merchant to demonstrate it—really helped build trust. I know many communities face the same issue: how to prove that Bitcoin is real. But over time, we learn how to overcome these challenges. It's really impressive how you handled it?
YakiHonne: What principles guide your community, and how do you maintain trust and reliability? I know you’ve mentioned this a bit already, but could you elaborate further? How do you ensure trust and reliability in your discussions?
**Kofi**:As humans, we also need to trust our intuition and how we feel about situations. It’s essential to interact with people with integrity. In our community, we are mindful of what we show others, both in actions and in good deeds. If you love someone, you give everything you have to them, and that’s the only way people can truly feel they belong in your circle. This is the key that keeps us moving forward.
**Kofi**:The person at the center of everything you’re doing must be trustworthy. And how do you gain trust? You must trust others first. Even if people come with ulterior motives, you should approach them with an open heart, showing love to them just as you do with everyone else.
**Kofi**:And when wrongs are committed, it’s important to acknowledge them. If someone points out a mistake you made, accept it, apologize, and move forward. This creates an understanding within the community that we’re not here to harm one another. Trust is built on integrity, and that’s how we maintain it.

**YakiHonne**: That’s very true. It’s much better and easier when you have integrity. Over time, as you prove yourself to be a person of integrity, it naturally builds trust with others. So, how does your community educate its members and keep them updated on Bitcoin developments? How do you approach this?
**Kofi**:To engage our community on a larger scale, we believe it's important to stay active and involved. After building trust, we participate in community events, such as sponsoring a football competition and contributing to their local festival. By doing this, the entire community starts seeing Bitcoin as something that can truly improve their lives.
**Kofi**:We also established a Bitcoin Education Center, where we invite students from various schools to learn about Bitcoin. But our efforts go beyond just education; we use the resources we gain from Bitcoin to acquire laptops and robotics kits, so that the students can have additional learning opportunities. These activities are incorporated into their school programs, and we encourage their participation through debates and rewarding them with SATS.

**Kofi**:By rewarding them with SATS, they can use these rewards to buy from over 20 merchants we've onboarded, which not only excites the students but also makes their parents curious about Bitcoin. We've even had people at the local market requesting to buy Bitcoin from us. This is how we keep up with Bitcoin’s development and continue to spread its influence in our community.
**YakiHonne**: How does your community work with the wider Bitcoin ecosystem? So far, what partnership has had the most positive impact on your community?
**Kofi**:Due to the hard work we've been putting in, we were able to attract Bitcoin Beach as one of our major collaborators. We are part of Bitcoin Ekasi. Recently, we were also awarded the Block Discovery Grant of $50,000 from the Bitcoin Foundation. We are using this grant to build a sports complex, which will include a football field, a multi-purpose basketball court, a swimming pool, a children's playground, and more. We've already started this project. These are the key collaborators and supporters we've had in the Bitcoin space, and their support has been invaluable to us.


**YakiHonne**: It’s clear that you guys are doing an amazing job! Your efforts and hard work have truly caught the attention of many communities, and it’s great to see you forming significant partnerships.So, could you share more about the initiatives your community has taken to promote Bitcoin adoption? I know you've mentioned a few already, but would you mind expanding on them a bit more and sharing the results you've seen?
**Kofi**:As I mentioned earlier, we are enhancing our capacity by working with school children and teenagers. We also plan to host inter-school competitions, particularly world-class robotics competitions, with the aim of broadening students' perspectives on science and giving them a global view of what's happening in the world. We believe that through these activities, we will be able to engage with a larger society, helping us expand our client base for Bitcoin education and usage. Therefore, we believe this will have a profound impact. As for the activities we are currently working on, they are providing us with opportunities to expand our reach to schools within the community. This will further build trust and deepen our relationships in this regard.
**YakiHonne**: I really admire the fact that you have boarded merchants to accept Bitcoin, which is a great step for its adoption. I also like that you've reached out to schools, encouraging community growth, which helps people see more interest and potential in the Bitcoin ecosystem. Now, for our last question of the day, what are the community goals for the next 6 to 12 months, and how do you see it evolving within the Bitcoin space?
**Kofi**:So, in the next 6 to 12 months, we plan to complete the sports complex we’re building. We also intend to open it up for social activities, both within our community and beyond. We believe this will create more opportunities for interaction, allowing people who don’t live within our community to learn about Bitcoin, hear about it, and start engaging with it for the greater good.
**YakiHonne**: you plan to complete the sports complex and expand your social reach to engage more people, even those outside your local community. This is truly amazing, and the work you’re doing is fantastic.
**YakiHonne**: We’ve come to the end of today’s interview, and I’m really happy to have had this conversation with you, Kofi. You’ve shared so much, and I’ve learned a lot. It’s inspiring to see all the great things happening in Ghana, truly wonderful. Thank you, and you’re doing an incredible job.
**Sean**:I would say it’s important for us as Africans to continue collaborating within our own communities—whether in a specific community, village, or town. Through collaboration, we can create stronger communities for ourselves. This way, we’ll be able to generate jobs in various fields and develop marketable skills that can be used anywhere in the world. This way, we won’t need to seek opportunities in other countries; we can build those opportunities right here in our own space.
**YakiHonne**: It's very true. We can definitely build a better West Africa, a better Africa, and create our own opportunities here. Thank you so much for this interview.
-

@ 5de23b9a:d83005b3
2025-02-19 03:47:19
In a digital era that is increasingly controlled by large companies, the emergence of Nostr (Notes and Other Stuff Transmitted by Relays) is a breath of fresh air for those who crave freedom of expression.
Nostr is a cryptography-based protocol that allows users to send and receive messages through a relay network. Unlike conventional social media such as Twitter or Facebook
1.Full Decentralization: No company or government can remove or restrict content.
2.Sensor-Resistant: Information remains accessible despite blocking attempts.
3.Privacy and Security: Uses cryptography to ensure that only users who have the keys can access their messages.* **
-

@ c631e267:c2b78d3e
2025-01-18 09:34:51
*Die grauenvollste Aussicht ist die der Technokratie –* *\
einer kontrollierenden Herrschaft,* *\
die durch verstümmelte und verstümmelnde Geister ausgeübt wird.* *\
Ernst Jünger*  
**«Davos ist nicht mehr sexy»,** das Weltwirtschaftsforum ([WEF](https://transition-news.org/wef-world-economic-forum)) mache Davos [kaputt](https://web.archive.org/web/20250116114956/https://www.handelszeitung.ch/wef-2025/wie-das-wef-davos-kaputt-macht-785098), diese Aussagen eines Einheimischen las ich kürzlich in der *Handelszeitung*. Während sich einige vor Ort enorm an der «teuersten Gewerbeausstellung der Welt» bereicherten, würden die negativen Begleiterscheinungen wie Wohnungsnot und Niedergang der lokalen Wirtschaft immer deutlicher.
**Nächsten Montag beginnt in dem Schweizer Bergdorf erneut ein Jahrestreffen** dieses elitären Clubs der Konzerne, bei dem man mit hochrangigen Politikern aus aller Welt und ausgewählten Vertretern der Systemmedien zusammenhocken wird. Wie bereits in den [vergangenen](https://transition-news.org/die-angst-der-eliten-vor-dem-pobel) vier Jahren wird die Präsidentin der EU-Kommission, Ursula von der Leyen, in Begleitung von Klaus Schwab ihre Grundsatzansprache halten.
**Der deutsche WEF-Gründer hatte bei dieser Gelegenheit** immer höchst lobende Worte für seine Landsmännin: [2021](https://www.weforum.org/meetings/the-davos-agenda-2021/sessions/special-address-by-g20-head-of-state-government/) erklärte er sich «stolz, dass Europa wieder unter Ihrer Führung steht» und [2022](https://www.weforum.org/meetings/the-davos-agenda-2022/sessions/special-address-by-ursula-von-der-leyen-president-of-the-european-commission-177737c164/) fand er es bemerkenswert, was sie erreicht habe angesichts des «erstaunlichen Wandels», den die Welt in den vorangegangenen zwei Jahren erlebt habe; es gebe nun einen «neuen europäischen Geist».
**Von der Leyens Handeln während der sogenannten Corona-«Pandemie»** lobte Schwab damals bereits ebenso, wie es diese Woche das [Karlspreis](https://transition-news.org/von-der-leyen-erhalt-karlspreis-albert-bourla-erklart-pfizer-habe-wahrend-der)-Direktorium tat, als man der Beschuldigten im Fall [Pfizergate](https://transition-news.org/pfizergate-startet-ins-neue-jahr) die diesjährige internationale Auszeichnung «für Verdienste um die europäische Einigung» verlieh. Außerdem habe sie die EU nicht nur gegen den «Aggressor Russland», sondern auch gegen die «innere Bedrohung durch Rassisten und Demagogen» sowie gegen den Klimawandel verteidigt.
**Jene Herausforderungen durch «Krisen epochalen Ausmaßes»** werden indes aus dem Umfeld des WEF nicht nur herbeigeredet – wie man alljährlich zur Zeit des Davoser Treffens im [Global Risks Report](https://www.zurich.com/knowledge/topics/global-risks/the-global-risks-report-2025) nachlesen kann, der zusammen mit dem Versicherungskonzern Zurich erstellt wird. Seit die Globalisten 2020/21 in der Praxis gesehen haben, wie gut eine konzertierte und konsequente Angst-Kampagne funktionieren kann, geht es Schlag auf Schlag. Sie setzen alles daran, Schwabs goldenes Zeitfenster des «Great Reset» zu nutzen.
**Ziel dieses «großen Umbruchs» ist die totale Kontrolle der Technokraten über die Menschen** unter dem Deckmantel einer globalen Gesundheitsfürsorge. Wie aber könnte man so etwas erreichen? Ein Mittel dazu ist die «kreative Zerstörung». Weitere unabdingbare Werkzeug sind die Einbindung, ja Gleichschaltung der Medien und der Justiz.
**Ein** **[«Great Mental Reset»](https://transition-news.org/angriff-auf-unser-gehirn-michael-nehls-uber-den-great-mental-reset-teil-1)** **sei die Voraussetzung dafür,** dass ein Großteil der Menschen Einschränkungen und Manipulationen wie durch die Corona-Maßnahmen praktisch kritik- und widerstandslos hinnehme, sagt der Mediziner und Molekulargenetiker Michael Nehls. Er meint damit eine regelrechte Umprogrammierung des Gehirns, wodurch nach und nach unsere Individualität und unser soziales Bewusstsein eliminiert und durch unreflektierten Konformismus ersetzt werden.
**Der aktuelle Zustand unserer Gesellschaften** ist auch für den Schweizer Rechtsanwalt Philipp Kruse alarmierend. Durch den Umgang mit der «Pandemie» sieht er die Grundlagen von Recht und Vernunft erschüttert, die [Rechtsstaatlichkeit](https://transition-news.org/schweizer-rechtsstaat-in-der-krise-ein-anwalt-schlagt-alarm) stehe auf dem Prüfstand. Seiner dringenden Mahnung an alle Bürger, die Prinzipien von Recht und Freiheit zu verteidigen, kann ich mich nur anschließen.
***
Dieser Beitrag ist zuerst auf ***[Transition News](https://transition-news.org/davos-europa-und-der-rest-der-welt)*** erschienen.
-

@ cc32882d:eca332e6
2025-02-18 17:29:01
#introductions
Hello World
New here as of today! I set myself up first on Yakihonne. (Just trying out clients so far)
Glad to be here and look forward to learning and getting to know peeps. I have been poking around a bit and like what I see so far. Excited to play around some more with Nostr apps. Any suggestions is greatly appreciated.
Whats the good, the bad, and the ugly about Nostr in your opinion?
What is the size of nostr platform? How many users? Hows the community involvment? What is the age range?
Any good places to look at this kind of data.
About:
Like to think deep about life and its vast array of questions and answers that are waiting to be discovered or rediscovered. Live with Nature, Dont fight what will be, Love
Dislike fake people. JUST BE REAL, Life is to short for anything else.
Drop me a response and I will get back to you as soon as possible. Look forward to hearing from some of you.
Thank You for Your Time and For Reading This
-ObsidianQuill
-

@ 6ad3e2a3:c90b7740
2025-02-18 17:08:23
I’m not doing any writing today. Taking the day, maybe the week, off. Just not in the mood.
This whole idea you’re supposed to write, get the thoughts out, the ideas moving is stupid. To what end? I’m done with evaluating myself for productivity, justifying myself to myself — or anyone else.
What I really need is to find some pleasant distractions. Something to fill my time, or as Elon Musk says of Twitter “to avoid regretted user seconds.” I’ve tried Twitter itself, of course, but Musk’s algorithm falls woefully short. After an hour of doom and dopamine scrolling, punctuated with the occasional shitpost, many seconds are regretted — roughly 3500 of them.
I could turn to alcohol or drugs, but too many side effects. Yes, you’re distracted, but what about after that? You’re always left worse off than where you started. Even alcoholics and drug addicts — the pros! — know it’s a dead end.
I don’t know, maybe spend more time with loved ones? You hear that a lot. “If I didn’t have to work so much, I’d spend more time with loved ones.” LOL. Like what, you’re going to hang around while your “loved ones” are doing things with their actual lives. Maybe I’ll take the bus to school with Sasha, hang out with her and her friends, see how that goes. Quality time!
Exercise. It’s the perfect solution, good for your health, you feel better, your mind is calm. Only problem is it’s fucking miserable. If your aim is to avoid sitting at a desk to write, forcing your carcass around a track is hardly an upgrade. It’s like quitting your middle management job to break rocks in a prison chain gang.
There must be something I can do. Eating sugary processed food is out of the question for the same reason alcohol and drugs are. Becoming obese and diabetic is no solution, as many of the pros (obese diabetics) would no doubt attest.
Meditation. That’s it! You sit on a cushion, count your breaths. Pretty soon you are calm. You can meditate for as long as you want! It’s perfect, and it’s easy. Well, it’s not that easy. You get distracted by your thoughts and you’re just sitting there thinking about the things for which you hope and dread in your life.
Of course, you notice that distraction and come back to the breath, but pretty soon you’re wandering again. And you come back again. But really you’re wondering how long you’ve been sitting, your feet are falling asleep, your back is tight and you don’t feel much different. You weren’t even properly distracted because instead of being distracted *from* your mind, you are being distracted *by* it. It’s a worst-case scenario of sorts — you neither get anything done, nor escape the endless self-evaluation and justification.
That just means you’re doing it wrong, though. You’re failing at it. If you did it right, it would be the perfect escape from yourself. But it’s not working, so you’re failing. Or maybe you succeeded a little bit. You’re not sure. You are still evaluating whether that was a good use of your time. The same evaluation process you use to decide whether you’ve done enough writing, the same tired bullshit from which you were trying to escape in the first place!
Let’s face it, you’re not just going to meditate your way out of the problem. If you could, you would have already, and so would everyone else. We would all be enlightened. Maybe you need to go to an ashram or something, find a guru on top of a mountain in the Himalayas. LOL, you’re not gonna do that! You are way too attached to your comforts and daily routines, no matter how dull and unsatisfying they ultimately are.
There’s nowhere to run, nowhere to hide, no one to see, nothing to do. You are out of options. There is only one thing in your absolute control, and it’s where you direct your attention. And you have decided that no matter how bleak and pointless the alternatives the one thing about which you are resolute is you are taking the day off from writing.
-

@ f9cf4e94:96abc355
2025-01-18 06:09:50
Para esse exemplo iremos usar:
| Nome | Imagem | Descrição |
| --------------- | ------------------------------------------------------------ | ------------------------------------------------------------ |
| Raspberry PI B+ |  | **Cortex-A53 (ARMv8) 64-bit a 1.4GHz e 1 GB de SDRAM LPDDR2,** |
| Pen drive |  | **16Gb** |
Recomendo que use o **Ubuntu Server** para essa instalação. Você pode baixar o Ubuntu para Raspberry Pi [aqui]( https://ubuntu.com/download/raspberry-pi). O passo a passo para a instalação do Ubuntu no Raspberry Pi está disponível [aqui]( https://ubuntu.com/tutorials/how-to-install-ubuntu-on-your-raspberry-pi). **Não instale um desktop** (como xubuntu, lubuntu, xfce, etc.).
---
## Passo 1: Atualizar o Sistema 🖥️
Primeiro, atualize seu sistema e instale o Tor:
```bash
apt update
apt install tor
```
---
## Passo 2: Criar o Arquivo de Serviço `nrs.service` 🔧
Crie o arquivo de serviço que vai gerenciar o servidor Nostr. Você pode fazer isso com o seguinte conteúdo:
```unit
[Unit]
Description=Nostr Relay Server Service
After=network.target
[Service]
Type=simple
WorkingDirectory=/opt/nrs
ExecStart=/opt/nrs/nrs-arm64
Restart=on-failure
[Install]
WantedBy=multi-user.target
```
---
## Passo 3: Baixar o Binário do Nostr 🚀
Baixe o binário mais recente do Nostr [aqui no GitHub]( https://github.com/gabrielmoura/SimpleNosrtRelay/releases).
---
## Passo 4: Criar as Pastas Necessárias 📂
Agora, crie as pastas para o aplicativo e o pendrive:
```bash
mkdir -p /opt/nrs /mnt/edriver
```
---
## Passo 5: Listar os Dispositivos Conectados 🔌
Para saber qual dispositivo você vai usar, liste todos os dispositivos conectados:
```bash
lsblk
```
---
## Passo 6: Formatando o Pendrive 💾
Escolha o pendrive correto (por exemplo, `/dev/sda`) e formate-o:
```bash
mkfs.vfat /dev/sda
```
---
## Passo 7: Montar o Pendrive 💻
Monte o pendrive na pasta `/mnt/edriver`:
```bash
mount /dev/sda /mnt/edriver
```
---
## Passo 8: Verificar UUID dos Dispositivos 📋
Para garantir que o sistema monte o pendrive automaticamente, liste os UUID dos dispositivos conectados:
```bash
blkid
```
---
## Passo 9: Alterar o `fstab` para Montar o Pendrive Automáticamente 📝
Abra o arquivo `/etc/fstab` e adicione uma linha para o pendrive, com o UUID que você obteve no passo anterior. A linha deve ficar assim:
```fstab
UUID=9c9008f8-f852 /mnt/edriver vfat defaults 0 0
```
---
## Passo 10: Copiar o Binário para a Pasta Correta 📥
Agora, copie o binário baixado para a pasta `/opt/nrs`:
```bash
cp nrs-arm64 /opt/nrs
```
---
## Passo 11: Criar o Arquivo de Configuração 🛠️
Crie o arquivo de configuração com o seguinte conteúdo e salve-o em `/opt/nrs/config.yaml`:
```yaml
app_env: production
info:
name: Nostr Relay Server
description: Nostr Relay Server
pub_key: ""
contact: ""
url: http://localhost:3334
icon: https://external-content.duckduckgo.com/iu/?u= https://public.bnbstatic.com/image/cms/crawler/COINCU_NEWS/image-495-1024x569.png
base_path: /mnt/edriver
negentropy: true
```
---
## Passo 12: Copiar o Serviço para o Diretório de Systemd ⚙️
Agora, copie o arquivo `nrs.service` para o diretório `/etc/systemd/system/`:
```bash
cp nrs.service /etc/systemd/system/
```
Recarregue os serviços e inicie o serviço `nrs`:
```bash
systemctl daemon-reload
systemctl enable --now nrs.service
```
---
## Passo 13: Configurar o Tor 🌐
Abra o arquivo de configuração do Tor `/var/lib/tor/torrc` e adicione a seguinte linha:
```torrc
HiddenServiceDir /var/lib/tor/nostr_server/
HiddenServicePort 80 127.0.0.1:3334
```
---
## Passo 14: Habilitar e Iniciar o Tor 🧅
Agora, ative e inicie o serviço Tor:
```bash
systemctl enable --now tor.service
```
O Tor irá gerar um endereço `.onion` para o seu servidor Nostr. Você pode encontrá-lo no arquivo `/var/lib/tor/nostr_server/hostname`.
---
## Observações ⚠️
- Com essa configuração, **os dados serão salvos no pendrive**, enquanto o binário ficará no cartão SD do Raspberry Pi.
- O endereço `.onion` do seu servidor Nostr será algo como: `ws://y3t5t5wgwjif<exemplo>h42zy7ih6iwbyd.onion`.
---
Agora, seu servidor Nostr deve estar configurado e funcionando com Tor! 🥳
Se este artigo e as informações aqui contidas forem úteis para você, convidamos a considerar uma doação ao autor como forma de reconhecimento e incentivo à produção de novos conteúdos.
-

@ 1859da43:4f1013a4
2025-02-18 17:07:28
Die Frage kann einfach beantwortet werden: er will, dass ich zu ihm komme in die ewige Herrlichkeit.
Er richtet diesen Wunsch nicht allgemein an die Menscheit oder an ein Volk. Er richtet diesen Wunsch an jeden einzelnen Menschen, an dich und mich. Jesus will zu jedem Menschen in Beziehung stehen. Aus diesem Wunsch leitet sich die oberser Pflicht für jeden Menschen ab: Alles zu tun, um zu Jesus zu kommen; um seine Seele zu retten. Die Alternative ist die Hölle, welche ein endgültige und unwiderrufliche Trennung von Jesus Christus ist.
Ich wiederhole: **die oberste und erste Pflicht des Christen ist es, seine Seele zu retten.** Konkret heisst dies, dass wir nach der Lehre Jesus Christi leben sollen, indem man zum Beispiel die zehn Gebote hält und sich an der Moral von Jesus Chrisus orientiert.
Erst an zweiter Stelle kann ein Auftrag angenommen werden, dass andere Seelen ebenfalls gerettet werden sollen. Dies kann indirekt über die Verbreitung der frohen Botschaft erreicht werden. Aber wir sind als Einzelne nie direkt verantwortlich, von anderen Menschen die Seele zu retten. Dieser Verantwortung kann sich niemand entziehen. Man kann sie nicht delegieren. Man kann sie nicht von einem Anderen an sich reissen.
Diese Erkenntnis muss einen direkten Einfluss auf das Handeln haben.
-

@ d360efec:14907b5f
2025-02-18 15:11:58
**ภาพรวม BTCUSDT (OKX):**
Bitcoin (BTCUSDT) กำลังแสดงความผันผวนอย่างมาก โดยมีสัญญาณที่ขัดแย้งกันระหว่าง Timeframes ต่างๆ แนวโน้มระยะยาว (Day) ยังคงเป็นขาขึ้น แต่ระยะกลาง (4H) และระยะสั้น (15m) แสดงให้เห็นถึงแรงขายและการปรับฐานที่รุนแรง การวิเคราะห์นี้จะเน้นการระบุพื้นที่ที่ Smart Money อาจจะเข้าซื้อหรือขาย (Liquidity Pools) และประเมินความแข็งแกร่งของแนวโน้ม
**วิเคราะห์ทีละ Timeframe:**
**(1) TF Day (รายวัน):**

* **แนวโน้ม:** ขาขึ้น (Uptrend) *แต่เริ่มอ่อนแรง*
* **SMC:**
* Higher Highs (HH) และ Higher Lows (HL) *เริ่มไม่ชัดเจน*
* Break of Structure (BOS) ด้านบน *แต่เริ่มมีการปรับฐาน*
* **Liquidity:**
* มี Sellside Liquidity (SSL) อยู่ใต้ Lows ก่อนหน้า (บริเวณ 85,000 - 90,000)
* มี Buyside Liquidity (BSL) อยู่เหนือ High เดิม (109,998.9)
* **ICT:**
* ยังไม่เห็น Order Block หรือ FVG ที่ชัดเจนใน TF Day *ณ ราคาปัจจุบัน*
* **EMA:**
* ราคา *หลุด* EMA 50 (สีเหลือง) ลงมาแล้ว
* EMA 200 (สีขาว) เป็นแนวรับถัดไป
* **Money Flow (LuxAlgo):**
* แท่งสีแดงยาว แสดงถึงแรงขายที่เข้ามา
* **Trend Strength (AlgoAlpha):** *ไม่มีในภาพ*
* **Volume Profile:** Volume ค่อนข้างเบาบาง
* **แท่งเทียน:** แท่งเทียนล่าสุดเป็นสีแดง แสดงถึงแรงขาย
* **แนวรับ:** EMA 200, บริเวณ 85,000 - 90,000 (SSL)
* **แนวต้าน:** EMA 50, High เดิม
* **สรุป:** แนวโน้มขาขึ้นเริ่มอ่อนแรง, ราคาหลุด EMA 50, Money Flow เป็นลบ, มี SSL ด้านล่าง
**(2) TF4H (4 ชั่วโมง):**

* **แนวโน้ม:** ขาลง (Downtrend) *ระยะสั้น* หลังจากราคาหลุด EMA 50
* **SMC:**
* Lower Highs (LH) และ Lower Lows (LL)
* Break of Structure (BOS) ด้านล่าง
* **Liquidity:**
* มี SSL อยู่ใต้ Lows ก่อนหน้า (บริเวณ 92,000)
* มี BSL อยู่เหนือ Highs ก่อนหน้า (บริเวณ 104,000 - 108,000)
* **ICT:**
* **Order Block:** ราคาลงมาใกล้ Order Block ขาขึ้น (บริเวณแท่งเทียนสีเขียวก่อนที่จะขึ้น)
* **EMA:**
* ราคาอยู่ใต้ EMA 50 และ EMA 200
* **Money Flow (LuxAlgo):**
* สีแดงเป็นส่วนใหญ่ แสดงถึงแรงขาย
* **Trend Strength (AlgoAlpha):** *ไม่มีในภาพ*
* **Volume Profile** Volume ค่อนข้างเบาบาง
* **แนวรับ:** Order Block, บริเวณ 92,000 (SSL)
* **แนวต้าน:** EMA 50, EMA 200, บริเวณ Highs ก่อนหน้า
* **สรุป:** แนวโน้มขาลงระยะสั้น, ราคาลงมาใกล้ Order Block, Money Flow เป็นลบ
**(3) TF15 (15 นาที):**

* **แนวโน้ม:** ขาลง (Downtrend)
* **SMC:**
* Lower Highs (LH) และ Lower Lows (LL)
* Break of Structure (BOS) ด้านล่าง
* **Liquidity:**
* มี SSL อยู่ใต้ Lows ล่าสุด
* มี BSL อยู่เหนือ Highs ก่อนหน้า
* **ICT:**
* **Order Block:** ราคาลงมาใกล้ Oder Block
* **EMA:**
* EMA 50 และ EMA 200 เป็นแนวต้าน
* **Money Flow (LuxAlgo):**
* สีแดงเป็นส่วนใหญ่ แสดงถึงแรงขาย
* **Trend Strength (AlgoAlpha):**
* เป็นสีแดง แสดงถึงเเนวโน้มขาลง
* **Volume Profile:**
* Volume ค่อนข้างเบาบาง
* **แนวรับ:** บริเวณ Low ล่าสุด
* **แนวต้าน:** EMA 50, EMA 200, บริเวณ Highs ก่อนหน้า
* **สรุป:** แนวโน้มขาลง, แรงขายมีอิทธิพล, ใกล้แนวรับ
**สรุปภาพรวมและกลยุทธ์ (BTCUSDT):**
* **แนวโน้มหลัก (Day):** ขาขึ้น (อ่อนแรง)
* **แนวโน้มรอง (4H):** ขาลง (ระยะสั้น)
* **แนวโน้มระยะสั้น (15m):** ขาลง
* **Liquidity:**
* Day: SSL (85,000-90,000), BSL (เหนือ 109,998.9)
* 4H: SSL (92,000), BSL (104,000-108,000)
* 15m: SSL (ใต้ Lows), BSL (เหนือ Highs)
* **Money Flow:** Day เริ่มเป็นลบ, 4H เป็นลบ, 15m เป็นลบ
* **Trend Strength** 15 m : ขาลง
* **กลยุทธ์:**
1. **Wait & See (ดีที่สุด):** รอความชัดเจน
2. **Short (เสี่ยง):** ถ้าไม่สามารถ Breakout EMA/แนวต้านใน TF ใดๆ ได้
3. **ไม่แนะนำให้ Buy:** จนกว่าจะมีสัญญาณกลับตัวที่ชัดเจน
**คำแนะนำ:**
* **ความขัดแย้งของ Timeframes:** ชัดเจน
* **Money Flow:** เป็นลบในทุก Timeframes
* **ระวัง SSL:** Smart Money อาจจะลากราคาลงไปกิน Stop Loss
* **ถ้าไม่แน่ใจ อย่าเพิ่งเข้าเทรด**
**Disclaimer:** การวิเคราะห์นี้เป็นเพียงความคิดเห็นส่วนตัว ไม่ถือเป็นคำแนะนำในการลงทุน ผู้ลงทุนควรศึกษาข้อมูลเพิ่มเติมและตัดสินใจด้วยความรอบคอบ
-

@ a95c6243:d345522c
2025-01-13 10:09:57
*Ich begann, Social Media aufzubauen,* *\
um den Menschen eine Stimme zu geben.* *\
Mark Zuckerberg*
**Sind euch auch die Tränen gekommen, als ihr Mark Zuckerbergs** **[Wendehals-Deklaration](https://www.facebook.com/zuck/videos/1525382954801931)** bezüglich der Meinungsfreiheit auf seinen Portalen gehört habt? Rührend, oder? Während er früher die offensichtliche Zensur leugnete und später die Regierung Biden dafür verantwortlich machte, will er nun angeblich «die Zensur auf unseren Plattformen drastisch reduzieren».
**«Purer** **[Opportunismus](https://transition-news.org/facebook-grunder-zuckerberg-vom-trump-gegner-zum-trump-buddy-und-anti-zensor)» ob des anstehenden Regierungswechsels wäre als Klassifizierung** viel zu kurz gegriffen. Der jetzige Schachzug des Meta-Chefs ist genauso Teil einer kühl kalkulierten Business-Strategie, wie es die 180 Grad umgekehrte Praxis vorher war. Social Media sind ein höchst lukratives Geschäft. Hinzu kommt vielleicht noch ein bisschen verkorkstes Ego, weil derartig viel Einfluss und Geld sicher auch auf die Psyche schlagen. Verständlich.
> «Es ist an der Zeit, zu unseren Wurzeln der freien Meinungsäußerung auf Facebook und Instagram zurückzukehren. Ich begann, Social Media aufzubauen, um den Menschen eine Stimme zu geben», sagte Zuckerberg.
**Welche Wurzeln? Hat der Mann vergessen, dass er von der Überwachung,** dem Ausspionieren und dem Ausverkauf sämtlicher Daten und digitaler Spuren sowie der Manipulation seiner «Kunden» lebt? Das ist knallharter Kommerz, nichts anderes. Um freie Meinungsäußerung geht es bei diesem Geschäft ganz sicher nicht, und das war auch noch nie so. Die Wurzeln von Facebook liegen in einem Projekt des US-Militärs mit dem Namen [«LifeLog»](https://norberthaering.de/macht-kontrolle/lifelog/). Dessen Ziel war es, «ein digitales Protokoll vom Leben eines Menschen zu erstellen».
**Der Richtungswechsel kommt allerdings nicht überraschend.** Schon Anfang Dezember hatte Meta-Präsident Nick Clegg von «zu hoher Fehlerquote bei der Moderation» von Inhalten [gesprochen](https://www.theverge.com/2024/12/3/24311513/meta-content-moderation-mistakes-nick-clegg). Bei der Gelegenheit erwähnte er auch, dass Mark sehr daran interessiert sei, eine aktive Rolle in den Debatten über eine amerikanische Führungsrolle im technologischen Bereich zu spielen.
**Während Milliardärskollege und Big Tech-Konkurrent Elon Musk bereits seinen Posten** in der kommenden Trump-Regierung in Aussicht hat, möchte Zuckerberg also nicht nur seine Haut retten – Trump hatte ihn einmal einen «Feind des Volkes» genannt und ihm lebenslange Haft angedroht –, sondern am liebsten auch mitspielen. KI-Berater ist wohl die gewünschte Funktion, wie man nach einem Treffen Trump-Zuckerberg hörte. An seine [Verhaftung](https://transition-news.org/nicht-telegram-grunder-durow-sondern-zuckerberg-sollte-in-haft-sitzen-wegen-des) dachte vermutlich auch ein weiterer Multimilliardär mit eigener Social Media-Plattform, Pavel Durov, als er Zuckerberg jetzt [kritisierte](https://www.berliner-zeitung.de/news/ende-des-faktenchecks-bei-meta-telegram-gruender-kritisiert-zuckerberg-und-spricht-warnung-aus-li.2287988) und gleichzeitig warnte.
**Politik und Systemmedien drehen jedenfalls durch** – was zu viel ist, ist zu viel. Etwas weniger Zensur und mehr Meinungsfreiheit würden die Freiheit der Bürger schwächen und seien potenziell vernichtend für die Menschenrechte. Zuckerberg setze mit dem neuen Kurs die Demokratie aufs Spiel, das sei eine «Einladung zum nächsten [Völkermord](https://archive.is/PYeH0)», ernsthaft. Die Frage sei, ob sich die [EU gegen Musk und Zuckerberg](https://www.handelsblatt.com/politik/international/internet-regulierung-kann-sich-die-eu-gegen-musk-und-zuckerberg-behaupten/100099373.html) behaupten könne, Brüssel müsse jedenfalls hart durchgreifen.
**Auch um die** **[Faktenchecker](https://www.welt.de/kultur/medien/article255065352/Metas-Kurswechsel-Zuckerbergs-Entscheidung-und-die-Folgen-fuer-deutsche-Faktenchecker.html)** **macht man sich Sorgen.** Für die deutsche Nachrichtenagentur *dpa* und die «Experten» von *Correctiv*, die (noch) Partner für Fact-Checking-Aktivitäten von Facebook sind, sei das ein «lukratives Geschäftsmodell». Aber möglicherweise werden die Inhalte ohne diese vermeintlichen Korrektoren ja sogar besser. Anders als Meta wollen jedoch Scholz, Faeser und die *Tagesschau* keine Fehler zugeben und zum Beispiel *Correctiv*-[Falschaussagen](https://www.berliner-zeitung.de/politik-gesellschaft/correctiv-falschaussagen-exklusiv-scholz-faeser-und-tagesschau-wollen-sich-fuer-verbreitung-nicht-entschuldigen-li.2288126) einräumen.
**Bei derlei dramatischen Befürchtungen wundert es nicht,** dass der öffentliche Plausch auf X zwischen Elon Musk und AfD-Chefin Alice Weidel von 150 EU-Beamten überwacht wurde, falls es irgendwelche Rechtsverstöße geben sollte, die man ihnen ankreiden könnte. Auch der Deutsche Bundestag war wachsam. Gefunden haben dürften sie nichts. Das Ganze war eher eine Show, viel Wind wurde gemacht, aber letztlich gab es nichts als heiße Luft.
**Das** **[Anbiedern](https://transition-news.org/who-biedert-sich-bei-trump-an)** **bei Donald Trump ist indes gerade in Mode.** Die Weltgesundheitsorganisation (WHO) tut das auch, denn sie fürchtet um Spenden von über einer Milliarde Dollar. Eventuell könnte ja Elon Musk auch hier künftig aushelfen und der Organisation sowie deren größtem privaten Förderer, Bill Gates, etwas unter die Arme greifen. Nachdem Musks KI-Projekt xAI kürzlich von BlackRock & Co. [sechs Milliarden](https://x.ai/blog/series-c) eingestrichen hat, geht da vielleicht etwas.
***
Dieser Beitrag ist zuerst auf ***[Transition News](https://transition-news.org/milliardenschwere-wetterfahnchen-und-windmaschinen)*** erschienen.
-

@ 30e8cbf1:74fccbaa
2025-02-19 03:22:53
*Capitalist Realism: Is There No Alternative? by Mark Fisher* (2009, Zero Books)
## Why a dare and not a recommendation?
I'm writing this "review" primarily for the Nostr audience. The majority of Nostr users, in my experience, are predisposed to a worldview somewhere in the realm of Anarcho-Capitalism or Libertarianism, with a strong focus on individual autonomy and free markets. The title *Capitalist Realism: Is There No Alternative* might evoke an immediate negative reaction in the mind of my imaginary Nostr reader. Even worse, looking up summaries of the book or the author before diving in, the reader will find the dreaded phrase "critical theory", seen as a hallmark of the "other" side in the Western culture war. I'm challenging you to not judge this book by its cover.
Despite the book's short (86 page) length, I have found myself spending an unusually large amount of time thinking about the topics discussed within. I'm unsure if my worldview has actually shifted after reading this (I think I'm still close to the Nostr median), but I've enjoyed this exercise in contemplation, and I hope this article can lead someone else to a similarly fruitful experience. I feel compelled to put my thoughts to paper as part of this exercise, and what follows is something like the internal dialog I go through considering and challenging Fisher's main points.
First, despite the word "Capitalism" in the title, this book is not about economics. Rather, the central point is that after the fall of the Soviet Union the prevailing worldview in the Western world is a "business ontology", essentially seeing people as purely material producer/consumers. Most people have internalized this view, seeing no higher purpose or meaning in their lives other than going to work and buying things. Even worse than the widespread internalization of this view, Fisher argues that it is so pervasive that most people can't even conceptualize an alternative. Fisher points out the rapid increases in mental health problems, despair, and suicide, especially among young people in the 21st century as evidence of this argument. *Capitalist Realism* was written in 2009, and I think there is a clear line between Fishers argument and the current conception of a "crisis of meaning" among young people espoused by some online figures such as Jordan Peterson. Whether there is a direct link between the business ontology and crisis of meaning (as Fisher argues) is less clear to me, but he clearly identified a phenomenon that has only gotten more acute since the book was published. Further, Fisher cites popular culture, particularly modern music and movies as evidence of this phenomenon. In his conception, this business ontology leads to endlessly recycled aesthetic callbacks to previous generations, with most media appealing to our nostalgia for a time when people had a genuine belief that the future may be different than the present, which he thinks has been lost by total adoption of this business ontology. I'm not knowledgeable enough in aesthetics to comment on this point, but do have an intuitive feeling that modern movies and music are degenerate from the works created by previous generations. Fisher calls this "Hauntology" as is explored in another book that I haven't read yet.
In a section of the book I found particularly interesting, Fisher critiques the hypocrisy of capitalist neoliberal societies that cite the "Stalinist Bureaucracy" as a fatal fall that led to the demise of the Soviet Union while rapidly adopting the same form of work domestically. Essentially, in the Soviet system most people only "worked" to achieve whatever metric the bureaucrats used to assess their productivity. Whether or not this correlated with producing useful goods or services was entirely irrelevant. If a factory had a quota of making 100 tons of clocks, the workers would just produce overweight and non-functional clocks to meet this quota. All up and down the chain the metrics were met, pleasing the bureaucrats and appearing "productive", but everyone was fully aware that the work was performative and fake. Fisher points to his experience in academia, where universities continued to add more and more administrators to run pointless audit and review programs. Both the faculty and administrators are fully aware that these programs are meaningless and unproductive, but the metrics become a justification of themselves. They don't matter, but they need to exist to make massive administrator bloat and associated bureaucracy appear necessary. Again, in the years since the book's publication the public consciousness of this problem has grown, though the criticism is more often leveled from the political right. I was surprised to read an author I would stereotype as an "ivory tower leftist academic" forcefully level this criticism at his own institution.
As I think about this book, I wonder if it helps to make a distinction between "capitalism" and "fiat". On Nostr we often critique "fiat food", "fiat jobs", and "fiat music" as hollow, meaningless, and temporary things. We hypothesize that sound money will fix the incentives that lead to the societal problems that Fisher attributes to neoliberal capitalism. Fisher does not consider Bitcoin in this book (or any of this other works, to my knowledge) but I'm curious if he would make a similar distinction. If this book was called *Fiat Realism: Is There No Alternative* would it be popular in Bitcoin circles? I think it would be. Maybe people would point to these criticisms leveled within a year of Bitcoin's creation and claim "Bitcoin fixes this". Going back to an earlier point, Fisher doesn't critique free exchange, markets or individual liberty. He critiques a specific culture that currently seems all-pervasive without any alternative. I hope that the freedom money and freedom technology movement we are a part of is a feasible alternative.
I hope this article is helpful to someone. It was certainly helpful for me to write it. I'm interested in hearing your thoughts on this book or this article!
-

@ 97c70a44:ad98e322
2025-02-18 20:30:32
For the last couple of weeks, I've been dealing with the fallout of upgrading a web application to Svelte 5. Complaints about framework churn and migration annoyances aside, I've run into some interesting issues with the migration. So far, I haven't seen many other people register the same issues, so I thought it might be constructive for me to articulate them myself.
I'll try not to complain too much in this post, since I'm grateful for the many years of Svelte 3/4 I've enjoyed. But I don't think I'll be choosing Svelte for any new projects going forward. I hope my reflections here will be useful to others as well.
If you're interested in reproductions for the issues I mention here, you can find them below.
- [Can't save state to indexeddb](https://github.com/sveltejs/svelte/issues/15327)
- [Component unmount results in undefined variables in closures](https://github.com/sveltejs/svelte/issues/15325)
# The Need for Speed
To start with, let me just quickly acknowledge what the Svelte team is trying to do. It seems like most of the substantial changes in version 5 are built around "deep reactivity", which allows for more granular reactivity, leading to better performance. Performance is good, and the Svelte team has always excelled at reconciling performance with DX.
In previous versions of Svelte, the main way this was achieved was with the Svelte compiler. There were many ancillary techniques involved in improving performance, but having a framework compile step gave the Svelte team a lot of leeway for rearranging things under the hood without making developers learn new concepts. This is what made Svelte so original in the beginning.
At the same time, it resulted in an even more opaque framework than usual, making it harder for developers to debug more complex issues. To make matters worse, the compiler had bugs, resulting in errors which could only be fixed by blindly refactoring the problem component. This happened to me personally at least half a dozen times, and is what ultimately pushed me to migrate to Svelte 5.
Nevertheless, I always felt it was an acceptable trade-off for speed and productivity. Sure, sometimes I had to delete my project and port it to a fresh repository every so often, but the framework was truly a pleasure to use.
# Svelte is not Javascript
Svelte 5 doubled down on this tradeoff — which makes sense, because it's what sets the framework apart. The difference this time is that the abstraction/performance tradeoff did not stay in compiler land, but intruded into runtime in two important ways:
- The use of proxies to support deep reactivity
- Implicit component lifecycle state
Both of these changes improved performance _and_ made the API for developers look slicker. What's not to like? Unfortunately, both of these features are classic examples of a [leaky abstraction](https://www.joelonsoftware.com/2002/11/11/the-law-of-leaky-abstractions/), and ultimately make things _more_ complex for developers, not less.
## Proxies are not objects
The use of proxies seems to have allowed the Svelte team to squeeze a little more performance out of the framework, without asking developers to do any extra work. Threading state through multiple levels of components without provoking unnecessary re-renders in frameworks like React is an infamously difficult chore.
Svelte's compiler avoided some of the pitfalls associated with virtual DOM diffing solutions, but evidently there was still enough of a performance gain to be had to justify the introduction of proxies. The Svelte team also [seems to argue](https://svelte.dev/blog/runes) that their introduction represents an improvement in developer experience:
> we... can maximise both efficiency and ergonomics.
Here's the problem: Svelte 5 _looks_ simpler, but actually introduces _more_ abstractions.
Using proxies to monitor array methods (for example) is appealing because it allows developers to forget all the goofy heuristics involved with making sure state was reactive and just `push` to the array. I can't count how many times I've written `value = value` to trigger reactivity in svelte 4.
In Svelte 4, developers had to understand how the Svelte compiler worked. The compiler, being a leaky abstraction, forced its users to know that assignment was how you signaled reactivity. In svelte 5, developers can just "forget" about the compiler!
Except they can't. All the introduction of new abstractions really accomplishes is the introduction of more complex heuristics that developers have to keep in their heads in order to get the compiler to act the way they want it to.
In fact, this is why after years of using Svelte, I found myself using Svelte stores more and more often, and reactive declarations less. The reason being that Svelte stores are _just javascript_. Calling `update` on a store is _simple_, and being able to reference them with a `$` was just a nice bonus — nothing to remember, and if I mess up the compiler yells at me.
Proxies introduce a similar problem to reactive declarations, which is that they look like one thing but act like another on the edges.
When I started using Svelte 5, everything worked great — until [I tried to save a proxy to indexeddb](https://github.com/sveltejs/svelte/issues/15327), at which point I got a `DataCloneError`. To make matters worse, it's impossible to reliably tell if something is a `Proxy` without `try/catch`ing a structured clone, which is a performance-intensive operation.
This forces the developer to remember what is and what isn't a Proxy, calling `$state.snapshot` every time they pass a proxy to a context that doesn't expect or know about them. This obviates all the nice abstractions they gave us in the first place.
## Components are not functions
The reason virtual DOM took off way back in 2013 was the ability to model your application as composed functions, each of which takes data and spits out HTML. Svelte retained this paradigm, using a compiler to sidestep the inefficiencies of virtual DOM and the complexities of lifecycle methods.
In Svelte 5, component lifecycles are back, react-hooks style.
In React, hooks are an abstraction that allows developers to avoid writing all the stateful code associated with component lifecycle methods. Modern React tutorials universally recommend using hooks instead, which rely on the framework invisibly synchronizing state with the render tree.
While this does result in cleaner code, it also requires developers to tread carefully to avoid breaking the assumptions surrounding hooks. Just try accessing state in a `setTimeout` and you'll see what I mean.
Svelte 4 had a few gotchas like this — for example, async code that interacts with a component's DOM elements has to keep track of whether the component is unmounted. This is pretty similar to the kind of pattern you'd see in old React components that relied on lifecycle methods.
It seems to me that Svelte 5 has gone the React 16 route by adding implicit state related to component lifecycles in order to coordinate state changes and effects.
For example, here is an excerpt from the documentation for [$effect](https://svelte.dev/docs/svelte/$effect):
> You can place $effect anywhere, not just at the top level of a component, as long as it is called during component initialization (or while a parent effect is active). It is then tied to the lifecycle of the component (or parent effect) and will therefore destroy itself when the component unmounts (or the parent effect is destroyed).
That's very complex! In order to use `$effect`... effectively (sorry), developers have to understand how state changes are tracked. The [documentation for component lifecycles](https://svelte.dev/docs/svelte/lifecycle-hooks) claims:
> In Svelte 5, the component lifecycle consists of only two parts: Its creation and its destruction. Everything in-between — when certain state is updated — is not related to the component as a whole; only the parts that need to react to the state change are notified. This is because under the hood the smallest unit of change is actually not a component, it’s the (render) effects that the component sets up upon component initialization. Consequently, there’s no such thing as a “before update”/"after update” hook.
But then goes on to introduce the idea of `tick` in conjunction with `$effect.pre`. This section explains that "`tick` returns a promise that resolves once any pending state changes have been applied, or in the next microtask if there are none."
I'm sure there's some mental model that justifies this, but I don't think the claim that a component's lifecycle is only comprised of mount/unmount is really helpful when an addendum about state changes has to come right afterward.
The place where this really bit me, and which is the motivation for this blog post, is when state gets coupled to a component's lifecycle, even when the state is passed to another function that doesn't know anything about svelte.
In my application, I manage modal dialogs by storing the component I want to render alongside its props in a store and rendering it in the `layout.svelte` of my application. This store is also synchronized with browser history so that the back button works to close them. Sometimes, it's useful to pass a callback to one of these modals, binding caller-specific functionality to the child component:
```javascript
const {value} = $props()
const callback = () => console.log(value)
const openModal = () => pushModal(MyModal, {callback})
```
This is a fundamental pattern in javascript. Passing a callback is just one of those things you do.
Unfortunately, if the above code lives in a modal dialog itself, the caller component gets unmounted before the callback gets called. In Svelte 4, this worked fine, but in Svelte 5 `value` gets updated to `undefined` when the component gets unmounted. [Here's a minimal reproduction](https://github.com/sveltejs/svelte/issues/15325).
This is only one example, but it seems clear to me that _any_ prop that is closed over by a callback function that lives longer than its component will be undefined when I want to use it — with no reassignment existing in lexical scope. It seems that the [reason this happens](https://github.com/sveltejs/svelte/issues/14707) is that the props "belong" to the parent component, and are accessed via getters so that the parent can revoke access when it unmounts.
I don't know why this is necessary, but I assume there's a good engineering reason for it. The problem is, this just isn't how javascript works. Svelte is essentially attempting to re-invent garbage collection around component lifecycles, which breaks the assumption every javascript developer has that variables don't simply disappear without an explicit reassignment. It should be safe to pass stuff around and let the garbage collector do its job.
# Conclusion
Easy things are nice, but as Rich Hickey says, [easy things are not always simple](https://www.infoq.com/presentations/Simple-Made-Easy/). And like Joel Spolsky, I don't like being surprised. Svelte has always been full of magic, but with the latest release I think the cognitive overhead of reciting incantations has finally outweighed the power it confers.
My point in this post is not to dunk on the Svelte team. I know lots of people like Svelte 5 (and react hooks). The point I'm trying to make is that there is a tradeoff between doing things on the user's behalf, and giving the user agency. Good software is built on understanding, not cleverness.
I also think this is an important lesson to remember as AI-assisted coding becomes increasingly popular. Don't choose tools that alienate you from your work. Choose tools that leverage the wisdom you've already accumulated, and which help you to cultivate a deeper understanding of the discipline.
Thank you to Rich Harris and team for many years of pleasant development. I hope that (if you read this) it's not _so_ full of inaccuracies as to be unhelpful as user feedback.
-

@ d360efec:14907b5f
2025-02-18 13:18:54
**นักพนันแห่งเฮรันเทล**
**“คณิตศาสตร์” กุญแจเวทมนตร์ นักพนัน และ นักลงทุน**
ในนครเฮรันเทล นามกระฉ่อนเลื่องลือในหมู่นักเสี่ยงโชค เมื่อเอ่ยถึง **“การพนัน”** ภาพที่ชาวเมืองมักนึกถึงคือ **“ยาจกข้างถนน”**
มิใช่เรื่องแปลกประหลาดอันใด เพราะเป็นที่ร่ำลือกันว่า **จ้าวแห่งหอคอยรัตติกาล** ผู้คุมบ่อนพนัน มักร่ายเวทมนตร์สร้างเกมให้ตนเองได้เปรียบ เพื่อดูดกลืนเงินทองของผู้มาเยือน
ดังนั้น การที่สามัญชนจะพิชิตเกมในระยะยาว จึงเป็นดั่งเงามายาที่จับต้องมิได้
กระนั้น ยังมีตำนานกล่าวขานถึงผู้กล้า ที่สามารถสร้างชื่อจาก **“เกมพนัน”** เช่น
**เวเนสซา รุสโซ** นักเวทย์มนตร์ผู้ใช้กฎหมายแห่งแดนไกล ใช้เวลายาวนานถึงหกปี
ร่ายเวทย์สะสมทรัพย์สินกว่าร้อยล้านเหรียญทอง จากการเล่นเกมไพ่ศักดิ์สิทธิ์ **“โป๊กเกอร์”**
หรือแม้แต่ **เอ็ดเวิร์ด โอ. ทอร์ป** จอมปราชญ์ผู้สร้างกำไรถึงสามแสนหกหมื่นเหรียญทอง ภายในเจ็ดราตรี
จากการเล่นเกมไพ่มนตรา **“แบล็กแจ็ก”** ด้วยเงินทุนตั้งต้นเพียงสามแสนสามหมื่นเหรียญทอง คิดเป็นอัตราเวทย์ตอบแทนร้อยสิบส่วน!
เหล่าจอมยุทธ์เหล่านี้ มิได้อาศัยเพียงโชคช่วยชั่วครั้งชั่วคราวแล้วเลือนหาย
แต่พวกเขากลับสามารถร่ายเวทย์สร้างผลตอบแทนระยะยาว จนเรียกได้ว่า ใช้ **“หอคอยรัตติกาล”** เป็นแหล่งเสบียงเลี้ยงชีพ
โดยกุญแจเวทย์ที่บุคคลเหล่านี้ใช้ ก็คือ **“คณิตศาสตร์”**
เหตุใด **“คณิตศาสตร์”** จึงช่วยให้ผู้คนเอาชนะ **“การพนัน”** ได้?
และนอกจาก **“การพนัน”** แล้ว **“คณิตศาสตร์”** ยังสามารถประยุกต์ใช้กับสิ่งใดได้อีก?
**นักเล่าเรื่องแห่งเฮรันเทล** จักไขปริศนาให้ฟัง
เบื้องต้น ขอให้ท่านลองพิจารณาตนเอง ว่าเคยประสบพบพานเหตุการณ์เหล่านี้หรือไม่:
- ตั้งมั่นว่า จักเสี่ยงโชคให้ได้กำไรเพียงเล็กน้อย แล้วจักหยุดพัก
- แต่หากพลาดท่าเสียที จักจำกัดการสูญเสียให้เท่าทุนเดิมที่ตั้งไว้
- ครั้นเมื่อเวทมนตร์เข้าข้าง ได้กำไรมาแล้ว กลับโลภโมโทสัน อยากได้เพิ่มอีกนิด จึงร่ายเวทย์ต่อ
- ทว่ากำไรเริ่มร่อยหรอ จนเหลือเพียงทุนเดิม สุดท้ายทุนที่ตั้งไว้คราแรกก็มลายสิ้น
- จำต้องหาเงินทองมาลงเพิ่ม หวังทวงทุนคืน และพบว่าต้องสูญเสียเงินก้อนนั้นไปในห้วงเวลาต่อมา
ลำดับเหตุการณ์ดังกล่าว เรียกได้ว่าเป็น **“วงจรอุบาทว์”** สำหรับนักพนันมากมายในเฮรันเทล
ปริศนาที่ตามมาก็คือ เหตุใด **“วงจรอุบาทว์”** นี้จึงเกิดขึ้นซ้ำแล้วซ้ำเล่า?
ส่วนหนึ่ง ย่อมเป็นเพราะอารมณ์อันแปรปรวนในการเสี่ยงโชคของแต่ละคน
แต่อีกส่วนที่สำคัญยิ่งกว่า ต้องกล่าวว่าเป็นผลจาก **“กลไกต้องสาป”** ของจ้าวแห่งหอคอยรัตติกาล
ซึ่งต้องกล่าวว่า เหล่าเจ้าของหอคอยรัตติกาลนั้น จักใช้หลักการทำนองเดียวกับ **“สมาคมพ่อค้าผู้พิทักษ์”**
คือจักเก็บเงินทองจากชนจำนวนมาก เพื่อนำมาจ่ายให้กับชนเพียงหยิบมือ
เพื่อล่อลวงให้ชนทั้งหลายเสี่ยงโชคต่อไป หรือทำให้เหล่านักพนันหวังว่า จักเป็นผู้โชคดีเฉกเช่นพวกเขาบ้าง
แม้จะมีผู้โชคดีที่สามารถได้กำไรในเบื้องต้น แต่ในบั้นปลายก็จักพ่ายแพ้อยู่ดี ซึ่งเป็นไปตาม **“กฎแห่งจำนวนมหาศาล”** เพราะจ้าวแห่งหอคอยรัตติกาลนั้น ได้คำนวณและออกแบบระบบเกมที่ตนเองได้เปรียบในระยะยาวแล้ว
จากตำนานนี้ ย่อมประจักษ์ชัดว่า แม้การพนันจักเป็นเรื่องของดวงชะตา
แต่ก็ถูกรังสรรค์ขึ้นจากการคำนวณทางคณิตศาสตร์
ดังนั้น หากปรารถนาจะหาหนทางเอาชนะจ้าวแห่งหอคอยรัตติกาล ก็จำต้องเข้าใจ **“คณิตศาสตร์”** เสียก่อน
ทีนี้ จงเงี่ยหูฟัง แล้วท่านจักได้ยินข้าไขปริศนา:
**๑. ปริศนาแห่ง “กำไรคาดหวัง”**
สำหรับการแสวงหา **“เกมเสี่ยงทาย”** ที่ควรค่าแก่การเล่น หรือการเสี่ยง
สิ่งแรกที่นักพนันพึงกระทำคือ **“การประเมินกำไรคาดหวัง”** หรือ **“เวทคำนวณอนาคต”**
**“กำไรคาดหวัง”** ถูกคิดค้นโดย **คริสเตียน ฮอยเกนส์** นักปราชญ์เวทย์ชาวดัตช์ เพื่อประเมินว่าเกมพนันแบบใดควรค่าแก่การเล่น ซึ่งมิใช่เพียงแค่การประเมินโอกาสแห่งชัยชนะเท่านั้น แต่ต้องคิดรวมขนาดของเงินเดิมพันไปด้วย
โดยสูตรเวทย์คือ:
**กำไรคาดหวัง = (เงินที่ได้ x โอกาสชนะ) + (เงินที่เสีย x โอกาสแพ้)**
ดังนั้น หากปรารถนาจะสะสม **“ทองคำมายา”** ในระยะยาว จงเลือกเกมที่มี **“กำไรคาดหวัง”** เป็นบวก
แต่หากพลาดพลั้งเข้าไปเล่นเกมที่ **“กำไรคาดหวัง”** เป็นลบ และบังเอิญว่าโชคชะตาเล่นตลกให้ได้เงินทองมาครอง
พึงละทิ้งเกมนั้นเสียโดยพลัน เพราะท้ายที่สุดหากยังคงเล่นต่อไป ผู้อับโชคผู้นั้นก็คือตัวท่านเอง
อย่างไรก็ตาม โดยธรรมดาแล้ว **“กำไรคาดหวัง”** ของเกมพนันที่มีเจ้ามือมักจักติดลบ จึงเป็นเรื่องยากยิ่งที่จะเอาชนะได้ เฉกเช่นตัวอย่างที่เราเห็น คือเกมในบ่อนพนัน หรือแม้แต่ **“สลากกินแบ่งรัฐบาล”** ก็ล้วนเป็นเกมที่มี **“กำไรคาดหวัง”** ติดลบทั้งสิ้น
นอกจาก **“กำไรคาดหวัง”** จักถูกใช้กับการพนันได้แล้ว
หลักเวทย์ **“คณิตศาสตร์”** ก็ยังสามารถประยุกต์ใช้กับการลงทุนได้ไม่แตกต่างกัน
ตัวอย่างเช่น หากท่านเก็บสถิติข้อมูลการลงทุนของตนเอง
แล้วพบว่ามีเพียงสามสิบส่วนร้อยเท่านั้น ที่ท่านซื้อ **“ศิลาแห่งโชค”** แล้วสร้างผลตอบแทนเป็นบวก
แต่ท่านยังคงปรารถนาความสำเร็จในการลงทุน
ก็จงจำกัดการขาดทุนแต่ละคราให้น้อยเข้าไว้ เช่น -๕%
และปล่อยให้มีกำไรในแต่ละคราที่ลงทุน เช่น อย่างน้อย ๒๐%
ซึ่งจากการใช้กลยุทธ์นี้ ท่านจักมี **“กำไรคาดหวัง”** = (๒๐% x ๐.๓) + (-๕% x ๐.๗) = ๒.๕%
จักเห็นได้ว่า แม้ท่านจักมีจำนวนคราที่ขาดทุนบ่อยครั้ง แต่ก็ยังสามารถสร้างกำไรได้
หากคราที่กำไรนั้น สามารถทำเงินทองเป็นจำนวนมากได้
**๒. ปริศนาแห่ง “การบริหารหน้าตัก” หรือ “การบริหารเงินทุน”**
แม้ว่าท่านจักรับรู้ **“กำไรคาดหวัง”** แล้ว แต่หากท่านเผชิญหน้ากับการขาดทุนต่อเนื่องกัน ท่านก็อาจหมดเนื้อหมดตัวก่อนถึงคราที่จะกอบโกยเงินทองจากคราที่กำไร
วิธีคลายปมปริศนานี้ก็คือ การมิลงเงินทองทั้งหมดของท่านในการลงทุนเพียงคราเดียว
ซึ่งนอกจากการกระจายความเสี่ยงในการลงทุนหลาย **“ศิลาแห่งโชค”** หรือหลาย **“เกมเสี่ยงทาย”** แล้ว
ท่านอาจกำหนดขนาดของการลงทุนแต่ละคราให้มิมากเกินไป แบบง่าย ๆ เช่น มิเกิน ๑๐% ของเงินลงทุนทั้งหมด หรือท่านอาจคำนวณขนาดของการลงทุนแต่ละคราด้วยสูตรทางคณิตศาสตร์ เช่น สูตร **“การขาดทุนสูงสุดที่ท่านรับได้ (Value at Risk)”** หรือ สูตร **“ขนาดเดิมพันที่เหมาะสม (Kelly Formula)”**
**๓. ปริศนาแห่ง “อคติ”**
ในวงการพนัน มักมีอคติหนึ่งที่บังเกิดบ่อยครั้งกับผู้คน คือ **“Gambler's Fallacy”** หรือ **“ความเชื่อผิด ๆ แห่งนักพนัน”** ว่าหากเหตุการณ์หนึ่งบังเกิดบ่อยครั้งกว่าปรกติในช่วงเวลาหนึ่ง ๆ
เหตุการณ์นั้นจักบังเกิดบ่อยครั้งน้อยลงในอนาคต ทั้ง ๆ ที่เหตุการณ์เหล่านั้นเป็นอิสระจากกันในทางสถิติ
ยกตัวอย่างเช่น หากโยนเหรียญมนตราออกหัวไปแล้วสามครา ในคราที่สี่ หลายคนอาจคิดว่าโอกาสออกก้อยมากกว่าหัว แม้ว่าการโยนเหรียญแต่ละคราจะมิได้ส่งผลอันใดต่อกันเลย (จะโยนกี่ครา โอกาสหัวหรือก้อย ก็คือ ๕๐:๕๐ อยู่ยั่งยืน)
หรือแม้กระทั่ง **“สลากกินแบ่งรัฐบาล”** มีหลายคนที่ซื้อเลขซ้ำกัน เพื่อหวังว่าจะถูกในงวดต่อ ๆ ไป
ในวงการการลงทุน ก็มีลักษณะที่คล้ายคลึงกัน เช่น หาก **“ศิลาแห่งโชค A”** ราคาตกต่ำลงมาห้าครา บางคนอาจคิดว่าในคราที่หก ราคาของมันจักต้องเด้งขึ้นมา ซึ่งในความเป็นจริง หาได้เป็นเช่นนั้นเสมอไป
จักเห็นได้ว่า แท้จริงแล้ว ไม่ว่าจักเป็น **“เกมเสี่ยงทายแห่งโชคชะตา”** หรือ **“การผจญภัยในตลาดทุน”**
หากท่านมีความเข้าใจ และนำ **“คณิตศาสตร์”** เข้ามาเป็นรากฐาน
มันก็อาจนำพาตัวท่านเอง ไปสู่จุดที่ได้เปรียบในเกมนั้น ได้เฉกเช่นกัน..
**สูตรเวทย์มนตร์ที่ปรากฏในตำนาน:**
* **กำไรคาดหวัง = (เงินที่ได้ x โอกาสชนะ) + (เงินที่เสีย x โอกาสแพ้)**
**คำเตือนจากนักเล่าเรื่องแห่งเฮรันเทล:**
"พึงระลึกไว้เสมอว่า โชคชะตาเป็นสิ่งที่คาดเดาได้ยาก แม้เวทมนตร์คณิตศาสตร์จักช่วยนำทาง แต่ท้ายที่สุดแล้ว ความสำเร็จยังคงขึ้นอยู่กับการตัดสินใจและสติปัญญาของท่านเอง"
หวังว่าตำนานบทนี้จักเป็นประโยชน์แก่ท่านนะคะ
-

@ 266815e0:6cd408a5
2025-02-18 17:25:31
## noStrudel
Released another major version of noStrudel v0.42.0
Which included a few new features and a lot of cleanup
nostr:naddr1qvzqqqr4gupzqfngzhsvjggdlgeycm96x4emzjlwf8dyyzdfg4hefp89zpkdgz99qyghwumn8ghj7mn0wd68ytnhd9hx2tcpzfmhxue69uhkummnw3e82efwvdhk6tcqp3hx7um5wf6kgetv956ry6rmhwr
## Blossom
On the blossom front there where a few more PRs
- Expanded the documentation around CORS headers in BUD-01 thanks to nostr:npub1a6we08n7zsv2na689whc9hykpq4q6sj3kaauk9c2dm8vj0adlajq7w0tyc
- Made auth optional on the `/upload` endpoint [PR](https://github.com/hzrd149/blossom/pull/33)
- Added a `HEAD /media` endpoint for BUD-05 [PR](https://github.com/hzrd149/blossom/pull/42)
- Added range request recommendations to BUD-01 [PR](https://github.com/hzrd149/blossom/pull/47)
With blossom uploads starting to be supported in more nostr clients users where starting to ask where to find a list of blossom servers. so I created a simple nostr client that allows users to post servers and leave reviews
[blossomservers.com](https://blossomservers.com)
Its still very much a work in progress (needs login and server and review editing)
The source is on [github](https://github.com/hzrd149/blossomservers)
I also started another project to create a simple account based paid blossom server [blossom-account-server](https://github.com/hzrd149/blossom-account-server)
Unfortunately I got sidetracked and I didn't have the time to give it the attention it needs to get it over the finish line
## Smaller projects
- [cherry-tree](https://github.com/hzrd149/cherry-tree) A small app for uploading chunked blobs to blossom servers (with cashu payment support)
- [vite-plugin-funding](https://github.com/hzrd149/vite-plugin-funding) A vite plugin to collect and expose package "funding" to the app
- [node-red-contrib-rx-nostr](https://github.com/hzrd149/node-red-contrib-rx-nostr) The start of a node-red package for rx-nostr. if your interested please help
- [node-red-contrib-applesauce](https://github.com/hzrd149/node-red-contrib-applesauce) The start of a node-red package for applesauce. I probably wont finish it so any help it welcome
## Plans for 2025
I have a few vague ideas of what I want to work on Q1 of 2025. but there are a few things i know for certain.
I'm going to keep refactoring noStrudel by moving core logic out into [applesauce](https://hzrd149.github.io/applesauce/) and making it more modular. This should make noStrudel more reliable and hopefully allow me to create and maintain more apps with less code
And I'm going to write tests. tests for everything. hopefully tests for all the libraries and apps I've created in 2024.
A lot of the code I wrote in 2024 was hacky code to see if things could work. and while its been working pretty well I'm starting to forget the details of of the code I wrote so I cant be sure if it still works or how well it works.
So my solution is to write tests, lots of tests :)
-

@ 4f1a1249:66f0ac3a
2025-02-18 07:15:30
68bet là một nền tảng kỹ thuật số hiện đại, mang đến cho người dùng một trải nghiệm mượt mà, nhanh chóng và tiện lợi. Với giao diện thiết kế tối ưu, dễ sử dụng, 68bet giúp người dùng dễ dàng thao tác và tiếp cận các tính năng quan trọng một cách nhanh chóng. Hệ thống được tối ưu hóa để hoạt động ổn định trên nhiều thiết bị, từ máy tính bàn đến điện thoại di động, đảm bảo sự linh hoạt và thuận tiện tối đa. Đặc biệt, nền tảng này liên tục cập nhật những công nghệ tiên tiến nhất nhằm cải thiện hiệu suất và tốc độ xử lý, giúp mọi thao tác diễn ra trơn tru và chính xác. Nhờ vào những đổi mới không ngừng, 68bet đã nhanh chóng thu hút đông đảo người dùng và khẳng định vị thế vững chắc trong lĩnh vực kỹ thuật số hiện đại.
Bên cạnh việc tập trung vào trải nghiệm người dùng, <a href="https://68bet.site">68BET</a> còn đặc biệt chú trọng đến vấn đề bảo mật và an toàn thông tin. Hệ thống được trang bị công nghệ mã hóa tiên tiến, giúp bảo vệ dữ liệu cá nhân và thông tin giao dịch của người dùng một cách tối ưu. Các tiêu chuẩn bảo mật nghiêm ngặt được áp dụng nhằm ngăn chặn rủi ro xâm nhập trái phép, đảm bảo môi trường sử dụng an toàn và đáng tin cậy. Không chỉ vậy, 68bet luôn cam kết minh bạch trong mọi hoạt động, giúp người dùng có thể hoàn toàn yên tâm trong suốt quá trình trải nghiệm. Hơn nữa, nền tảng này liên tục nâng cấp và cải tiến các tính năng nhằm đáp ứng nhu cầu ngày càng cao của người dùng, mang đến một môi trường kỹ thuật số hiện đại, chuyên nghiệp và đáng tin cậy.
Không chỉ sở hữu công nghệ tiên tiến và hệ thống bảo mật chặt chẽ, 68bet còn có đội ngũ hỗ trợ khách hàng chuyên nghiệp, sẵn sàng giải đáp mọi thắc mắc và hỗ trợ người dùng một cách nhanh chóng, hiệu quả. Dịch vụ hỗ trợ hoạt động liên tục, đảm bảo rằng mọi vấn đề đều được giải quyết kịp thời, giúp người dùng có trải nghiệm liền mạch và thuận lợi nhất. Ngoài ra, 68bet luôn không ngừng nghiên cứu và phát triển các tính năng mới, giúp nâng cao chất lượng trải nghiệm và đáp ứng nhu cầu đa dạng của người dùng. Với sự kết hợp hoàn hảo giữa công nghệ hiện đại, bảo mật cao và dịch vụ tận tâm, 68bet tiếp tục khẳng định vị thế vững chắc trên thị trường và trở thành sự lựa chọn đáng tin cậy cho những ai đang tìm kiếm một nền tảng kỹ thuật số chất lượng hàng đầu.
-

@ a95c6243:d345522c
2025-01-03 20:26:47
*Was du bist hängt von drei Faktoren ab:* *\
Was du geerbt hast,* *\
was deine Umgebung aus dir machte* *\
und was du in freier Wahl* *\
aus deiner Umgebung und deinem Erbe gemacht hast.* *\
Aldous Huxley*
**Das brave Mitmachen und Mitlaufen in einem vorgegebenen, recht engen Rahmen** ist gewiss nicht neu, hat aber gerade wieder mal Konjunktur. Dies kann man deutlich beobachten, eigentlich egal, in welchem gesellschaftlichen Bereich man sich umschaut. Individualität ist nur soweit angesagt, wie sie in ein bestimmtes Schema von «Diversität» passt, und Freiheit verkommt zur Worthülse – nicht erst durch ein gewisses [Buch](https://www.nachdenkseiten.de/?p=126416) einer gewissen ehemaligen Regierungschefin.
**Erklärungsansätze für solche Entwicklungen sind bekannt,** und praktisch alle haben etwas mit Massenpsychologie zu tun. Der Herdentrieb, also der Trieb der Menschen, sich – zum Beispiel aus Unsicherheit oder Bequemlichkeit – lieber der Masse anzuschließen als selbstständig zu denken und zu handeln, ist einer der Erklärungsversuche. Andere drehen sich um Macht, Propaganda, Druck und Angst, also den gezielten Einsatz psychologischer [Herrschaftsinstrumente](https://transition-news.org/spip.php?recherche=nudging\&page=recherche_wall).
**Aber wollen die Menschen überhaupt Freiheit?** Durch Gespräche im privaten Umfeld bin ich diesbezüglich in der letzten Zeit etwas skeptisch geworden. Um die Jahreswende philosophiert man ja gerne ein wenig über das Erlebte und über die Erwartungen für die Zukunft. Dabei hatte ich hin und wieder den Eindruck, die totalitären Anwandlungen unserer «Repräsentanten» kämen manchen Leuten gerade recht.
**«Desinformation» ist so ein brisantes Thema.** Davor müsse man die Menschen doch schützen, hörte ich. Jemand müsse doch zum Beispiel diese ganzen merkwürdigen Inhalte in den Social Media filtern – zur [Ukraine](https://transition-news.org/spip.php?recherche=ukraine\&page=recherche_wall), zum [Klima](https://transition-news.org/spip.php?recherche=klima\&page=recherche_wall), zu [Gesundheitsthemen](https://transition-news.org/spip.php?recherche=impfung\&page=recherche_wall) oder zur [Migration](https://transition-news.org/spip.php?recherche=migration\&page=recherche_wall). Viele wüssten ja gar nicht einzuschätzen, was richtig und was falsch ist, sie bräuchten eine Führung.
**Freiheit bedingt Eigenverantwortung, ohne Zweifel.** Eventuell ist es einigen tatsächlich zu anspruchsvoll, die Verantwortung für das eigene Tun und Lassen zu übernehmen. Oder die persönliche Freiheit wird nicht als ausreichend wertvolles Gut angesehen, um sich dafür anzustrengen. In dem Fall wäre die mangelnde Selbstbestimmung wohl das kleinere Übel. Allerdings fehlt dann gemäß Aldous Huxley ein Teil der Persönlichkeit. Letztlich ist natürlich alles eine Frage der Abwägung.
**Sind viele Menschen möglicherweise schon so «eingenordet»,** dass freiheitliche Ambitionen gar nicht für eine ganze Gruppe, ein Kollektiv, verfolgt werden können? Solche Gedanken kamen mir auch, als ich mir kürzlich diverse Talks beim viertägigen [Hacker-Kongress](https://transition-news.org/der-38-kongress-des-chaos-computer-clubs-bot-mehr-enthullungen-als-nur-die) des Chaos Computer Clubs (38C3) anschaute. Ich war nicht nur überrascht, sondern reichlich erschreckt angesichts der in weiten Teilen mainstream-geformten Inhalte, mit denen ein dankbares Publikum beglückt wurde. Wo ich allgemein hellere Köpfe erwartet hatte, fand ich Konformismus und enthusiastisch untermauerte Narrative.
**Gibt es vielleicht so etwas wie eine Herdenimmunität gegen Indoktrination?** Ich denke, ja, zumindest eine gestärkte Widerstandsfähigkeit. Was wir brauchen, sind etwas gesunder Menschenverstand, offene Informationskanäle und der Mut, sich freier auch zwischen den Herden zu bewegen. Sie tun das bereits, aber sagen Sie es auch dieses Jahr ruhig weiter.
***
Dieser Beitrag ist zuerst auf ***[Transition News](https://transition-news.org/kann-es-sein-dass-die-menschen-gar-keine-freiheit-wollen)*** erschienen.
-

@ 5d4b6c8d:8a1c1ee3
2025-02-17 14:39:25
A new best yesterday: 22 hours! Today's shaping up to be another solid fast, too, as I'm already at 19 hours (18 dry).
My body's really getting accustomed to the new eating pattern, too.
## Score Card
Day 1: 14 hour fast (13 dry)
Day 2: 15 hour fast (14 dry)
Day 3: 17 hours (16 dry)
Day 4: 18 hours (17 dry)
Day 5: 18 hours (16 dry)
Day 6: 19 hours (16 dry)
Day 7: 16 hours (15 dry)
Day 8: 18 hours (17 dry)
Day 9: 17 hours (17 dry)
Day 10: 15 hours (13 dry)
Day 11: 20 hours (19 dry)
Day 12: 20 hours (17 dry)
Day 13: 16 hours (13 dry)
Day 14: 17 hours (15 dry)
Day 15: 19 hours (16 dry)
Day 16: 22 hours (19 dry)
Day 17: TBD (18 dry)
originally posted at https://stacker.news/items/888397
-

@ a95c6243:d345522c
2025-01-01 17:39:51
**Heute möchte ich ein Gedicht mit euch teilen.** Es handelt sich um eine Ballade des österreichischen Lyrikers Johann Gabriel Seidl aus dem 19. Jahrhundert. Mir sind diese Worte fest in Erinnerung, da meine Mutter sie perfekt rezitieren konnte, auch als die Kräfte schon langsam schwanden.
**Dem originalen Titel «Die Uhr»** habe ich für mich immer das Wort «innere» hinzugefügt. Denn der Zeitmesser – hier vermutliche eine Taschenuhr – symbolisiert zwar in dem Kontext das damalige Zeitempfinden und die Umbrüche durch die industrielle Revolution, sozusagen den Zeitgeist und das moderne Leben. Aber der Autor setzt sich philosophisch mit der Zeit auseinander und gibt seinem Werk auch eine klar spirituelle Dimension.
**Das Ticken der Uhr und die Momente des Glücks und der Trauer** stehen sinnbildlich für das unaufhaltsame Fortschreiten und die Vergänglichkeit des Lebens. Insofern könnte man bei der Uhr auch an eine Sonnenuhr denken. Der Rhythmus der Ereignisse passt uns vielleicht nicht immer in den Kram.
**Was den Takt pocht, ist durchaus auch das Herz,** unser «inneres Uhrwerk». Wenn dieses Meisterwerk einmal stillsteht, ist es unweigerlich um uns geschehen. Hoffentlich können wir dann dankbar sagen: «Ich habe mein Bestes gegeben.»
*Ich trage, wo ich gehe, stets eine Uhr bei mir;* \
*Wieviel es geschlagen habe, genau seh ich an ihr.* \
*Es ist ein großer Meister, der künstlich ihr Werk gefügt,* \
*Wenngleich ihr Gang nicht immer dem törichten Wunsche genügt.*  
*Ich wollte, sie wäre rascher gegangen an manchem Tag;* *\
Ich wollte, sie hätte manchmal verzögert den raschen Schlag.* *\
In meinen Leiden und Freuden, in Sturm und in der Ruh,* *\
Was immer geschah im Leben, sie pochte den Takt dazu.*  
*Sie schlug am Sarge des Vaters, sie schlug an des Freundes Bahr,* *\
Sie schlug am Morgen der Liebe, sie schlug am Traualtar.* *\
Sie schlug an der Wiege des Kindes, sie schlägt, will's Gott, noch oft,* *\
Wenn bessere Tage kommen, wie meine Seele es hofft.*  
*Und ward sie auch einmal träger, und drohte zu stocken ihr Lauf,* *\
So zog der Meister immer großmütig sie wieder auf.* *\
Doch stände sie einmal stille, dann wär's um sie geschehn,* *\
Kein andrer, als der sie fügte, bringt die Zerstörte zum Gehn.*  
*Dann müßt ich zum Meister wandern, der wohnt am Ende wohl weit,* *\
Wohl draußen, jenseits der Erde, wohl dort in der Ewigkeit!* *\
Dann gäb ich sie ihm zurücke mit dankbar kindlichem Flehn:* *\
Sieh, Herr, ich hab nichts verdorben, sie blieb von selber stehn.*  
*Johann Gabriel Seidl (1804-1875)*
-

@ 4f1a1249:66f0ac3a
2025-02-18 07:14:28
789win1 là một nền tảng kỹ thuật số tiên tiến, mang đến cho người dùng trải nghiệm mượt mà, nhanh chóng và hiệu quả nhờ vào công nghệ hiện đại và giao diện thân thiện. Với thiết kế tối ưu, hệ thống giúp người dùng dễ dàng thao tác, truy cập nhanh chóng vào các tính năng và tận hưởng sự tiện lợi vượt trội. 789win1 không chỉ tương thích với nhiều thiết bị mà còn đảm bảo tốc độ xử lý cao, giúp mọi thao tác diễn ra trơn tru và liền mạch. Đặc biệt, nền tảng này liên tục cập nhật các công nghệ mới nhất để cải thiện hiệu suất, mang đến một môi trường ổn định, giúp người dùng có những trải nghiệm tốt nhất. Nhờ vào sự đầu tư mạnh mẽ vào công nghệ, 789win1 đã nhanh chóng khẳng định được vị thế của mình, trở thành một sự lựa chọn đáng tin cậy trên thị trường kỹ thuật số.
Bên cạnh hiệu suất hoạt động mạnh mẽ, <a href="https://789win1.shop
">789WIN1</a> còn đặc biệt chú trọng đến vấn đề bảo mật, đảm bảo sự an toàn tuyệt đối cho thông tin cá nhân và dữ liệu của người dùng. Hệ thống được tích hợp công nghệ mã hóa tiên tiến, giúp bảo vệ thông tin khỏi các rủi ro bảo mật và các mối đe dọa tiềm ẩn. Ngoài ra, nền tảng này còn áp dụng các tiêu chuẩn bảo mật cao cấp, ngăn chặn các hành vi truy cập trái phép, giúp người dùng hoàn toàn yên tâm trong suốt quá trình sử dụng. Không chỉ vậy, 789win1 luôn đặt sự minh bạch và tin cậy lên hàng đầu, không ngừng nâng cấp hệ thống để đáp ứng nhu cầu ngày càng cao, đảm bảo một môi trường kỹ thuật số an toàn và chuyên nghiệp.
Không chỉ sở hữu công nghệ tiên tiến và hệ thống bảo mật hiện đại, 789win1 còn có đội ngũ hỗ trợ chuyên nghiệp, luôn sẵn sàng tư vấn, giải đáp mọi thắc mắc của người dùng một cách nhanh chóng và hiệu quả. Dịch vụ hỗ trợ hoạt động liên tục, đảm bảo rằng mọi vấn đề đều được giải quyết kịp thời, mang lại sự hài lòng và an tâm tuyệt đối cho người dùng. Bên cạnh đó, 789win1 không ngừng mở rộng và phát triển, mang đến những cải tiến mới nhằm nâng cao chất lượng trải nghiệm, đáp ứng nhu cầu ngày càng đa dạng của người dùng. Với sự kết hợp hoàn hảo giữa công nghệ hiện đại, bảo mật cao và dịch vụ tận tâm, 789win1 tiếp tục khẳng định vị thế của mình, trở thành một nền tảng kỹ thuật số đáng tin cậy và được nhiều người yêu thích.
-

@ 4f1a1249:66f0ac3a
2025-02-18 07:13:07
68bet là một nền tảng kỹ thuật số tiên tiến được thiết kế nhằm mang lại trải nghiệm mượt mà, hiệu quả và tiện lợi cho người dùng. Với giao diện trực quan, thân thiện cùng tốc độ xử lý nhanh chóng, 68bet giúp người dùng dễ dàng thao tác và tận hưởng những tính năng hiện đại chỉ trong vài bước đơn giản. Nền tảng này được tối ưu hóa để hoạt động ổn định trên nhiều thiết bị khác nhau, từ máy tính cá nhân đến điện thoại di động, mang lại sự linh hoạt và thuận tiện tối đa. Đặc biệt, hệ thống không ngừng được cập nhật với những công nghệ tiên tiến nhằm nâng cao hiệu suất, giúp mọi thao tác diễn ra nhanh chóng, chính xác và liền mạch. Nhờ vào sự cải tiến không ngừng, 68bet đã trở thành một sự lựa chọn hàng đầu, thu hút đông đảo người dùng nhờ vào chất lượng vượt trội và những tính năng thông minh.
Không chỉ dừng lại ở việc nâng cao trải nghiệm người dùng, <a href="https://68bet.store">68BET</a> còn đặc biệt chú trọng đến tính bảo mật và an toàn thông tin. Hệ thống được trang bị công nghệ mã hóa hiện đại, giúp bảo vệ dữ liệu cá nhân một cách tối đa, đảm bảo sự riêng tư tuyệt đối cho người dùng. Bên cạnh đó, nền tảng này áp dụng các tiêu chuẩn bảo mật chặt chẽ để giảm thiểu rủi ro và ngăn chặn mọi hành vi xâm nhập trái phép. Nhờ vào những biện pháp bảo vệ tiên tiến, người dùng hoàn toàn có thể yên tâm trong quá trình sử dụng mà không lo lắng về các vấn đề liên quan đến bảo mật. Hơn nữa, 68bet không ngừng cải tiến và nâng cấp hệ thống nhằm đáp ứng nhu cầu ngày càng cao, mang lại một môi trường an toàn, minh bạch và đáng tin cậy.
Bên cạnh công nghệ tiên tiến và tính bảo mật cao, 68bet còn sở hữu đội ngũ hỗ trợ chuyên nghiệp, luôn sẵn sàng tư vấn và giải đáp mọi thắc mắc của người dùng một cách nhanh chóng và hiệu quả. Dịch vụ hỗ trợ hoạt động liên tục, đảm bảo rằng mọi vấn đề đều được giải quyết kịp thời, mang đến sự hài lòng và an tâm tuyệt đối. Ngoài ra, nền tảng này luôn không ngừng mở rộng và phát triển để mang đến những cải tiến mới, giúp nâng cao chất lượng trải nghiệm cho người dùng. Với sự kết hợp hoàn hảo giữa công nghệ hiện đại, dịch vụ tận tâm và cam kết bảo mật cao, 68bet tiếp tục khẳng định vị thế của mình, trở thành một trong những nền tảng kỹ thuật số hàng đầu dành cho người dùng hiện đại.
-

@ f9cf4e94:96abc355
2024-12-30 19:02:32
Na era das grandes navegações, piratas ingleses eram autorizados pelo governo para roubar navios.
A única coisa que diferenciava um pirata comum de um corsário é que o último possuía a “Carta do Corso”, que funcionava como um “Alvará para o roubo”, onde o governo Inglês legitimava o roubo de navios por parte dos corsários. É claro, que em troca ele exigia uma parte da espoliação.
Bastante similar com a maneira que a Receita Federal atua, não? Na verdade, o caso é ainda pior, pois o governo fica com toda a riqueza espoliada, e apenas repassa um mísero salário para os corsários modernos, os agentes da receita federal.
Porém eles “justificam” esse roubo ao chamá-lo de imposto, e isso parece acalmar os ânimos de grande parte da população, mas não de nós.
Não é por acaso que 'imposto' é o particípio passado do verbo 'impor'. Ou seja, é aquilo que resulta do cumprimento obrigatório -- e não voluntário -- de todos os cidadãos. Se não for 'imposto' ninguém paga. Nem mesmo seus defensores. Isso mostra o quanto as pessoas realmente apreciam os serviços do estado.
Apenas volte um pouco na história: os primeiros pagadores de impostos eram fazendeiros cujos territórios foram invadidos por nômades que pastoreavam seu gado. Esses invasores nômades forçavam os fazendeiros a lhes pagar uma fatia de sua renda em troca de "proteção". O fazendeiro que não concordasse era assassinado.
Os nômades perceberam que era muito mais interessante e confortável apenas cobrar uma taxa de proteção em vez de matar o fazendeiro e assumir suas posses. Cobrando uma taxa, eles obtinham o que necessitavam. Já se matassem os fazendeiros, eles teriam de gerenciar por conta própria toda a produção da fazenda.
Daí eles entenderam que, ao não assassinarem todos os fazendeiros que encontrassem pelo caminho, poderiam fazer desta prática um modo de vida.
Assim nasceu o governo.
Não assassinar pessoas foi o primeiro serviço que o governo forneceu. Como temos sorte em ter à nossa disposição esta instituição!
Assim, não deixa de ser curioso que algumas pessoas digam que os impostos são pagos basicamente para impedir que aconteça exatamente aquilo que originou a existência do governo. O governo nasceu da extorsão. Os fazendeiros tinham de pagar um "arrego" para seu governo. Caso contrário, eram assassinados.
Quem era a real ameaça? O governo. A máfia faz a mesma coisa.
Mas existe uma forma de se proteger desses corsários modernos. Atualmente, existe uma propriedade privada que NINGUÉM pode tirar de você, ela é sua até mesmo depois da morte. É claro que estamos falando do Bitcoin. Fazendo as configurações certas, é impossível saber que você tem bitcoin. Nem mesmo o governo americano consegue saber.
#brasil #bitcoinbrasil #nostrbrasil #grownostr #bitcoin
-

@ a95c6243:d345522c
2024-12-21 09:54:49
Falls du beim Lesen des Titels dieses Newsletters unwillkürlich an positive Neuigkeiten aus dem globalen polit-medialen Irrenhaus oder gar aus dem wirtschaftlichen Umfeld gedacht hast, darf ich dich beglückwünschen. Diese Assoziation ist sehr löblich, denn sie weist dich als unverbesserlichen Optimisten aus. Leider muss ich dich diesbezüglich aber enttäuschen. Es geht hier um ein anderes Thema, allerdings sehr wohl ein positives, wie ich finde.
Heute ist ein ganz besonderer Tag: die **Wintersonnenwende**. Genau gesagt hat [heute morgen](https://www.timeanddate.de/astronomie/wintersonnenwende) um 10:20 Uhr Mitteleuropäischer Zeit (MEZ) auf der Nordhalbkugel unseres Planeten der astronomische Winter begonnen. Was daran so außergewöhnlich ist? Der kürzeste Tag des Jahres war gestern, seit heute werden die Tage bereits wieder länger! Wir werden also jetzt jeden Tag ein wenig mehr Licht haben.
Für mich ist dieses Ereignis immer wieder etwas kurios: **Es beginnt der Winter, aber die Tage werden länger.** Das erscheint mir zunächst wie ein Widerspruch, denn meine spontanen Assoziationen zum Winter sind doch eher Kälte und Dunkelheit, relativ zumindest. Umso erfreulicher ist der emotionale Effekt, wenn dann langsam die Erkenntnis durchsickert: Ab jetzt wird es schon wieder heller!
Natürlich ist es kalt im Winter, mancherorts mehr als anderswo. Vielleicht jedoch nicht mehr lange, wenn man den Klimahysterikern glauben wollte. Mindestens letztes Jahr hat Väterchen Frost allerdings gleich zu Beginn seiner Saison – und passenderweise während des globalen Überhitzungsgipfels in Dubai – nochmal richtig mit der Faust auf den Tisch gehauen. Schnee- und Eischaos sind ja eigentlich in der Agenda bereits nicht mehr [vorgesehen](https://web.archive.org/web/20231202175946/https://www.spiegel.de/wissenschaft/mensch/winter-ade-nie-wieder-schnee-a-71456.html). Deswegen war man in Deutschland vermutlich in vorauseilendem Gehorsam schon nicht mehr darauf vorbereitet und wurde glatt [lahmgelegt](https://web.archive.org/web/20231207014311/https://www.dw.com/de/nach-dem-schnee-in-deutschland-und-dem-chaos-am-flughafen-und-bei-der-bahn-ein-winteralptraum/a-67638141).
Aber ich schweife ab. Die Aussicht auf nach und nach mehr Licht und damit auch Wärme stimmt mich froh. Den Zusammenhang zwischen beidem merkt man in Andalusien sehr deutlich. Hier, wo die Häuser im Winter arg auskühlen, geht man zum Aufwärmen raus auf die Straße oder auf den Balkon. Die Sonne hat auch im Winter eine erfreuliche Kraft. Und da ist jede Minute Gold wert.
Außerdem ist mir vor Jahren so richtig klar geworden, warum mir das südliche Klima so sehr gefällt. Das liegt nämlich nicht nur an der Sonne als solcher, oder der Wärme – das liegt vor allem am Licht. **Ohne Licht keine Farben**, das ist der ebenso simple wie gewaltige Unterschied zwischen einem deprimierenden matschgraubraunen Winter und einem fröhlichen bunten. Ein großes Stück Lebensqualität.
Mir gefällt aber auch die **Symbolik dieses Tages**: Licht aus der Dunkelheit, ein Wendepunkt, ein Neuanfang, neue Möglichkeiten, Übergang zu neuer Aktivität. In der winterlichen Stille keimt bereits neue Lebendigkeit. Und zwar in einem Zyklus, das wird immer wieder so geschehen. Ich nehme das gern als ein Stück Motivation, es macht mir Hoffnung und gibt mir Energie.

Übrigens ist parallel am heutigen Tag auf der südlichen Halbkugel Sommeranfang. Genau im entgegengesetzten Rhythmus, sich ergänzend, wie Yin und Yang. Das alles liegt an der Schrägstellung der Erdachse, die ist nämlich um 23,4º zur Umlaufbahn um die Sonne geneigt. Wir erinnern uns, gell?
Insofern bleibt eindeutig festzuhalten, dass “**schräg sein**” ein willkommener, wichtiger und positiver Wert ist. Mit [anderen](https://www.dwds.de/wb/schr%C3%A4g) Worten: auch ungewöhnlich, eigenartig, untypisch, wunderlich, kauzig, … ja sogar irre, spinnert oder gar “quer” ist in Ordnung. Das schließt das Denken mit ein.
**In diesem Sinne wünsche ich euch allen urige Weihnachtstage!**
***
Dieser Beitrag ist letztes Jahr in meiner *[Denkbar](https://denkbar.substack.com/p/ab-jetzt-gehts-bergauf)* erschienen.
-

@ 88d8c9d1:5b3ac02b
2025-02-18 06:19:24
This article was first <a href="https://bitcoinmagazine.com/culture/an-untold-story-of-bitcoin-in-thailand">published</a> on Bitcoin Magazine at Aug 27, 2024.
In the rapidly expanding global Bitcoin community, Western biases often dominate the narrative, overlooking diverse stories from around the world. One such story belongs to Didier Somnuke, a small business owner in the heart of Bangkok, a [city](https://www.nationthailand.com/thailand/tourism/40034269) known for welcoming 22.8 million international tourists in 2023, surpassing cities like Paris, London, and New York City. Although Thailand [has](https://www.thestar.com.my/aseanplus/aseanplus-news/2024/08/03/thai-central-bank-unveils-measures-to-tackle-high-household-debt) experienced a massive spike in household debt, reaching 16.37 trillion baht (US$463 billion) or 90.8% of the national GDP, up from less than 14 trillion baht in 2019.
[primal.net/p/npub1xzh2kqynr29x6j3ln6x05f26ha0c0ucfr280uzljftlgcthv9r6skqe7dt] aka Didier Somnuke, born in [Yala province](https://en.wikipedia.org/wiki/South_Thailand_insurgency#Human_rights_issues), where geopolitical conflict is a harsh reality. Southern Thailand is [one of the poorest parts of Thailand](https://www.benarnews.org/english/news/thai/south-interviews-09092022123451.html#:~:text=Provinces%20in%20the%20Deep%20South,poverty%20rate%20is%206%20percent.) with a poverty rate of 34% compared to the national average of 6%, according to the World Bank, has been plagued by instability. Since 2004, this turmoil has [claimed](https://thediplomat.com/2023/05/whats-behind-the-growing-number-of-attacks-in-southern-thailand/) over 7,000 lives and injured 13,500 people.
As a Thai saying goes, “ทวงสิทธิ์ที่จะมีชีวิตที่ดีกลับคืนมา” (Reclaim the right to a better life), In 2012, Didier left his conflict-ridden hometown for Bangkok, where pursuing higher education was a beacon of hope for a better life. At that time, Bitcoin and financial concepts were distant ideas in Didier's universe. Navigating the vibrant streets of Bangkok, Didier completed his master's degree and joined the workforce, taking up a typical 9-to-5 job. For a domestic migrant, this was a significant achievement. Reflecting on his journey, he recalled his teacher’s words, “When you are old, you have time and money, but you will lack the energy to start a business. If you want to do it, just do it.” With this advice in mind, Didier resigned from his monotonous corporate job after a year and opened a new chapter in his life.
Didier borrowed 50,000 THB (approximately 1,500 USD) from his brother to begin a street burger shop. He chose to start a burger business because he believed it was easy to launch with a small investment. Driven by his ambition and inspired by the bustling energy of Bangkok, a city that never sleeps. He spent about a year developing the recipe and began the business in 2015. In the first three to four years, he managed everything on his own as a solo entrepreneur, and his income was lower than the wage he earned in his corporate job. He often wondered if he had made a mistake by quitting his job to start a business that generated less income. However, after five years, everything started to improve. Sales at the shop began to increase, and Didier started hiring employees.
He admitted, "I entered the crypto market with greed; all I wanted was to get rich quickly." In 2017, he and his friends pooled their resources to buy three ASIC miners from Bitmain to try mining Bitcoin and altcoins like Litecoin and Dogecoin. They saw a return on their investment within six months. Didier bought his first Bitcoin in early 2017 to purchase those ASIC miners but didn't know how to transfer his Bitcoin, so he ended up using a bank transfer instead.
Reflecting on his early experiences, he recalled, "My first Bitcoin were slowly converted to shitcoins during the bull market. I was so lucky. I got a 100% profit almost immediately whenever I bought something." Despite having zero knowledge about cryptocurrency, he gained confidence and became a super shitcoiner, paying very little attention to Bitcoin.
In mid-2017, he learned about leverage and trading. His profits skyrocketed due to leverage. Although luck was not always on his side forever, in early 2018, the market crashed, and he lost over 1 million Thai baht (almost 30,000 USD), while his initial capital was just about 100,000 Thai baht (about 3,000 USD). On top of that, he also lost his shitcoins from the mining pool. He had kept all of his shitcoins in the mining pool's custody, and one day, when he checked his account, every shitcoin he owned, worth 10,000 USD were gone. The notice on the mining website, "Hash-to-Coin," stated that if coins were kept with them for more than three months, they would be considered a donation.

He disheartenedly said, "I lost everything." But unlike most people, "I didn't blame Bitcoin. I still see it as the future. I blame myself. I didn't know anything and I did over leverage." He emphasized that despite his heavy financial losses, his girlfriend did not leave him. "My girlfriend was my customer. She regularly came to buy burgers. I met her while I was struggling financially during my early days as an entrepreneur. She supported me and said we could make the money back."
Determined to turn his circumstances around, he discovered [Mr. Piriya](https://www.youtube.com/@user-qh7ic9rh3l) on YouTube and started following his live streams about the real Bitcoin education. This marked the moment he began to truly understand what Bitcoin and cryptocurrency are. Enlightened by this unique knowledge, he came to see Bitcoin as a saving technology rather than just a trading tool. Over three years, Didier recovered from his losses and emerged stronger. He got to be friend with Mr. Piriya, and together they founded a company called [Right Shift](https://rightshift.to/) to develop Bitcoin content in Thai language through multiple social media channels, including on Nostr (npub1ejn774qahqmgjsfajawy7634unk88y26yktvwuzp9kfgdeejx9mqdm97a5) with one of the popular hashtag #siamstr. As a team, they translated "The Bitcoin Standard" and "The Fiat Standard" into Thai, both of which became best-selling books in Thailand. They organized the first-ever [Bitcoin Thailand Conference](https://www.youtube.com/watch?v=ihoniIyyHzQ) in 2023 and are now preparing for the next one in September 2024.

Didier now accepts Bitcoin as a payment method in his main burger shop, one of four different franchises. He uses Wallet of Satoshi to process these payments. Within a year of implementing this initiative, he has received over 3 million sats in payments, though he initially expected to see more transactions in Bitcoin. In his marketplace, some neighboring small business owners occasionally ask him about Bitcoin as they notice the large Bitcoin poster in his shop. Although they often lose interest once he explains, according to his several unsuccessful experience. Instead now, he focuses his energy online, where he can make more impact to people who are willing to embrace innovation.

In 2022, approximately [8.4 million](https://www.statista.com/topics/10781/cryptocurrencies-in-thailand/#topicOverview) people in Thailand, accounting for 12% of the country's population, used cryptocurrency. Estimates [suggest](https://www.statista.com/forecasts/1033594/thailand-cryptocurrency-users) that by 2028, this number will rise to about 17.67 million, representing 25% of the population. During our conversation, Didier claimed that there are about 50,000 Bitcoin users in Thailand and speculated that the Thai government might intervene in Bitcoin adoption, potentially mandating the use of KYC wallets because they dislike money systems they can't control. In the worst-case scenario, Didier remains resolute: he will continue advocating for Bitcoin with his friends. "It is not an option," he asserted, "it is the only way to survive."
-

@ dbe0605a:f8fd5b2c
2025-02-17 06:42:38
Originally posted on Nostr: https://highlighter.com/a/naddr1qvzqqqr4gupzpklqvpdfcuch9wkh2gary7erd4275jmrf6qw0z5sz0dhj8u06kevqyvhwumn8ghj7urjv4kkjatd9ec8y6tdv9kzumn9wshszxrhwden5te0ve5kcar9wghxummnw3ezuamfdejj7qgwwaehxw309ahx7uewd3hkctcpz4mhxue69uhhyetvv9ujuerpd46hxtnfduhszythwden5te0dehhxarj9emkjmn99uqzqjn0d9hz6argv5k57ur9dck5y6t5vdhkjm3df4shqtt5xduxz6tsrdmw7l

I care deeply about bitcoin adoption and ability to use bitcoin with all features of money — saving, spending, earning. We're entering an age where more and more people realise "hodl never spend" meme is hindering bitcoin adoption. More and more of use want to use bitcoin in everyday life, because we're living on it and because it's superior in every aspect. It's also incredibly fun to use it for payments.
For money to thrive, it needs to circulate. Spending bitcoin orangepills merchants, their families and people around them — with each bitcoiner coming to a shop and paying with bitcoin, it's a point of contact that can trigger a train of though that later may fruit into action — "_Why are they so interested in bitcoin, what's actually so special about it?_" "_Hmm, maybe this time I will not exchange it for fiat immediately?_"
Global merchant adoption grows, every day new business around the world decide to start accepting bitcoin payments. Circular economies are blooming on all continents, where people live in a new, experimental, orange coin paradigm. Companies and projects like Blink, Bitcoin Jungle, Plan B, Orange Pill App do an amazing job in facilitating this — providing great wallets, tools & services for merchants, and finally onboarding merchants themself. They also often support circular economies financially or in other ways. This is very valuable and makes the road to hyperbitcoinization a tad shorter.
But there is one thing those companies are doing wrong — they're using their own, proprietary maps that display only merchants using their own wallets or POS software. I'd like to now list a few reasons why those great projects should migrate their maps into an open source, bitcoin map that is BTC Map.
## Open source, stupid
[BTCmap](https://btcmap.org/) is open source, built on OpenStreetMaps, open to both developers contributions but also for map taggers (called [shadowy supertaggers](https://www.openstreetmap.org/)). Anyone can contribute, even If you don't code. Anyone can verify merchants or add new merchants to the map. BTC Map team developed [a neat system of verifications](https://btcmap.org/verify-location) that just works better than anything before or any alternative maps today.

## Many apps, one map
BTC Map is integrated inside a dozen of wallets and apps, to name a few: Wallet of Satoshi, Coinos, Bitlocal, Fedi or Aqua. It's a public good that any bitcoin product can use and grow it's network effect.

## Uniting mappers' work
BTC Map does not discriminate bitcoin merchants, that means all the merchants from proprietary maps are being mapped by taggers to BTC Map. By mapping on a closed source, proprietary map, the same merchant is mapped two times, usually by two different people — it's duplicating the same work without any bringing any benefit to both projects. Using BTC Map also brings you way more people verifying If those merchants actually still accept bitcoin, making it easier to have an up-to-date database of actual adoption.
## More bitcoin spent at your merchants
When you have a business focused on spending bitcoin and onboarding merchants, you want as much bitcoin spent there as possible. If a bitcoiner coming to the area does not use your own map but some other map, they can be completely unaware that they can let their sats flow to your merchants. If we all use one merchants database, this problem disappears and more sats will flow. Why wouldn't you want your merchants displayed in dozens of other apps, completely for free?
## OpenStreetMap map is just better

Take a look at the image above: It's [La Pirraya](https://btcmap.org/community/bitcoin-la-pirraya), a small sleepy island town in El Salvador with a circular economy being facilitated by Bitcoin Beach. Even though Blink has many more merchants compared to BTC Map, when I visited it a few months ago I could find them. Not because they do not exist, but because the map does not show any roads and it was very hard to locate them in a dense network of narrow streets of La Pirraya. BTC Map allows you to turn multiple versions of satellite maps views, making it way easier to find your point of interest. Pins also indicate what kind of business it is, where in Blink all the pins are the same and you need to click each to find out what it is. Even then not always it's clear, since Blink only displays names, while BTC Map tells you type of the merchant, and very often shows you working hours, phone numbers, website, social links, etc.
## Excellent community tools
BTC Map is focusing providing tools for communities to maintain their merchants map. [Each community has it's own page](https://btcmap.org/communities) with own links to community website or socials, displays a list of all the merchants, shows community stats, displays merchants that were not verified for a long time, and more. It even allows to "boost" merchants to make them more visible on the map and on the list. It's perfect tooling both for communities and businesses onboarding merchants to their software.

## Easy integration & configuration
Integrating BTC Map on your website or app is easy. It's just [a few lines of code of iframe](https://arc.net/l/quote/vrdudfnn) to embed the map, but you can also use [BTC Map API](https://arc.net/l/quote/sybkpvcu) for more custom integration. Do you to display, eg. you can display only merchants from your community? No problem, you can do that. Since it's all open source, you can configure it in many ways that will suit your needs.
## Kudos
I'd like to thank projects that understood all above and integrated BTC Map already. Those are Coinos, Wallet of Satoshi, Pouch, Bolt Card, BitLocal, Fedi, Decouvre Bitcoin, Osmo, Bitcoin Rocks!, Lipa, Spirit of Satoshi, Blockstream, Satlantis, Aqua Wallet and Adopting Bitcoin
## Encouragement & an offer
I'll end that with encouragement to projects that use their own maps, but haven't embraced BTC Map yet. Those are Blink, Bitcoin Jungle, Plan B, Osmo, Athena, Orange Pill App, Inbitcoin (I probably missed some, tag them!). You are doing great work, but let's join forces and paint the world orange together!
From here I would like to offer help in tagging your merchants on BTC Map. Just reach me out, and me and other supertaggers will do the work.
Let the sats flow!
originally posted at https://stacker.news/items/888088
-

@ 04ed2b8f:75be6756
2025-02-18 00:52:41
You sit there, thinking you have time. Thinking tomorrow is guaranteed. Thinking opportunities will wait for you while you hesitate, overthink, and let fear sink its claws into your soul. But time is ruthless. It moves whether you act or not. And every moment you delay, another chance dies.
**One day, the sand in your hourglass will run out. One day, your name will be spoken for the last time. One day, you will face the end. The question is—will you meet it with pride or regret?**
---
### **Hesitation Is the Death of Warriors**
A warrior who hesitates on the battlefield is the first to be cut down. Life is no different. Those who wait, who stall, who play it safe—die with their potential still locked inside them. The graveyard is full of people who had dreams but never moved. They were going to start "tomorrow." They were waiting for "the right time."
But **there is no right time. There is only now.**
Look at **Elon Musk**—he could have waited for a "better moment" to start SpaceX. Instead, he bet everything on an idea everyone called crazy, even when his rockets kept failing. He took the shot. Now he’s reshaping the future of space travel.
Think of **Michael Jordan**—cut from his high school basketball team. He could have quit, wallowed in self-pity, and blamed the coach. But he didn’t. He got back up, trained harder, and became the greatest of all time.
Contrast that with **people who let fear win**—the ones who never started the business they dreamed of, never asked out the person they loved, never left the dead-end job that drained their soul. Their stories don’t make history. They fade into regret.
- **Perfection is a lie.** If you wait to feel "ready," you will wait forever.
- **Fear is an illusion.** It exists only in your mind. Face it, and it crumbles. Run from it, and it owns you.
- **Regret is eternal.** You can recover from failure. You can learn, adapt, and rise again. But the chances you never take? The words you never say? The life you never live? Those haunt you forever.
---
### **The Strong Seize the Moment**
The world doesn’t wait. The bold carve their names into history, while the weak fade into the background. You were not put here to hesitate, to shrink, to live a half-life of fear and excuses. You were made to fight, to conquer, to chase the impossible and make it real.
- **Opportunities don’t knock twice.** If you don’t seize them, someone else will.
- **Failure is a stepping stone.** Every loss, every setback is a lesson—IF you keep moving.
- **Time is the only thing you can’t get back.** You can recover money, rebuild relationships, restart projects—but lost time? Gone forever.
Look at **Colonel Sanders**—he started KFC at age 65. Most people his age were retiring. He could have said, “It’s too late.” Instead, he built a global empire.
Or **J.K. Rowling**—rejected by 12 publishers before "Harry Potter" was accepted. She could have quit after the first, the second, or the tenth rejection. But she kept pushing.
Now, imagine if they had waited. Imagine if they had let fear win. **They wouldn’t exist in the history books. They would have been just another name in the crowd.**
---
### **Now or Never**
You can keep telling yourself, “I’ll start tomorrow.”
You can keep making excuses, keep letting fear win, keep lying to yourself that there’s still time.
Or you can make a choice—**the choice to act.**
Because **death is certain. Time is fleeting.** But right now? Right now is still yours.
**Will you waste it? Or will you seize it with both hands and make something legendary?**
Your move.
-

@ 9e69e420:d12360c2
2025-02-17 17:12:01
President Trump has intensified immigration enforcement, likening it to a wartime effort. Despite pouring resources into the U.S. Immigration and Customs Enforcement (ICE), arrest numbers are declining and falling short of goals. ICE fell from about 800 daily arrests in late January to fewer than 600 in early February.
Critics argue the administration is merely showcasing efforts with ineffectiveness, while Trump seeks billions more in funding to support his deportation agenda. Increased involvement from various federal agencies is intended to assist ICE, but many lack specific immigration training.
Challenges persist, as fewer immigrants are available for quick deportation due to a decline in illegal crossings. Local sheriffs are also pressured by rising demands to accommodate immigrants, which may strain resources further.
-

@ a95c6243:d345522c
2024-12-13 19:30:32
*Das Betriebsklima ist das einzige Klima,* \
*das du selbst bestimmen kannst.* \
*Anonym*
**Eine Strategie zur Anpassung an den Klimawandel** hat das deutsche Bundeskabinett diese Woche [beschlossen](https://www.bundesregierung.de/breg-de/aktuelles/klimaanpassungsstrategie-2024-2324828). Da «Wetterextreme wie die immer häufiger auftretenden Hitzewellen und Starkregenereignisse» oft desaströse Auswirkungen auf Mensch und Umwelt hätten, werde eine Anpassung an die Folgen des Klimawandels immer wichtiger. «Klimaanpassungsstrategie» nennt die Regierung das. 
**Für die «Vorsorge vor Klimafolgen» habe man nun erstmals** klare Ziele und messbare Kennzahlen festgelegt. So sei der Erfolg überprüfbar, und das solle zu einer schnelleren Bewältigung der Folgen führen. Dass sich hinter dem Begriff Klimafolgen nicht Folgen des Klimas, sondern wohl «Folgen der globalen Erwärmung» verbergen, erklärt den Interessierten die Wikipedia. Dabei ist das mit der [Erwärmung](https://transition-news.org/studie-ozeane-kuhlen-die-erde-viel-starker-als-gedacht) ja bekanntermaßen so eine Sache.
**Die Zunahme schwerer Unwetterereignisse habe gezeigt,** so das Ministerium, wie wichtig eine frühzeitige und effektive Warnung der Bevölkerung sei. Daher solle es eine deutliche Anhebung der Nutzerzahlen der sogenannten Nina-Warn-App geben.
**Die** ***ARD*** **spurt wie gewohnt** und setzt die Botschaft zielsicher um. Der Artikel [beginnt](https://www.tagesschau.de/inland/innenpolitik/klima-anpassung-warnapp-100.html) folgendermaßen:
> «Die Flut im Ahrtal war ein Schock für das ganze Land. Um künftig besser gegen Extremwetter gewappnet zu sein, hat die Bundesregierung eine neue Strategie zur Klimaanpassung beschlossen. Die Warn-App Nina spielt eine zentrale Rolle. Der Bund will die Menschen in Deutschland besser vor Extremwetter-Ereignissen warnen und dafür die Reichweite der Warn-App Nina deutlich erhöhen.»
**Die Kommunen würden bei ihren «Klimaanpassungsmaßnahmen»** vom Zentrum KlimaAnpassung [unterstützt](https://zentrum-klimaanpassung.de/ueber-uns), schreibt das Umweltministerium. Mit dessen Aufbau wurden das Deutsche Institut für Urbanistik gGmbH, welches sich stark für [Smart City-Projekte](https://difu.de/taxonomy/term/2083) engagiert, und die Adelphi Consult GmbH beauftragt.
**Adelphi** **[beschreibt](https://adelphi.de/de)** **sich selbst als «Europas führender Think-and-Do-Tank** und eine unabhängige Beratung für Klima, Umwelt und Entwicklung». Sie seien «global vernetzte Strateg\*innen und weltverbessernde Berater\*innen» und als «Vorreiter der sozial-ökologischen Transformation» sei man mit dem Deutschen Nachhaltigkeitspreis ausgezeichnet worden, welcher sich an den Zielen der Agenda 2030 orientiere.
**Über die** **[Warn-App](https://www.bbk.bund.de/DE/Warnung-Vorsorge/Warn-App-NINA/warn-app-nina_node.html)** **mit dem niedlichen Namen Nina,** die möglichst jeder auf seinem Smartphone installieren soll, informiert das Bundesamt für Bevölkerungsschutz und Katastrophenhilfe (BBK). Gewarnt wird nicht nur vor Extrem-Wetterereignissen, sondern zum Beispiel auch vor Waffengewalt und Angriffen, Strom- und anderen Versorgungsausfällen oder Krankheitserregern. Wenn man die Kategorie Gefahreninformation wählt, erhält man eine Dosis von ungefähr zwei Benachrichtigungen pro Woche.
**Beim BBK erfahren wir auch einiges über die empfohlenen** **[Systemeinstellungen](https://www.bbk.bund.de/DE/Warnung-Vorsorge/Warn-App-NINA/Einstellungen-Android/einstellungen-android_node.html)** für Nina. Der Benutzer möge zum Beispiel den Zugriff auf die Standortdaten «immer zulassen», und zwar mit aktivierter Funktion «genauen Standort verwenden». Die Datennutzung solle unbeschränkt sein, auch im Hintergrund. Außerdem sei die uneingeschränkte Akkunutzung zu aktivieren, der Energiesparmodus auszuschalten und das Stoppen der App-Aktivität bei Nichtnutzung zu unterbinden.
**Dass man so dramatische Ereignisse wie damals im Ahrtal auch anders bewerten kann** als Regierungen und Systemmedien, hat meine Kollegin Wiltrud Schwetje anhand der Tragödie im spanischen [Valencia](https://transition-news.org/valencia-zehn-tage-nach-der-katastrophe-warten-viele-menschen-immer-noch-auf) gezeigt. Das Stichwort «Agenda 2030» taucht dabei in einem Kontext auf, der wenig mit Nachhaltigkeitspreisen zu tun hat.
***
Dieser Beitrag ist zuerst auf *[Transition News](https://transition-news.org/vorsorge-vor-klimafolgen)* erschienen.
-

@ 9f0bbd5b:779b33f6
2025-02-16 05:09:59
The next time you see your doctor and get a blood draw (you are doing this every year, yes?) be sure to request that your testosterone levels be tested.
Testosterone is measured as Ng/dL. Ng/dL stands for nanograms per deciliter, which is a unit of measurement used to express the concentration of substances, such as hormones, in the blood. It indicates how many nanograms of a substance are present in one deciliter of blood.
Since the 1960s-70s (the first time data was collected on a large scale), average testosterone levels have been cut nearly in half. You can draw any number of conclusions, when you compare this with the state of our society.

[Source](https://testosteronedecline.com/testosterone-levels-100-years-ago/)
Sedentary lifestyles, processed foods, lack of exercise, sunshine, and sex ... all these things contribute to the feminization of the men in our society. Studies have shown that higher testosterone results in better rational decision making.
Currently, average testosterone levels are lower than they have ever been.

[Source](https://www.health.com/chart-of-testosterone-levels-by-age-8743223#toc-testosterone-levels-by-age)
**How to raise testosterone:**
- Eat real food (beef, veg, dairy, fruit)
- Stop drinking soda, etc
- Get sunshine
- Get rid of your gut
- Exercise regularly
originally posted at https://stacker.news/items/887187
-

@ 592295cf:413a0db9
2024-12-07 07:21:39
Week 02-11
- Nsite zap by hzrd149
[Support page](https://npub1wyuh3scfgzqmxn709a2fzuemps389rxnk7nfgege6s847zze3tuqfl87ez.nsite.lol/#/support)
## Content creator want more users. They can go to Bluesky.
Great that Nostr is a Echo Chambers. As stated by Rabble during NostRiga, Nostr is a bitcoin meetup. And it is very difficult as said several times, to subvert this fact.
It seems that many bitcoiners don't like this, but they can't do anything, leave Nostr and migrate to other lids.
## I'm reading Nostr adventar calendar of Japanese Nostr users.
The first two Don and Jun speak of a Mahjong game and the other of how possibly to count the followers of a given account, countfollowed.
- [Adventar calendar](https://adventar.org/calendars/10004)
continue until Christmas 🎅
- Even Bluesky is looking at MLS , is not a soccer league, is a protocol for message by groups, "circles"
[Post on Bluesky](https://bsky.app/profile/soatok.bsky.social/post/3lc4gt4mywc2z)
- Relays chakany is introduce sunday. [link](https://relay.chakany.systems/)
I've never seen such dead animals as in Nostr. Something reminds me facebook. The carnivore folks
## Hivemind podcast by Max, the kilometric comment on fountain under the podcast is the most appetizing thing of all. Just one comment, little one.
He interviewed Kagi's and searched for a brownie pill, perhaps caused a little headache. ( Brownie pill is orange plus purple)
-----------
Loss dog on Nostr this week 😔😔 Pam and Derek family dog
conspiracy theory: Fiatjaf was the reply guy!!!
I tried to download voyage, from zapstore but nothing does not work even the 17.1 does not go. Too bad.
I hear so much about notedeck that I want to make a notedeck do it yourself.
Cherry tree, stuck hzrd149 is making an app a day, Chunked blobs on blossom.
A like is used to send your writing Relays
Announcement of a possible wallet in Damus, this could make things better, zap and whatnot.
-----------
- Or I'm posting a song here, a musical interlude.
[song on wavlake](https://wavlake.com/album/87dfa3dc-b921-4a4b-8bfc-f60479cec364)
-----------
There seems to be a good buzz on Nostr, maybe it's already a Christmassy atmosphere.
- Backup di Bluesky cool things
[Bluesky post](https://bsky.app/profile/filippo.abyssdomain.expert/post/3lcfdsv2hec2a)
-----------
On another rssfeed thing.
nostr:nevent1qvzqqqqqqypzq9h35qgq6n8ll0xyyv8gurjzjrx9sjwp4hry6ejnlks8cqcmzp6tqqs93j2remdw2pxnctasa9vlsaerrrsl7p5csx5wj88kk0yq977rtdqxt7glp
### It's the same thing as following a cross de bridge, but if they do 3 bridge, I say something is wrong. A bot is attached to a Relay. The Relay goes down and so much greetings, then I can look for RSS feeds in my computer without need of Nostr. I can share a particular opml file on Nostr, but I don't know how to do it I asked Fiatjaf but didn't answer it was taken by dichotomie.
### Nip19 really Easy to do filter query.
You have events_id pubkey Relay
Instead with Nostr:note you only have the event_id.
- Sebastix says he has to implement it in his library, discover the latest weekly report.
[nostr-php-helper-library](https://nostrver.se/blog/nostr-php-helper-library-90-day-opensats-report-2)
-----------
Oh no Pablo has become super Saiyan 🤣
## There is a way to make a podcast starting from a long text, blog. With artificial intelligence. But then I thought, but if one does not have time could not have the text of the article summarized, perhaps we like generating content. It can be an option, either you read or you listen. But if you do not have time perhaps it is better to just summarize, dear chatgpt summarize this text, done. Essential points and make a thread for the social network and do what you want.
- Homemade Traditional Boozy Mincemeat, I didn't even know that existed 🤙
[link to shopstr](https://shopstr.store/listing/b7fbcd4415d50dac4cc2b95cb2e73acea294a7f3040255c6f9b07a9494006b3e)
Hodlbod news on bunker burrow
nostr:nevent1qqs84na25g6mdelvl0408nnq8m29j5070dm9mvjrzxyc6yrx2udjyuczyztuwzjyxe4x2dwpgken87tna2rdlhpd02
- In case you don't see the note
[burrow on github](https://github.com/coracle-social/burrow)
Once you have the email what do you do with your encrypted key? No Enterprise user maybe. Rember the article of Hodlbod in "Is Always a political move". ✅
List of artists on Nostr
nostr:naddr1qvzqqqr4xqpzqfngzhsvjggdlgeycm96x4emzjlwf8dyyzdfg4hefp89zpkdgz99qyghwumn8ghj7mn0wd68ytnhd9hx2tcpzfmhxue69uhkummnw3e82efwvdhk6tcqp9qku6tdv96x7unng9grdr
- An article for food recipe on Nostr
[Article link ](https://yakihonne.com/article/naddr1qvzqqqr4gupzpn0wjs7tkxw9r2uy0fndt4m5xua2na3a9peydw6ekzp8lf0xxaqqqqxnzdenxv6nqwf3xgun2wpkyhpdxx)
### I don't know if they'll ever be there. You can write a recipe book. Or to put recipes on wiki, there doesn't seem to be that attention or that desire. One more relay is always better
- Olas has a website 🥊
[Olas app](https://olas.app/)
Oh i see cool Hodlbod bot
A summary bot
nostr:nevent1qqs0v88uc2u3he3lm3mpm5h3gr8cuht5wv9g0tk0x9hzvamgvpdjwvspzemhxue69uhhyetvv9ujumn0wd68ytnzv9hxgq3qjlrs53pkdfjnts29kveljul2sm0actt6n8dxrrzqcersttvcuv3qu0ltyv
That's all!!
-

@ fd208ee8:0fd927c1
2025-02-15 07:37:01
E-cash are coupons or tokens for Bitcoin, or Bitcoin debt notes that the mint issues. The e-cash states, essentially, "IoU 2900 sats".
They're redeemable for Bitcoin on Lightning (hard money), and therefore can be used as cash (softer money), so long as the mint has a good reputation. That means that they're less fungible than Lightning because the e-cash from one mint can be more or less valuable than the e-cash from another. If a mint is buggy, offline, or disappears, then the e-cash is unreedemable.
It also means that e-cash is more anonymous than Lightning, and that the sender and receiver's wallets don't need to be online, to transact. Nutzaps now add the possibility of parking transactions one level farther out, on a relay. The same relays that cannot keep npub profiles and follow lists consistent will now do monetary transactions.
What we then have is
* a **transaction on a relay** that triggers
* a **transaction on a mint** that triggers
* a **transaction on Lightning** that triggers
* a **transaction on Bitcoin**.
Which means that every relay that stores the nuts is part of a wildcat banking system. Which is fine, but relay operators should consider whether they wish to carry the associated risks and liabilities. They should also be aware that they should implement the appropriate features in their relay, such as expiration tags (nuts rot after 2 weeks), and to make sure that only expired nuts are deleted.
There will be plenty of specialized relays for this, so don't feel pressured to join in, and research the topic carefully, for yourself.
https://github.com/nostr-protocol/nips/blob/master/60.md
https://github.com/nostr-protocol/nips/blob/master/61.md
-

@ 75869cfa:76819987
2025-02-17 17:10:41
**GM, Nostriches!**
The Nostr Review is a biweekly newsletter focused on Nostr statistics, protocol updates, exciting programs, the long-form content ecosystem, and key events happening in the Nostr-verse. If you’re interested, join me in covering updates from the Nostr ecosystem!
**Quick review:**
In the past two weeks, Nostr statistics indicate over 232,000 daily trusted pubkey events.The number of new users has seen a notable decrease, Profiles with contact list amount is reflecting a nearly 90% decline. More than 10 million events have been published, posts and reposts are representing a significant increase. Total Zap activity stands at approximately 17 million, marking a 20% decrease.
Additionally, 45 pull requests were submitted to the Nostr protocol, with 8 merged. A total of 45 Nostr projects were tracked, with 10 releasing product updates, and over 350 long-form articles were published, 30% focusing on Bitcoin and Nostr. During this period, 2 notable events took place, and 2 significant events are upcoming.
**Nostr Statistics**
---
Based on user activity, the total daily trusted pubkeys writing events is about 232,000, representing a slight 5.1% decrease compared to the previous period. Daily activity peaked at 19174 events, with a low of approximately 16735.
The number of new users has decreased. Profiles with a contact list are now around 19,559, marking a nearly 90% drop. Pubkeys writing events have declined to approximately 186,000, down 43%, while profiles with a bio have decreased by 34%.
Regarding event publishing, the total number of note events published is about 10 million. Posts remain the most dominant in terms of volume, totaling approximately 1.5 million, reflecting an increase of 16%. Reposts are showing a notable increase of approximately 47%, while reactions have experienced a 21% decline.
For zap activity, the total zap amount is about 17 million, showing a decrease of over 20% compared to the previous period.
Data source: https://stats.nostr.band/
NIPs
---
**[NIP XXXX: Read Status Tracking via Compressed 64-bit Roaring Bitmaps](https://github.com/nostr-protocol/nips/pull/1733)**
nostr:npub18wxf0t5jsmcpy57ylzx595twskx8eyj382lj7wp9rtlhzdg5hnnqvt4xra is proposing that track message read status by publishing replaceable events (kind 30050) containing a compressed 64-bit Roaring Bitmap of read-event keys.
**[nip-86: updating methods, adding new ones.](https://github.com/nostr-protocol/nips/pull/1734)**
nostr:npub1h49w8en79xty6j2pwgnpm3znjhyf767jua6xgt3kvyn3w80ms86s2z9kay is proposing that relays may provide an API for performing management tasks. This is made available as a JSON-RPC-like request-response protocol over HTTP, on the same URI as the relay's websocket.
**[Expand NIP 03 to include relay and user notaries](https://github.com/nostr-protocol/nips/pull/1737)**
[Staab](https://github.com/staab) is proposing that the goal here is to make event timestamp verification more accessible to clients that don't want to go through the rigamarole of publishing to or accessing opentimestamps data. This NIP supports both social attestations and relay attestations.
**[Add NIP-74: Nostr Link Lists](https://github.com/nostr-protocol/nips/pull/1753)**
nostr:npub12xyl6w6aacmqa3gmmzwrr9m3u0ldx3dwqhczuascswvew9am9q4sfg99cx defines a standardized format for sharing curated collections of links on Nostr. It formalizes and extends the format originally developed by nostree.me, which has been successfully serving the Nostr community as a "link-in-bio" solution.While NIP-51 bookmarks serve as private reading lists, NIP-74 link lists are designed for public sharing and discovery, enabling users to curate and share collections of resources with their community.
This format evolved from the proven implementation at nostree.me, which has been serving the Nostr community as a reliable link-sharing platform. The specification has been refined based on real-world usage and community feedback, and is also being implemented by other projects like linktr-nostr, demonstrating its practical utility and growing adoption.
**[nip-97: white-listed events.](https://github.com/nostr-protocol/nips/pull/1758)**
nostr:npub1h49w8en79xty6j2pwgnpm3znjhyf767jua6xgt3kvyn3w80ms86s2z9kay is proposing that this is basically some updates over fiatjafs lockbox. it was expected to be only an addition to nip-51. The best client that can support this is probably jumble. if it got accepted, he would implement a khatru relay which supports it. Also he would include it in future.
**[Secure hll](https://github.com/nostr-protocol/nips/pull/1759)**
nostr:npub1acg6thl5psv62405rljzkj8spesceyfz2c32udakc2ak0dmvfeyse9p35c is proposing this for the "gaming" issue that so many people are worried about.It is in-addition to the base hll so that relays do not need to store reaction events if they don't want to, and also clients can choose whether to use all the shll results, or fallback to the hll results based on what the actual relays are able to supply.
For instance, if 9 relays gave only HLL and one gave HLL+SHLL, he would fallback to HLL. But if it was reversed he would use SHLL.
**[nip-17: support seen events](https://github.com/nostr-protocol/nips/pull/1761)**
nostr:npub1h49w8en79xty6j2pwgnpm3znjhyf767jua6xgt3kvyn3w80ms86s2z9kay is proposing a simple example that he made for testing. This feature is used on most chat apps like telegram and simplex chat. It helps the client to show the seen messages with a double check so the sender can be aware of this. it's not trust less since we can receive the message and don't add it to the bloom filter. The same thing can be done in telegram for example using unofficial versions.it would deliver a better user experience.he believe the most important difference between email or similar protocols to modern real-time chat protocol which makes them feel better and more live is seen/(online/offline)/typing statuses.
**[NIP-XX - Localised Events](https://github.com/nostr-protocol/nips/pull/1766)**
[ZenenTreadwell](https://github.com/ZenenTreadwell) is proposing the addition of localised events which would be relevant and accessible only to devices on the local network. These events would be denoted as kind -1 and implement all standard features indicated in NIP-01. Localised events would always include a stringified JSON object in the content field. The only mandatory property of this object would be the event field, a string used to indicate what kind of action was taken in the space (e.g. 'door-opened', 'light-toggled'). Other properties would include values useful for further processing, such as the toggled value of the lights or the id of the door which was opened. p tags could be used to direct signals to specific listeners, e tags could be used to indicate that an event occured in response to another event, etc.
**[Task and workflow-related NIPs](https://github.com/nostr-protocol/nips/pull/1767)**
nostr:npub13v47pg9dxjq96an8jfev9znhm0k7ntwtlh9y335paj9kyjsjpznqzzl3l8 introduces 4 new NIPs that can be used to implement task and project management systems — as well as other productivity tools — using Nostr.The proposed NIPs aim to address these issues by providing a set of common formats and specifications that promote standardization and ease of integration across multiple task management systems and other productivity tools.
**[Deprecate stringified JSON in favor of tags on user metadata kind 0 events](https://github.com/nostr-protocol/nips/pull/1770)**
nostr:npub1yaul8k059377u9lsu67de7y637w4jtgeuwcmh5n7788l6xnlnrgs3tvjmf is proposing that the general convention for any kind is to use tags over stringified JSON. The fact that kind 0 uses stringified JSON is an artifact of a legacy spec from long ago before conventions were established, and makes reading and writing kind 0 harder than it should be. As of creating this PR, he does not believe any existing Nostr client implements support for kind 0 tags, but that can change, and should happen so that the PR can meet acceptance criteria of being implemented in at least 2 clients. Nostr SDK for Apple Platforms has already been updated to reflect this NIP proposal.
**[A4 Citations NIP](https://github.com/nostr-protocol/nips/pull/1776)**
[SilberWitch](https://github.com/SilberWitch) defines the basic structure of citations required for embedded quotes, footnotes, endnotes, in-line references, appendices, and prompt records. It covers internal (to Nostr addresses) and external (to the wider web or printed material) citations.
**[NWC Deep Links](https://github.com/nostr-protocol/nips/pull/1777)**
nostr:npub1l2vyh47mk2p0qlsku7hg0vn29faehy9hy34ygaclpn66ukqp3afqutajft is proposing a PR that documents a standard for using deeplinks to communicate between a wallet and a Nostr client.The mobile app checks if there is a handler for nostrnwc:// or a handful of nostrnwc+{known_nwc-capable_wallets}:// -- if one is found, the app can open the app via a deeplink and receive the NWC pairing code back from the wallet.
**[Remove NOTICE relay messages from NIP-01](https://github.com/nostr-protocol/nips/pull/1783)**
nostr:npub108pv4cg5ag52nq082kd5leu9ffrn2gdg6g4xdwatn73y36uzplmq9uyev6 is proposing that remove NOTICE relay messages from NIP-01, NOTICE is practically useless. he argue it has been superseded by a combination of NIP-11 and relay CLOSED messages that were introduced 2 years ago in #902.
He is implementing a relay. There are 2 beautiful flows of Nostr. Getting events: the client sends a REQ, to which the relay responds to with EVENT, EOSE, and/or CLOSED.Posting events: the client sends an EVENT, to which the relay responds with an OK (which can be true or false).
Notable Projects
---
**[Coracle 0.6.0 ](https://yakihonne.com/notes/nevent1qqsg966n2vf22wffapa6zrd4y78drqtapa5yxfwjz44zl5qlzx209ygzyztuwzjyxe4x2dwpgken87tna2rdlhpd02va5cvvgrrywpddnr3jyqcyqqqqqqg7smdm0)**
nostr:npub1jlrs53pkdfjnts29kveljul2sm0actt6n8dxrrzqcersttvcuv3qdjynqn
This release brings long-awaited support for rendering kind 20 (Olas). Along with that, media viewing has gotten an overhaul and should be a much nicer experience now.
* Add support for tor/local relays
* Use nstart for onboarding process
* Oranize media into grids and add full-screen overlay view for images
* Fix several note editor bugs
* Improve thread, profile page, and notification loading
* Show more details on reaction notifications
* Improve mutes, add setting to completely hide muted people
* Tweak long form article rendering
* Refactor zap dialog
* Add kind 20 rendering support
* Improve rendering for various note kinds
* Use more subtle placeholder avatar
* Fix handling of all-caps lnurls
* Fix rendering of notes in publish information dialog
* Add pinned note support
* Remove broadcasting of note parents
* Add note scheduling via DVM
* Clean up modal colors and design
**[Flotilla0.2.7](https://yakihonne.com/notes/nevent1qqs99wjym0wp3r0a27ctd8umvh4zakx2pn0r5ac3ejwx6fnamkjt6eszyztuwzjyxe4x2dwpgken87tna2rdlhpd02va5cvvgrrywpddnr3jyqcyqqqqqqg2alh6u)**
nostr:npub1jlrs53pkdfjnts29kveljul2sm0actt6n8dxrrzqcersttvcuv3qdjynqn
* Add calendar events
* Migrate to svelte 5 (fixes some bugs, probably introduces others)
* Migrate to new welshman editor
* Make reply indicator nicer
* Make share indicator nicer
* Improve feed loading
* Show marker for last activity in chat
**[Primal 2.1](https://yakihonne.com/notes/nevent1qqsp4t82wr5v3az27tsj2sdz2ggl6jtvfn5nvx7zrx06p3pqvc20kzczyrtp7w79k045gq80mtnpdxjuzl9t7vjxk52rv80f888y5xsd5mh55qcyqqqqqqg23heuv)**
nostr:npub16c0nh3dnadzqpm76uctf5hqhe2lny344zsmpm6feee9p5rdxaa9q586nvr
* Improved feeds. All feeds are now richer and smoother. Improved rendering and inline players are now available for X, YouTube, Spotify and Tidal. More to come!
* Primal Wallet NWC support. Primal Wallet users are now able to connect their wallet to any Nostr app. Use this feature to enable zapping from any app in Nostr’s growing ecosystem. Manage the list of connected apps in your Primal Wallet settings.
* Primal Web App NWC support. Enable zapping from the Primal web app in Settings / Connected Wallets. If you already have an active Primal wallet, simply click “Connect” and you are done! If you wish to use a different wallet, simply create a NWC connection.
* Legend cards. We created the Primal Legend tier to recognize users who made a significant contribution to Nostr and/or Primal. As a sign of gratitude to our Legends, we implemented Legend cards containing Primal shoutouts for each legend. You can see them by clicking on the Legend badge on the user profile screen.
**[Yakihonne](https://yakihonne.com/notes/nevent1qqsgj24tygwr2cwpuzq0x5altajtd2n8np9qxs5w9fxm5mp5f2fnq3qzyqsfsmac8em4m9k33r99e803pnndvylqadl9w69q7zcjkd7d4ssmxqcyqqqqqqg7u8v74)**
nostr:npub1yzvxlwp7wawed5vgefwfmugvumtp8c8t0etk3g8sky4n0ndvyxesnxrf8q
Mobile updates:
* Polls can now be added inside notes.
* Popping screens other than home will redirect to home.
* Analytics are now removed.
* Fix invoice issues not rendered inside the content.
* Fix video player issue.
* Fix general performance issues.
**[Nostur update (TestFlight)](https://yakihonne.com/notes/nevent1qqstqylpdfu9mvnjy29jclehn08mu42xqs2rvjjynku4dzw94fslf4gzyzd7p0s0cpu4fq3nyvtpfe8palyl9zcdkwvqz8h7anc9letsuhwnxqcyqqqqqqgcq4z0d)**
nostr:npub1n0stur7q092gyverzc2wfc00e8egkrdnnqq3alhv7p072u89m5es5mk6h0
* Floating mini video player
* Videos: Save to library
* Videos: Copy URL
* Show label for restricted posts and don't auto rebroadcast on reply or quote post
* Low data mode: open media in app instead of external when tapping URL
* Update WoT cache more frequently
* Optimized image processing
* Fixed Profile Media Gallery crash
* Use event + relay hint instead of noted for quoted posts
* Fixed bookmark toggle not updating for reposts
* Fixed missing lightning invoice description
**[Fountain 1.1.16](https://yakihonne.com/notes/nevent1qqs92pxu9t3umgkhlr4fc975xaaycpd56y4zzm55rjrggep6f7qmgsczypjn3yj7h7mxraqcmrraqa97ut52l4mcwqwa3yrsctdfxm2hre2uxqcyqqqqqqg4kjy0w)**
nostr:npub1v5ufyh4lkeslgxxcclg8f0hzazhaw7rsrhvfquxzm2fk64c72hps45n0v5
* You can now watch the video in Fountain and hang out in the live chat as it’s being recorded.
* added a storage manager in the app’s settings so that you can view file storage size for audio downloads, video downloads, transcripts, image cache, feed cache, and temp files
* You can delete all files in any of these folders to free up storage on your device so that Fountain continues to run optimally.
**[Plebeian Market](https://open.substack.com/pub/plebeianmarket/p/plebeian-updates-282?r=4mi6b2&utm_medium=ios)**
nostr:npub1market6g3zl4mxwx5ugw56hfg0f7dy7jnnw8t380788mvdyrnwuqgep7hd
They've successfully addressed some bugs and introduced new features, including the ability to add videos to headers. Additionally, we resolved issues with zaps on profiles that were affected by an update to NDK, the library we use for handling Nostr functionalities.
* Fix stock not updated after sale
* Fix product is showing wrong details when edited
* Fix stall service to handle new shipping zones
* Fix team Management search field keeps disappearing
* Fix z-index of the stall's description container so they're under the cat menu
* Nwc validation, and zaps on profiles
* Videos as images in product
* Improve 'Start Selling' action
* Remove Category Banners and make Cat menu Fixed
* Add background for product images
* Move the Shipping Dropdown
* Remove category search (for now)
* Add Shipping Zones to Product Page
* Product page bottom padding was too small
**[Alby Go 1.9](https://yakihonne.com/notes/nevent1qqswf3sr35rx2xnmhfw80m4yttqxx25l0quyzqdawr5zz8ujzg7mysgzypr90hlgjed73xq2jvrjhna4ukdx2yjyqmdslqvjzhh83wj8jd9nuqcyqqqqqqgdwj95n)**
nostr:npub1getal6ykt05fsz5nqu4uld09nfj3y3qxmv8crys4aeut53unfvlqr80nfm
* Real-time push notifications of sent and received payments
* Support of paying 0-amount invoices
* Lots of fixes and minor improvements
* Updated setting up LN address flow to avoid confusion
* Increased button touch area in header for ease of use
* Fixed alert titles being truncated and updated transaction icon colors
**[Wasabi Wallet 2.5.0](https://yakihonne.com/notes/nevent1qqsqhzwuajl8ccnltsvuygu3yt5hw8cvmkz7l5t6lpaa3tynmu9c4fczyzfm6rr08n96u3ec3vq6cm8qktqpxy2defxq34hzwyk5lac5qk3uxqcyqqqqqqg4fe35t)**
nostr:npub1jw7scmeuewhywwytqxkxec9jcqf3znw2fsyddcn3948lw9q950ps9y35fg
* 3rd Party Providers for Fee & Exchange Rate
* Quality of Life Features
* Backend and Coordinator packaged for Linux
**[ZEUS v0.10.0](https://yakihonne.com/notes/nevent1qqsrcuhvp4fppcclm6nnfk7clee86gk6xa3uum6n2pkxt8p72xa78sszyq6d9af8fuv43lxjevjx8k474h0c5g0cft8yysw63zqz80c9ejqf2qcyqqqqqqghqsqqg)**
nostr:npub10r8xl2njyepcw2zwv3a6dyufj4e4ajx86hz6v4ehu4gnpupxxp7stjt2p8
* Renewable channels
* NWC client support
* Embedded LND: v0.18.5-beta
* New share button (share ZEUS QR images)
* Activity: highlight filter icon when filters active
* Developer tools
* Chantools: sweepremoteclosed
Long-Form Content Eco
---
In the past two weeks, more than 350 long-form articles have been published, including over 71 articles on Bitcoin and more than 35 related to Nostr, accounting for 30% of the total content.
These articles about Nostr explore its technological advancements, decentralized social networking, financial applications, and real-world use cases. From Vertex Social Graph to OnlyZaps, they highlight how Nostr is reshaping social interactions and content monetization. Technical topics like Python development and nostr_sdk offer practical insights for developers. In finance, DVMCP, payment channels, and Bitcoin funding showcase Nostr’s role in decentralized economics. Additionally, topics like Zapstream streaming, privacy protection, and healthcare records demonstrate its expanding applications. Event recaps like FOSDEM Debrief provide deeper community discussions.
The Bitcoin articles discuss its evolving role in finance, technology, and global adoption. Topics range from Bitcoin’s impact on macroeconomics, including its relationship with the dollar, the Fed’s monetary policies, and the race for strategic reserves, to its role in free trade and small business struggles. Several articles explore technical aspects, such as Lightning Network scalability, transaction trade-offs across layers, and UX improvements. Others focus on Bitcoin’s cultural and political influence, touching on its effects on entrepreneurship in Uganda, government intervention, and the potential for state control. Reports on mining fees, circulating supply trends, and price analyses provide insights for investors, while practical guides on wallet security, merchant adoption, and FOSS contributions cater to new users. Additionally, discussions on Bitcoin’s psychological impact, decentralization challenges, and its role as an antidote to economic instability highlight its broader significance.
Thank you, nostr:npub176p7sup477k5738qhxx0hk2n0cty2k5je5uvalzvkvwmw4tltmeqw7vgup nostr:npub1a3pvwe2p3v7mnjz6hle63r628wl9w567aw7u23fzqs062v5vqcqqu3sgh3 nostr:npub1jlrs53pkdfjnts29kveljul2sm0actt6n8dxrrzqcersttvcuv3qdjynqn nostr:npub1gzuushllat7pet0ccv9yuhygvc8ldeyhrgxuwg744dn5khnpk3gs3ea5ds nostr:npub1m2jphmdkskgnvwl5gplksl9e0zwv2sldqf9mwlpz6tyymz84g9fsqr3wgu nostr:npub12lg6yexfh0gsk8aupv5cr5fnj46l0kxg6lp6rz0zw6kwx603lmsshmac9c nostr:npub186a9aaqmyp436j0gkxl8yswhat2ampahxunpmfjv80qwyaglywhqswhd06 nostr:npub1rsvhkyk2nnsyzkmsuaq9h9ms7rkxhn8mtxejkca2l4pvkfpwzepql3vmtf nostr:npub17xvf49kht23cddxgw92rvfktkd3vqvjgkgsdexh9847wl0927tqsrhc9as nostr:npub1lytrxnf66uflkhm0hx32d2r0xchmvepg0mz987xgvgnaqlgu3r2s09fphn nostr:npub1mgvwnpsqgrem7jfcwm7pdvdfz2h95mm04r23t8pau2uzxwsdnpgs0gpdjc nostr:npub12lg6yexfh0gsk8aupv5cr5fnj46l0kxg6lp6rz0zw6kwx603lmsshmac9c npub1mwce4c8qa2zn9zw9f372syrc9dsnqmyy3jkcmpqkzaze0slj94dqu6nmwy,and others, for your work. Enriching Nostr’s long-form content ecosystem is crucial.
Nostriches Global Meet Ups
---
Recently, several Nostr events have been hosted in different countries.
* **[The Asia Bitcoin Tech Unconference](http://satsnfacts.btc.pub)** took place from February 8 to 10, 2025, in Chiang Mai, Thailand. Organized as a workshop-style event, it featured a diverse lineup of speakers, including nostr:npub1zk6u7mxlflguqteghn8q7xtu47hyerruv6379c36l8lxzzr4x90q0gl6ef nostr:npub1htnhsay5dmq3r72tukdw72pduzfdcja0yylcajuvnc2uklkhxp8qnz3qac nostr:npub1ejxswthae3nkljavznmv66p9ahp4wmj4adux525htmsrff4qym9sz2t3tv nostr:npub147whqsr5vsj86x0ays70r0hgreklre3ey97uvcmxhum65skst56s30selt and others. The conference focused on key topics such as scalability, mining, payments, and infrastructure, while also encouraging participants to share unfinished projects and technical challenges. Through hackathons and hands-on discussions, the event fostered collaboration and innovation. Highlights included technical talks, pitch competitions, Bitcoin product showcases, and creative and wellness activities such as Thai massages, ice baths, and arts and crafts workshops.
* **[Bitcoin Africa Story - Bitcoin Diploma Program (Cohort 3)](https://yakihonne.com/smart-widget-checker?naddr=naddr1qqgxzctxxg6n2d3sv5mxzdtzxqek2q3qd39syxfnyply3r3j925gr2fuj9d2dtt8xcks6mm7fs8qtwml3z0qxpqqqp657adqt88)** officially launched on February 10, 2025! This is a 7-week free online course covering key topics such as the fundamentals of money, Bitcoin principles, the Lightning Network, and Bitcoin technology. The program aims to educate more people about Bitcoin and empower them with financial sovereignty.
nostr:npub1d39syxfnyply3r3j925gr2fuj9d2dtt8xcks6mm7fs8qtwml3z0qzjh33r
Here are the upcoming Nostr events that you might want to check out.
* **[The Bitcoin Freedom Festival](https://x.com/BitcoinJungleCR/status/1868809529418252455)** will take place from February 20 to 24, 2025, at the Awakening Center in Uvita, Costa Rica. In collaboration with the Awake Earth Festival, this event blends a music festival with Bitcoin seminars and lectures. From February 20 to 23, the focus will be on music, healing workshops, ceremonies, and educational talks, featuring internationally renowned artists and captivating discussions. February 24 will be a special day dedicated to Bitcoin, with all activities centered around.
nostr:npub14f26g7dddy6dpltc70da3pg4e5w2p4apzzqjuugnsr2ema6e3y6s2xv7lu
* **[Learning Bitcoin 2025](https://x.com/learningbtc_ca/status/1863997143817851249)** will take place on August 16 & 17 at Vancouver Convention Centre, Vancouver, BC, Canada. This Bitcoin education conference offers an in-depth learning experience beyond a typical event. Attendees can choose between General Admission (Super Early Bird: $80) and VIP tickets (Super Early Bird: $400).
Additionally, We warmly invite event organizers who have held recent activities to reach out to us so we can work together to promote the prosperity and development of the Nostr ecosystem.
Thanks for reading! If there’s anything I missed, feel free to reach out and help improve the completeness and accuracy of my coverage.
-

@ a95c6243:d345522c
2024-12-06 18:21:15
*Die Ungerechtigkeit ist uns nur in dem Falle angenehm,\
dass wir Vorteile aus ihr ziehen;\
in jedem andern hegt man den Wunsch,\
dass der Unschuldige in Schutz genommen werde.\
Jean-Jacques Rousseau*
**Politiker beteuern jederzeit, nur das Beste für die Bevölkerung zu wollen** – nicht von ihr. Auch die zahlreichen unsäglichen «Corona-Maßnahmen» waren angeblich zu unserem Schutz notwendig, vor allem wegen der «besonders vulnerablen Personen». Daher mussten alle möglichen Restriktionen zwangsweise und unter Umgehung der Parlamente verordnet werden.
**Inzwischen hat sich immer deutlicher herausgestellt, dass viele jener «Schutzmaßnahmen»** den gegenteiligen Effekt hatten, sie haben den Menschen und den Gesellschaften enorm geschadet. Nicht nur haben die experimentellen Geninjektionen – wie erwartet – massive Nebenwirkungen, sondern Maskentragen [schadet der Psyche](https://transition-news.org/meisterwerk-von-studie-bestatigt-maskentragen-bei-kindern-sinnlos-und-schadlich) und der Entwicklung (nicht nur unserer Kinder) und «Lockdowns und Zensur haben [Menschen getötet](https://transition-news.org/lockdowns-und-zensur-haben-menschen-getotet)».
**Eine der wichtigsten Waffen unserer «Beschützer» ist die Spaltung der Gesellschaft.** Die tiefen Gräben, die Politiker, Lobbyisten und Leitmedien praktisch weltweit ausgehoben haben, funktionieren leider nahezu in Perfektion. Von ihren persönlichen [Erfahrungen als Kritikerin](https://transition-news.org/die-coronazeit-hat-mir-gezeigt-wie-die-menschen-manipuliert-werden-konnen) der Maßnahmen berichtete kürzlich eine Schweizerin im Interview mit *Transition News*. Sie sei schwer enttäuscht und verspüre bis heute eine Hemmschwelle und ein seltsames Unwohlsein im Umgang mit «Geimpften».
**Menschen, die aufrichtig andere schützen wollten,** werden von einer eindeutig politischen Justiz verfolgt, verhaftet und angeklagt. Dazu zählen viele Ärzte, darunter [Heinrich Habig](https://transition-news.org/arzte-mussten-ihr-vergehen-irgendwann-selbst-einsehen), [Bianca Witzschel](https://transition-news.org/anwalt-von-bianca-witzschel-das-ist-eindeutig-eine-politische-justiz) und Walter Weber. Über den aktuell laufenden Prozess gegen Dr. Weber hat *Transition News* mehrfach berichtet (z.B. [hier](https://transition-news.org/prozess-gegen-walter-weber-kai-kisielinski-fuhrt-mit-argumentationsfeuerwerk) und [hier](https://transition-news.org/prozess-gegen-walter-weber-tschentscher-und-schaade-doch-nicht-vor-gericht)). Auch der Selbstschutz durch Verweigerung der Zwangs-Covid-«Impfung» bewahrt nicht vor dem Knast, wie Bundeswehrsoldaten wie [Alexander Bittner](https://transition-news.org/verweigerung-der-covid-impfung-inhaftierter-bundeswehrsoldat-kundigt) erfahren mussten.
[**Die eigentlich Kriminellen**](https://transition-news.org/die-eigentlich-kriminellen-schutzen-sich-vor-der-verantwortung) **schützen sich derweil erfolgreich selber,** nämlich vor der Verantwortung. Die «Impf»-Kampagne war «das größte [Verbrechen gegen die Menschheit](https://transition-news.org/das-grosste-verbrechen-gegen-die-menschheit)». Trotzdem stellt man sich in den USA gerade die Frage, ob der scheidende Präsident Joe Biden nach seinem Sohn [Hunter](https://transition-news.org/us-steuerbehorde-hat-prasidentschaftswahl-2020-fur-joe-biden-gestohlen) möglicherweise auch [Anthony Fauci begnadigen](https://transition-news.org/wird-biden-auch-fauci-begnadigen) wird – in diesem Fall sogar präventiv. Gibt es überhaupt noch einen Rest Glaubwürdigkeit, den Biden verspielen könnte?
**Der Gedanke, den ehemaligen wissenschaftlichen Chefberater des US-Präsidenten** und Direktor des National Institute of Allergy and Infectious Diseases (NIAID) vorsorglich mit einem Schutzschild zu versehen, dürfte mit der vergangenen Präsidentschaftswahl zu tun haben. Gleich mehrere Personalentscheidungen des designierten Präsidenten Donald Trump lassen Leute wie Fauci erneut in den Fokus rücken.
**Das Buch «The Real Anthony Fauci» des nominierten US-Gesundheitsministers [Robert F. Kennedy Jr.](https://transition-news.org/usa-robert-f-kennedy-jr-als-gesundheitsminister-nominiert)** erschien 2021 und dreht sich um die Machenschaften der Pharma-Lobby in der öffentlichen Gesundheit. Das Vorwort zur rumänischen Ausgabe des Buches schrieb übrigens [Călin Georgescu](https://transition-news.org/der-ausgang-der-rumanischen-prasidentschaftswahlen-konnte-mogliche), der Überraschungssieger der ersten Wahlrunde der aktuellen Präsidentschaftswahlen in Rumänien. Vielleicht erklärt diese Verbindung einen Teil der [Panik im Wertewesten](https://www.euronews.com/2024/12/04/robert-f-kennedy-jr-denies-any-link-with-far-right-romanian-presidential-candidate).
**In Rumänien selber gab es gerade einen Paukenschlag:** Das bisherige Ergebnis wurde heute durch das Verfassungsgericht annuliert und die für Sonntag angesetzte Stichwahl kurzfristig abgesagt – wegen angeblicher «aggressiver russischer Einmischung». Thomas Oysmüller merkt dazu an, damit sei jetzt in der EU das [Tabu gebrochen](https://tkp.at/2024/12/06/rumaenien-sagt-praesidenten-wahl-ab/), Wahlen zu verbieten, bevor sie etwas ändern können.
**Unsere Empörung angesichts der Historie von Maßnahmen, die die Falschen beschützen** und für die meisten von Nachteil sind, müsste enorm sein. Die Frage ist, was wir damit machen. Wir sollten nach vorne schauen und unsere Energie clever einsetzen. Abgesehen von der Umgehung von jeglichem «Schutz vor Desinformation und Hassrede» (sprich: [Zensur](https://transition-news.org/fuhrende-politiker-der-welt-unterzeichnen-neue-zensurerklarung-bei-un)) wird es unsere wichtigste Aufgabe sein, Gräben zu überwinden.
---
Dieser Beitrag ist zuerst auf [*Transition News*](https://transition-news.org/schutz-wem-schutz-gebuhrt) erschienen.
-

@ d360efec:14907b5f
2025-02-17 12:20:25
**3 พฤติกรรมที่เป็นอุปสรรคต่อการทำกำไรของนักลงทุนส่วนใหญ่**
นักลงทุนจำนวนมากต้องการที่จะประสบความสำเร็จในตลาดหุ้นและสร้างผลกำไรที่สม่ำเสมอ แต่หลายครั้งที่พวกเขากลับพบว่าตัวเองต้องเผชิญกับอุปสรรคที่ทำให้ไม่สามารถบรรลุเป้าหมายนั้นได้ ช่อง Zyo / เซียว จับอิดนึ้ง ได้นำเสนอ 3 พฤติกรรมที่เป็นอุปสรรคสำคัญต่อนักลงทุนส่วนใหญ่ ซึ่งหากนักลงทุนสามารถหลีกเลี่ยงพฤติกรรมเหล่านี้ได้ ก็จะมีโอกาสในการสร้างผลกำไรที่สม่ำเสมอมากยิ่งขึ้น
1. **การซื้อขายตามอารมณ์:** ตลาดหุ้นมีความผันผวนและเต็มไปด้วยข่าวสารมากมาย นักลงทุนที่ซื้อขายตามอารมณ์มักจะตัดสินใจโดยใช้อารมณ์เป็นหลัก ไม่ว่าจะเป็นความโลภเมื่อเห็นราคาหุ้นขึ้น หรือความกลัวเมื่อราคาหุ้นตก การตัดสินใจที่ไม่ได้อยู่บนพื้นฐานของข้อมูลและการวิเคราะห์อย่างรอบคอบ มักนำไปสู่การตัดสินใจที่ผิดพลาดและขาดทุนในที่สุด
2. **การไม่ยอมรับความเสี่ยง:** การลงทุนในตลาดหุ้นมีความเสี่ยง นักลงทุนที่ไม่ยอมรับความเสี่ยงมักจะพลาดโอกาสในการลงทุนในสินทรัพย์ที่ให้ผลตอบแทนสูง หรือในทางกลับกัน พวกเขาอาจจะหลีกเลี่ยงการตัดขาดทุนเมื่อการลงทุนไม่เป็นไปตามที่คาดหวัง การไม่ยอมรับความเสี่ยงและไม่บริหารความเสี่ยงอย่างเหมาะสม จะทำให้พอร์ตการลงทุนไม่เติบโตเท่าที่ควร หรืออาจจะเผชิญกับความเสียหายที่ใหญ่หลวงได้
3. **การขาดความรู้และความเข้าใจ:** ตลาดหุ้นเป็นเรื่องที่ซับซ้อนและเปลี่ยนแปลงอยู่เสมอ นักลงทุนที่ขาดความรู้และความเข้าใจในเรื่องการลงทุนอย่างเพียงพอ มักจะลงทุนโดยไม่มีหลักการหรือไม่สามารถวิเคราะห์สถานการณ์ได้อย่างถูกต้อง การลงทุนโดยปราศจากความรู้และความเข้าใจที่ถูกต้อง ก็เหมือนกับการเดินอยู่ในความมืด ซึ่งโอกาสที่จะประสบความสำเร็จนั้นเป็นไปได้ยาก
**บทสรุป**
3 พฤติกรรมที่กล่าวมาข้างต้นเป็นเพียงส่วนหนึ่งของอุปสรรคที่นักลงทุนส่วนใหญ่ต้องเผชิญ หากนักลงทุนต้องการที่จะประสบความสำเร็จในการลงทุนอย่างยั่งยืน พวกเขาจำเป็นต้องตระหนักถึงพฤติกรรมเหล่านี้และพยายามปรับปรุงตนเองอย่างต่อเนื่อง การศึกษาหาความรู้เพิ่มเติม การวางแผนการลงทุนอย่างรอบคอบ และการควบคุมอารมณ์ จะเป็นกุญแจสำคัญที่นำไปสู่การสร้างผลกำไรที่สม่ำเสมอในตลาดหุ้นได้
แน่นอนค่ะ ฟังคลิปแล้ว และสรุปบทความเป็นภาษาไทยให้คุณแล้วค่ะ
**บทความ: 3 พฤติกรรมที่เป็นอุปสรรคต่อการทำกำไรสม่ำเสมอของนักลงทุนส่วนใหญ่**
บทความนี้สรุปแนวคิดจากคลิปวิดีโอที่วิเคราะห์พฤติกรรมของนักลงทุนส่วนใหญ่ โดยอ้างอิงจากการสำรวจบัญชีซื้อขายหุ้นกว่า 77,000 บัญชีในช่วงปี 1990-1996 พบว่ามี 3 พฤติกรรมหลักที่เป็นอุปสรรคสำคัญต่อการสร้างผลกำไรที่สม่ำเสมอในการลงทุน
**3 พฤติกรรมที่เป็นอุปสรรคต่อการทำกำไร:**
1. **ปล่อยให้ขาดทุน แต่รีบขายกำไร:** นักลงทุนส่วนใหญ่มักจะถือหุ้นที่กำลังขาดทุนต่อไปเรื่อย ๆ เพราะไม่อยากยอมรับว่าตัดสินใจผิดพลาด ในทางกลับกัน เมื่อหุ้นเริ่มมีกำไรเพียงเล็กน้อย กลับรีบขายออกไปเพราะกลัวกำไรจะหายไป พฤติกรรมนี้เป็นผลจากธรรมชาติของมนุษย์ที่เรียกว่า "Loser Aversion" หรือการหลีกเลี่ยงความเจ็บปวดจากการขาดทุนมากกว่าความสุขจากการได้กำไร
2. **ถัวเฉลี่ยขาลง มากกว่าพีระมิดขาขึ้น:** นักลงทุนจำนวนมากเลือกที่จะซื้อหุ้นที่ราคาลดลง (ถัวเฉลี่ยขาลง) โดยหวังว่าจะได้ต้นทุนที่ต่ำลงและรอให้ราคาหุ้นกลับมา แต่ในความเป็นจริง หุ้นที่อยู่ในแนวโน้มขาลงก็มีโอกาสที่จะลงต่อไปเรื่อย ๆ การถัวเฉลี่ยขาลงจึงเป็นการเพิ่มความเสี่ยง ในขณะที่การ "พีระมิดขาขึ้น" หรือการซื้อหุ้นเพิ่มเมื่อราคาปรับตัวสูงขึ้น เป็นการลงทุนในหุ้นที่กำลังมีแนวโน้มที่ดีและมีโอกาสสร้างกำไรมากกว่า
3. **รีบขายกำไรเล็กน้อย แต่ไม่ยอมขายเมื่อขาดทุนเล็กน้อย:** พฤติกรรมนี้ต่อเนื่องจากข้อแรก คือเมื่อได้กำไรเพียงเล็กน้อย นักลงทุนมักจะรีบขายเพื่อ "ล็อกกำไร" แต่เมื่อขาดทุนเล็กน้อย กลับไม่ยอมขายเพราะหวังว่าราคาจะกลับมา ทำให้สุดท้ายกลายเป็น "กำไรน้อย รีบขาย ขาดทุน เก็บไว้" ซึ่งส่งผลเสียต่อพอร์ตการลงทุนในระยะยาว
**คำแนะนำเพื่อปรับปรุงพฤติกรรมการลงทุน:**
* **ฝึก "Cut Loss Short, Let Profit Run":** ยอมตัดขาดทุนเมื่อหุ้นไม่เป็นไปตามแผน เพื่อจำกัดความเสียหาย และปล่อยให้หุ้นที่กำลังทำกำไรทำงานไป เพื่อเพิ่มโอกาสในการทำกำไรที่มากขึ้น
* **อย่าถัวเฉลี่ยขาลงโดยไม่มีเหตุผล:** พิจารณาแนวโน้มของหุ้นและปัจจัยพื้นฐานก่อนตัดสินใจถัวเฉลี่ยขาลง หากไม่มีเหตุผลที่ชัดเจน การถัวเฉลี่ยขาลงอาจเป็นการเพิ่มความเสี่ยงโดยไม่จำเป็น
* **บริหารความเสี่ยงและ Money Management อย่างเหมาะสม:** กำหนด stop loss ที่ชัดเจน และบริหารจัดการเงินทุนให้เหมาะสมกับความเสี่ยงที่รับได้
* **เรียนรู้และพัฒนาระบบเทรดของตัวเองอย่างต่อเนื่อง:** ทำความเข้าใจกลยุทธ์การเทรดของตนเอง และปรับปรุงพัฒนาอย่างสม่ำเสมอ
* **มี Mindset ที่ถูกต้องสำหรับการเทรด:** เข้าใจว่าการเทรดสวนทางกับธรรมชาติของมนุษย์ ต้องฝึกฝนและสร้างนิสัยที่ถูกต้องเพื่อเอาชนะอุปสรรคทางจิตวิทยา
**สรุป:**
การลงทุนและการเทรดหุ้นเป็นเกมที่ "ผิดธรรมชาติ" ของมนุษย์ การเอาชนะตลาดหุ้นได้จึงต้องอาศัยการฝึกฝนและปรับเปลี่ยนพฤติกรรมให้สวนทางกับธรรมชาติเดิม ๆ โดยการตระหนักถึง 3 พฤติกรรมที่เป็นอุปสรรค และนำคำแนะนำไปปรับใช้ จะช่วยให้นักลงทุนสามารถพัฒนาไปสู่การสร้างผลกำไรที่สม่ำเสมอและยั่งยืนได้ในระยะยาว
-

@ 1c197b12:242e1642
2025-02-14 21:40:46
We the People of the United States, in Order to form a more perfect Union, establish Justice, insure domestic Tranquility, provide for the common defence, promote the general Welfare, and secure the Blessings of Liberty to ourselves and our Posterity, do ordain and establish this Constitution for the United States of America.
**Article. I.**
*Section. 1.*
All legislative Powers herein granted shall be vested in a Congress of the United States, which shall consist of a Senate and House of Representatives.
*Section. 2.*
The House of Representatives shall be composed of Members chosen every second Year by the People of the several States, and the Electors in each State shall have the Qualifications requisite for Electors of the most numerous Branch of the State Legislature.
No Person shall be a Representative who shall not have attained to the Age of twenty five Years, and been seven Years a Citizen of the United States, and who shall not, when elected, be an Inhabitant of that State in which he shall be chosen.
Representatives and direct Taxes shall be apportioned among the several States which may be included within this Union, according to their respective Numbers, which shall be determined by adding to the whole Number of free Persons, including those bound to Service for a Term of Years, and excluding Indians not taxed, three fifths of all other Persons. The actual Enumeration shall be made within three Years after the first Meeting of the Congress of the United States, and within every subsequent Term of ten Years, in such Manner as they shall by Law direct. The Number of Representatives shall not exceed one for every thirty Thousand, but each State shall have at Least one Representative; and until such enumeration shall be made, the State of New Hampshire shall be entitled to chuse three, Massachusetts eight, Rhode-Island and Providence Plantations one, Connecticut five, New-York six, New Jersey four, Pennsylvania eight, Delaware one, Maryland six, Virginia ten, North Carolina five, South Carolina five, and Georgia three.
When vacancies happen in the Representation from any State, the Executive Authority thereof shall issue Writs of Election to fill such Vacancies.
The House of Representatives shall chuse their Speaker and other Officers; and shall have the sole Power of Impeachment.
*Section. 3.*
The Senate of the United States shall be composed of two Senators from each State, chosen by the Legislature thereof, for six Years; and each Senator shall have one Vote.
Immediately after they shall be assembled in Consequence of the first Election, they shall be divided as equally as may be into three Classes. The Seats of the Senators of the first Class shall be vacated at the Expiration of the second Year, of the second Class at the Expiration of the fourth Year, and of the third Class at the Expiration of the sixth Year, so that one third may be chosen every second Year; and if Vacancies happen by Resignation, or otherwise, during the Recess of the Legislature of any State, the Executive thereof may make temporary Appointments until the next Meeting of the Legislature, which shall then fill such Vacancies.
No Person shall be a Senator who shall not have attained to the Age of thirty Years, and been nine Years a Citizen of the United States, and who shall not, when elected, be an Inhabitant of that State for which he shall be chosen.
The Vice President of the United States shall be President of the Senate, but shall have no Vote, unless they be equally divided.
The Senate shall chuse their other Officers, and also a President pro tempore, in the Absence of the Vice President, or when he shall exercise the Office of President of the United States.
The Senate shall have the sole Power to try all Impeachments. When sitting for that Purpose, they shall be on Oath or Affirmation. When the President of the United States is tried, the Chief Justice shall preside: And no Person shall be convicted without the Concurrence of two thirds of the Members present.
Judgment in Cases of Impeachment shall not extend further than to removal from Office, and disqualification to hold and enjoy any Office of honor, Trust or Profit under the United States: but the Party convicted shall nevertheless be liable and subject to Indictment, Trial, Judgment and Punishment, according to Law.
*Section. 4.*
The Times, Places and Manner of holding Elections for Senators and Representatives, shall be prescribed in each State by the Legislature thereof; but the Congress may at any time by Law make or alter such Regulations, except as to the Places of chusing Senators.
The Congress shall assemble at least once in every Year, and such Meeting shall be on the first Monday in December, unless they shall by Law appoint a different Day.
*Section. 5.*
Each House shall be the Judge of the Elections, Returns and Qualifications of its own Members, and a Majority of each shall constitute a Quorum to do Business; but a smaller Number may adjourn from day to day, and may be authorized to compel the Attendance of absent Members, in such Manner, and under such Penalties as each House may provide.
Each House may determine the Rules of its Proceedings, punish its Members for disorderly Behaviour, and, with the Concurrence of two thirds, expel a Member.
Each House shall keep a Journal of its Proceedings, and from time to time publish the same, excepting such Parts as may in their Judgment require Secrecy; and the Yeas and Nays of the Members of either House on any question shall, at the Desire of one fifth of those Present, be entered on the Journal.
Neither House, during the Session of Congress, shall, without the Consent of the other, adjourn for more than three days, nor to any other Place than that in which the two Houses shall be sitting.
*Section. 6.*
The Senators and Representatives shall receive a Compensation for their Services, to be ascertained by Law, and paid out of the Treasury of the United States. They shall in all Cases, except Treason, Felony and Breach of the Peace, be privileged from Arrest during their Attendance at the Session of their respective Houses, and in going to and returning from the same; and for any Speech or Debate in either House, they shall not be questioned in any other Place.
No Senator or Representative shall, during the Time for which he was elected, be appointed to any civil Office under the Authority of the United States, which shall have been created, or the Emoluments whereof shall have been encreased during such time; and no Person holding any Office under the United States, shall be a Member of either House during his Continuance in Office.
*Section. 7.*
All Bills for raising Revenue shall originate in the House of Representatives; but the Senate may propose or concur with Amendments as on other Bills.
Every Bill which shall have passed the House of Representatives and the Senate, shall, before it become a Law, be presented to the President of the United States; If he approve he shall sign it, but if not he shall return it, with his Objections to that House in which it shall have originated, who shall enter the Objections at large on their Journal, and proceed to reconsider it. If after such Reconsideration two thirds of that House shall agree to pass the Bill, it shall be sent, together with the Objections, to the other House, by which it shall likewise be reconsidered, and if approved by two thirds of that House, it shall become a Law. But in all such Cases the Votes of both Houses shall be determined by yeas and Nays, and the Names of the Persons voting for and against the Bill shall be entered on the Journal of each House respectively. If any Bill shall not be returned by the President within ten Days (Sundays excepted) after it shall have been presented to him, the Same shall be a Law, in like Manner as if he had signed it, unless the Congress by their Adjournment prevent its Return, in which Case it shall not be a Law.
Every Order, Resolution, or Vote to which the Concurrence of the Senate and House of Representatives may be necessary (except on a question of Adjournment) shall be presented to the President of the United States; and before the Same shall take Effect, shall be approved by him, or being disapproved by him, shall be repassed by two thirds of the Senate and House of Representatives, according to the Rules and Limitations prescribed in the Case of a Bill.
*Section. 8.*
The Congress shall have Power To lay and collect Taxes, Duties, Imposts and Excises, to pay the Debts and provide for the common Defence and general Welfare of the United States; but all Duties, Imposts and Excises shall be uniform throughout the United States;
To borrow Money on the credit of the United States;
To regulate Commerce with foreign Nations, and among the several States, and with the Indian Tribes;
To establish an uniform Rule of Naturalization, and uniform Laws on the subject of Bankruptcies throughout the United States;
To coin Money, regulate the Value thereof, and of foreign Coin, and fix the Standard of Weights and Measures;
To provide for the Punishment of counterfeiting the Securities and current Coin of the United States;
To establish Post Offices and post Roads;
To promote the Progress of Science and useful Arts, by securing for limited Times to Authors and Inventors the exclusive Right to their respective Writings and Discoveries;
To constitute Tribunals inferior to the supreme Court;
To define and punish Piracies and Felonies committed on the high Seas, and Offences against the Law of Nations;
To declare War, grant Letters of Marque and Reprisal, and make Rules concerning Captures on Land and Water;
To raise and support Armies, but no Appropriation of Money to that Use shall be for a longer Term than two Years;
To provide and maintain a Navy;
To make Rules for the Government and Regulation of the land and naval Forces;
To provide for calling forth the Militia to execute the Laws of the Union, suppress Insurrections and repel Invasions;
To provide for organizing, arming, and disciplining, the Militia, and for governing such Part of them as may be employed in the Service of the United States, reserving to the States respectively, the Appointment of the Officers, and the Authority of training the Militia according to the discipline prescribed by Congress;
To exercise exclusive Legislation in all Cases whatsoever, over such District (not exceeding ten Miles square) as may, by Cession of particular States, and the Acceptance of Congress, become the Seat of the Government of the United States, and to exercise like Authority over all Places purchased by the Consent of the Legislature of the State in which the Same shall be, for the Erection of Forts, Magazines, Arsenals, dock-Yards, and other needful Buildings;—And
To make all Laws which shall be necessary and proper for carrying into Execution the foregoing Powers, and all other Powers vested by this Constitution in the Government of the United States, or in any Department or Officer thereof.
*Section. 9.*
The Migration or Importation of such Persons as any of the States now existing shall think proper to admit, shall not be prohibited by the Congress prior to the Year one thousand eight hundred and eight, but a Tax or duty may be imposed on such Importation, not exceeding ten dollars for each Person.
The Privilege of the Writ of Habeas Corpus shall not be suspended, unless when in Cases of Rebellion or Invasion the public Safety may require it.
No Bill of Attainder or ex post facto Law shall be passed.
No Capitation, or other direct, Tax shall be laid, unless in Proportion to the Census or enumeration herein before directed to be taken.
No Tax or Duty shall be laid on Articles exported from any State.
No Preference shall be given by any Regulation of Commerce or Revenue to the Ports of one State over those of another: nor shall Vessels bound to, or from, one State, be obliged to enter, clear, or pay Duties in another.
No Money shall be drawn from the Treasury, but in Consequence of Appropriations made by Law; and a regular Statement and Account of the Receipts and Expenditures of all public Money shall be published from time to time.
No Title of Nobility shall be granted by the United States: And no Person holding any Office of Profit or Trust under them, shall, without the Consent of the Congress, accept of any present, Emolument, Office, or Title, of any kind whatever, from any King, Prince, or foreign State.
*Section. 10.*
No State shall enter into any Treaty, Alliance, or Confederation; grant Letters of Marque and Reprisal; coin Money; emit Bills of Credit; make any Thing but gold and silver Coin a Tender in Payment of Debts; pass any Bill of Attainder, ex post facto Law, or Law impairing the Obligation of Contracts, or grant any Title of Nobility.
No State shall, without the Consent of the Congress, lay any Imposts or Duties on Imports or Exports, except what may be absolutely necessary for executing it's inspection Laws: and the net Produce of all Duties and Imposts, laid by any State on Imports or Exports, shall be for the Use of the Treasury of the United States; and all such Laws shall be subject to the Revision and Controul of the Congress.
No State shall, without the Consent of Congress, lay any Duty of Tonnage, keep Troops, or Ships of War in time of Peace, enter into any Agreement or Compact with another State, or with a foreign Power, or engage in War, unless actually invaded, or in such imminent Danger as will not admit of delay.
**Article. II.**
*Section. 1.*
The executive Power shall be vested in a President of the United States of America. He shall hold his Office during the Term of four Years, and, together with the Vice President, chosen for the same Term, be elected, as follows
Each State shall appoint, in such Manner as the Legislature thereof may direct, a Number of Electors, equal to the whole Number of Senators and Representatives to which the State may be entitled in the Congress: but no Senator or Representative, or Person holding an Office of Trust or Profit under the United States, shall be appointed an Elector.
The Electors shall meet in their respective States, and vote by Ballot for two Persons, of whom one at least shall not be an Inhabitant of the same State with themselves. And they shall make a List of all the Persons voted for, and of the Number of Votes for each; which List they shall sign and certify, and transmit sealed to the Seat of the Government of the United States, directed to the President of the Senate. The President of the Senate shall, in the Presence of the Senate and House of Representatives, open all the Certificates, and the Votes shall then be counted. The Person having the greatest Number of Votes shall be the President, if such Number be a Majority of the whole Number of Electors appointed; and if there be more than one who have such Majority, and have an equal Number of Votes, then the House of Representatives shall immediately chuse by Ballot one of them for President; and if no Person have a Majority, then from the five highest on the List the said House shall in like Manner chuse the President. But in chusing the President, the Votes shall be taken by States, the Representation from each State having one Vote; A quorum for this Purpose shall consist of a Member or Members from two thirds of the States, and a Majority of all the States shall be necessary to a Choice. In every Case, after the Choice of the President, the Person having the greatest Number of Votes of the Electors shall be the Vice President. But if there should remain two or more who have equal Votes, the Senate shall chuse from them by Ballot the Vice President.
The Congress may determine the Time of chusing the Electors, and the Day on which they shall give their Votes; which Day shall be the same throughout the United States.
No Person except a natural born Citizen, or a Citizen of the United States, at the time of the Adoption of this Constitution, shall be eligible to the Office of President; neither shall any Person be eligible to that Office who shall not have attained to the Age of thirty five Years, and been fourteen Years a Resident within the United States.
In Case of the Removal of the President from Office, or of his Death, Resignation, or Inability to discharge the Powers and Duties of the said Office, the Same shall devolve on the Vice President, and the Congress may by Law provide for the Case of Removal, Death, Resignation or Inability, both of the President and Vice President, declaring what Officer shall then act as President, and such Officer shall act accordingly, until the Disability be removed, or a President shall be elected.
The President shall, at stated Times, receive for his Services, a Compensation, which shall neither be encreased nor diminished during the Period for which he shall have been elected, and he shall not receive within that Period any other Emolument from the United States, or any of them.
Before he enter on the Execution of his Office, he shall take the following Oath or Affirmation:—"I do solemnly swear (or affirm) that I will faithfully execute the Office of President of the United States, and will to the best of my Ability, preserve, protect and defend the Constitution of the United States."
*Section. 2.*
The President shall be Commander in Chief of the Army and Navy of the United States, and of the Militia of the several States, when called into the actual Service of the United States; he may require the Opinion, in writing, of the principal Officer in each of the executive Departments, upon any Subject relating to the Duties of their respective Offices, and he shall have Power to grant Reprieves and Pardons for Offences against the United States, except in Cases of Impeachment.
He shall have Power, by and with the Advice and Consent of the Senate, to make Treaties, provided two thirds of the Senators present concur; and he shall nominate, and by and with the Advice and Consent of the Senate, shall appoint Ambassadors, other public Ministers and Consuls, Judges of the supreme Court, and all other Officers of the United States, whose Appointments are not herein otherwise provided for, and which shall be established by Law: but the Congress may by Law vest the Appointment of such inferior Officers, as they think proper, in the President alone, in the Courts of Law, or in the Heads of Departments.
The President shall have Power to fill up all Vacancies that may happen during the Recess of the Senate, by granting Commissions which shall expire at the End of their next Session.
*Section. 3.*
He shall from time to time give to the Congress Information of the State of the Union, and recommend to their Consideration such Measures as he shall judge necessary and expedient; he may, on extraordinary Occasions, convene both Houses, or either of them, and in Case of Disagreement between them, with Respect to the Time of Adjournment, he may adjourn them to such Time as he shall think proper; he shall receive Ambassadors and other public Ministers; he shall take Care that the Laws be faithfully executed, and shall Commission all the Officers of the United States.
*Section. 4.*
The President, Vice President and all civil Officers of the United States, shall be removed from Office on Impeachment for, and Conviction of, Treason, Bribery, or other high Crimes and Misdemeanors.
**Article. III.**
*Section. 1.*
The judicial Power of the United States, shall be vested in one supreme Court, and in such inferior Courts as the Congress may from time to time ordain and establish. The Judges, both of the supreme and inferior Courts, shall hold their Offices during good Behaviour, and shall, at stated Times, receive for their Services, a Compensation, which shall not be diminished during their Continuance in Office.
*Section. 2.*
The judicial Power shall extend to all Cases, in Law and Equity, arising under this Constitution, the Laws of the United States, and Treaties made, or which shall be made, under their Authority;—to all Cases affecting Ambassadors, other public Ministers and Consuls;—to all Cases of admiralty and maritime Jurisdiction;—to Controversies to which the United States shall be a Party;—to Controversies between two or more States;— between a State and Citizens of another State,—between Citizens of different States,—between Citizens of the same State claiming Lands under Grants of different States, and between a State, or the Citizens thereof, and foreign States, Citizens or Subjects.
In all Cases affecting Ambassadors, other public Ministers and Consuls, and those in which a State shall be Party, the supreme Court shall have original Jurisdiction. In all the other Cases before mentioned, the supreme Court shall have appellate Jurisdiction, both as to Law and Fact, with such Exceptions, and under such Regulations as the Congress shall make.
The Trial of all Crimes, except in Cases of Impeachment, shall be by Jury; and such Trial shall be held in the State where the said Crimes shall have been committed; but when not committed within any State, the Trial shall be at such Place or Places as the Congress may by Law have directed.
*Section. 3.*
Treason against the United States, shall consist only in levying War against them, or in adhering to their Enemies, giving them Aid and Comfort. No Person shall be convicted of Treason unless on the Testimony of two Witnesses to the same overt Act, or on Confession in open Court.
The Congress shall have Power to declare the Punishment of Treason, but no Attainder of Treason shall work Corruption of Blood, or Forfeiture except during the Life of the Person attainted.
**Article. IV.**
*Section. 1.*
Full Faith and Credit shall be given in each State to the public Acts, Records, and judicial Proceedings of every other State. And the Congress may by general Laws prescribe the Manner in which such Acts, Records and Proceedings shall be proved, and the Effect thereof.
*Section. 2.*
The Citizens of each State shall be entitled to all Privileges and Immunities of Citizens in the several States.
A Person charged in any State with Treason, Felony, or other Crime, who shall flee from Justice, and be found in another State, shall on Demand of the executive Authority of the State from which he fled, be delivered up, to be removed to the State having Jurisdiction of the Crime.
No Person held to Service or Labour in one State, under the Laws thereof, escaping into another, shall, in Consequence of any Law or Regulation therein, be discharged from such Service or Labour, but shall be delivered up on Claim of the Party to whom such Service or Labour may be due.
*Section. 3.*
New States may be admitted by the Congress into this Union; but no new State shall be formed or erected within the Jurisdiction of any other State; nor any State be formed by the Junction of two or more States, or Parts of States, without the Consent of the Legislatures of the States concerned as well as of the Congress.
The Congress shall have Power to dispose of and make all needful Rules and Regulations respecting the Territory or other Property belonging to the United States; and nothing in this Constitution shall be so construed as to Prejudice any Claims of the United States, or of any particular State.
*Section. 4.*
The United States shall guarantee to every State in this Union a Republican Form of Government, and shall protect each of them against Invasion; and on Application of the Legislature, or of the Executive (when the Legislature cannot be convened) against domestic Violence.
**Article. V.**
The Congress, whenever two thirds of both Houses shall deem it necessary, shall propose Amendments to this Constitution, or, on the Application of the Legislatures of two thirds of the several States, shall call a Convention for proposing Amendments, which, in either Case, shall be valid to all Intents and Purposes, as Part of this Constitution, when ratified by the Legislatures of three fourths of the several States, or by Conventions in three fourths thereof, as the one or the other Mode of Ratification may be proposed by the Congress; Provided that no Amendment which may be made prior to the Year One thousand eight hundred and eight shall in any Manner affect the first and fourth Clauses in the Ninth Section of the first Article; and that no State, without its Consent, shall be deprived of its equal Suffrage in the Senate.
**Article. VI.**
All Debts contracted and Engagements entered into, before the Adoption of this Constitution, shall be as valid against the United States under this Constitution, as under the Confederation.
This Constitution, and the Laws of the United States which shall be made in Pursuance thereof; and all Treaties made, or which shall be made, under the Authority of the United States, shall be the supreme Law of the Land; and the Judges in every State shall be bound thereby, any Thing in the Constitution or Laws of any State to the Contrary notwithstanding.
The Senators and Representatives before mentioned, and the Members of the several State Legislatures, and all executive and judicial Officers, both of the United States and of the several States, shall be bound by Oath or Affirmation, to support this Constitution; but no religious Test shall ever be required as a Qualification to any Office or public Trust under the United States.
**Article. VII.**
The Ratification of the Conventions of nine States, shall be sufficient for the Establishment of this Constitution between the States so ratifying the Same.
The Word, "the," being interlined between the seventh and eighth Lines of the first Page, The Word "Thirty" being partly written on an Erazure in the fifteenth Line of the first Page, The Words "is tried" being interlined between the thirty second and thirty third Lines of the first Page and the Word "the" being interlined between the forty third and forty fourth Lines of the second Page.
Attest William Jackson Secretary
done in Convention by the Unanimous Consent of the States present the Seventeenth Day of September in the Year of our Lord one thousand seven hundred and Eighty seven and of the Independance of the United States of America the Twelfth In witness whereof We have hereunto subscribed our Names,
-

@ a95c6243:d345522c
2024-11-29 19:45:43
*Konsum ist Therapie.
Wolfgang Joop*
**Umweltbewusstes Verhalten und verantwortungsvoller Konsum** zeugen durchaus von einer wünschenswerten Einstellung. Ob man deswegen allerdings einen grünen statt eines schwarzen Freitags braucht, darf getrost bezweifelt werden – zumal es sich um manipulatorische Konzepte handelt. Wie in der politischen Landschaft sind auch hier die Etiketten irgendwas zwischen nichtssagend und trügerisch.
**Heute ist also wieder mal «Black Friday»,** falls Sie es noch nicht mitbekommen haben sollten. Eigentlich haben wir ja eher schon eine ganze «Black Week», der dann oft auch noch ein «Cyber Monday» folgt. Die Werbebranche wird nicht müde, immer neue Anlässe zu erfinden oder zu importieren, um uns zum Konsumieren zu bewegen. Und sie ist damit sehr erfolgreich.
**Warum fallen wir auf derartige Werbetricks herein** und kaufen im Zweifelsfall Dinge oder Mengen, die wir sicher nicht brauchen? Pure Psychologie, würde ich sagen. Rabattschilder triggern etwas in uns, was den Verstand in Stand-by versetzt. Zusätzlich beeinflussen uns alle möglichen emotionalen Reize und animieren uns zum Schnäppchenkauf.
**Gedankenlosigkeit und Maßlosigkeit können besonders bei der [Ernährung](https://transition-news.org/studie-208-millionen-us-amerikaner-sind-als-fettleibig-oder-ubergewichtig) zu ernsten Problemen führen.** Erst kürzlich hat mir ein Bekannter nach einer USA-Reise erzählt, dass es dort offenbar nicht unüblich ist, schon zum ausgiebigen Frühstück in einem Restaurant wenigstens einen Liter Cola zu trinken. Gerne auch mehr, um das Gratis-Nachfüllen des Bechers auszunutzen.
**Kritik am schwarzen Freitag und dem unnötigen Konsum** kommt oft von Umweltschützern. Neben Ressourcenverschwendung, hohem Energieverbrauch und wachsenden Müllbergen durch eine zunehmende Wegwerfmentalität kommt dabei in der Regel auch die «Klimakrise» auf den Tisch.
**Die EU-Kommission lancierte 2015 den Begriff «Green Friday»** im Kontext der überarbeiteten Rechtsvorschriften zur Kennzeichnung der Energieeffizienz von Elektrogeräten. Sie nutzte die Gelegenheit kurz vor dem damaligen schwarzen Freitag und vor der UN-Klimakonferenz COP21, bei der das [Pariser Abkommen](https://transition-news.org/cop29-wird-vom-geist-des-noch-kunftigen-us-prasidenten-heimgesucht) unterzeichnet werden sollte.
**Heute wird ein grüner Freitag oft im Zusammenhang mit der Forderung nach «nachhaltigem Konsum» benutzt.** Derweil ist die Europäische Union schon weit in ihr Geschäftsmodell des [«Green New Deal»](https://transition-news.org/green-new-deal) verstrickt. In ihrer Propaganda zum Klimawandel verspricht sie tatsächlich «Unterstützung der Menschen und Regionen, die von immer häufigeren Extremwetter-Ereignissen betroffen sind». Was wohl die Menschen in der Region um [Valencia](https://transition-news.org/flutkatastrophe-in-valencia-die-ungereimtheiten-haufen-sich) dazu sagen?
**Ganz im Sinne des Great Reset propagierten die Vereinten Nationen seit Ende 2020** eine «[grüne Erholung von Covid-19](https://news.un.org/en/story/2020/12/1079602), um den Klimawandel zu verlangsamen». Der UN-Umweltbericht sah in dem Jahr einen Schwerpunkt auf dem Verbraucherverhalten. Änderungen des Konsumverhaltens des Einzelnen könnten dazu beitragen, den Klimaschutz zu stärken, hieß es dort.
**Der Begriff «Schwarzer Freitag» wurde in den USA nicht erstmals für Einkäufe nach Thanksgiving verwendet** – wie oft angenommen –, sondern für eine Finanzkrise. Jedoch nicht für den Börsencrash von 1929, sondern bereits für den Zusammenbruch des US-Goldmarktes im September 1869. Seitdem mussten die Menschen weltweit so einige schwarze Tage erleben.
**Kürzlich sind die britischen Aufsichtsbehörden weiter von ihrer Zurückhaltung** nach dem letzten großen Finanzcrash von 2008 abgerückt. Sie haben Regeln für den Bankensektor gelockert, womit sie [«verantwortungsvolle Risikobereitschaft»](https://transition-news.org/zuruck-zu-2008-grossbritannien-schlagt-lockere-regeln-fur-banker-boni-vor) unterstützen wollen. Man würde sicher zu schwarz sehen, wenn man hier ein grünes Wunder befürchten würde.
---
Dieser Beitrag ist zuerst auf *[Transition News](https://transition-news.org/auch-beim-freitag-ist-es-egal-ob-schwarz-oder-grun)* erschienen.
-

@ d360efec:14907b5f
2025-02-17 08:49:15
**ภาพรวม BTCUSDT (OKX):**
Bitcoin ยังคงอยู่ในแนวโน้มขาขึ้นระยะยาว แต่ระยะสั้นมีความผันผวนและมีการปรับฐานลงมา การวิเคราะห์ครั้งนี้จะเน้นการระบุพื้นที่ที่ Smart Money (หรือ "เจ้ามือ") อาจจะเข้าซื้อหรือขาย เพื่อให้เราสามารถวางแผนการเทรดได้อย่างมีประสิทธิภาพ
**วิเคราะห์ทีละ Timeframe:**
**(1) TF Day (รายวัน):** 
* **แนวโน้ม:** ขาขึ้น (Uptrend)
* **SMC:**
* Higher Highs (HH) และ Higher Lows (HL) ต่อเนื่อง
* Break of Structure (BOS) ด้านบน
* ยังไม่มีสัญญาณการกลับตัวเป็นขาลง
* **ICT:**
* ยังไม่เห็น Order Block หรือ FVG ที่ชัดเจนใน TF Day *ณ ราคาปัจจุบัน*
* **EMA:**
* ราคาอยู่เหนือ EMA 50 (สีเหลือง) และ EMA 200 (สีขาว) (Golden Cross)
* **Money Flow (LuxAlgo):**
* สีเขียวเป็นส่วนใหญ่ แสดงถึงแรงซื้อ
* **Volume Profile:**
* Volume หนาแน่นที่บริเวณต่ำกว่าราคาปัจจุบัน
* **แท่งเทียน:**
* แท่งเทียนล่าสุดเป็นสีแดง แสดงถึงแรงขาย แต่ไส้เทียนยาว แสดงว่ามีแรงซื้อกลับ
* **แนวรับ:** EMA 50, EMA 200, บริเวณ Volume Profile หนาแน่น
* **แนวต้าน:** High เดิม
* **สรุป:** แนวโน้มหลักยังเป็นขาขึ้น Buy on Dip
**(2) TF4H (4 ชั่วโมง):** 
* **แนวโน้ม:** ขาขึ้น (พักตัว)
* **SMC:**
* HH และ HL
* BOS ด้านบน
* ราคาหลุด EMA 50
* **ICT:**
* **Fair Value Gap (FVG):** สังเกตเห็น FVG เล็กๆ ที่เกิดขึ้นก่อนหน้านี้ (บริเวณที่ราคาเคยพุ่งขึ้นอย่างรวดเร็ว) อาจเป็นเป้าหมายของการ Pullback
* **Order Block:** ราคาปัจจุบันกำลังทดสอบ Order Block (บริเวณแท่งเทียนสีแดงแท่งใหญ่ก่อนที่จะขึ้น) *เป็นจุดที่น่าสนใจมาก*
* **EMA:**
* ราคาหลุด EMA 50
* EMA 200 เป็นแนวรับถัดไป
* **Money Flow (LuxAlgo):**
* เขียวและแดงผสมกัน, แดงเริ่มมากขึ้น
* **Volume Profile:**
* Volume profile ค่อนข้างสูง
* **แนวรับ:** EMA 200, Order Block, บริเวณ Volume Profile
* **แนวต้าน:** EMA 50, High เดิม
* **สรุป:** แนวโน้มขาขึ้นพักตัว, ทดสอบ Order Block, Money Flow เริ่มเป็นลบ
**(3) TF15 (15 นาที):** 
* **แนวโน้ม:** ขาลง (Downtrend) ระยะสั้น *แต่เริ่มมีสัญญาณการฟื้นตัว*
* **SMC:**
* Lower Highs (LH) และ Lower Lows (LL) *แต่เริ่มเห็น Higher Low*
* BOS ด้านล่าง
* *เริ่มมีสัญญาณการ Breakout EMA 50/200*
* **ICT:**
* ราคาเพิ่ง Breakout Order Block ขาลง (แต่ต้องรอดูว่าจะยืนได้หรือไม่)
* **EMA:**
* *EMA 50/200 เพิ่งจะตัดกันแบบ Golden Cross*
* **Money Flow (LuxAlgo):**
* *เริ่มมีแท่งสีเขียวปรากฏขึ้น*
* **Volume Profile:**
* **แนวรับ:** บริเวณ Low ล่าสุด
* **แนวต้าน:** EMA50/200
* **สรุป:** *เริ่มมีสัญญาณการฟื้นตัว* แต่ยังต้องระวัง
**สรุปภาพรวมและกลยุทธ์ (BTCUSDT):**
* **แนวโน้มหลัก (Day):** ขาขึ้น
* **แนวโน้มรอง (4H):** ขาขึ้น (พักตัว), ทดสอบ Order Block
* **แนวโน้มระยะสั้น (15m):** *เริ่มมีสัญญาณการฟื้นตัว*
* **Money Flow:** Day เป็นบวก, 4H เริ่มเป็นลบ, 15m เริ่มเป็นบวก
* **กลยุทธ์:**
1. **Wait & See:** รอการยืนยันการ Breakout EMA 50/200 ใน TF15m
2. **Buy (เสี่ยง):** *เฉพาะเมื่อราคา Breakout EMA 50/200 ใน TF 15 ได้อย่างแข็งแกร่ง*
3. **Short (เสี่ยง):** ถ้า Order Block ใน TF4H รับไม่อยู่ และ TF15 ยังคงเป็นขาลง
**คำแนะนำ:**
* **Order Block:** ให้ความสำคัญกับ Order Block ใน TF4H
* **FVG:** สังเกต FVG ใน TF4H
* **ความขัดแย้งของ Timeframes:** เริ่มลดลง (15m เริ่มมีสัญญาณบวก)
* **จับตาดู TF15 อย่างใกล้ชิด**
**Disclaimer:** การวิเคราะห์นี้เป็นเพียงความคิดเห็นส่วนตัว ไม่ถือเป็นคำแนะนำในการลงทุน ผู้ลงทุนควรศึกษาข้อมูลเพิ่มเติมและตัดสินใจด้วยความรอบคอบ
-

@ 000002de:c05780a7
2025-02-12 22:41:17
The absolute embarrassment the Chiefs were subjected to... is the end of the their dominance? Of course they have a ton of talent and will win and maybe get back the Super Bowl this game really exposed them.
Its one thing to lose to a great team like the Eagles. Its another to be destroyed so fully. When I think about this game its not just on one person. Its coaching and players. I'm just wondering about the impact on the league watching this. Anyone who has played sports knows that a ton of it is mental. Teams can defeat themselves mentally. Does this defeat tell the league, yeah they aren't that good.
What do you think?
Edit: When I say "done", I mean the dynasty. I don't mean they are gonna have a losing record next year.
originally posted at https://stacker.news/items/884169
-

@ a95c6243:d345522c
2024-11-08 20:02:32
*Und plötzlich weißt du:
Es ist Zeit, etwas Neues zu beginnen
und dem Zauber des Anfangs zu vertrauen.
Meister Eckhart*
**Schwarz, rot, gold leuchtet es im Kopf des Newsletters der deutschen Bundesregierung,** der mir freitags ins Postfach flattert. Rot, gelb und grün werden daneben sicher noch lange vielzitierte Farben sein, auch wenn diese nie geleuchtet haben. Die Ampel hat sich gerade selber den Stecker gezogen – und hinterlässt einen wirtschaftlichen und gesellschaftlichen Trümmerhaufen.
**Mit einem bemerkenswerten [Timing](https://transition-news.org/donald-trump-grossmaul-oder-hoffnungstrager) hat die deutsche Regierungskoalition** am Tag des «Comebacks» von Donald Trump in den USA endlich ihr Scheitern besiegelt. Während der eine seinen Sieg bei den Präsidentschaftswahlen feierte, erwachten die anderen jäh aus ihrer [Selbsthypnose](https://ansage.org/schwer-traumatisiert-nach-trumps-sieg-dreht-die-politmediale-linksgruene-sekte-durch/) rund um Harris-Hype und Trump-Panik – mit teils erschreckenden [Auswüchsen](https://archive.is/7tDhY). Seit Mittwoch werden die Geschicke Deutschlands nun von einer rot-grünen Minderheitsregierung «geleitet» und man steuert auf Neuwahlen zu.
**Das [Kindergarten](https://www.spiegel.de/politik/deutschland/christian-lindner-auch-die-fdp-will-wieder-einen-eigenen-wirtschaftsgipfel-abhalten-a-a8a4e868-10b1-426e-adb0-e5a6d42f7c46)-Gehabe um zwei konkurrierende Wirtschaftsgipfel letzte Woche** war bereits bezeichnend. In einem Strategiepapier gestand Finanzminister Lindner außerdem den «Absturz Deutschlands» ein und offenbarte, dass die wirtschaftlichen Probleme teilweise von der Ampel-Politik [«vorsätzlich herbeigeführt»](https://www.t-online.de/nachrichten/deutschland/innenpolitik/id_100522112/fdp-chef-lindner-und-sein-grundsatzpapier-die-scheidung-von-der-ampel-.html) worden seien.
**Lindner und weitere FDP-Minister wurden also vom Bundeskanzler entlassen.** Verkehrs- und [Digitalminister Wissing](https://transition-news.org/raus-aus-der-komfortzone-es-lohnt-sich) trat flugs aus der FDP aus; deshalb darf er nicht nur im Amt bleiben, sondern hat zusätzlich noch das Justizministerium übernommen. Und mit [Jörg Kukies](https://norberthaering.de/news/joerg-kukies/) habe Scholz «seinen Lieblingsbock zum Obergärtner», sprich: Finanzminister befördert, meint Norbert Häring.
**Es gebe keine Vertrauensbasis für die weitere Zusammenarbeit mit der FDP,** hatte der Kanzler erklärt, Lindner habe zu oft sein Vertrauen gebrochen. Am 15. Januar 2025 werde er daher im Bundestag die Vertrauensfrage stellen, was ggf. den Weg für vorgezogene Neuwahlen freimachen würde.
**Apropos Vertrauen: Über die Hälfte der Bundesbürger glauben, dass sie ihre Meinung nicht frei sagen können.** Das ging erst kürzlich aus dem diesjährigen [«Freiheitsindex»](https://www.schwaebische.de/politik/forscher-beim-vertrauen-in-staat-und-medien-zerreisst-es-uns-gerade-3034357) hervor, einer Studie, die die Wechselwirkung zwischen Berichterstattung der Medien und subjektivem Freiheitsempfinden der Bürger misst. «Beim Vertrauen in Staat und Medien zerreißt es uns gerade», kommentierte dies der Leiter des Schweizer Unternehmens Media Tenor, das die Untersuchung zusammen mit dem Institut für Demoskopie Allensbach durchführt.
**«Die absolute Mehrheit hat [absolut die Nase voll](https://archive.is/yRxwR)»,** titelte die *Bild* angesichts des «Ampel-Showdowns». Die Mehrheit wolle Neuwahlen und die Grünen sollten zuerst gehen, lasen wir dort.
**Dass «Insolvenzminister» Robert Habeck heute seine Kandidatur für das Kanzleramt verkündet hat,** kann nur als Teil der politmedialen Realitätsverweigerung verstanden werden. Wer allerdings denke, schlimmer als in Zeiten der Ampel könne es nicht mehr werden, sei reichlich optimistisch, schrieb Uwe Froschauer bei *Manova*. Und er kenne [Friedrich Merz](https://www.manova.news/artikel/der-kriegsgeile-blackrocker) schlecht, der sich schon jetzt rhetorisch auf seine Rolle als oberster Feldherr Deutschlands vorbereite.
**Was also tun? Der Schweizer Verein [«Losdemokratie»](https://zeitpunkt.ch/node/40968) will eine Volksinitiative lancieren,** um die Bestimmung von Parlamentsmitgliedern per Los einzuführen. Das Losverfahren sorge für mehr Demokratie, denn als Alternative zum Wahlverfahren garantiere es eine breitere Beteiligung und repräsentativere Parlamente. Ob das ein Weg ist, sei dahingestellt.
**In jedem Fall wird es notwendig sein, unsere Bemühungen um [Freiheit und Selbstbestimmung](https://transition-news.org/alternative-medien-in-der-krise-zensur-kontrollverlust-und-die-suche-nach)** zu verstärken. Mehr Unabhängigkeit von staatlichen und zentralen Institutionen – also die Suche nach dezentralen Lösungsansätzen – gehört dabei sicher zu den Möglichkeiten. Das gilt sowohl für jede/n Einzelne/n als auch für Entitäten wie die alternativen Medien.
---
Dieser Beitrag ist zuerst auf *[Transition News](https://transition-news.org/es-kann-nur-besser-werden-aber-wie)* erschienen.
-

@ 000002de:c05780a7
2025-02-12 22:25:06
Honest question. I think he's a great TE but... haven't watched him a ton. I get a feeling he's overrated. Maybe not though. I watched him during the big game and was kinda surprised by his lack luster performance. He really seemed different to me.
Since then I've seen video of him not blocking for his QB and not really playing hard. Like he gave up. Does he really have a rep of not blocking? He looks pretty terrible on film. Now, I know I'm a Kittle fan and he is famously great at blocking and takes pride in it. Maybe I'm just using Kittle as the ruler and maybe that's not fair.
Also, I loved watching KC get destroyed so factor that in :)
originally posted at https://stacker.news/items/884156
-

@ a95c6243:d345522c
2024-10-26 12:21:50
*Es ist besser, ein Licht zu entzünden,
als auf die Dunkelheit zu schimpfen.
Konfuzius*
**Die Bemühungen um Aufarbeitung der sogenannten Corona-Pandemie,** um Aufklärung der Hintergründe, Benennung von Verantwortlichkeiten und das Ziehen von Konsequenzen sind durchaus nicht eingeschlafen. Das Interesse daran ist unter den gegebenen Umständen vielleicht nicht sonderlich groß, aber es ist vorhanden.
**Der sächsische Landtag hat gestern die Einsetzung eines [Untersuchungsausschusses](https://transition-news.org/sachsischer-landtag-beschliesst-afd-antrag-zu-corona-untersuchungsausschuss)** zur Corona-Politik beschlossen. In einer Sondersitzung erhielt ein entsprechender Antrag der AfD-Fraktion die ausreichende Zustimmung, auch von einigen Abgeordneten des BSW.
**In den Niederlanden wird [Bill Gates](https://transition-news.org/niederlande-bill-gates-muss-wegen-impfstoffklage-vor-gericht-erscheinen) vor Gericht erscheinen müssen.** Sieben durch die Covid-«Impfstoffe» geschädigte Personen hatten Klage eingereicht. Sie werfen unter anderem Gates, Pfizer-Chef Bourla und dem niederländischen Staat vor, sie hätten gewusst, dass diese Präparate weder sicher noch wirksam sind.
**Mit den mRNA-«Impfstoffen» von [Pfizer/BioNTech](https://transition-news.org/neues-buch-uber-pfizer-offenbart-grosstes-verbrechen-gegen-die-menschheit) befasst sich auch ein neues Buch.** Darin werden die Erkenntnisse von Ärzten und Wissenschaftlern aus der Analyse interner Dokumente über die klinischen Studien der Covid-Injektion präsentiert. Es handelt sich um jene in den USA freigeklagten Papiere, die die Arzneimittelbehörde (Food and Drug Administration, FDA) 75 Jahre unter Verschluss halten wollte.
**Ebenfalls Wissenschaftler und Ärzte, aber auch andere Experten organisieren** als Verbundnetzwerk [Corona-Solution](https://transition-news.org/online-konferenz-corona-solution-corona-und-modrna-von-toten-lebenden-und) kostenfreie Online-Konferenzen. Ihr Ziel ist es, «wissenschaftlich, demokratisch und friedlich» über Impfstoffe und Behandlungsprotokolle gegen SARS-CoV-2 aufzuklären und die Diskriminierung von Ungeimpften zu stoppen. [Gestern](https://www.csmedicus.org/de/aktuelle-konferenz/corona-und-modrna-von-toten-lebenden-und-physik-lernen/2024-10-25/) fand eine weitere Konferenz statt. Ihr Thema: «Corona und modRNA: Von Toten, Lebenden und Physik lernen».
**Aufgrund des Digital Services Acts (DSA) der Europäischen Union sei das Risiko groß,** dass ihre Arbeit als «Fake-News» bezeichnet würde, so das Netzwerk. Staatlich unerwünschte wissenschaftliche Aufklärung müsse sich passende Kanäle zur Veröffentlichung suchen. Ihre Live-Streams seien deshalb zum Beispiel nicht auf YouTube zu finden.
**Der vielfältige Einsatz für Aufklärung und Aufarbeitung** wird sich nicht stummschalten lassen. Nicht einmal der [Zensurmeister der EU](https://transition-news.org/deutschland-ist-der-zensurmeister-der-eu), Deutschland, wird so etwas erreichen. Die frisch aktivierten «Trusted Flagger» dürften allerdings künftige Siege beim «Denunzianten-Wettbewerb» im Kontext des DSA zusätzlich absichern.
**Wo sind die Grenzen der Meinungsfreiheit?** Sicher gibt es sie. Aber die ideologische Gleichstellung von illegalen mit unerwünschten Äußerungen verfolgt offensichtlich eher das Ziel, ein derart elementares demokratisches Grundrecht möglichst weitgehend auszuhebeln. Vorwürfe wie «Hassrede», «Delegitimierung des Staates» oder [«Volksverhetzung»](https://transition-news.org/eduard-prols-prozess-geht-in-die-nachste-runde) werden heute inflationär verwendet, um Systemkritik zu unterbinden. Gegen solche Bestrebungen gilt es, sich zu wehren.
---
Dieser Beitrag ist zuerst auf *[Transition News](https://transition-news.org/alles-muss-ans-licht)* erschienen.
-

@ c631e267:c2b78d3e
2024-10-23 20:26:10
Herzlichen Glückwunsch zum dritten Geburtstag, liebe *Denk Bar*! Wieso zum dritten? Das war doch 2022 und jetzt sind wir im Jahr 2024, oder? Ja, das ist schon richtig, aber bei Geburtstagen erinnere ich mich immer auch an meinen Vater, und der behauptete oft, der erste sei ja schließlich der Tag der Geburt selber und den müsse man natürlich mitzählen. Wo er recht hat, hat er nunmal recht. Konsequenterweise wird also heute dieser Blog an seinem dritten Geburtstag zwei Jahre alt.
Das ist ein Grund zum Feiern, wie ich finde. Einerseits ganz einfach, weil es dafür gar nicht genug Gründe geben kann. «Das Leben sind zwei Tage», lautet ein gängiger Ausdruck hier in Andalusien. In der Tat könnte es so sein, auch wenn wir uns im Alltag oft genug von der Routine vereinnahmen lassen.
Seit dem Start der *Denk Bar* vor zwei Jahren ist unglaublich viel passiert. Ebenso wie die zweieinhalb Jahre davor, und all jenes war letztlich auch der Auslöser dafür, dass ich begann, öffentlich zu schreiben. [Damals notierte ich](https://denkbar.substack.com/p/andreas-denk-bar-eroffnet):
> «Seit einigen Jahren erscheint unser öffentliches Umfeld immer fragwürdiger, widersprüchlicher und manchmal schier unglaublich - jede Menge Anlass für eigene Recherchen und Gedanken, ganz einfach mit einer Portion gesundem Menschenverstand.»
Wir erleben den sogenannten «großen Umbruch», einen globalen Coup, den skrupellose Egoisten clever eingefädelt haben und seit ein paar Jahren knallhart – aber nett verpackt – durchziehen, um buchstäblich alles nach ihrem Gusto umzukrempeln. Die Gelegenheit ist ja angeblich günstig und muss genutzt werden.
Nie hätte ich mir träumen lassen, dass ich so etwas jemals miterleben müsste. Die Bosheit, mit der ganz offensichtlich gegen die eigene Bevölkerung gearbeitet wird, war früher für mich unvorstellbar. Mein (Rest-) Vertrauen in alle möglichen Bereiche wie Politik, Wissenschaft, Justiz, Medien oder Kirche ist praktisch komplett zerstört. Einen [«inneren Totalschaden»](https://denkbar.substack.com/p/innerer-totalschaden) hatte ich mal für unsere Gesellschaften diagnostiziert.
Was mich vielleicht am meisten erschreckt, ist zum einen das Niveau der [Gleichschaltung](https://denkbar.substack.com/p/warum-trotzdem-dieses-handeln), das weltweit erreicht werden konnte, und zum anderen die praktisch totale Spaltung der Gesellschaft. Haben wir das tatsächlich mit uns machen lassen?? Unfassbar! Aber das Werkzeug «Angst» ist sehr mächtig und funktioniert bis heute.
Zum Glück passieren auch positive Dinge und neue Perspektiven öffnen sich. Für viele Menschen waren und sind die Entwicklungen der letzten Jahre ein Augenöffner. Sie sehen «Querdenken» als das, was es ist: eine Tugend.
Auch die immer ernsteren Zensurbemühungen sind letztlich nur ein Zeichen der Schwäche, wo Argumente fehlen. Sie werden nicht verhindern, dass wir unsere Meinung äußern, unbequeme Fragen stellen und dass die Wahrheit peu à peu ans Licht kommt. Es gibt immer Mittel und Wege, auch für uns.
---
**Danke, dass du diesen Weg mit mir weitergehst!**
-

@ 8d34bd24:414be32b
2025-02-12 17:38:19
All of us who have truly put our faith in the Lord Jesus Christ want to serve Him, but we all live busy lives. We all get distracted by making a living, taking care of our families, and other good things, but too often we spend so much time on the good that we miss out on the best (see “[Don’t Be Like Martha](https://trustjesus.substack.com/p/dont-be-like-martha)”). In this previous post, I wrote about how we don’t want to live. In this post, I’ll write about what the Bible says about living a life wholly devoted to God.
Many of us wonder, “Are we fully serving God if we aren’t in full time ministry, if we aren’t a pastor/priest, missionary, or if we don’t work for a Christian ministry?” There are many ways we can serve God. Sometimes we are called to a Christian “job,” but other times we serve God in other ways.
> Let the word of Christ richly dwell within you, with all wisdom teaching and admonishing one another with psalms and hymns and spiritual songs, singing with thankfulness in your hearts to God. **Whatever you do in word or deed, do all in the name of the Lord Jesus, giving thanks through Him to God the Father**. (Colossians 3:16-17) {emphasis mine}
The most important thing is that everything we do has a godly focus. We should follow God’s design for marriage and family. We should disciple our children to know and grow in Jesus. We should witness to those with whom we come in contact. We should give to support those who are working in full-time ministry. Even our jobs can be done in service to the Lord, no matter how trivial or unrelated that job might seem.
> **Whatever you do, do your work heartily, as for the Lord rather than for men**, knowing that from the Lord you will receive the reward of the inheritance. It is the Lord Christ whom you serve. (Colossians 3:23-24) {emphasis mine}
I’m an employer. I see the work ethic, or more often the lack of work ethic, in people. I notice those who work hard and always give their best versus those who do the minimum they need to do to keep their job. When a person lets everyone around them know that they are a Christian and then they work harder than everyone else and they are willing to do the undesirable tasks that need to be done, this is noticed and is a good witness. Sadly, too often Christians are known for not working as hard and not going the extra mile. These Christians give Jesus and all Christians a bad name. Whatever job God has given you, do it to the best of your ability. Do the extra task; do the undesirable task; do the task that should’ve been done by someone else. Put in the extra effort even if nobody seems to notice. In most case, even if you aren’t praised, appreciated, or appropriately rewarded, people do notice and your witness is enhanced. In all cases, Jesus notices and you will be rewarded in heaven for representing Him faithfully.
> Whether, then, you eat or drink or whatever you do, **do all to the glory of God**. (1 Corinthians 10:31) {emphasis mine}
We are to do everything we do to the God’s glory. The way we work should glorify God. The way we eat and drink should glorify God. The way we do rest and entertainment should glorify God. The way we interact with others should glorify God. We were designed to glorify God.
Too often we get busy doing life and leave God out of it. It isn’t that we are doing some terrible sin, but it is always wrong to leave God out of our life. We can even do Christian ministry and get so busy doing “God’s work” that we leave God out of it. This can be disastrous and definitely will damage ministry effectiveness. In everything we do, we should listen to God’s leading, whether through Bible reading, prayer, or being still and listening.
> The plans of the heart belong to man,\
> But the answer of the tongue is from the Lord.\
> All the ways of a man are clean in his own sight,\
> But the Lord weighs the motives.\
****Commit your works to the Lord\
> And your plans will be established**. (Proverbs 16:1-3) {emphasis mine}
Part of doing everything in and to the Lord is changing our hearts and minds. Psalm 37 lists several actions we can take in serving the Lord and becoming more like Him.
> **Delight yourself in the Lord**;\
> And He will give you the desires of your heart.\
****Commit your way to the Lord**,\
****Trust also in Him**, and He will do it.\
> He will bring forth your righteousness as the light\
> And your judgment as the noonday.\
****Rest in the Lord and wait patiently for Him**;\
****Do not fret** because of him who prospers in his way,\
> Because of the man who carries out wicked schemes.\
****Cease from anger and forsake wrath**;\
> Do not fret; it leads only to evildoing. (Psalm 37:4-8) {emphasis mine}
If we delight in the Lord, commit our way to the Lord, trust in Him, rest in the Lord, and wait patiently for the Lord, we will be in the right mind to serve Him in all that we do. It will also help us avoid the things that draw us away from the Lord. We are called to not fret, to cease from anger, and to forsake wrath. Fretting, anger, and wrath hurt our witness and draw us away from God. They are a sign that our hearts are not in tune with God and that we need to turn back to Him. They are a sign that we are not trusting in Him nor are we following His will.
---
Sometimes believers wonder if they are succeeding in doing anything for the Lord because they are shy and not good at witnessing or because they have personal circumstances (like sickness of themselves or their family members) that don’t allow them to do much. That doesn’t mean there is nothing these believers can do. We can support those doing the mission of God. We can give money to support missionaries, churches, and Christian ministries. We can house a missionary while they are on break. We can do behind the scenes tasks like cleaning, accounting, organizing, planning, etc.
Most importantly, we can all pray. Prayer should be a constant part of every day, whether we are infirm and unable to leave our bed, whether we are so busy we don’t have five minutes to sit and take a break, or whether we are in full time Christian ministry. We can’t faithfully serve God without prayer.
> Beloved, **you are acting faithfully in whatever you accomplish for the brethren**, and especially *when they are* strangers; and they have testified to your love before the church. You will do well to send them on their way in a manner worthy of God. For they went out for the sake of the Name, accepting nothing from the Gentiles. Therefore **we ought to support such men, so that we may be fellow workers with the truth**. (3 John 1:5-8) {emphasis mine}
Anyone who supports those in ministry will receive similar rewards to those in ministry because they are all working together to fulfill God’s will.
> He who receives a prophet in the name of a prophet shall receive a prophet’s reward; and he who receives a righteous man in the name of a righteous man shall receive a righteous man’s reward. (Matthew 10:41)
We often feel like we are failing God. We feel that we are making zero difference for the kingdom. If you are not growing in your faith, knowledge, and relationship with God, there may be some truth in this, but we also may be listening to the accuser, Satan. Keep in mind that every little thing you do for Jesus or for others, because of your faith in Jesus, is counted as faithful service to Him.
> “Then the King will say to those on His right, ‘Come, you who are blessed of My Father, inherit the kingdom prepared for you from the foundation of the world. For I was hungry, and you gave Me something to eat; I was thirsty, and you gave Me something to drink; I was a stranger, and you invited Me in; naked, and you clothed Me; I was sick, and you visited Me; I was in prison, and you came to Me.’ Then the righteous will answer Him, ‘Lord, when did we see You hungry, and feed You, or thirsty, and give You something to drink? And when did we see You a stranger, and invite You in, or naked, and clothe You? When did we see You sick, or in prison, and come to You?’ The King will answer and say to them, ‘**Truly I say to you, to the extent that you did it to one of these brothers of Mine, even the least of them, you did it to Me**.’ (Matthew 25:34-40) {emphasis mine}
Turn to Jesus. Pray to Jesus. Read His word —the Bible. Make Him a part of everything you do. Follow His leading. Join God in what He is doing.
May God bless you and lead you in the path He designed you to take.
Trust Jesus.
-

@ fd78c37f:a0ec0833
2025-02-17 07:15:15
In this edition, we invited Kelvin from Bitcoin Chama to share how his community is leveraging Bitcoin to build a self-sustaining ecosystem in rural areas.
**YakiHonne**: Kelvin, thanks for joining us. Before we dive in, I'd like to take a moment to introduce YakiHonne and share a bit about what we do. YakiHonne is a decentralized media client built on the Nostr protocol that enables freedom of speech through technology. It empowers creators to create their own voice, assets, and features. It also allows features like smart widgets, verified notes, and focuses on long-form articles. Today, we’ll be diving into your community. So, let’s start—tell us a bit about yourself and what you do?
**Kelvin**:I'm Kelvin, the founder of Bitcoin Chama, a rule-based Bitcoin community with a mission to build a self-reliant Bitcoin circular ecosystem. How do we achieve this? We empower young people and our community economically by introducing accessible, low-resource projects that require minimal time and space to implement. We then encourage them to save their earnings in Bitcoin, promoting financial independence and long-term sustainability.
**YakiHonne**: Given Bitcoin’s increasing value, it’s almost like owning property, but in the form of a digital asset. That’s an incredible concept and a really great initiative!Now, let’s dive into today’s questions. What initially sparked your interest in Bitcoin, and what motivated you to build a community around it?
**Kelvin**:Initially, I didn’t know much about Bitcoin. But I had a friend who worked at Boda Boda. He was trying to save up his earnings to buy iron sheets and build a better house for his family. Since he didn't get enough money from Boda Boda, he saved whatever little he could in a bank, a savings group. Over the course of two years, when he finally went to withdraw his money, he realized that the price of iron sheets had increased by almost 100% Originally, he had planned to buy 30 iron sheets, but by the time he withdrew his savings, his money could no longer afford that many. For someone who works so hard to earn a living, this was a major setback.
**Kelvin**:That’s when I started thinking—how can we solve this problem? At the time, I didn’t know much about Bitcoin or how money really works. But seeing my friend struggle, I realized that the real issue wasn’t just rising prices, but the financial system itself.
**Kelvin**:Then, later that year, I was introduced to Bitcoin, and it suddenly clicked! If my friend had saved in Bitcoin instead of fiat, his purchasing power wouldn’t have been eroded. In fact, he might have even been able to afford nails, labor costs, or additional materials. That realization led me to create Bitcoin Chama—a community to help people save in Bitcoin and protect their hard earned money.
**YakiHonne**: It sounds like you were inspired by how Bitcoin’s value appreciates over time, much like an investment in land that continues to grow in value. That’s a truly powerful concept behind Bitcoin.Now, could you share how your community first got started and what strategies you used to attract members in the beginning?
**Kelvin**:Building a community from scratch—especially a Bitcoin community—isn’t easy, particularly in a rural area of Kenya where many people lack internet access and don’t even use smartphones. At first, my focus was purely on Bitcoin education. I would go out, meet people, and teach them about Bitcoin. But I soon realized that while knowledge is valuable, most people didn’t have the means to earn and save in Bitcoin.
**Kelvin**:That’s when I came up with a different approach. Instead of just educating people, I decided to create small projects that could generate income, sponsor these projects, and help them grow. Over time, as people started earning from these projects, they could begin saving their income in Bitcoin.
**Kelvin**:We’ve now been running Bitcoin Chama for almost a year—since May last year. The impact isn’t massive yet, but for a community just getting started, it’s been a significant step forward. Every small step matters, and while growth takes time, I believe these small beginnings will eventually lead to something big in the future.

**YakiHonne**: It's a wonderful start,So far, what challenges have you faced while building and growing the Bitcoin Chama community?
**Kelvin**:I don't have many challenges—just two main ones.The first challenge is poverty. Whenever you introduce someone to Bitcoin, you often have to explain its history. Imagine telling someone that in 2010, Bitcoin was worth about $1, and by 2013, its value had increased significantly. Fast forward to 2025, 15 years later, and Bitcoin is now worth around 13 million Kenyan shillings (about $100,000). When people hear this, they see it as a great opportunity to escape poverty. The problem is, they often perceive Bitcoin as free money, rather than understanding it as a long-term investment or financial tool. The second challenge is scamming. Many people think Bitcoin might be a scam. This is a common issue in many communities.
**YakiHonne**: Yes, especially the second challenge—people thinking Bitcoin is a scam. This is very common in many emerging communities. A lot of people feel that since they can't see Bitcoin physically, it’s not real, which leads them to doubt its authenticity.Finding a way to convince people of Bitcoin’s legitimacy is crucial.
So, what principles guide your community? And how do you maintain trust and reliability in your discussions?
**Kelvin**:So, in our community, I’ve discovered something—I’ve found saccos. Right now, I have two saccos(Chama) , and I intend to grow them over time. Within these two circles, we use the Machangura app. The app has an option for creating a clan, so we organize people into two saccos, forming two clans. We then add all members from each sacco into their respective clan. This setup ensures a trustless system. For example, if someone wants to withdraw money from their shared account or sell Bitcoin, the system notifies all members. This way, everyone stays informed, and people don’t have to feel insecure about the funds they have saved.
**YakiHonne**: So at least that’s how you maintain integrity, transparency, and trust within the community. So How does your community educate its members and keep them updated on Bitcoin developments?
**Kelvin**:I am the founder of Bitcoin Chama, and right now, I’m mostly focused on community activities. We usually hold meetups oftenly, but I wouldn’t say we focus entirely on Bitcoin only. Instead, our discussions are more about how to improve what we do, grow more, and build new projects. That’s the main focus for me at the moment. That said, I am planning to start physical Bitcoin lessons. Since Bitcoin Chama is located in my community, I know that a lot of people visit the area—many come here to shop and buy things. So, I plan to post a notice at the location, inviting new members who are interested in learning about Bitcoin. We’ll create a timetable so that people can come at specific times to attend lessons. Additionally, we’ll leverage our existing clients and brainstorm ways to make this work for a wider audience.
**YakiHonne**: It's still part of the education process,maybe not fully in-depth, but it’s still valuable. So, that’s actually a good thing. You guys are doing something very meaningful, which is great.The meetups also serve as a way to educate people about Bitcoin, making them an important part of the process. It’s definitely a solid approach.
**YakiHonne**: So, Kelvin, how does your community collaborate with the broader Bitcoin ecosystem? And what partnerships have you formed so far that have had the biggest impact on BitcoinTerminal?
**Kelvin**:We haven’t had any major collaborations yet. So far, we’ve been riding solo. We’ve had some support from friends and well-wishers, but we haven’t partnered with any major organizations yet.
**YakiHonne**: That’s okay! You guys will get there very soon, I’m sure of it. So far, in the process of building your community, what initiatives have you taken to promote the adoption of Bitcoin in your local environment?
**Kelvin**:Well, besides our existing clients, we have about three shops that currently accept Bitcoin payments. I’m still working on overcoming the major challenges we face while also trying to find ways to encourage people to use Bitcoin in their daily lives.
**Kelvin**:First, I need to support the people who are already part of our community, making sure they have the resources and knowledge they need. I don’t know if I’m fully answering the question, but this is what I’m working on. I’m not solely focused on growing a large community right now. Instead, I’m focused on quality growth—on educating people who truly understand Bitcoin, know how to use it, and grasp what it really means. My approach is to start small and expand gradually, ensuring that at each stage, people gain a deeper understanding of Bitcoin and how it can impact their lives.
**YakiHonne**: I’m sure you guys will succeed. You don’t necessarily have to start big, but I believe you’ll grow much faster than you expect. With the effort and passion you’re putting in, I have no doubt that Bitcoin Chama will expand significantly. So,moving on to my last question,what are your community’s goals for the next 6 to 12 months? And how do you see it evolving with Bitcoin’s development?
**Kelvin**:My goal for the next year is to continue the projects I’ve been working on. We have a community team that serves as a gathering point where people can come together, coordinate meeting times, and discuss Bitcoin and our future plans.
**Kelvin**:so far for example, we built and distributed 15 beehives to different young people in our community. They harvest honey, sell it, and save the earnings in Bitcoin. We piped free clean water which can be accessed by any member in our community, significantly improving daily convenience.

**Kelvin**:We are planning to build two chicken coops and provide chickens to two groups of five people each. They will raise chickens, sell eggs, and save their earnings in Bitcoin. Over time, we aim for each member to have their own chicken coop with a sustainable flock by the end of the year.

**Kelvin**:We plan to lease a piece of land for the women in our community to grow vegetables and sell them at the local market. Their earnings will also be saved in Bitcoin. If the project is profitable, we will reinvest in more land to expand vegetable farming.Additionally, we plan to lease 2-3 acres of land specifically for commercial maize farming. The maize will be sold for Bitcoin, and if we generate profits, we will expand the farmland.
**Kelvin**:Our long-term goal is to build a self-sufficient community, enabling it to operate independently and achieve sustainable development. This is also our core objective.
**YakiHonne**: I truly love all the ideas behind this. I admire the fact that you are giving back to the community and that people are experiencing real benefits from the Bitcoin ecosystem. This way, they have something positive and meaningful to say about Bitcoin.
**YakiHonne**: Thank you so much, Kelvin, for joining us today. We’ve reached the end of our interview, and I’m really happy to have had this conversation with you. We look forward to seeing Bitcoin Chama grow!
-

@ 8194da31:0f3badf3
2025-02-16 12:41:16
My stands on Plan B comments 👇
1- As a #Bitcoin maxi not your keys not your coins is non negotiable
2- Transferring your #Bitcoin to an ETF just because your are a fucking lazy ass is not an excuse
3- I do respect people who prefer the ETFs over #Bitcoin for 3 specific reasons:
A- you are over 70 years old
B- you are sovereign wealth fund or a Corporation
C- you will take advantage of the FIAT system by using IBIT as collateral to get more #Bitcoin
-

@ a95c6243:d345522c
2024-10-19 08:58:08
Ein Lämmchen löschte an einem Bache seinen Durst. Fern von ihm, aber näher der Quelle, tat ein Wolf das gleiche. Kaum erblickte er das Lämmchen, so schrie er:
"Warum trübst du mir das Wasser, das ich trinken will?"
"Wie wäre das möglich", erwiderte schüchtern das Lämmchen, "ich stehe hier unten und du so weit oben; das Wasser fließt ja von dir zu mir; glaube mir, es kam mir nie in den Sinn, dir etwas Böses zu tun!"
"Ei, sieh doch! Du machst es gerade, wie dein Vater vor sechs Monaten; ich erinnere mich noch sehr wohl, daß auch du dabei warst, aber glücklich entkamst, als ich ihm für sein Schmähen das Fell abzog!"
"Ach, Herr!" flehte das zitternde Lämmchen, "ich bin ja erst vier Wochen alt und kannte meinen Vater gar nicht, so lange ist er schon tot; wie soll ich denn für ihn büßen."
"Du Unverschämter!" so endigt der Wolf mit erheuchelter Wut, indem er die Zähne fletschte. "Tot oder nicht tot, weiß ich doch, daß euer ganzes Geschlecht mich hasset, und dafür muß ich mich rächen."
Ohne weitere Umstände zu machen, zerriß er das Lämmchen und verschlang es.
*Das [Gewissen](https://apollo-news.net/das-gewissen-in-corona-jahren-zum-tod-von-gunnar-kaiser/) regt sich selbst bei dem größten Bösewichte; er sucht doch nach Vorwand, um dasselbe damit bei Begehung seiner Schlechtigkeiten zu beschwichtigen.*
Quelle: https://eden.one/fabeln-aesop-das-lamm-und-der-wolf
-

@ d61f3bc5:0da6ef4a
2025-02-12 16:57:44
Micropayments on the Internet have been theorized for decades. However, it wasn’t until the emergence of Nostr that we’ve finally seen them deployed at scale. Nostr is still in its infancy, yet we are already witnessing an explosion of apps built on top of this open protocol. And most of them are featuring zaps! With the recent Primal 2.1 release, Nostr developers now have the option to enhance the experience for their users by integrating a Nostr-powered bitcoin wallet.
There is no doubt that micropayments add a new dimension to consumer apps. The incumbents have realized this and are rushing to add payments to their closed platforms. It won't be long before apps that don’t include built-in payments feel dated or outright broken. The question is not if apps of the future will have built-in payments, but what *kind* of payments they will be. Given that open networks have a tendency to win, our bet is that apps of the future will be powered by Bitcoin. Let’s see how Primal can help.
## Primal Wallet
Our vision for Primal Wallet is simple: deliver the smoothest transactional bitcoin wallet, endowed with expert Nostr skills. The wallet leverages Nostr’s open social graph as a de facto public lightning directory, while offering the highest level of user experience for Nostr’s rich content. For example, the user can scroll through the transaction list, select a zap, and drill straight into the conversation thread where the zap originated. The whole flow feels perfectly natural.

Since we launched Primal Wallet in December 2023, the user response has been incredibly positive. People love the idea of being able to post something on Nostr, get zaps from plebs around the world, then buy a coffee or a meal with those sats - all from the same app.
Having a bitcoin wallet with social skills resonated strongly with users, so Primal Wallet grew rapidly in popularity and usage. Since the launch, we have processed **1,338,460** transactions, with **238,916** just in the past month alone. This rivals some of the leading bitcoin wallets, and we are just getting started! We hear from many bitcoin OGs that they are using Primal Wallet as their transactional daily driver. Bullish.
All this is great, but something has been missing. Our users demanded the ability to connect Primal Wallet to other Nostr apps, so they can zap from anywhere in Nostr’s growing ecosystem.
## Zapping from Any Nostr App
For an existing Primal user, connecting the wallet to a new Nostr app can now be done in two clicks. Let’s take a look at how this is done from Olas, one of the most exciting new apps on Nostr:

Yes. Click, click. And you can start zapping!
Such smooth integration of payments is not available in any competing technology stack. Tradfi, fintech, crypto, etc., have nothing on Bitcoin and Nostr. Two clicks and your external wallet is connected. I’ll give you a moment now to allow for this new reality to settle in.
Primal enables you to connect any number of external apps and manage them from wallet settings:

Note that you can set your daily spend budget for each app or revoke its access at any time.
## How This Works
So, what is this sorcery? How does it work under the hood?
Connecting Nostr apps to external wallets is accomplished via the Nostr Wallet Connect protocol. It utilizes Nostr’s public relay infrastructure to enable communication between apps and wallets. You can learn more about this protocol [here](https://nwc.dev/), and access developer docs [here](https://docs.nwc.dev/).
The smooth, two-click connection setup UX is implemented through deep links between Primal and the external app. Here’s the deep link that the external app needs to call to invoke this feature:
```nostrnwc+primal://connect?appicon=[icon_url]&appname=[app_name]&callback=[callback_string]```
After the user clicks “Create Wallet Connection” in Primal, the Primal app calls the deep link defined in the callback, and passes the NWC connection string. That's all that the external app needs to make the wallet connection.
## What Comes Next?
The Nostr Wallet Connect protocol has been around for almost two years. Several bitcoin wallets implement it and many Nostr apps use it as their main way of enabling payments. What’s new with Primal 2.1 is the elevated user experience. Since Primal is a Nostr-powered wallet, it is aware of all the relevant metadata for each transaction: Nostr zaps, users, and the related events. Primal indexes the entire Nostr network, and now this is open to all Nostr apps that wish to integrate payments.
Nostr keeps expanding and getting better. Its openness enables us to build capabilities that lift all boats. The future is bright; I can’t wait to see how things evolve from here. 🍿🍿🍿
-

@ c11cf5f8:4928464d
2025-02-16 11:07:13
Let's hear some of your latest #Bitcoin purchases, feel free to include links to the #shops or #merchants you bought from too. Any good #deal we should know about?
If you missed our last thread, [here](https://stacker.news/items/880985/r/AG) are some of the items stackers recently spent and #zap #sats on.
originally posted at https://stacker.news/items/887305
-

@ 31da2214:af2508e2
2025-02-10 10:08:06
A global privacy nightmare is unfolding. The UK government secretly ordered Apple to backdoor encrypted iCloud storage worldwide—but Apple is legally forbidden from revealing this order, or they face criminal charges. This affects **2 BILLION USERS**.
Here’s the full story & why it’s part of a much bigger power grab. 🧵👇 [[Thread by @sayerjigmi on Thread Reader App](https://threadreaderapp.com/thread/1888287793123901896.html)]
---
## 1) The UK's Secret Order to Backdoor Encryption 🔓
Under the UK’s **Investigatory Powers Act (IPA) 2016**, Apple was served a **Technical Capability Notice (TCN)**—forcing them to create a backdoor for encrypted iCloud data.
This is not limited to UK users. It applies **worldwide**, meaning your private files are at risk, no matter where you live.
🔗 [@macworld report](https://macworld.com/article/260251…)
---
## 2) Apple’s Legal Gag Order 🤐
Apple is legally forbidden from revealing this order. If Apple even acknowledges that the UK issued this demand, they could face **criminal charges**.
This is a secret government order with **global consequences**.
---
## 3) A Global Threat to Encryption 🌍
This isn’t just about the UK (although they are leading the charge in threatening citizens in OTHER countries for violating BRITISH censorship laws!).
If Apple complies, every government in the world will demand the same access—from the US to China to authoritarian regimes.
**End-to-end encryption would be effectively dead.**

---
## 4) Apple’s Dilemma: Comply or Withdraw? 🚪
Apple has two choices:
- **Comply** & weaken encryption globally.
- **Refuse** & withdraw services from the UK.
WhatsApp & Signal faced similar threats last year and vowed to leave the UK rather than compromise security. Will Apple do the same?
🚨 Watch the heated discussion between Damian Collins, director of CCDH (architect of the UK Online Safety Bill), and Signal’s CEO: [YouTube Link](https://www.youtube.com/watch?v=E--bVV_eQR0)
---
## 5) Why This Matters: Encryption Protects Everything 🔐
- **Encryption protects financial data, health records, personal security (e.g., where you live or work), and private conversations.**
- Governments always say they need backdoors for national security—but history shows they’re used for **mass surveillance**.
- Once a backdoor exists, hackers, rogue employees, and other governments WILL find it.
---
## 6) The UK’s War on Encryption 🛡️
The UK is trying to dominate the global surveillance & censorship landscape.
While the US, Canada, Australia, and New Zealand have supported strong encryption to mitigate cyber threats, the UK stands alone in its war on encryption.
---
## 7) The Free Speech Crackdown 🗣️
This isn’t just about encryption—it’s about **control**. Governments worldwide are criminalizing dissent and censoring free speech, using tech companies as their enforcement arms.
🔗 [GreenMedInfo Report](https://greenmedinfo.com/content/breaking-international-governments-are-criminalizing-free-speech-through-glo-3)
---
## 8) The Global Censorship Agenda 🌐
This ties into the UK’s broader, **GLOBALLY ORCHESTRATED censorship agenda**:
- The **Online Safety Bill** criminalizes encrypted messaging & forces platforms to scan private messages.
- The **Digital Services Act (EU)** gives governments the power to shut down online content they don’t like.
- Leaked US-UK documents show direct coordination between UK intelligence & the Biden administration to censor online speech.
---
## 9) The Architects of Speech Policing: CCDH 🕵️♂️
The **Center for Countering Digital Hate (CCDH)**—a UK intelligence-backed group—has been a driving force behind global censorship.
They were caught:
- Running “black ops” to suppress RFK Jr.’s presidential campaign.
- Leading the "Kill Musk’s Twitter" directive, trying to shut down free speech on X.
- Labeling 12 private US citizens as the “Disinformation Dozen” to justify mass censorship.
🔗 [Reclaim the Net Investigation](https://reclaimthenet.org/black-ops-how-a-us-uk-censorship-group-targeted-rfk-jr-to-stifle-dissent)
---
## 10) The Pattern is Clear: Surveillance + Censorship 🔍
1️⃣ Governments create "safety" laws to justify surveillance.
2️⃣ They pressure tech companies to enforce censorship.
3️⃣ Once encrypted services are gone, nothing is private anymore.
This is the biggest attack on digital freedom in history.
---
## 11) What Can We Do? 💪
- **Support companies** that refuse to build backdoors (Signal, ProtonMail, etc.).
- **Push for legislation** that protects encryption & free speech.
- **Stay informed** & spread awareness—governments count on secrecy to push these policies through.
- Follow and support privacy and internet freedom organizations such as:
- [@G_W_Forum](https://twitter.com/G_W_Forum)
- [@FFO_Freedom](https://twitter.com/FFO_Freedom)
- [@ReclaimTheNetHQ](https://twitter.com/ReclaimTheNetHQ)
---
## 12) The Ultimate Power Grab: Controlling All Digital Communication 📱
If Apple caves, every other platform will be forced to follow.
📌 The UK’s Global Playbook:
- A backdoor to encryption (Investigatory Powers Act).
- A government-linked censorship network (CCDH).
- A speech-policing framework that extends worldwide (Online Safety Bill).
This is a global effort to control what people can say, share, and store privately.
---
## 13) The Final Stand: Will You Comply or Resist? ⚔️🚨
They want total control—your speech, your privacy, your elections. This is the defining battle of our time.
🇬🇧 UK’s war on encryption = Global censorship blueprint.
🗳️ Election meddling + speech policing = A hijacked democracy.
📢 **Digital freedom is human freedom.**
Stand up. Speak out. Fight back. 🏴☠️🔥
🔗 [LEARN MORE](https://sayerji.substack.com/p/crossfire-of-democracy-uk-labour?utm_source=publication-search)
---
*Full thread preserved by [Thread Reader App](https://threadreaderapp.com/thread/1888287793123901896.html).*
-

@ 5120f085:368927c9
2025-02-16 09:33:35
18Bet là một nền tảng giải trí trực tuyến nổi bật, mang đến cho người chơi một loạt các trò chơi hấp dẫn và thú vị. Nền tảng này được thiết kế để phục vụ nhu cầu giải trí đa dạng của người dùng, từ những người yêu thích thử thách cho đến những ai muốn tìm kiếm một không gian thư giãn. Với các trò chơi có tính chiến lược cao, người chơi có thể thỏa sức thể hiện kỹ năng và tư duy của mình, đồng thời khám phá những cơ hội mới mà 18Bet mang lại. Nền tảng này luôn đổi mới để đáp ứng nhu cầu của người chơi, tạo ra những trải nghiệm không ngừng thay đổi và đầy hấp dẫn.
Một trong những điểm mạnh của <a href="https://18bet.top
">18BET</a> chính là giao diện người dùng thân thiện và dễ sử dụng. Với thiết kế trực quan và tổ chức hợp lý, người chơi có thể dễ dàng tìm kiếm trò chơi yêu thích và tham gia mà không gặp phải bất kỳ khó khăn nào. Dù bạn là người mới bắt đầu hay đã có nhiều kinh nghiệm, bạn vẫn sẽ cảm thấy thoải mái khi tham gia vào nền tảng này. 18Bet tối ưu hóa mọi tính năng để mang đến một trải nghiệm mượt mà và liền mạch, giúp người chơi tận hưởng những giây phút giải trí mà không phải bận tâm về việc tìm kiếm hoặc điều hướng qua các mục khác nhau.
Về bảo mật, 18Bet luôn đặt sự an toàn của người chơi lên hàng đầu. Mọi giao dịch và thông tin cá nhân đều được bảo vệ bằng các công nghệ mã hóa tiên tiến, đảm bảo rằng người dùng không phải lo lắng về việc rò rỉ dữ liệu. Các giao dịch tài chính diễn ra nhanh chóng và an toàn, giúp người chơi nạp và rút tiền một cách dễ dàng và thuận tiện. 18Bet cam kết tạo ra một môi trường bảo mật tuyệt đối, nơi người chơi có thể thoải mái trải nghiệm mà không phải lo ngại về các vấn đề bảo mật. Điều này giúp xây dựng sự tin tưởng mạnh mẽ giữa nền tảng và người sử dụng.
Ngoài các trò chơi giải trí, 18Bet cũng tổ chức các sự kiện đặc biệt với các giải thưởng hấp dẫn, tạo cơ hội cho người chơi thử thách bản thân và đạt được những thành tựu ấn tượng. Các sự kiện này luôn được thiết kế để kiểm tra khả năng và chiến lược của người chơi, đồng thời mang lại sự kịch tính và thú vị. 18Bet không ngừng cập nhật các sự kiện mới để người chơi luôn có cơ hội tham gia vào những thử thách hấp dẫn. Những sự kiện này không chỉ là cơ hội để giành giải thưởng mà còn là dịp để người chơi giao lưu, học hỏi từ những người chơi khác và nâng cao kỹ năng của mình.
Cuối cùng, 18Bet tạo ra một cộng đồng người chơi sôi động và thân thiện, nơi mọi người có thể chia sẻ kinh nghiệm, thảo luận về các chiến lược và tạo dựng mối quan hệ mới. Nền tảng này không chỉ cung cấp các trò chơi thú vị mà còn là nơi người chơi có thể học hỏi từ nhau và phát triển kỹ năng chơi game. Các diễn đàn và cuộc trò chuyện trên 18Bet là những không gian tuyệt vời để người chơi kết nối và giao lưu. Điều này tạo ra một môi trường giải trí không chỉ hấp dẫn mà còn gắn kết, giúp người chơi cảm thấy như là một phần của cộng đồng lớn hơn.
-

@ 5120f085:368927c9
2025-02-16 09:32:46
KuBank là một nền tảng giải trí trực tuyến hiện đại, nổi bật với một bộ sưu tập trò chơi đa dạng và thú vị. Người chơi sẽ dễ dàng tìm thấy những trò chơi phù hợp với sở thích cá nhân, từ các trò chơi chiến thuật cho đến các lựa chọn giải trí nhẹ nhàng hơn. KuBank luôn nỗ lực mang đến một không gian giải trí đầy màu sắc, nơi người dùng có thể thư giãn và thử thách bản thân. Nền tảng này không chỉ đơn thuần là nơi để chơi game mà còn là nơi để khám phá những cơ hội mới và kết nối với cộng đồng người chơi trên toàn thế giới.
Một trong những điểm nổi bật của <a href="https://kubank-vn.com
">KUBANK</a> chính là giao diện người dùng rất thân thiện và dễ sử dụng. Dù bạn là người mới hay đã có kinh nghiệm, bạn đều có thể dễ dàng điều hướng qua các phần của nền tảng để tìm ra trò chơi yêu thích. Các tính năng trên KuBank được thiết kế một cách trực quan và dễ hiểu, giúp người chơi không cảm thấy bị bỡ ngỡ khi lần đầu tham gia. Với thiết kế đơn giản nhưng đầy tinh tế, người chơi có thể nhanh chóng tham gia các trò chơi mà không mất thời gian làm quen. Mỗi trải nghiệm trên KuBank đều được tối ưu hóa để mang đến sự tiện lợi tối đa và cảm giác thoải mái cho người tham gia.
Bảo mật là yếu tố được KuBank đặt lên hàng đầu, giúp người chơi có thể yên tâm khi tham gia vào nền tảng. Mọi giao dịch tài chính và thông tin cá nhân đều được bảo vệ bằng công nghệ mã hóa tiên tiến, đảm bảo sự an toàn tuyệt đối cho người sử dụng. Người chơi không phải lo lắng về việc rò rỉ dữ liệu cá nhân hay gặp phải các vấn đề bảo mật khi tham gia vào KuBank. Ngoài ra, nền tảng này còn cung cấp các phương thức thanh toán nhanh chóng và an toàn, giúp người chơi có thể nạp và rút tiền một cách dễ dàng và thuận tiện mà không gặp phải bất kỳ sự cố nào. KuBank cam kết cung cấp một môi trường giải trí an toàn, đáng tin cậy cho tất cả người dùng.
KuBank không chỉ nổi bật với các trò chơi hấp dẫn mà còn tổ chức nhiều sự kiện đặc biệt để người chơi có thể thử thách bản thân và nhận những phần thưởng giá trị. Các sự kiện này được thiết kế nhằm mang đến những thử thách thú vị và tạo cơ hội để người chơi cạnh tranh với nhau. Bằng cách tham gia vào các sự kiện, người chơi không chỉ có thể giành chiến thắng mà còn có thể giao lưu và kết nối với cộng đồng người chơi trên toàn thế giới. Những sự kiện này luôn được tổ chức một cách chuyên nghiệp, với các quy định rõ ràng và minh bạch, tạo ra một sân chơi công bằng cho tất cả mọi người.
Cuối cùng, KuBank còn xây dựng một cộng đồng người chơi năng động và thân thiện, nơi người tham gia có thể giao lưu, chia sẻ kinh nghiệm và học hỏi từ nhau. Các diễn đàn, cuộc trò chuyện và các nhóm thảo luận trên nền tảng này tạo ra một môi trường giao lưu tuyệt vời, giúp người chơi có thể kết nối và tìm hiểu thêm về các chiến lược chơi game. Đây là nơi mà mọi người không chỉ tham gia vào các trò chơi mà còn tạo ra những mối quan hệ mới và chia sẻ những khoảnh khắc giải trí thú vị. KuBank đã thành công trong việc tạo ra một không gian giải trí kết nối người chơi, thúc đẩy sự sáng tạo và hợp tác.
-

@ 5120f085:368927c9
2025-02-16 09:31:48
S8Bet là một nền tảng giải trí trực tuyến nổi bật, mang đến cho người chơi những trải nghiệm đầy thú vị và hấp dẫn. Với một bộ sưu tập các trò chơi phong phú, S8Bet đáp ứng nhu cầu của những ai yêu thích sự thử thách và đam mê những trò chơi giải trí. Từ các trò chơi mang tính chiến thuật đến những lựa chọn thú vị khác, người chơi có thể tìm thấy một không gian giải trí lý tưởng để thư giãn và khám phá các cơ hội mới. Nền tảng này không ngừng đổi mới và sáng tạo để mang đến cho người dùng những giây phút thư giãn tuyệt vời và không thể quên.
Một trong những yếu tố quan trọng khiến <a href="https://s8bet.org">S8BET</a> thu hút người chơi chính là giao diện người dùng rất dễ sử dụng và trực quan. Với thiết kế rõ ràng và dễ dàng điều hướng, người chơi có thể nhanh chóng tìm thấy các trò chơi yêu thích mà không gặp phải bất kỳ khó khăn nào. Các tính năng của S8Bet được bố trí hợp lý, giúp người chơi dễ dàng tham gia và tận hưởng mọi trò chơi một cách mượt mà. Mỗi phần của nền tảng đều được tối ưu hóa để mang đến một trải nghiệm liền mạch, không làm gián đoạn niềm vui của người tham gia. Dù là người mới hay đã có kinh nghiệm, mọi người đều có thể dễ dàng làm quen với S8Bet mà không cảm thấy bị lúng túng.
Bảo mật và an toàn là hai yếu tố hàng đầu mà S8Bet luôn chú trọng. Mọi thông tin cá nhân và tài chính của người chơi được bảo vệ bằng công nghệ mã hóa tiên tiến, đảm bảo rằng mỗi giao dịch đều diễn ra một cách an toàn và bảo mật. Người chơi có thể hoàn toàn yên tâm khi tham gia vào nền tảng này, biết rằng dữ liệu của mình được xử lý một cách nghiêm ngặt và bảo mật tuyệt đối. S8Bet cũng cung cấp nhiều phương thức thanh toán nhanh chóng và an toàn, giúp người dùng dễ dàng nạp và rút tiền mà không gặp phải các vấn đề không mong muốn. Sự bảo vệ an toàn này tạo nên một môi trường đáng tin cậy, nơi người chơi có thể tập trung vào những giây phút giải trí mà không phải lo lắng về các mối đe dọa bảo mật.
Ngoài những trò chơi giải trí, S8Bet còn thường xuyên tổ chức các sự kiện đặc biệt, tạo cơ hội cho người chơi thử thách bản thân và giành những phần thưởng giá trị. Những sự kiện này không chỉ mang đến những thử thách mới mà còn khuyến khích người tham gia giao lưu, kết nối và học hỏi từ những người chơi khác. S8Bet luôn cập nhật các sự kiện mới để người chơi có thể tham gia vào những cuộc thi đầy kịch tính và nhận được những phần thưởng hấp dẫn. Điều này không chỉ giúp người chơi cảm thấy phấn khích mà còn tạo cơ hội để họ thể hiện kỹ năng và tạo dựng được thành tích cá nhân ấn tượng.
Cuối cùng, S8Bet xây dựng một cộng đồng người chơi sôi động, nơi mà các thành viên có thể chia sẻ kinh nghiệm, giao lưu và học hỏi từ nhau. Các cuộc trò chuyện, diễn đàn và các nhóm thảo luận trên nền tảng giúp người chơi kết nối và tương tác với những người có cùng sở thích. Điều này tạo ra một không gian giải trí không chỉ dành riêng cho các trò chơi mà còn cho những mối quan hệ và sự hỗ trợ lẫn nhau. S8Bet không chỉ là nơi để thư giãn mà còn là nơi để phát triển kỹ năng và tạo ra những kết nối xã hội mạnh mẽ.
-

@ 20e17dd0:2ae504d7
2025-02-01 21:14:41
## 1. Hardware Selection
It is important to select adequately the hardware that will be used to build your Node. The Node will be running 24h /7 days and will countain your lightning channels. It is important to use high quality hardware and spend the extra dollars for it.
At the time of building my Node, there was a shortage of Raspberry Pi and I was looking for an optimal alternative. I have decided to go ahead and purchase a used Mac Mini (late 2012).
It is recommended NOT to purchase a Mac Mini newer than 2012 (i.e 2014 and up) because Apple started to solder the RAM to the Logic Board after 2012. The Mac Mini Late 2012 is the last model that is fully customizable with SSD and RAM upgrades.
Here is the list of hardware that will be used in this build:
* 2 x 8G DDR3L Sodim 1600Mhz 1.35V
* 1 x Mac Mini (Late 2012) 2.5Ghz
* 1 x Samsung Evo 870 1Tb SSD ^
^ Note: As discussed earlier, it is important to select hardware of quality. I had initially purchased a low cost 2Tb SSD but it failed while trying to download the Bitcoin blockchain.
##2. Hardware Upgrade
To facilitate the upgrade of the hardware, you will need the proper tools to remove some T6 & T8 screws.
Here are the steps to dismount the few components of the Mac Mini to upgrade the hardware:
1. Unplug the Mac Mini.
2. Turn it upside down with the black cover facing up.
3. Put your thumbs in the 2 grooves of the cover and turn the piece counterclockwise.

4. Remove the cover.
5. Remove 3 x T6 screws holding the fan.

6. Lift the fan and disconnect the connector by pulling gently straight up the wires.
7. Remove 1x T6 screw at the bottom of the shroud (black plastic piece on the left of the fan).

8. Remove the shroud by holding the top right part with your fingers and turning it clockwise.

9. Remove 4 x T8 screws of the grill WIFI cover.

10. The top of the grill is mounted under the Mac Mini case. Lift gently the bottom of the grill and pull towards yourself to remove the grill.
11. Move the grill aside, you do not have to disconnect the WIFI sensor, just be careful.
### 2.1 Upgrading the RAM
The RAM is visible and accessible from the moment you remove the cover. Simply release each RAM by releasing the clips on the side. Once disengaged, the RAM will spring in a 45-degree angle. Remove it and put back the upgraded RAM at a 45 degree angle and push it down for it to clip.
### 2.2 Upgrading the SSD
It is important to note that the Mac Mini has 2 SSD bay. They are referred to as the “upper bay” and “lower bay”. Since we have flipped the Mac Mini upside down to remove the bottom cover, the “upper bay” is located under the “lower bay”.
The “upper bay” is mounted with an expansion kit that holds the SSD in position whereas the “lower bay” SSD is simply resting on top of the “upper bay” SSD.
One important aspect is that the connecting cables for the “lower bay” and “upper bay” SSD are not the same. The “upper bay” SSD connects on the logic board on the right and the “lower bay” SSD cable connects on the left. Removing the “upper bay” SSD requires removing the logic board therefore requires more work. It is recommended to install the new SSD in the “lower” bay. Here are the 2 scenarios:
1.Your Mac Mini has already a Hard Drive installed in the “lower” bay. In that case insert a credit card under the HD and gently pry it upwards. You will be able to slide it out of the bay. The reason to pry it gently is because since there is no “upper” bay drive, The HD is being held in the air by 2 screws on the side that are aligned in 2 holes in the Mac Mini case. Once the HD is removed, transfer the connecting cable and the 2 screws to the new SSD. To put back the new SSD, it is easier to rotate the Mac Mini 90 degree and have the mounting holes at the bottom and use the gravity to get the 2 mounting screws in the holes. After, connect the connector to the logic board.
2. Your Mac Mini has already a Hard Drive installed in the “upper bay”? Leave it there, you do not need mounting screws, but you need a new connecting cable. You will have to buy a “lower bay connector”. Once installed on the SSD, slide the SSD on top of the original one. The connector will plug on the logic board on the left of the “upper bay” SSD connector.
A good preparation would be to go in “Disk Utility” menu on MacOS and search for “upper” or “lower” position before starting to disassemble.
Reassemble everything and you are done.
-

@ b17fccdf:b7211155
2025-02-01 18:41:27
#### **Next new resources about the MiniBolt guide have been released**:
---
* 🆕 **Roadmap**: [LINK](https://github.com/orgs/minibolt-guide/projects/1)
* 🆕 **Dynamic Network map**: [LINK](https://app.diagrams.net/?tags={}&lightbox=1&target=blank&highlight=0000ff&edit=_blank&layers=1&nav=1&title=networkmap.drawio.png#Uhttps://raw.githubusercontent.com/minibolt-guide/minibolt/main/resources/networkmap.drawio.png)
* 🆕 **Nostr community**: [LINK](https://habla.news/c/[n]addr1qqyy66twd9px7mr5qyf8wumn8ghj7mmxve3ksctfdch8qatzqgstzl7vmurm5gu87qutx3pxwgxddrg39huj809zhmv03scfkus3z4grqsqqpphk2j0aff) < ~ REMOVE the "[]" symbols from the URL (naddr...) to access
* 🆕 **Linktr FOSS** (UC) by [Gzuuus](nostr:npub1gzuushllat7pet0ccv9yuhygvc8ldeyhrgxuwg744dn5khnpk3gs3ea5ds): [LINK](https://linktr.minibolt.info)
* 🆕 **Donate webpage**: 🚾 [Clearnet LINK](https://donate.minibolt.info) || 🧅 [Onion LINK](http://3iqm7nidexns5p6wmgc23ibgiscm6rge7hwyeziviwgav4fl7xui4mqd.onion/apps/Li3AtEGDsqNmNddv6rX69taidm3/pos)
* 🆕 **Contact email**: [hello@minibolt.info](mailto:hello@minibolt.info)
---
Enjoy it MiniBolter! 💙
-

@ 04ed2b8f:75be6756
2025-02-15 23:08:57
Every action you take, every decision you make, every battle you fight—it all matters. You may not see it now, but what you do today will ripple far beyond this moment. Your choices carve your legacy, your discipline shapes your destiny, and your willpower determines how you are remembered.
#### **The Weight of Every Choice**
Most people live like their actions die with them. They don’t realize that their words, their work, and their struggles leave a mark—on others, on history, on the future itself. The weak make excuses, thinking no one will remember their failures. But the strong understand: what they do now is what will be spoken of long after they’re gone.
- **Greatness Is Not Accidental** – Legends are not made by chance; they are forged by relentless effort, battle after battle, day after day.
- **Your Discipline Defines You** – What you do in private, in training, in the moments no one sees, builds the warrior you become in battle.
- **Your Struggles Are Not in Vain** – Every hardship you overcome strengthens the echo of your existence. The pain, the fight, the endurance—it all creates an unshakable foundation that future warriors will stand on.
#### **Live Like You Will Be Remembered**
Cowards hide in comfort, waiting for the world to give them something. But warriors? They seize life with both hands and leave behind something greater than themselves.
- **Fight for something bigger than yourself.** Your legacy isn’t about what you take—it’s about what you leave behind.
- **Take action like it matters—because it does.** Every move you make today is carving the future you will walk into.
- **Refuse to be forgotten.** The weak fade into history, but the strong leave behind echoes that never die.
#### **What Will Your Echo Be?**
Your life is happening now. Every moment, you are creating the story that will be told about you. Will it be a story of strength, resilience, and purpose? Or will you let yourself fade into the background, just another name lost to time?
**Stand up. Move forward. Fight harder. Because what you do in life will echo in eternity.**
-

@ bf6e4fe1:46d21f26
2025-01-31 01:51:03
{"title":"test","content":"test"}
-

@ 19220736:7578e0e9
2025-02-15 14:13:33
- The UK’s Serious Fraud Office issued its first Unexplained Wealth Order (UWO) in January 2025.
- UWOs force individuals to justify wealth or risk asset seizure, with expanded powers since 2023.
- Critics warn of its potential for abuse.
This January, the UK's Serious Fraud Office (SFO) [obtained](https://www.gov.uk/government/news/sfo-secures-first-unexplained-wealth-order-in-100m-fraud-case) its first Unexplained Wealth Order (UWO) to recover a Lake District property valued at approximately £1.5 million. The property is owned by Claire Schools, ex-wife of solicitor Timothy Schools, who was sentenced to 14 years in prison in 2022 for fraud. The UWO requires Ms. Schools to explain within 28 days how the property was acquired; failure to do so may lead to its seizure. This marks the Serious Fraud Office's first use of a UWO.
[UWOs](https://www.legislation.gov.uk/ukpga/2002/29/contents) are legal tools first introduced under the Proceeds of Crime Act in 2002, specifically in sections 362A to 362T, as amended by the Criminal Finances Act of 2017. UWOs empower the High Court (or the Court of Session in Scotland) to require individuals to explain the origin of assets over 50,000 GBP that appear disproportionate to their known income. If the individual cannot provide a satisfactory explanation, the assets may be subject to seizure by the government.
UWOs are civil orders and do not require a criminal conviction. Failure to comply with a UWO can make the property presumed recoverable in civil recovery proceedings. Additionally, the court may issue an interim freezing order to prevent the property from being dissipated while under investigation.
In 2023 this law was [updated](https://www.gov.uk/government/publications/economic-crime-transparency-and-enforcement-bill-2022-overarching-documents/factsheet-unexplained-wealth-order-reforms-web-accessible) to expand the scope of UWOs to apply to more individuals, lowering the burden of proof required to apply for UWOs, and allowing faster property seizure if an individual fails to respond or provide a satisfactory explanation. The process echoes witch trials that once accused, you must prove your innocence or forfeit.
The use of a UWO in this case highlights a growing effort by the UK to tackle illicit wealth, but it also raises concerns about the potential for abuse of power.
As explained by Kingsly Napley in [Lexology](https://www.lexology.com/library/detail.aspx?g=287a5b60-5612-4093-ba8f-272252c44cb5) *“The wide range of parties that can be targeted by UWOs, the reverse burden of proof that applies and the pressure on UK authorities to be seen to do more to stamp out suspected dirty money, means that many people may find themselves fighting to retain their assets.”*
With the use of more UWOs to come in the future, the real impact will continue to unfold in the coming years.
-

@ 59c2e15a:d25e6e8d
2025-01-27 02:29:42
*Note: I originally wrote these essays on bitcoin and yoga in 2022 after completing my yoga teacher training and going deep down the bitcoin rabbit hole. I then published them to my [Ghost blog](https://the-bitcoin-yogi.ghost.io/) in 2023. I decided to repost them here on Nostr to start 2025 to further spread the wisdom and timelessness that bitcoin and yoga share. I split my original essay into seven parts, and I will add an eighth comparing yoga and Nostr. I hope you enjoy part one - namaste!*
[**Part I**](https://the-bitcoin-yogi.ghost.io/bitcoin-and-yoga-part-1/)**:** Bitcoin and Yoga Shared Values
[**Part II**](https://the-bitcoin-yogi.ghost.io/bitcoin-and-yoga/)**:** Mythical/Mystical Origins
[**Part III**](https://the-bitcoin-yogi.ghost.io/bitcoin-and-yoga-pathways-to-individual-sovereignty-part-iii/)**:** Evolution of Money and Yoga
[**Part IV**](https://the-bitcoin-yogi.ghost.io/ashtanga-yoga-comparing-the-8-limbs-of-yoga-elements-of-bitcoin/)**:** Ashtanga Yoga - The Eight Limbs of Yoga (limbs 1-2)
[**Part V**](https://the-bitcoin-yogi.ghost.io/ashtanga-yoga-comparing-the-8-limbs-of-yoga-elements-of-bitcoin-2/)**:** Ashtanga Yoga - The Eight Limbs of Yoga (limbs 3-8)
[**Part VI**](https://the-bitcoin-yogi.ghost.io/bitcoin-is-dharma/): Bitcoin is Dharma
[**Part VII**](https://the-bitcoin-yogi.ghost.io/himalayan-kriya-yoga-and-bitcoin/)**:** Himalayan Kriya Yoga
**Introduction**
With each passing day, month, and year, it feels as though our human civilization is becoming more dysfunctional, untethered, and unsustainable. Individuals are working harder, longer hours, yet most remain stuck in place, goals farther from reach. We live in a world where many have outsourced the most critical task that has enabled humans to prosper – critical thinking. I challenge each one of you to remove preconceived notions you might have about Bitcoin or Yoga before reading this series. I invite you to enter with an open mind. Think for yourself – you are welcome to agree or disagree with the information and arguments I put forth.
I also encourage you to go beyond thinking – *feel*. Use your intuition to understand if the way you’re living your day-to-day life feels good to you, or if you have sense, an inner knowing that something is off with our society today – that there can be a better way. If you open your heart and mind to receiving new information, there is potential to motivate yourself to change your thoughts and behaviors for more aligned action towards individual sovereignty. Every individual can choose freedom and independence. Yet it has become increasingly difficult to live a life of freedom due to the fiat system of inflation and the many distractions that keep us from going inward. After deep study and reflection, I believe bitcoin and yoga both provide the individual control over their own life journey, and frameworks to understand our connection to self and others.
I'm excited to share what I have found in my own personal experience, and hope to spark curiosity within you to follow your passion. This writing is intended for anyone seeking tools to lead a life of freedom, make positive changes and deepen your understanding of self. In addition, it is written for yogis who want to learn about bitcoin, bitcoiners who want to learn more about yoga, and anyone who is interested in a fundamental understanding of these topics that I believe contain the potential to transform your life.
**Part I: Bitcoin and Yoga Shared Values**
Bitcoin and yoga share many fundamental values with one another and provide deep wisdom on guiding individuals towards living better and more meaningful lives. Ultimately bitcoin and yoga share the goal of individual liberation, freedom from suffering, and a deep inner, lasting peace in Being. In yoga, this state is called *moksha* or *samadhi*. I believe everyone has a true essence, an inner being that knows what is best. However, our external environment and our own conscious mind push us away from this serenity, leading to regrets about the past or anxieties about the future. This perspective of linear time and our own individual stories and identity damage our ability to stay present in the Now, leading to endless distractions. In similar ways, bitcoin and yoga provide us insight for an individual’s path to inner peace, as well as for humanity’s path to collective peace and prosperity.
*Energy*
At the most elemental level, energy is the force underlying both bitcoin and yoga. Energy is the universal currency of life. We would not exist without energy. We require physical energy to fuel our cells and bodies to perform essential tasks like breathing, circulation, digestion, and movement. We perceive many forms of energy such as light or sound waves, yet there are many energy wavelengths we are not able to or are not trained to perceive.
Bitcoin is powered by physical energy in the real world in a process that secures the network and unlocks new bitcoin for distribution, a process commonly referred to as mining. Interestingly, 100 years ago, Henry Ford pushed for an energy-linked currency measured in kilowatt hours that could bring peace after a brutal World War, as seen in the New York Tribune headline and article December 4, 1921: ‘Ford Would Replace Gold with Energy Currency and Stop Wars’ (i). It took another century, but mankind has finally developed a digitally-native currency tied to the physical world through energy expenditure – bitcoin.
Yoga is similarly rooted in energy that individuals tap into through breathwork, physical movement and meditations practices. This life-force energy is known in Sanskrit as *prana*. Prana is not bound by time or space, and it flows through individuals in over 72,000 *nadis*, or channels. There are three main *nadis* - the first is *ida*, our left side body which corresponds to the feminine, receiving energy, or the moon. On the right side is *pingala*, relating to our masculine, giving energy, or the sun. The central *nadi* runs through our *shushumna*, linking our seven main energetic centers, known as *chakras*. These chakras run from the base of the tail bone, up through the spine and the top of the head. Each chakra has a name, a color and key characteristics that can often become blocked through negative emotion, trauma or stress in the body. Different yogic practices target these energy centers to unlock what is stuck and enable energy to more freely flow through us in an open exchange with the earth and out the universe. This energy is ever-present; one need only to tap into this energy, feel it and utilize it for the strengthening of one’s inner being that then radiates outwards on others in your life. The energetic experience and upward surge can also be referred to as *kundalini* energy, a creative power of divine feminine energy that originates in the *muladara* chakra at the base of the spine.
Depiction of our chakras and nadis ([image source](https://ishtayoga.co.za/prana-and-the-chakras/?ref=the-bitcoin-yogi.ghost.io))
*Proof of Work*
In both Bitcoin and Yoga, "proof of work" is required to operate, practice and move forwards. In the Bitcoin network as described in the original [white paper](https://bitcoin.org/bitcoin.pdf?ref=the-bitcoin-yogi.ghost.io), miners contribute tangible energy towards running a hashing algorithm on a computer – [SHA256 ](https://armantheparman.com/mining/?ref=the-bitcoin-yogi.ghost.io)– to earn the right to add the next block to the blockchain and collect both the coinbase and transaction fee reward (ii). The work is difficult to produce but easy to validate by others. Miners are collecting all of the valid peer-to-peer transactions being propagated to the network and establishing them as truth into the distributed ledger. The rules in bitcoin’s code incentivize honest behavior from miners through unforgeable costliness – if a miner were to lie about any of the transactions it includes in a block, independent nodes in the network would reject the block, and the miner would have lost all the real resources it expended to solve the proof of work calculation.
Example of an ASIC - a specialized computer solely dedicated to mining bitcoin.
In yoga, dedicated work is needed to learn the *asanas,* postures, and practice for oneself; you won’t just be able to go upside down or flow through sun salutations without first learning proper alignment and breathing techniques. An individual needs to conscious decision to work on a daily yoga practice that requires energy to flow. There are several ways to work on your yoga practice beyond physical movement; these include *bhakti yoga* (devotion/prayer), *jnana yoga* (study/wisdom), *karma yoga*(selfless action) and *raja yoga* (*ashtanga*). Raja yoga includes *ashtanga*, the eight limbs or paths of yoga that Patanjali detailed \~2000 years ago that we will explore in more depth in part IV. These ancient *margas* (paths) and subsequent development of these ancient teachings provides individual with ample opportunity to dedicate and work towards individual enlightenment.
*Decentralization*
Next, there are no external barriers preventing an individual from participating in Bitcoin or yoga. Bitcoin does not discriminate and can be accessed by anyone around the world. Yoga provides a way of life full of mindfulness and appreciation. The only barriers are internal blockages, or unwillingness to ask questions, learn and take responsibility for oneself and state of being. Therefore, Bitcoin and yoga can both be defined as decentralized. There are no centralized gatekeepers preventing one from accessing the Bitcoin network or using bitcoin as money; anyone can spin up a node, download a wallet or mine bitcoin. There are over [16,000 nodes](https://bitnodes.io/?ref=the-bitcoin-yogi.ghost.io) geographically distributed around the world voluntarily running the bitcoin core software code establishing the payment network, validating transactions and storing the entire transaction history of bitcoin (iii). It costs as little as a few hundred dollars and requires less than [600 gigabytes](https://bitcoin.clarkmoody.com/dashboard/?ref=the-bitcoin-yogi.ghost.io) of storage to run a node – in 2023 you can find mobile phones with that much storage. No one can prevent you from sending a peer-to-peer transaction or storing your own wealth with [12 words in your head](https://unchained.com/blog/what-is-a-bitcoin-seed-phrase/?ref=the-bitcoin-yogi.ghost.io) – you need only decide to take true freedom into your own hands and learn how to do so (iv). The common maxim is “don’t trust, verify”. You don’t need someone else’s permission to participate in bitcoin or trust anyone else (eg, banks) to hold your wealth.
Geographic distribution of reachable bitcoin nodes ([source: bitnodes](https://bitnodes.io/?ref=the-bitcoin-yogi.ghost.io))
Similarly, no one can stop an individual from practicing yoga, learning yogic philosophy or connecting with one’s truest self and [inner guru](https://www.erinracheldoppelt.com/?ref=the-bitcoin-yogi.ghost.io). Anyone can choose to follow the path of yoga, focus on ones breath or develop a strong *asana* practice. There are many different ways to learn and interact with yoga, with experienced teachers willing to share their lessons to students all over the world. One need to simply find yoga studio, enroll in a teacher training or and engage with a teacher to experience yoga for themselves. Yoga looks and feels different depending on what country you are in or in which lineage you are being taught. Tapping into these profound lessons, as fundamental as controlling ones own breath, requires only an individual desire and the conscious decision to act. There’s no CEO or central authority dictating how Bitcoin or yoga has to be. Individuals have the freedom to express themselves voluntarily guided by frameworks we will dive into deeper.
*Low Time Preference*
Another core value that bitcoin and yoga share is low time preference. In Austrian economics, time preference refers to individual decision making. An individual with a [low time preference](https://bitcointimes.io/making-time-preference-low-again/?ref=the-bitcoin-yogi.ghost.io) makes decisions with greater consideration of the future, quieting immediate cravings and desires to pursue a higher goal (v). In bitcoin and money, lower time preference decisions include putting off consumption to save value for the future. Unfortunately, our *fiat* (by government decree) system induces individuals to make high time preference decisions, heightening consumerism and poor habits today that we see rampant in our society. There is a disincentive to save, as inflation of the money supply leads to debasing value of the dollar and other fiat currencies, decreasing individuals purchasing power of cash they hold onto and don’t spend soon. For example, the purchasing power of your dollar today will be cut in half over the next decade at current levels of inflation. In many ways, [bitcoin is time](https://dergigi.com/2021/01/14/bitcoin-is-time/?ref=the-bitcoin-yogi.ghost.io), described brilliantly by Gigi, as it creates a decentralized clock that establishes consensus with each block (vi).
In contrast, the hard cap supply of 21 million bitcoin enables individuals to save with the knowledge that governments and central banks will not be able to debase their hard-earned value. This allows for one to plan with greater certainty, making investments that have a longer payoff period rather than chasing quick, material gains. Likewise in yoga, developing your own practice will not bear fruit right away; it takes discipline and time to continuously improve and strive towards a better future self. For example, in modern *Ashtanga* yoga taught by Pattabhi Jois, there is a set sequence of *asanas* that one studies and repeats each practice. It may even take months to have find the right alignment of body and breath for a single pose! The hours-long sequence requires dedication to practice and learn. The dedicated yogi understands that wholehearted commitment today will pay off for one’s mental, physical and spiritual health in the years to come. The ability to develop a calm mind can also be beneficial when people don’t initially understand or are intimidated by bitcoin. This approach can also enable you to stay grounded and discover the signal through the noise when learning about bitcoin.
Sequence of asanas in Jois' Ashtanga Yoga ([image source](https://yoga108corner.com/ashtanga-yoga/?ref=the-bitcoin-yogi.ghost.io))
*Union*
Yoga comes from the Sanskrit word “*yuj*”, which means ‘to join’ or ‘to unite’. Yoga represents the union of the mind, body, and soul of an individual. Yoga provides a pathway to individual sovereignty through disciplined practice and purpose. Yoga unites an individual internally and to one’s community, fostering connectedness and support (vii). Similarly, bitcoin provides a pathway to individual sovereignty in many ways. Bitcoin empowers the individual authority with property rights over one’s value, which in turn frees individuals from outside control (government or otherwise). Bitcoin’s technology enables one to hold their own wealth and life’s energy in a self-custodial fashion. Bitcoin is money that can be stored forever and transmitted through space at the speed of light on layer two via the [Lightning Network](https://lightning.network/?ref=the-bitcoin-yogi.ghost.io).
Bitcoin is an open economic network with the potential to unite eight billion people together in a way our current unfair and fragmented financial system could never do. In many countries, a majority of people are unbanked, while intermediaries take a cut of the value to transfer slow, legacy payments like Western Union. While tens of millions people around the world have so far interacted with bitcoin – we are still early – similar to the internet of the mid-nineties. Bitcoin eliminates counter party risk associated with non-bearer assets, such as fiat currency (e.g., dollars, euros, yen). Bitcoin’s supply schedule is set and eliminates inflation time theft that fiat currency wages on individuals, which leads to anxiety and depression or feelings of hopelessness. Fiat is money enforced by the monopoly on violence that modern nation states grip tightly.
In contrast, bitcoin and yoga empower the individual to remove the shackles and embrace personal responsibility to improve ones life. Bitcoin and yoga also connect people directly to each other and tap into truth, ones inner being, bringing peace in the present and ultimately offer hope for a better future for each person, your community, and the world. Bitcoin and yoga have the power to unite humanity in love.
In the next section, we will explore both yoga and bitcoin's mystical and mythical origins.
---
*Note: Bitcoin with a capital "B" generally refers to the protocol/network; bitcoin with a lower case "b" refers to the money/currency.*
References:
i. Redman, Jamie, How Henry Ford Envisaged Bitcoin 100 Years Ago — A Unique 'Energy Currency' That Could 'Stop Wars', *News.Bitcoin.Com*, October 11, 2021 <[https://news.bitcoin.com/how-henry-ford-envisaged-bitcoin-100-years-ago-a-unique-energy-currency-that-could-stop-wars/](https://news.bitcoin.com/how-henry-ford-envisaged-bitcoin-100-years-ago-a-unique-energy-currency-that-could-stop-wars/?ref=the-bitcoin-yogi.ghost.io)>
ii. Nakomoto, Satoshi, Bitcoin: A Peer-to-Peer Electronic Cash System, *bitcoin.org,* October 31, 2008 <[https://bitcoin.org/bitcoin.pdf](https://bitcoin.org/bitcoin.pdf?ref=the-bitcoin-yogi.ghost.io)>
iii. [https://bitnodes.io/](https://bitnodes.io/?ref=the-bitcoin-yogi.ghost.io)
iv. Hall, Stephen, What is a bitcoin seed phrase and how does it work? *Unchained.com*. December 17, 2021 <[https://unchained.com/blog/what-is-a-bitcoin-seed-phrase/](https://unchained.com/blog/what-is-a-bitcoin-seed-phrase/?ref=the-bitcoin-yogi.ghost.io)>
v. Ammous, Saifedean, Making Time Preference Low Again, *The Bitcoin Times, Austrian Edition (V).* November 8, 2022 <[https://bitcointimes.io/making-time-preference-low-again/](https://bitcointimes.io/making-time-preference-low-again/?ref=the-bitcoin-yogi.ghost.io)>
vi. Gigi, Bitcoin is Time, *dergigi.com.* Jan 14,2021 <[https://dergigi.com/2021/01/14/bitcoin-is-time/](https://dergigi.com/2021/01/14/bitcoin-is-time/?ref=the-bitcoin-yogi.ghost.io)>
vii. 200 hour yoga teacher training. House of Om, Bali, Indonesia. <[https://houseofom.com/](https://houseofom.com/?ref=the-bitcoin-yogi.ghost.io)>
-

@ 1ec45473:d38df139
2025-01-25 20:15:01
Preston Pysh posted this event this morning:

Behind the scenes, the nostr event looks like this:
```
Event = {
"id":"a6fa7e1a73ce70c6fb01584a0519fd29788e59d9980402584e7a0af92cf0474a",
"pubkey":"85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204",
"created_at":1724494504,
"kind":1,
"tags":[
[
"p",
"6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb",
"",
"mention"
],
[
"p",
"77ec966fcd64f901152cad5dc7731c7c831fe22e02e3ae99ff14637e5a48ef9c",
"",
"mention"
],
[
"p",
"c1fc7771f5fa418fd3ac49221a18f19b42ccb7a663da8f04cbbf6c08c80d20b1",
"",
"mention"
],
[
"p",
"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63",
"",
"mention"
],
[
"p",
"20d88bae0c38e6407279e6a83350a931e714f0135e013ea4a1b14f936b7fead5",
"",
"mention"
],
[
"p",
"273e7880d38d39a7fb238efcf8957a1b5b27e819127a8483e975416a0a90f8d2",
"",
"mention"
],
[
"t",
"BH2024"
]
],
"content":"Awesome Freedom Panel with...",
"sig":"2b64e461cd9f5a7aa8abbcbcfd953536f10a334b631a352cd4124e8e187c71aad08be9aefb6a68e5c060e676d06b61c553e821286ea42489f9e7e7107a1bf79a"
}
```
In nostr, all events have this form, so once you become familiar with the nostr event structure, things become pretty easy.
Look at the "tags" key. There are six "p" tags (pubkey) and one "t" tag (hashtag).
The p tags are public keys of people that are mentioned in the note. The t tags are for hashtags in the note.
It is common when working with NOSTR that you have to extract out certain tags. Here are some examples of how to do that with what are called JavaScript Array Methods:
### Find the first "p" tag element:
```
Event.tags.find(item => item[0] === 'p')
[
'p',
'6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb',
'',
'mention'
]
```
### Same, but just return the pubkey":
```
Event.tags.find(item => item[0] === 'p')[1]
'6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb'
```
### Filter the array so I only get "p" tags:
```
Event.tags.filter(item => item[0] === 'p')
[
[
'p',
'6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb',
'',
'mention'
],
[
'p',
'77ec966fcd64f901152cad5dc7731c7c831fe22e02e3ae99ff14637e5a48ef9c',
'',
'mention'
],
[
'p',
'c1fc7771f5fa418fd3ac49221a18f19b42ccb7a663da8f04cbbf6c08c80d20b1',
'',
'mention'
],
[
'p',
'50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63',
'',
'mention'
],
[
'p',
'20d88bae0c38e6407279e6a83350a931e714f0135e013ea4a1b14f936b7fead5',
'',
'mention'
],
[
'p',
'273e7880d38d39a7fb238efcf8957a1b5b27e819127a8483e975416a0a90f8d2',
'',
'mention'
]
]
```
### Return an array with only the pubkeys in the "p" tags:
```
Event.tags.filter(item => item[0] === 'p').map(item => item[1])
[
'6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb',
'77ec966fcd64f901152cad5dc7731c7c831fe22e02e3ae99ff14637e5a48ef9c',
'c1fc7771f5fa418fd3ac49221a18f19b42ccb7a663da8f04cbbf6c08c80d20b1',
'50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63',
'20d88bae0c38e6407279e6a83350a931e714f0135e013ea4a1b14f936b7fead5',
'273e7880d38d39a7fb238efcf8957a1b5b27e819127a8483e975416a0a90f8d2'
]
```
-

@ d360efec:14907b5f
2025-02-15 05:55:28
**ภาพรวม BTCUSDT (OKX):**
Bitcoin (BTCUSDT) แสดงความผันผวนอย่างต่อเนื่อง แนวโน้มหลักในระยะยาว (TF Day) ยังคงเป็นขาขึ้น แต่ระยะกลาง (TF 4H) เริ่มอ่อนแรง และระยะสั้น (TF 15m) กลับตัวเป็นขาลง ทำให้เกิดความขัดแย้งระหว่าง Timeframes
**วิเคราะห์ทีละ Timeframe:**
**(1) TF Day (รายวัน):**

* **แนวโน้ม:** ขาขึ้น (Uptrend)
* **SMC:**
* Higher Highs (HH) และ Higher Lows (HL)
* Break of Structure (BOS) ด้านบน
* **EMA:**
* ราคาอยู่เหนือ EMA 50 (สีเหลือง) และ EMA 200 (สีขาว)
* EMA 50 และ EMA 200 ยังคงเรียงตัวแบบ Golden Cross
* **Money Flow (LuxAlgo):**
* สีเขียวเป็นส่วนใหญ่ แสดงถึงแรงซื้อที่ยังคงมีอยู่
* มีแท่งสีแดงแทรกบ้าง แสดงถึงการขายทำกำไร
* **Volume Profile:**
* Volume หนาแน่นที่บริเวณต่ำกว่าราคาปัจจุบัน (92,000 - 94,000)
* **แท่งเทียน:**
* แท่งเทียนล่าสุดเป็นสีแดง แสดงถึงแรงขาย
* **แนวรับ:** EMA 50, EMA 200, บริเวณ 92,000-94,000
* **แนวต้าน:** 109,998.9 (High เดิม)
* **สรุป:** แนวโน้มหลักยังเป็นขาขึ้น แต่เริ่มมีแรงขายเข้ามา
**(2) TF4H (4 ชั่วโมง):**

* **แนวโน้ม:** ขาขึ้น (Uptrend) เริ่มอ่อนแรงลง, มีการพักตัว
* **SMC:**
* Higher Highs (HH) และ Higher Lows (HL) เริ่มไม่ชัดเจน
* Break of Structure (BOS) ด้านบน
* Equal Highs (EQH) ที่บริเวณ High เดิม
* **EMA:**
* ราคาหลุด EMA 50 ลงมาแล้ว
* EMA 200 เป็นแนวรับถัดไป
* **Money Flow (LuxAlgo):**
* สีเขียวและแดงผสมกัน, แท่งสีแดงเริ่มยาวขึ้น แสดงถึงแรงขายที่เข้ามา
* **Volume Profile:**
* Volume สูง
* **แท่งเทียน:**
* แท่งเทียนล่าสุดเป็นสีแดง แสดงถึงแรงขาย
* **แนวรับ:** EMA 200, บริเวณ 92,000-94,000
* **แนวต้าน:** EMA 50, บริเวณ High เดิม
* **สรุป:** แนวโน้มขาขึ้นเริ่มอ่อนแรง, แรงขายเริ่มเข้ามา, EMA 50 หลุด
**(3) TF15 (15 นาที):**

* **แนวโน้ม:** ขาลง (Downtrend)
* **SMC:**
* Lower Highs (LH) และ Lower Lows (LL)
* Break of Structure (BOS) ด้านล่าง
* **EMA:**
* EMA 50 และ EMA 200 เป็นแนวต้าน
* **Money Flow (LuxAlgo):**
* สีแดงเป็นส่วนใหญ่ แสดงถึงแรงขาย
* **Volume Profile:**
* Volume ค่อนข้างเบาบาง
* **แนวรับ:** บริเวณ Low ล่าสุด
* **แนวต้าน:** EMA 50, EMA 200, บริเวณ High ก่อนหน้า
* **สรุป:** แนวโน้มขาลง, แรงขายมีอิทธิพล
**สรุปภาพรวมและกลยุทธ์ (BTCUSDT):**
* **แนวโน้มหลัก (Day):** ขาขึ้น
* **แนวโน้มรอง (4H):** ขาขึ้น (อ่อนแรง)
* **แนวโน้มระยะสั้น (15m):** ขาลง
* **Money Flow:**
* Day: แรงซื้อยังคงมี
* 4H: แรงขายเริ่มเข้ามา
* 15m: แรงขายมีอิทธิพล
* **กลยุทธ์:**
1. **Wait & See (ดีที่สุด):** รอความชัดเจน
2. **Buy on Dip (Day, 4H) - *เสี่ยงสูงมาก*:** ต้องรอสัญญาณกลับตัวใน TF15
3. **Short (15m, เสี่ยงสูง):** ถ้าไม่สามารถ Breakout EMA/แนวต้านได้
**คำแนะนำ:**
* **ความขัดแย้งของ Timeframes:** ยังคงมีอยู่
* **Money Flow:** Day เป็นบวก, 4H เริ่มเป็นลบ, 15m เป็นลบ
* **EMA 50 (TF4H):** หลุดลงมาแล้ว
* **ถ้าไม่แน่ใจ อย่าเพิ่งเข้าเทรด**
**Disclaimer:** การวิเคราะห์นี้เป็นเพียงความคิดเห็นส่วนตัว ไม่ถือเป็นคำแนะนำในการลงทุน ผู้ลงทุนควรศึกษาข้อมูลเพิ่มเติมและตัดสินใจด้วยความรอบคอบ
-

@ a012dc82:6458a70d
2025-02-15 02:53:03
In the ever-evolving landscape of finance, two names have consistently dominated the conversation in recent years: Bitcoin and Ethereum. These cryptocurrencies have not only revolutionized the way we think about money but have also paved the way for a future where digital assets play a central role. As we stand at the cusp of a new era in finance, it's crucial to understand the significance of these two giants in the crypto world. This article takes a deep dive into Bitcoin and Ethereum, exploring their origins, their impact on the financial sector, and what the future might hold for these digital currencies.
**Table of Contents**
- Bitcoin: The Pioneer of Cryptocurrency
- Ethereum: More Than Just a Cryptocurrency
- The Impact on the Financial Sector
- The Future Outlook
- Conclusion
- FAQs
**Bitcoin: The Pioneer of Cryptocurrency**
Bitcoin, created by the mysterious figure or group known as Satoshi Nakamoto, emerged in 2009 as the first decentralized digital currency. It introduced the world to the concept of a blockchain, a distributed ledger technology that ensures security and transparency in transactions. Over the years, Bitcoin has become synonymous with cryptocurrency, often being the first token that comes to mind when discussing digital assets. Its primary appeal lies in its decentralized nature, free from the control of any government or financial institution, offering a form of financial freedom and privacy that traditional currencies cannot.
However, Bitcoin is not without its challenges. Its scalability issues, high transaction fees, and extensive energy consumption due to mining activities have been points of contention. Despite these challenges, Bitcoin has maintained its position as the leading cryptocurrency, often referred to as digital gold, and continues to attract significant investment from both retail and institutional investors.
**Ethereum: More Than Just a Cryptocurrency**
Ethereum, proposed in late 2013 by programmer Vitalik Buterin, is often considered the second most important cryptocurrency after Bitcoin. However, Ethereum offers much more than just a digital currency; it's a platform for decentralized applications (dApps). The introduction of smart contracts on Ethereum's blockchain has opened up possibilities far beyond simple monetary transactions. These self-executing contracts with the terms of the agreement directly written into code have enabled the development of a wide range of applications, from decentralized finance (DeFi) to non-fungible tokens (NFTs).
Ethereum's flexibility and adaptability have made it a cornerstone of the blockchain development community. However, like Bitcoin, it faces its own set of challenges, including network congestion and high gas fees, especially during peak usage times. The much-anticipated upgrade to Ethereum 2.0 aims to address these issues by shifting from a proof-of-work to a proof-of-stake consensus mechanism, which is expected to significantly increase its scalability and reduce its environmental impact.
**The Impact on the Financial Sector**
The advent of Bitcoin and Ethereum has had a profound impact on the financial sector. They have challenged traditional financial models and institutions, introducing concepts like decentralized finance, which aims to create a more open and accessible financial system. Cryptocurrencies have also introduced new investment opportunities, with Bitcoin becoming a popular choice for investors looking for an asset that is not correlated with traditional financial markets.
Moreover, the technologies behind these cryptocurrencies, especially blockchain, have found applications in various sectors, including banking, supply chain management, and voting systems. The transparency, security, and efficiency offered by blockchain technology have the potential to revolutionize these industries.
**The Future Outlook**
Looking ahead, the future of Bitcoin, Ethereum, and cryptocurrencies, in general, is both exciting and uncertain. Regulatory challenges, technological advancements, and market dynamics will play significant roles in shaping their paths. Bitcoin, with its limited supply and increasing adoption, might continue to be seen as a store of value, while Ethereum's transition to Ethereum 2.0 could solidify its position as the leading platform for decentralized applications.
The increasing interest from institutional investors and the integration of cryptocurrency services by major financial players suggest a growing acceptance and maturation of these digital assets. However, the volatile nature of cryptocurrencies remains a significant factor, making them a risky, albeit potentially rewarding, investment.
**Conclusion**
Bitcoin and Ethereum have undeniably paved the way for a new era in finance, one that is digital, decentralized, and diverse. Their impact extends beyond just the financial sector, influencing technology, governance, and society as a whole. As we move forward, the continuous evolution of these cryptocurrencies and their underlying technologies will undoubtedly play a pivotal role in shaping the future of finance. Whether they will become mainstream elements of our financial system or remain as alternative assets, one thing is certain: Bitcoin and Ethereum have forever changed the landscape of finance, and their journey is far from over.
**FAQs**
**How does Ethereum differ from Bitcoin?**
While Bitcoin was created primarily as a digital currency, Ethereum is a decentralized platform that enables smart contracts and decentralized applications (dApps). Ethereum's native token, Ether, is used to facilitate these operations.
**What are the main uses of Bitcoin and Ethereum?**
Bitcoin is mainly used as a digital currency and a store of value, often referred to as 'digital gold.' Ethereum, on the other hand, is used to power smart contracts and dApps, playing a crucial role in the decentralized finance (DeFi) and non-fungible token (NFT) sectors.
**What are the challenges facing Bitcoin and Ethereum?**
Bitcoin faces challenges like scalability, high transaction fees, and environmental concerns due to its mining process. Ethereum struggles with network congestion and high gas fees, although its upcoming upgrade to Ethereum 2.0 aims to address these issues.
**Are Bitcoin and Ethereum regulated?**
The regulatory status of Bitcoin and Ethereum varies by country. While some countries have embraced them with specific regulations, others have imposed restrictions or outright bans.
**That's all for today**
**If you want more, be sure to follow us on:**
**NOSTR: croxroad@getalby.com**
**X: [@croxroadnews.co](https://x.com/croxroadnewsco)**
**Instagram: [@croxroadnews.co](https://www.instagram.com/croxroadnews.co/)**
**Youtube: [@croxroadnews](https://www.youtube.com/@croxroadnews)**
**Store: https://croxroad.store**
**Subscribe to CROX ROAD Bitcoin Only Daily Newsletter**
**https://www.croxroad.co/subscribe**
***DISCLAIMER: None of this is financial advice. This newsletter is strictly educational and is not investment advice or a solicitation to buy or sell any assets or to make any financial decisions. Please be careful and do your own research.***
-

@ 0fa80bd3:ea7325de
2025-02-14 23:24:37
#intro
The Russian state made me a Bitcoiner. In 1991, it devalued my grandmother's hard-earned savings. She worked tirelessly in the kitchen of a dining car on the Moscow–Warsaw route. Everything she had saved for my sister and me to attend university vanished overnight. This story is similar to what many experienced, including Wences Casares. The pain and injustice of that time became my first lessons about the fragility of systems and the value of genuine, incorruptible assets, forever changing my perception of money and my trust in government promises.
In 2014, I was living in Moscow, running a trading business, and frequently traveling to China. One day, I learned about the Cypriot banking crisis and the possibility of moving money through some strange thing called Bitcoin. At the time, I didn’t give it much thought. Returning to the idea six months later, as a business-oriented geek, I eagerly began studying the topic and soon dove into it seriously.
I spent half a year reading articles on a local online journal, BitNovosti, actively participating in discussions, and eventually joined the editorial team as a translator. That’s how I learned about whitepapers, decentralization, mining, cryptographic keys, and colored coins. About Satoshi Nakamoto, Silk Road, Mt. Gox, and BitcoinTalk. Over time, I befriended the journal’s owner and, leveraging my management experience, later became an editor. I was drawn to the crypto-anarchist stance and commitment to decentralization principles. We wrote about the economic, historical, and social preconditions for Bitcoin’s emergence, and it was during this time that I fully embraced the idea.
It got to the point where I sold my apartment and, during the market's downturn, bought 50 bitcoins, just after the peak price of $1,200 per coin. That marked the beginning of my first crypto winter. As an editor, I organized workflows, managed translators, developed a YouTube channel, and attended conferences in Russia and Ukraine. That’s how I learned about Wences Casares and even wrote a piece about him. I also met Mikhail Chobanyan (Ukrainian exchange Kuna), Alexander Ivanov (Waves project), Konstantin Lomashuk (Lido project), and, of course, Vitalik Buterin. It was a time of complete immersion, 24/7, and boundless hope.
After moving to the United States, I expected the industry to grow rapidly, attended events, but the introduction of BitLicense froze the industry for eight years. By 2017, it became clear that the industry was shifting toward gambling and creating tokens for the sake of tokens. I dismissed this idea as unsustainable. Then came a new crypto spring with the hype around beautiful NFTs – CryptoPunks and apes.
I made another attempt – we worked on a series called Digital Nomad Country Club, aimed at creating a global project. The proceeds from selling images were intended to fund the development of business tools for people worldwide. However, internal disagreements within the team prevented us from completing the project.
With Trump’s arrival in 2025, hope was reignited. I decided that it was time to create a project that society desperately needed. As someone passionate about history, I understood that destroying what exists was not the solution, but leaving everything as it was also felt unacceptable. You can’t destroy the system, as the fiery crypto-anarchist voices claimed.
With an analytical mindset (IQ 130) and a deep understanding of the freest societies, I realized what was missing—not only in Russia or the United States but globally—a Bitcoin-native system for tracking debts and financial interactions. This could return control of money to ordinary people and create horizontal connections parallel to state systems. My goal was to create, if not a Bitcoin killer app, then at least to lay its foundation.
At the inauguration event in New York, I rediscovered the Nostr project. I realized it was not only technologically simple and already quite popular but also perfectly aligned with my vision. For the past month and a half, using insights and experience gained since 2014, I’ve been working full-time on this project.
-

@ b17fccdf:b7211155
2025-01-21 18:39:47
~ > **Check out the steps to get this** ~ > [HERE](https://minibolt.minibolt.info/bonus-guides/system/static-ip-and-custom-dns-servers#dot-doh--dnssec) < ~
**Note:** for different reasons, it is recommended choosing [Option 1: DoT & DNSSEC using systemd-resolved](https://minibolt.minibolt.info/bonus-guides/system/static-ip-and-custom-dns-servers#option-1-use-dot-and-dnssec-validation-with-systemd-resolved), but you could want to use [Option 2](https://minibolt.minibolt.info/bonus-guides/system/static-ip-and-custom-dns-servers#option-2-use-doh-with-cloudflared-proxy-dns), choose behind your criteria, both are valid to achieve the same objective.
-----------
Some more changes were released recently in other places of the MiniBolt guide, check the full release notes:
#### **Full release notes**
~ > [Static IP & custom DNS servers](https://minibolt.minibolt.info/bonus-guides/system/static-ip-and-custom-dns-servers) bonus guide:
- Adds custom DNS server suggestions.
- Adds different steps to check the changes after configurations.
- Deleted some unnecessary steps.
- Fix some nits.
---
~ > Modifications on [Configuration](https://minibolt.minibolt.info/bitcoin/bitcoin/bitcoin-client#configuration) (`bitcoin.conf`) of [Bitcoin Core](https://minibolt.minibolt.info/bitcoin/bitcoin/bitcoin-client):
- Replace proxy value parameter to use UNIX domain socket (`proxy=unix:/run/tor/socks`) | (recently [enabled](https://github.com/bitcoin/bitcoin/pull/27375) on Bitcoin Core v28).
- Replace `startupnotify=chmod g+r /home/bitcoin/.bitcoin/.cookie` to `rpccookieperms=group` [Bitcoin Core PR](https://github.com/bitcoin/bitcoin/pull/28167).
- Adds another special bind address to listen to incoming connections from Tor (`bind=127.0.0.1=onion`) | (recently [changed](https://github.com/bitcoin/bitcoin/blob/master/doc/release-notes/release-notes-28.0.md#p2p-and-network-changes) on Bitcoin Core v28).
- Modified [systemd service](https://minibolt.minibolt.info/bitcoin/bitcoin/bitcoin-client#create-systemd-service) to improve the startup and shutdown process.
**Note:** remember to restart Bitcoin Core and reload the systemd with `sudo systemctl daemon-reload` to apply changes.
---
~ > Delete unnecessary parameters of the [systemd service](https://minibolt.minibolt.info/lightning/lightning/lightning-client#create-systemd-service) of [Lightning client](https://minibolt.minibolt.info/lightning/lightning/lightning-client).
**Note:** remember to reload the systemd with `sudo systemctl daemon-reload` to apply changes.
---
~ > **Others:**
- New [i2pd webconsole](https://minibolt.minibolt.info/system/system/privacy#access-to-the-i2pd-webconsole) section.
- Adds a new ["Validation"](https://minibolt.minibolt.info/bitcoin/bitcoin/bitcoin-client#validation) subsection to the guides to clarify when checks begin.
- New "[Use the Tor proxy from another device](https://minibolt.minibolt.info/system/system/privacy#use-the-tor-proxy-from-another-device)" section.
- Adds Electrs [compatible with Testnet4](https://minibolt.minibolt.info/bonus-guides/bitcoin/minibolt-on-testnet#bitcoin-electrs) on Testnet bonus guide.
- Adds how to build a [Guard/Middle relay](https://minibolt.minibolt.info/bonus-guides/system/tor-services#guard-middle-relay) section on "Tor services: bridges & relays" bonus guide.
- Adds [Extras (optional)](https://minibolt.minibolt.info/bonus-guides/system/tor-services#extras-optional) section to "Tor services: bridges & relays" bonus guide with different utilities like install Nyx, how to "Limit bandwidth" and others.
- Changed [Electrs](https://minibolt.minibolt.info/bonus-guides/bitcoin/electrs) ports to enable simultaneous mode with Fulcrum.
- [Updated aliases](https://minibolt.minibolt.info/bonus-guides/system/aliases#upgrades) list to include news additions in line with updates.
- Updated the [Networkmap](https://bit.ly/minibolt-ramix_netmap) resource to include news additions in line with updates and migrate to a dynamic visual mode.
- Reorganized some menu items and sections to improve the UX and make more sense in the face of the future.
- Restructure and rename the "Tor obfs4 bridge" bonus guide to ["Tor services: bridges & relays"](https://minibolt.minibolt.info/bonus-guides/system/tor-services) and modify it to run the obfs4bridge, relays, and the master, in separate instances.
- Hidden [NYM mixnet](https://minibolt.minibolt.info/bonus-guides/system/nym-mixnet) and [Sparrow server](https://minibolt.minibolt.info/bonus-guides/bitcoin/sparrow-server) bonus guides from the menus due to disuse or poor performance. **Note:** it will continue to be maintained later if the situation changes due to the development of the associated software.
- Bump version of various services.
---
~ > **Coming soon...**
- Enable DNSSEC for your domain using Cloudflare + Namecheap.
- Enable DoH on:
- Desktop/Android browser (Windows/Linux).
- OS: Windows 11 // Linux ([Completed](https://minibolt.minibolt.info/bonus-guides/system/static-ip-and-custom-dns-servers#option-2-use-doh-with-cloudflared-proxy-dns) ✅)
- Router.
- Enable DoT on:
- Android OS.
- OS: Windows 11 // Linux ([Completed](https://minibolt.minibolt.info/bonus-guides/system/static-ip-and-custom-dns-servers#option-1-use-dot-and-dnssec-validation-with-systemd-resolved) ✅) with DNSSEC verification included.
- Router.
---
Enjoy it MiniBolter!💙
-

@ b17fccdf:b7211155
2025-01-21 18:22:51
😱 Did you recently find this signature verification error when you tried to update your MiniBolt repositories with -> `sudo apt update`? 💥🚨👇

🔧 Don't worry, that's because Tor renewed its signing key since it expired last 07/15, just renew your keyring by following the next steps to solve this problem:
~ > [CLICK HERE](https://minibolt.minibolt.info/system/system/privacy#tor-signature-verification-error) < ~
---
Enjoy it MiniBolter!💙
-

@ 6be5cc06:5259daf0
2025-01-18 02:11:43
1. **Not your keys, not your coins**
Se você não tem as chaves privadas do seu Bitcoin, ele não é realmente seu. Deixar seus BTCs em exchanges ou carteiras controladas por terceiros significa confiar neles e assumir o risco de perder seus fundos.
---
2. **HODL - Não venda**
O Bitcoin é uma reserva de valor a longo prazo e potencialmente o dinheiro do futuro. Não se desespere com as flutuações de preço; mantenha seus BTCs, pois o histórico se mostra favorável.
---
3. **Stay humble - Não saia falando que você tem BTC**
Manter discrição sobre seu patrimônio é uma questão de segurança e humildade. Falar demais pode atrair curiosos, oportunistas ou outras ameaças.
---
4. **Don't trust, verify**
No Bitcoin, confie no protocolo, não em pessoas. Sempre que possível, verifique por conta própria, seja transações, códigos ou informações.
---
5. **Reject altcoins**
As altcoins podem parecer promissoras, mas frequentemente são distrações ou apostas arriscadas. Foque no Bitcoin, que já provou ser sólido e resistente.
---
6. **Stack sats - DCA**
Empilhe satoshis consistentemente, utilizando a estratégia de DCA (Dollar Cost Averaging), comprando regularmente independentemente do preço. Isso reduz o risco de tentar "acertar o mercado".
---
7. **Reject the ego**
Não aposte contra o Bitcoin. Aqueles que subestimaram sua força ou estabilidade, perderam.
---
8. **Keep learning**
Nunca pare de estudar sobre Bitcoin, economia e a tecnologia por trás dele. Quanto mais você entende, mais confiança terá em sua decisão.
---
9. **Help beginners**
O Bitcoin pode ser complicado para quem está começando. Compartilhe seus conhecimentos com paciência para fortalecer a comunidade.
---
10. **Don't push it**
Cada pessoa tem seu próprio tempo para entender e entrar no mundo do Bitcoin. Forçar alguém pode ser contraproducente; dê direcionamento e deixe o tempo agir.
-

@ 3eacaa76:bac66fe4
2025-01-15 16:25:13
Few days back this track get on Top of list on #wavlake.
It's nice , but not a point. at all.
> The message is clear. like Real Talk should be !
We know, specialy on #nostr, that solutions are available. However, the world is not yet aware of them.
100% of the donations for this remix will be sent to my friend [Yusef]( https://x.com/Yusef_Mahmoud1) who is on the ground and has been providing food, water, and shelter for children in Gaza even before or the psyop with October 07 took a place. Israel has enforced a blockade on Gaza for over decade. And Just past year completly destroyed 90% of land.
Like to the ground , no schools , no hospitals ... hard to find anything what surrvived those daily airstrikes without 1h of pause since 350 days. WTF
It's heartbreaking to see children dying daily in houreds and the lack of action from the public and authorities of other nations. The statistics are alarming, and it's essential to address this issue and find ways to make progress. it's crucial to raise awareness and take action to prevent further tragedies. Let's remember that every child's life is precious and deserves our attention and support.
In most apocaliptic condition , where is-real controling all money supply (check lastest news about banknotes in there) , the #Bitcoin is one and only solution can help them in daily bases. It was helping them before with great succes. Why you ask ? becuse even if they close all platforms You can still send them some sats.
> How fookin cool is that !!
I know it doesn't sound funny.
Those People pushed to the limit , now they have a tool that fulfills exactly what was created for A Peer-to-Peer Electronic Cash System.
```
No Middle man .
```
```
On the middle is only a finger whitch **WE the PEOPLE**
can give to those Scumbagz in Goverments and Banks, Full stop.
```
Many people are only recently realizing the truth about Gaza being an open-air prison from like 75 years. Not 3, not 5 or even 20 ..... but ***seventy five fookin years***.
This music mix was created to share the truth and provoke to critical thinking, which has been lacking for the past decade. and even more.
I wonder why we can watch live streams of the ongoing genocide in 4K HD and stil be silent. not all but many.
Why are we surprised that normies don't understand ***Bitcoin*** and still use **fiat** shit currency? Whitch is fudament of All war crimes. We should ask ourselves.
> Our own ignorance and the banking system are the cancers of this world.
### If we lose Palestine, we will lose much more than we think.
You will be next - One way or another
Thank you for your support, not for me but for those in need who can gain hope from our efforts.
Respect to you all.

[LISTEN HERE]( https://wavlake.com/album/c980c860-9102-49bb-9fef-bdf0a270486d) and suport directly in upper links
#FreePalestine
Thanks
be blessed
MadMunky
-

@ a012dc82:6458a70d
2025-02-14 13:51:33
In the ever-evolving landscape of cryptocurrency, a significant development has emerged that is reshaping perceptions and strategies within the industry. Bitcoin, the original and most prominent digital currency, has seen its transaction fees hit a two-year high. This remarkable surge in fees is not merely a statistical blip but a phenomenon that could herald a transformative phase in Bitcoin mining. As we witness these fees reaching unprecedented levels, it prompts a crucial inquiry: Are we on the cusp of a new era in BTC mining, one that redefines its economic and technological paradigms?
**Table Of Content**
- The Surge in Transaction Fees
- Impact on Bitcoin Miners
- A Divided Community
- The Ripple Effect on Mining Stocks
- The Broader Market Influence
- Conclusion
- FAQs
**The Surge in Transaction Fees**
The Bitcoin network, known for its robustness and security, has recently been the center of a notable financial trend. Transaction fees have soared to over $37, a figure reminiscent of the peak levels observed in April 2021. This significant increase is not an isolated event but rather a symptom of a larger, more complex shift within the Bitcoin ecosystem. The primary driver behind this surge is the burgeoning interest in Bitcoin NFTs, particularly through a protocol known as Ordinals. This innovative protocol facilitates the storage of non-fungible tokens (NFTs) directly on the Bitcoin blockchain. As a result, there has been a marked increase in transaction volumes, leading to higher fees. This trend reflects a growing interest in utilizing Bitcoin not just as a currency but as a platform for broader digital asset interactions, potentially expanding its use cases and value proposition.
**Impact on Bitcoin Miners**
The escalation in transaction fees has had a profound and far-reaching impact on the community of Bitcoin miners. These individuals and companies, who form the backbone of the Bitcoin network by validating transactions and maintaining the blockchain, are now witnessing a dramatic shift in their revenue streams. With fees reaching such high levels, their daily income has surged to an estimated $63 million, translating to an extraordinary $23 billion annually. This figure is a significant leap from the average income over the past two years and represents a potential windfall for the mining sector. The increased profitability could lead to renewed investment in mining infrastructure, potentially spurring technological advancements and increased competition within the sector. It also raises questions about the decentralization of Bitcoin mining, as higher profits could lead to further consolidation in an industry already dominated by large players.
**A Divided Community**
The Bitcoin community, known for its diverse opinions and robust debates, finds itself at a crossroads with the rise of Ordinals and its impact on transaction fees. On one hand, some members of the community, including prominent figures like core developer Luke Dashjr, view the influx of Ordinals as a form of spam that clutters the blockchain and necessitates technical solutions. This perspective underscores concerns about blockchain bloat, transaction prioritization, and the fundamental principles of what Bitcoin should represent. On the other hand, for miners, these high fees have been a significant boon. They have provided a much-needed boost to profitability, especially in a period where the price of Bitcoin itself has been relatively stable. This divergence in views reflects the ongoing evolution of Bitcoin's identity and purpose, as it balances its role as a digital gold, a transactional currency, and now, a platform for digital art and collectibles.
**The Ripple Effect on Mining Stocks**
The impact of the surge in Bitcoin fees extends beyond the digital realm and into the traditional financial markets. Bitcoin mining stocks, representing companies that invest heavily in the infrastructure required to mine the digital currency, have shown remarkable resilience and growth. Companies like Marathon Digital, Riot Platform, and Cleanspark have seen their stock prices rally, significantly outperforming the actual price of Bitcoin. This trend indicates a growing investor confidence in the mining sector, buoyed by the increased revenue potential from transaction fees. It also suggests a decoupling of sorts, where the mining sector's performance is not solely dependent on the price of Bitcoin but also on other factors like transaction volume and fee structures. This decoupling could attract a new class of investors to the mining stocks, those looking for exposure to the crypto market but with a different risk profile than holding cryptocurrencies directly.
**The Broader Market Influence**
The performance of Bitcoin mining stocks is also intricately linked to the broader equity markets. As observed by Caleb Franzen, founder of Cubic Analytics, the strong performance of equity markets has provided additional momentum to these stocks. This correlation indicates that Bitcoin mining companies are increasingly being viewed through the lens of traditional financial analysis, where market trends and investor sentiment play a crucial role. The implication is significant: as Bitcoin mining firms become more integrated into the broader market, they may also become more susceptible to the same macroeconomic factors that influence traditional stocks. This integration could lead to greater stability in the mining sector but also exposes it to new types of risks, such as regulatory changes or shifts in investor sentiment unrelated to the crypto market.
**Conclusion**
The recent developments in Bitcoin transaction fees, driven by the popularity of Ordinals, have ushered in significant changes in the mining landscape. With increased revenues and a positive impact on mining stocks, it's tempting to proclaim the dawn of a new era in Bitcoin mining. However, the sustainability of this trend and its long-term impact on the Bitcoin ecosystem remain subjects of intense speculation and debate. As the community grapples with these changes, the future of Bitcoin mining continues to be a topic of keen interest. Whether this marks a permanent shift or a temporary phase in the cryptocurrency's evolution, one thing is certain: the world of Bitcoin remains as dynamic and unpredictable as ever.
**FAQs**
**What caused the recent spike in Bitcoin transaction fees?**
The surge in Bitcoin transaction fees to over $37, a two-year high, is primarily attributed to the growing popularity of Bitcoin NFTs, especially through the Ordinals protocol, which allows for the storage of non-fungible tokens on the Bitcoin blockchain.
**How does the increase in transaction fees affect Bitcoin miners?**
Bitcoin miners, who earn BTC for processing transactions, have seen a significant increase in their income due to the higher fees. Their daily revenue has reached approximately $63 million, translating to an estimated $23 billion annually.
**What is the Ordinals protocol, and why is it controversial?**
Ordinals is a protocol that enables the storage of NFTs on the Bitcoin blockchain. It has been controversial within the Bitcoin community, with some viewing it as a beneficial innovation and others as a form of spam that clutters the blockchain.
**Have Bitcoin mining stocks been affected by the increase in fees?**
Yes, Bitcoin mining stocks, such as Marathon Digital, Riot Platform, and Cleanspark, have outperformed the actual price of Bitcoin, indicating growing investor confidence in the mining sector due to increased revenue from transaction fees.
**Is the Bitcoin mining industry becoming more centralized?**
The increase in profitability could lead to further investment in mining infrastructure, potentially leading to more competition but also raising concerns about the centralization of mining power in the hands of large companies.
**That's all for today**
**If you want more, be sure to follow us on:**
**NOSTR: croxroad@getalby.com**
**X: [@croxroadnews.co](https://x.com/croxroadnewsco)**
**Instagram: [@croxroadnews.co](https://www.instagram.com/croxroadnews.co/)**
**Youtube: [@croxroadnews](https://www.youtube.com/@croxroadnews)**
**Store: https://croxroad.store**
**Subscribe to CROX ROAD Bitcoin Only Daily Newsletter**
**https://www.croxroad.co/subscribe**
***DISCLAIMER: None of this is financial advice. This newsletter is strictly educational and is not investment advice or a solicitation to buy or sell any assets or to make any financial decisions. Please be careful and do your own research.***
-

@ 1cb14ab3:95d52462
2025-01-05 04:18:29
*Stunning beaches, ancient temples as far as the eye can see, and lush, green mountainsides that will leave you in awe—Myanmar is a destination you NEED to add to your bucket list. This guide offers the perfect one-month itinerary to explore the hidden gems of this incredible country.*

---
## The Itinerary
#### Days 1-2:
Fly into Yangon Airport. Settle in and explore the vibrant sights and flavors of the city.
#### Day 3:
Take an overnight bus south to the coastal city of Myeik.
#### Days 4-8:
Go island hopping around the Mergui Archipelago—remote beaches and untouched islands await.
#### Day 9:
Travel to Dawei. Find a cozy place to stay and relax for the evening.
#### Days 10-13:
Rent a motorcycle and explore the stunning Dawei Peninsula. Soak up the sun on pristine beaches.
#### Day 14:
Head to Hpa An. Check into a hotel and enjoy a sunset beer.
#### Days 15-18:
Discover the limestone mountains, caves, and farmlands of Hpa An.
#### Day 19:
Travel to Bagan. The journey may be bumpy, but the destination is worth it.
#### Days 20-23:
Explore the breathtaking temples of Bagan. Sunrise hot air balloon rides are a must.
#### Day 24:
Head to Lake Inle. Settle into your accommodation and dine by the water.
#### Days 25-26:
Cruise around Lake Inle by boat. Immerse yourself in the local culture and capture the iconic fishermen in action.
#### Days 27-28:
Visit Mandalay to experience city life from a Burmese perspective.
#### Days 29-30:
Return to Yangon for a final exploration before flying home.
---
## Days 1-2: Arrival in Yangon
Myanmar's largest city is a bustling hub filled with shops, activities, and incredible food. The rapid development of this once-isolated country is evident everywhere you look.
**If you are flying internationally:**
Yangon will most likely be the cheapest and most easily accessible destination to begin the trip.
**If you are coming from Thailand:**
I would recommend altering the itinerary and going straight to Myeik via land border then working your way up the country from there.
#### Bogyoke Aung San Market
If shopping is your thing, this place is a haven for local treasures. Hundreds of stalls line the market and surrounding alleyways containing everything from art, sculptures, jewelry, antiquities, and fabrics. I spent a few hours here before jumping onto the nearby circular train for a loop around the city. There are a few small shops to get a bite to eat if you are hungry.
Remember that this itinerary will land you back in Yangon at the end of the trip if you see something you want to buy and don’t feel like lugging it around for a month.

#### Yangon Circular Train
Easily one of the most fascinating experiences of the trip is riding the Yangon Circular Train around the city for a true look at how the locals live. The train is old, slow, and packed with locals commuting to and from work. The doors are wide open, allowing you to hang your feet outside and soak in all of the sights afar. This is one of the best ways to get a true glimpse into the culture and day-to-day life of the Burmese people.
Be sure to speak with a train operator before getting on to make sure the entire loop is operational. When I went, construction stopped the train about 45 minutes into the loop, forcing us to get a taxi back to the downtown area. The full loop will take over 2 hours to complete. On the train, you can find vendors and hawkers selling little things such as water, nuts, and fruit. I’d suggest eating before jumping on.

#### Shwedagon Pagoda
Upon walking up the steep and lengthy stairway to the Shwedagon Pagoda lies Yangon’s most famous attraction. The 99-meter gold-coated pagoda can be seen all around the city but is best enjoyed up close. This is a must-visit during your time in the capital. I went about an hour before sunset and stayed well into the night. Sunset from the hill it sits atop is spectacular, and the contrast of the pagoda between day and night is striking.
Make sure to bring socks and a bag, as shoes are not allowed, and you will need to carry them or leave them at the door. After visiting, you can take a short walk to the Sky Bar in the Yangon International Hotel overlooking the pagoda. This is a wonderful place to enjoy a nice dinner and drink, ideal for soaking up more of that luxurious golden pagoda.

---
## Day 3: Bus to Myeik
The longest stretch of the trip—but well worth the sights to come. I took a 22-hour overnight bus and opted for the slight upcharge to take the VIP bus. This option is absolutely worth it. Equipped with A/C, comfortable reclining seats, and stops for three meals, it was a cheaper alternative to the costly domestic flight from Yangon and allowed me to see much more of the country.
I had a surprisingly good sleep and would do it again in a heartbeat. You can also fly directly to Myeik, but flights are infrequent and considerably more expensive. The bus I took arrived in Myeik around noon the next day, leaving me plenty of time to check into the hotel and wander around the city a bit before sunset. There weren’t many buses heading down here, so I’d recommend checking for tickets as early as possible when you arrive in Yangon. Alternatively, if you’re coming from Thailand, you can rearrange the itinerary and begin your Myanmar trip in Myeik by crossing from Thailand via bus at the land border.

---
## Days 4-8: Island Hopping in Myeik
The city of Myeik has no accessible beaches, so you’ll need to book an island-hopping tour to fully appreciate the surrounding Mergui Archipelago. While the city itself doesn’t offer much in terms of entertainment, the beaches and crystal-clear waters you’ll encounter on an island-hopping tour are truly unparalleled. Your trip to Myeik will be unforgettable and is an experience you shouldn’t miss.
There are several travel companies offering island-hopping tours, ranging from single-day trips to 14-day excursions. While you can book ahead, I found it quite easy to arrange a trip through an agency in the city. I opted for a three-day, two-night tour with Life Seeing Tours, and it was fantastic. They provided food, tents, and transportation—just bring a swimsuit and a change of clothes, and you’re ready to spend a few nights exploring the islands.




---
## Day 9: Bus to Dawei
Another travel day! This time, you’ll take a shorter bus ride heading north to Dawei. The journey takes about six hours, and tickets can be purchased from one of the travel agencies in Myeik. From what I gathered, there’s only one bus per day on this route, and it departs early in the morning.
Be prepared to wake up around 4 AM and make your way back to the same bus station where you arrived. It’s a good idea to arrange transportation to the station the night before—your hotel can help you book a ride for that morning.
---
## Days 10-13: Motorcycling the Dawei Peninsula
Dawei boasts some of the most stunning coastlines and beaches in the country. While most of these beaches are only accessible by motorcycle, there are a few small bed-and-breakfast-style accommodations at the southern end of the peninsula that offer direct beach access.
If you’d prefer not to travel 2–3 hours each day from the city, I recommend staying in that area. You can rent a motorcycle from several places in the city and ride down to the B&Bs near the beaches for an overnight stay. This approach lets you enjoy the remote, lush, and scenic motorcycle journey while avoiding the daily commute to the beaches.

#### Grandfather Beach
Surrounded by mountains and vibrant orange dirt, getting here can be a bit tricky. You’ll need to navigate a steep, loose hill to reach the area. I recommend arriving near low tide, as the beach and surrounding shops flood around noon, making the descent a wet and challenging experience. Be prepared to remove your shoes and walk through knee-deep water to access the beach. This is one of the more popular spots for locals and was among the few beaches I visited that actually had people.

#### Tizit Beach
When we arrived at Tizit Beach, there was no one else around except for the locals. The sand here is soft, and the ocean is pristine. A motorcycle is necessary to access this beach, but the breathtaking views from the mountain pass make the journey entirely worthwhile. The sand near the shore is firm enough to ride on, creating unforgettable moments of cruising along the beach at sunset.

---
## Day 14: Bus to Hpa An
One of the shorter bus rides on this trip, the fare is around $20, and it takes approximately 5 bumpy hours. Once you arrive in Hpa An, there are plenty of hostels and hotels to choose from. I booked mine on Hostelworld the night before, but you should have no trouble finding a place to stay on the day of your arrival if needed.
---
## Days 15-18: Hpa An: Farmland, Caves, and Mountains
Hpa An offers a stark contrast to the beaches and cities encountered so far on the trip. Surrounded by towering limestone mountains and lush green farmland, the region has a peaceful, rural charm. There are several caves, lakes, and one of my favorite sunrise hikes of the journey.
While I have a few recommendations and must-visit spots, Hpa An is best explored without a strict plan. A central theme of this trip has been the freedom of hopping on a motorcycle and riding wherever your heart desires.

#### Mount Zwegabin Sunrise Hike
Hiking Mount Zwegabin for sunrise is a must-do during your time in Hpa An. The mountain is located a short ride from town, about 40 minutes by motorcycle. The hike to the summit took around 35 minutes at a brisk pace, so you’ll need to leave around 4 AM to catch the sunrise, depending on the season. The highlight of the hike is the final ascent up the floating stairs to reach the peak. Be sure to have your camera ready and take in the breathtaking views.

#### Kyauk Kalat Pagoda
This is one of those places that leaves you in awe, wondering how such a unique landscape can exist. Easily one of the most unusual rock formations I’ve encountered, it’s a fantastic spot to watch the sunset. A winding staircase leads up the rock to the top of the temple, making it a great place to spend a couple of hours.

#### Saddar Cave
Filled with bats, stunning limestone formations, and statues, this short cave walk provides a refreshing escape from the heat. The path takes about 20 minutes to explore, leading to a beautiful lake at the back. Grab a drink, relax for a while, and take a small paddle boat back to the entrance for a memorable experience.

---
## Day 19: Bus to Bagan
A travel day heading north. This part of the trip is hot, bumpy, and slow, so be prepared for a longer journey than expected. Bagan has plenty of hotels and hostels, but I’d recommend booking accommodations in advance, as it’s a popular tourist destination. You’ll need to purchase an entry ticket for the area, as it’s a protected national park, but the bus driver should assist in sorting it out before you enter the park.
---
## Days 20-23: Chasing Pagodas in Bagan
Once you’ve settled into your accommodation in Bagan, the best way to explore the vast area is by pedal bike or scooter. All the scooters available for rent are electric, helping to reduce noise pollution—a refreshing change from the loud gas-powered vehicles you’ll be used to from the first half of your trip. There’s no right or wrong way to experience Bagan. The park is enormous, with thousands of pagodas scattered throughout. Most of them are open for exploration, with a few offering rooftop access (though that is being restricted more recently).
You could spend weeks here and still not see all the pagodas up close. Bagan is divided into a new town and an old town—most of the backpacker-friendly hostels are located in Old Town. You’ll find a handful of restaurants, but I often ate at my hostel or from local food carts. Several hostels and hotels offer outdoor pools, which are a great perk, especially depending on the time of year you visit. I highly recommend simply wandering the area freely, but here are a few top pagodas and experiences not to miss during your time in Bagan.

#### Hot Air Ballooning
The top attraction in Bagan is undoubtedly the daily hot air balloon tours. Almost everyone who experiences it claims it’s a must-do. I chose to watch from the ground, as the cost of a tour is quite expensive. If you decide to go for it, be sure to set aside a few hundred USD for the trip. From what I’ve heard, you’ll wake up around 4:30 AM and head to the take-off location, returning by around 9:00 AM.

#### Sunset Boat Cruise
Be sure to spend at least one evening on a slow cruise down the Ayeyarwady River. It’s a wonderful way to enjoy distant views of some of the pagodas and relax after a long day of exploration. Several companies offer these cruises at very affordable prices. Our boat included snacks, drinks, and even alcohol. The trips range from half an hour to two hours. Book through your hotel for convenience.

#### The Big Three Temples
With over a thousand pagodas to explore in Bagan, there are three main structures that hold significant importance to locals: Shwesandaw, Thatbyinnyu, and Shwezigon. Be sure to make time to visit these iconic pagodas during your trip—you’re likely to come across them without even trying.

---
## Day 24: Bus to Kalaw
Long-distance buses run the route multiple times a day, with the overnight option being the most popular. I recommend checking with a travel agent in Bagan to book your tickets before heading to the bus stop
---
## Day 25-26: Relaxing at Lake Inle
These two days take us to the stunning Lake Inle, located just outside the city of Kalaw. Unfortunately, I wasn’t able to make it to Lake Inle during this trip, but everyone I spoke to highly recommended not missing it. The lake is known for its breathtaking scenery, traditional Intha stilt houses, and the unique leg-rowing fishermen.
From what I’ve heard and seen through photos, the calm waters, floating gardens, and vibrant markets make Lake Inle a truly unforgettable destination. Huge thanks to my friend Toby for sharing those beautiful pictures and giving me a glimpse of what I missed!




---
## Day 27-28: Mandalay City
Mandalay is a fast-paced city with less tourism compared to other parts of the country. It offers a fascinating glimpse into the daily lives of the Burmese people, away from the crowds typically found in Yangon. There are several culturally significant monasteries and temples within the city limits, as well as vibrant markets perfect for shopping and exploring. Mandalay Hill is a great spot for a brisk hike and offers stunning views of the city and sunset on one of your nights. You could also visit the Mandalay Marionettes Theater to catch a local show showcasing Myanmar’s rich history and culture.
As for me, I mainly wandered the city without specific destinations in mind. Since this is the last stop before returning to Yangon, you might not feel as inclined to spend too much time here, but there are definitely some interesting sights worth exploring.

---
## Day 29-30: Return to Yangon
The final two days of the trip are a return to where it all began. The bus from Mandalay to Yangon takes about 8 hours. Alternatively, Mandalay has a large international airport if you prefer to fly, depending on your next destination.
If you return to Yangon, you’ll have plenty of time to revisit the markets and pick up any final souvenirs or trinkets you might want to take home. Enjoy these last couple of days, savor some delicious food, and take the time to reflect on the incredible month of experiences you’ve had.

---
## Concluding Thoughts
Your month-long journey through Myanmar is bound to be an unforgettable adventure, filled with stunning landscapes, rich culture, and warm hospitality. From the serene beaches of Ngapali to the ancient wonders of Bagan, and the tranquil beauty of Lake Inle to the bustling streets of Yangon and Mandalay, each destination offers its own unique charm and insight into Myanmar’s diverse culture.
The highlights of your trip—exploring historic pagodas, witnessing breathtaking sunrises, and embracing the freedom of riding a motorcycle—are sure to stay with you. Myanmar’s blend of natural beauty, vibrant traditions, and friendly locals makes every moment special. Despite the occasional long and bumpy journeys, the sense of discovery and connection with the people and places makes the experience truly worthwhile.
As you reflect on your journey, you’ll likely feel grateful for the memories, experiences, and the chance to explore a country that feels both timeless and unique. Myanmar’s beauty lies not just in its landscapes but in the people who call it home. You’ll leave with a deeper appreciation for the warmth and resilience of its people and a desire to return and explore even more of this enchanting land.
---
*Update: Unfortunately as of this time (June 2021) Myanmar is experiencing major political and civil unrest. Taken from the advice of friends on the ground there— I can not recommend traveling to Myanmar at the time of writing. Pray for Myanmar!*
*Update 2: The political situation in Myanmar has escalated (July 2022). Travel is still not recommended.*
*Update 3: As of 2025, some tourists have reported that travel is doable. However many governments still have do not travel advisories. DYOR.*
---
### Other Myanmar Guides:
[The Top 3 Hidden Beaches of Myanmar: A Guide to Tizit, Grandfather, and Mergui](https://hes.npub.pro/post/1705254252735/)
---
### More from Hes:
[Art](https://hes.npub.pro/tag/art/)
[Store](https://plebeian.market/p/517d6542a081d61ecd8900ad9e2640290e2cf06f516c5e5f3edadfbde446bff4/stall/1db0cdfe0e39c4bd81b903902eeda74e6aa0f0b56e30851f327e6d0c292c5c06)
[Travel Guides](https://hes.npub.pro/tag/travel/)
[Photography](https://hes.npub.pro/tag/photography/)
[Writings](https://hes.npub.pro/tag/money/)
---
*Originally Published June 15, 2021. Edited with Nostr friendly images on 1/5/2025*
-

@ 1cb14ab3:95d52462
2025-01-04 20:07:38
*When you think of Myanmar, **beautiful beaches and crystal-clear waters** likely aren’t the first things that come to mind.*
Think again. **Southern Myanmar is home to some of the most stunning and untouched beaches in Southeast Asia.** These pristine shores rival those of Thailand, the Maldives, and even Hawaii, yet remain largely hidden due to limited infrastructure and minimal tourism.
I spent countless hours getting lost, asking for directions, and exploring remote villages, so you won’t have to. With **unreliable Google Maps and few signs of modern development**, navigating this region requires patience and curiosity. Get ready to discover Myanmar’s best-kept coastal treasures—and **why you might want to skip Thailand in favor of a more off-the-beaten-path adventure.**
Here’s a look at my top three hidden beaches in southern Myanmar.
---
## 3: Tizit Beach - A Sanctuary Shrouded by Mountains

*Tizit Beach is situated **about one hour south of Dawei city**. Getting there is no easy feat and is not recommended for the faint of heart.*
**The roads are rough, unlit, and sandy**, making them a challenge to navigate. Only attempt the trip if you’re confident on a motorbike, and be sure to double-check that your bike is in good working condition, especially with functional brakes. As a reward for your efforts, **you’ll find very few—if any—tourists at Tizit Beach**. The only people you’re likely to encounter are local children and fishermen along the shore.
To reach Tizit Beach, **you’ll need to rent a motorbike and traverse a steep mountain pass**. The journey takes roughly an hour each way, but the seclusion and untouched beauty are well worth the effort.
#### Map to Tizit Beach:

#### Directions:
Start by crossing the water west of Dawei and heading left, **heading south towards Nyinmaw**. As you travel down the peninsula from Dawei, there is essentially one main road to follow. **Stay on this road for about 30 minutes**, keeping an eye out on the right side for a small sign marking Tizit Beach.
You might miss the sign on your first pass, as I did, so pay attention to your GPS. **If you’ve passed Nyinmaw, you’ve gone too far**. Once you spot the Tizit Beach sign, you’ll notice a school playground and a road leading toward the mountains. Take the right turn here and **continue over the mountain pass for about 20 minutes**:

At the bottom of the mountain pass, **you’ll reach a fork in the road** with unclear signs. **If you go left, you’ll end up in a small cemetery**, which is a dead-end. The left fork looks like this:

Instead, **take the right fork, which will lead you through a small residential area to the waterfront**. Keep in mind that many of the beaches in this region experience significant flooding in the morning, so **arriving after 3:00 PM is probably your best bet**.
As you arrive, you’ll be greeted by panoramic views of lush mountains, a vast delta plain, and crystal-clear blue waters:



The sand at Tizit Beach is a rich brownish-orange hue, often turning into deep red around sunset. It’s soft, clean, and much wider than other beaches in the area, giving you more room to set up camp away from the tide. **The water is warm enough for swimming**, with no strong currents, making it suitable for experienced swimmers. Please note, however, that **there are no lifeguards**, so swim at your own risk.
A few wooden fishing vessels are docked off the coast, and **the locals are incredibly friendly**:


One of the highlights of Tizit Beach is the sunset cruise along the water. **The sand hardens near the shore, allowing you to ride a motorcycle along the beach**. It was one of my best memories from the 30 days I spent in Myanmar.


Sunsets at Tizit are truly epic, casting everything in red. However, **don’t linger too long, as the mountain pass isn’t lit, and riding back in the dark can be quite sketchy**. If you plan to stay for sunset, make sure your motorcycle lights are working and **be prepared to leave immediately after the sun sets**.


---
## 2: Grandfather Beach - Popular, but Plentiful

*Grandfather Beach is one of the most striking beaches in Dawei and **a popular spot for locals**. Though it’s relatively well-visited, its size ensures it doesn’t feel overcrowded. The beach is a bit of a challenge to find, but the effort is worth it once you arrive.*
**Getting here requires about 3 hours on a motorbike** from Dawei city, factoring in photo stops and meals along the way.
#### Map to Grandfather Beach:

#### Directions:
To reach Grandfather Beach, **head south from Dawei on the main road and continue down the peninsula for several hours**. The route winds through jungle-covered terrain, and eventually, the road will cut across the peninsula, running parallel to the coastline. Once you crest a hill and spot the ocean below, you’re getting close.
Look for the town of **Kyauk Wap Pyin at the base of the hill**:

Once in Kyauk Wap Pyin, **take a right from the east side of the land, heading west towards the ocean**. There is really only one main road, so it shouldn't be too hard to spot. Follow the small road through the town for about 20 minutes.
The road will lead to a **fishing village along the west coast that looks like this**:

From the fishing village, **look for the orange-dirt road leading to the beach**. It’s steep, narrow, and a bit tricky to navigate, but a fun ride if you’re up for the adventure. **The road is on the right-hand side as you face the sea from the village**. You can see it in the image above.
Grandfather Beach is no stranger to daytime flooding, so **if you arrive after noon, you may find yourself wading through waist-deep water from the parking area to the beach**. Riding on the beach is only possible in the early morning before the tides rise.

The flooding isn’t as troublesome as it might seem. **The local restaurants are well adapted, elevated above the waterline**, and offer swings set up perfectly above the waves. The sand at Grandfather Beach is the softest of all three beaches mentioned in this article, though it’s narrower and less pristine than Tizit.

This beach sees more local visitors, so don’t expect a completely secluded experience. However, **it does have the most infrastructure, with plenty of options for food and drink**. If you plan to stay near Grandfather Beach, watching the sunset is highly recommended. Otherwise, the long and dark return journey to Dawei is best avoided.
To fully enjoy Grandfather Beach, **plan for an entire day to soak in the scenery, relax, and make the most of your visit.**




---
## 1: The Mergui Archipelago - An Unexplored Haven

*This should come as no surprise to anyone familiar with Myeik: the **hundreds of remote islands in the Mergui Archipelago truly stand out as the top destination** for beaches in the region.*
Had it not been for a spontaneous trip to Yangon without plans and a quick browse of satellite maps, I might never have discovered the sheer magnificence of the Mergui Archipelago. **Information about this area is scarce, and tourism remains extremely limited**. While many islands are off-limits, a few offer stunning private beaches that are accessible and worth visiting.
I was surprised to learn that **many people I spoke to during my month in Myanmar had no idea these kinds of breathtaking islands existed**. I feel a strong sense of responsibility to share this hidden gem with others, encouraging them to experience it firsthand. **The best way to explore is through island-hopping tours from Myeik city**. Tours vary in length and cost, ranging from a couple of hundred dollars for 2-3 day trips to thousands for longer yacht expeditions. Most tours include food, tents, and drinks, but always confirm these details with the booking agency.

During my five days in the Archipelago, I encountered only three other foreign tourists. The guide mentioned that **many of the islands we visited had only been seen by a few hundred foreigners at most**. The isolation of the region was so profound that even some of my Burmese friends weren’t aware of its existence.
At times, I felt a bit intrusive, considering how little tourism has reached this remote paradise. However, **the welcoming nature of the islanders, who live off the sea and have no contact with the tour guides, made the experience all the more genuine**.

One memorable moment was camping on an island where **I shared the night with only the island caretaker and his ten puppies**. Each day, we were taken by boat to explore nearby islands, enjoying swimming, beach time, and snorkeling before returning to the campsite. **For certified SCUBA divers, this area is a dream—home to impressive coral reefs and diverse marine life**.



The surreal feeling of being in such an untouched place is hard to describe. Knowing **this is one of the few remaining uncharted areas on earth** makes the experience truly unforgettable. If you’re planning a trip to Asia, **the Mergui Archipelago should absolutely be at the top of your list**.




---
### Closing Remarks
Myanmar is truly a remarkable country, with a rich and complex history. **The people I met were some of the friendliest and most optimistic I’ve encountered, despite the challenges they’ve faced**. While this guide highlights some of the stunning beaches, **my main aim is for every visitor to connect with the locals on a deeper level**. They have incredible stories to share, and I’ve made friendships that will last a lifetime.
Traveling through Myanmar offers much more than just beautiful landscapes and serene beaches— it’s an opportunity to understand and appreciate the resilience and warmth of its people. **I hope that everyone who visits Myanmar will take the time to sit down, listen, and engage with the locals**.
Enjoy your journey.
*— Hes*
---
*Originally published May 7, 2021 by Hes. Re-uploaded to Nostr on 1/14/2024. Re-edited 1/4/2025 with new Nostr friendly media links.*
-

@ 1cb14ab3:95d52462
2025-01-02 21:31:48
---
## No. 6 - Zhujiajiao Canal Chasing

For a tranquil escape from the hustle and bustle of the city cruise to Zhujiajiao -- an epic water town dating back to the Ming and Qing dynasties. It's only about 50 kilometers from the downtown and makes for an easy day trip. Hop on the subway and get there in an hour. Zhujiajiao has canals, bridges, and ancient buildings, offering a glimpse into the town's rich history. Take a boat ride along the canals for the best views of traditional houses and temples. Then explore the town on foot and get lost in attractions like the Kezhi Garden, Yuanjin Temple, and the Qing Dynasty Post Office. Don't forget to grub-up with all of the great food vendors nearby.
---
## No. 7 - China Art Museum

China Art Museum is absolutely worth the trip solely for its awe-inspiring architecture. The towering structure casts a tall shadow over bystanders. Step inside and you'll find a world of art waiting. The blend of permanent and temporary exhibits offers hours of art-gazing. Give yourself at least half a day to fully immerse in the creative haven in Pudong. To get to the China Art Museum, you can take Line 2 of the Shanghai Metro and get off at the Pudong Avenue Station (Chinese: 浦东大道站). The museum is located near Exit 4 of the station.
---
## No. 8 - Days on The West Bund

Hands down my favorite place in Shanghai. This spot is the go-to for a perfect weekend under the sun. You'll find me setting up a blanket with beer, cards, and snacks, along with a slackline and spike ball setup nearby, surrounded by dogs running around, enjoying the company of old and new friends. When you want a little movement enjoy some climbing, skating, running, or basketball after work. The West Bund is an oasis amidst the chaos of the city. But beware - its popularity is growing, so tread lightly.
---
## No. 9 - Nights Under the Lupu Bridge

Nights under the Lupu Bridge are where it's at, man. Hop on your scooter and cruise over for the ultimate skyline views. Stroll along the walkway, munch on street food, sip drinks, and groove to live tunes. Street vendors serve up traditional snacks and crafts, and the vibe gets lit with spontaneous performances and games. Get ready to soak up the electric energy of Shanghai's Lupu Bridge at night."
---
## No. 10 - A Weekend on Chongming

Escape the city hustle and find your peace on Chongming Island. A weekend getaway on this rural gem is just what you need. Chill out in a farmhouse, soak up the sunset, and enjoy the tranquility. Explore the natural wonders, visit the old museums, and feast on fresh seafood. End your days with a beach walk under the stars. Nothing beats a few nights away from the city chaos.
---
## Additional Photos






---
#### Previous Guide in the Series:
[An Expats Guide to the Best Spots in Shanghai: 001](https://hes.npub.pro/post/1708203955986/)
#### Next Guide in the Series:
[An Expats Guide to the Best Spots in Shanghai: 003](https://hes.npub.pro/post/1735849905551/)
---
### Find Me Elsewhere:
[Website](https://hes.npub.pro/)
[Art](https://hes.npub.pro/tag/art/)
[Travel Guides](https://hes.npub.pro/tag/travel/)
[Photography](https://hes.npub.pro/tag/photography/)
[Storefront](https://plebeian.market/p/517d6542a081d61ecd8900ad9e2640290e2cf06f516c5e5f3edadfbde446bff4/stall/1db0cdfe0e39c4bd81b903902eeda74e6aa0f0b56e30851f327e6d0c292c5c06)
---
*All images are property of Hes. Published 06.29.2024*
-

@ 1cb14ab3:95d52462
2025-01-02 05:57:05
---
## No. 1 - The Less Touristy "Bund"

The Bund is certainly a must-see if you are traveling to Shanghai for the first time - and it will be at the top of every travel guide out there, for good reason - there are equally as stunning alternatives away from the crowds. If you want to enjoy the skyline from a more relaxed perspective, consider the Pudong side of the river. There are parks, basketball courts, and green spaces along the riverbank for you to chill at and take in the sights. You can also hop on a ferry or a sightseeing boat to cross the river and admire the views from the renowned Bund.
---
## No. 2 - Walks Along Golden Street

This one is out in Gubei, a suburban area in the west of Shanghai. It may be a bit of a trek, but it is worth it if you are looking for a more relaxing and peaceful pedestrian street in the city. Golden Street, or Jinxiu Road, is a great place to walk a dog, grab an afternoon drink, or enjoy a romantic dinner with your loved one. While it may be a bit far from downtown, it makes for a great joyride on your scooter or bicycle.
---
## No. 3 - Moganshan Road Graffiti Wall

Moganshan Road is a gem for all things art. It is home to M50, the best art district in the city, where you will find dozens of galleries, studios, and workshops showcasing a wide range of art. There are also plenty of cool spots scattered around the area, particularly the graffiti wall. The wall is a welcome contrast to some of the drab and monotonous architecture found around the city; with colorful display of street art featuring various styles and themes. Stop by and admire the works of local and international artists, and even jump in to join them in adding your own mark. The wall is constantly evolving, so you can always find something new.
---
## No. 4 - Jiaotong University in the Fall

Easily one of the best spots in town for catching rows of bright yellow and red leaves. Jiaotong University is one of the oldest and most prestigious universities in China. The campus is located in Xuhui District and has a mix of Chinese and Western architectural styles to admire as well. Try to visit in late October or early November for the best leaf-peeping. You can walk along the tree-lined paths, set up a blanket in the field for a picnic, or simply take photos and enjoy the scenery.
---
## No. 5 - Day Drinking at Highline

Hands down one of the top five rooftop bars in the city, along with Bar Rouge, Kartel, and others; Highline is a go-to-spot that offers great views of the city and excellent food. Find it on the sixth floor of the Ascott Hotel in Huaihai Road in Xintiandi. Nothing beats a laid back Saturday afternoon at Highline. I prefer the views during the day, though it is equally as nice a night. Sip cocktails, wine, or beer, and enjoy the music and vibe. Highline is a perfect place to spend an afternoon.
---
### Additional Photos





---
#### Next Guide in the Series:
[An Expats Guide to the Best Spots in Shanghai: 002](https://hes.npub.pro/post/1719708820357/)
---
### Find Me Elsewhere:
[Website](https://hes.npub.pro/)
[Art](https://hes.npub.pro/tag/art/)
[Travel Guides](https://hes.npub.pro/tag/travel/)
[Photography](https://hes.npub.pro/tag/photography/)
[Storefront](https://plebeian.market/p/517d6542a081d61ecd8900ad9e2640290e2cf06f516c5e5f3edadfbde446bff4/stall/1db0cdfe0e39c4bd81b903902eeda74e6aa0f0b56e30851f327e6d0c292c5c06)
---
*All images property of Hes. Originally published as an Instagram Guide on Feb. 02, 2021. Reworked and published on Nostr on Feb. 17, 2024.*
-

@ 8e0033c0:352a436e
2025-02-14 11:20:53
AVA là một nền tảng công nghệ tiên tiến được thiết kế để đáp ứng mọi nhu cầu của người dùng trong kỷ nguyên số hóa. Với giao diện hiện đại, trực quan và dễ sử dụng, AVA mang đến trải nghiệm hoàn hảo cho người dùng ở mọi độ tuổi và lĩnh vực. Từ các thao tác cơ bản đến các tác vụ phức tạp, nền tảng này đều đảm bảo sự ổn định và tốc độ vượt trội. AVA không chỉ hoạt động trơn tru trên các thiết bị cá nhân mà còn tối ưu hóa khả năng tương thích trên mọi nền tảng, từ máy tính để bàn đến thiết bị di động, giúp bạn tiếp cận công nghệ ở bất kỳ đâu và bất kỳ lúc nào.
Một trong những điểm mạnh nổi bật của <a href="https://www-ava.com
">AVA</a> là tính bảo mật toàn diện. Nền tảng sử dụng công nghệ mã hóa tiên tiến và hệ thống bảo mật nhiều lớp nhằm bảo vệ tối đa thông tin người dùng. Tất cả các giao dịch và dữ liệu đều được đảm bảo an toàn, giúp người dùng hoàn toàn yên tâm trong quá trình sử dụng. Hơn nữa, AVA luôn cập nhật các tiêu chuẩn bảo mật mới nhất, đảm bảo hệ thống luôn sẵn sàng đối phó với những nguy cơ tiềm ẩn. Nhờ cam kết mạnh mẽ về bảo mật, AVA đã trở thành sự lựa chọn đáng tin cậy của nhiều cá nhân và tổ chức trên toàn thế giới.
Không chỉ mạnh về bảo mật, AVA còn cung cấp khả năng cá nhân hóa cao, mang lại trải nghiệm tối ưu cho từng người dùng. Nền tảng cho phép tùy chỉnh giao diện, sắp xếp các tính năng theo nhu cầu và phong cách sử dụng riêng. Điều này tạo nên sự linh hoạt vượt trội, giúp AVA trở thành công cụ đắc lực cho mọi đối tượng người dùng, từ cá nhân đến doanh nghiệp. Với khả năng cá nhân hóa này, người dùng không chỉ được hỗ trợ về mặt công nghệ mà còn có thể phát triển hiệu quả các hoạt động và dự án của mình trên nền tảng này.
AVA cũng là một nền tảng thúc đẩy kết nối cộng đồng. Nền tảng cung cấp các công cụ hỗ trợ giao lưu và chia sẻ kiến thức, giúp người dùng không chỉ sử dụng công nghệ mà còn phát triển các mối quan hệ bền vững. Các diễn đàn trao đổi, hội thảo trực tuyến và sự kiện cộng đồng được AVA tổ chức nhằm khuyến khích sự gắn kết và học hỏi lẫn nhau. Đây không chỉ là nơi để tìm kiếm giải pháp công nghệ mà còn là không gian để phát triển bản thân và khám phá các cơ hội mới trong mạng lưới toàn cầu.
Sự kết hợp hoàn hảo giữa công nghệ hiện đại, tính bảo mật vượt trội, khả năng cá nhân hóa và tinh thần cộng đồng đã giúp AVA vươn lên trở thành nền tảng công nghệ hàng đầu. Không ngừng đổi mới và cải tiến, AVA cam kết mang lại những giá trị thiết thực nhất cho người dùng. Đây không chỉ là một nền tảng hỗ trợ mà còn là người bạn đồng hành đáng tin cậy, giúp bạn chinh phục mọi thử thách và đạt được những mục tiêu quan trọng trong hành trình phát triển của mình.
-

@ 42342239:1d80db24
2024-12-22 08:38:02
The EU's economy is facing a number of challenges, from high energy costs to low productivity. But behind the official rhetoric lies an assumption that is rarely questioned: that the green transition will automatically lead to economic growth and increased prosperity. But is this really true?
In Germany, which is once again forced to bear the label "Europe's sick man", Chancellor Olaf Scholz is struggling with alarmingly low confidence figures ahead of the election in February. But perhaps this is not so surprising. German industrial production has been trending downward since the green agenda became fashionable. Energy-intensive production has decreased by a full 20% in just a few years. Volkswagen is closing factories, Thyssenkrupp is [massively laying off employees](https://edition.cnn.com/2024/11/25/business/thyssenkrupp-steel-germany-layoffs/index.html), and more than three million pensioners [are at risk of poverty](https://www.dw.com/en/germany-more-than-3-million-pensioners-at-risk-of-poverty/a-70799712).
If this is Europe's "man on the moon" moment, as EU Commissioner von der Leyen [expressed it in 2019](https://ec.europa.eu/commission/presscorner/detail/en/speech_19_6749), then it's not much to brag about. At least, not if you're not a sadist.
The former ECB chief Mario Draghi's report on the EU's competitiveness has been discussed previously in Affärsvärlden, among other things [by the author](https://www.affarsvarlden.se/kronika/enlund-lar-av-elon-musk-vi-behover-ett-mer-radikalt-europa) and by [Christian Sandström](https://www.affarsvarlden.se/artikel/sandstrom-super-marios-diagnos-game-over-europa). One of the problems pointed out was that European companies have significantly higher energy costs than their American competitors, with electricity prices 2-3 times higher and natural gas prices 4-5 times higher.
Germany is perhaps worst off, thanks in part to former Chancellor Angela Merkel's decision to completely phase out nuclear power (a decision that not only [lacked popular support](https://www.world-nuclear-news.org/Articles/Wide-public-support-for-keeping-German-reactors-on) but which she also refuses to acknowledge as a mistake). The sabotage of Nord Stream made the situation worse.
#### Without Real Capital, No Economic Prosperity
Germany's phasing out of nuclear power plants is an example of how political decisions have contributed to reducing the economy's capacity. The same applies to the sabotage of Nord Stream. Real capital, such as buildings, machinery, and equipment, is crucial for the economy's productivity (e.g., measures such as GDP per hour worked). A larger and more efficient capital stock enables the production of more goods and services with the same amount of labor, leading to greater production, higher wages, and increased material prosperity. This is basic economics. On the other hand, when real capital is declared obsolete due to political decisions, as in the case of the shutdown of nuclear power, it reduces the economy's capacity. The same applies when real capital is destroyed, as was the case with Nord Stream.
#### More Working Real Capital Will Be Put on the Back Burner
EU Commissioner von der Leyen [promises](https://neighbourhood-enlargement.ec.europa.eu/news/speech-president-von-der-leyen-european-parliament-plenary-new-college-commissioners-and-its-2024-11-27_en) improvement. She seems convinced that the EU's decline can be reversed by tripling down on the bloc's green goals, and listed decarbonization as one of three key pillars in a new "Competitiveness Compass". When reality does not live up to expectations, you can always press "Ctrl+Alt+Slogan" and hope that no one notices that nothing has improved.
However, her plans mean that existing and currently functioning real capital will be written off to an even greater extent in the future. This can be compared to a nation that gradually expands its nature reserves year after year. As it happens, this is also taking place. [The Kunming-Montreal framework for biodiversity](https://www.regeringen.se/pressmeddelanden/2022/12/nytt-globalt-ramverk-for-biologisk-mangfald/) means that 30% of all areas, on land and at sea, must be protected by 2030. A country that currently conserves less than that must therefore identify additional areas that can be protected. The process of protecting 30% of all areas will likely reduce the economy's productive potential. With shrinking fields, there will be fewer carrots (unless significant technological progress is made).
#### Security Policy and Preparedness Consequences
On the current path, more real capital will be put on the back burner, which can have far-reaching consequences, not least for our security policy. For example, if Russia can produce artillery shells about three times faster, at a cost that is roughly [a quarter of what it costs Ukraine's Western allies](https://news.sky.com/story/russia-is-producing-artillery-shells-around-three-times-faster-than-ukraines-western-allies-and-for-about-a-quarter-of-the-cost-13143224), then it's clear that this has security policy consequences. Similarly, if electricity prices in Germany are five times higher than in China, which is currently [the case](https://worldpopulationreview.com/country-rankings/cost-of-electricity-by-country), then this will also have negative security policy consequences. Compared to the EU, China actually has a higher carbon dioxide emission level per capita, with a difference of about 50% according to [available data](https://ourworldindata.org/grapher/co-emissions-per-capita?tab=chart). Adjusted for international trade, China emits [10% more than Sweden per capita](https://ourworldindata.org/explorers/co2?Gas+or+Warming=CO%E2%82%82&Accounting=Consumption-based&Fuel+or+Land+Use+Change=Coal&Count=Per+capita&country=CHN\~SWE\~OWID_EU27\~DEU).
A preparedness perspective can also be found. In the early 1990s, Swedish farmers produced nearly 75% of the country's food. Today, Sweden's population has increased significantly, but food production has not kept pace. Every other bite is imported today. In Sweden, we can even boast that we cannot even provide for ourselves with the simplest of crops - [potatoes](https://www.lrf.se/las-mer/forsorjningsgrad/). Can we really be sure that significantly expanded nature reserves, as prescribed by the Kunming-Montreal framework for Sweden, will not further deteriorate our food preparedness?
#### Reminds One of Little Gnomes
I am reminded of an episode from the 90s TV series South Park, where [little gnomes collect underpants](https://www.youtube.com/watch?v=WpnM37A4P_8). When asked about their plan, they described their method:
1. collect underpants
2. ???
3. profit!
Translated to the green transition (the German *Energiewende*):
1. destroy real capital and conserve land and sea
2. ???
3. economic prosperity!
#### What Can the EU Really Afford?
Economics is fundamentally about managing scarce resources, which many people seem to have forgotten. It's high time to question what the EU can really afford. Can we really afford to arm ourselves for war against Russia, China, and Iran while at the same time tying our own hands with green promises of reduced carbon dioxide emissions and increased biodiversity? This in a situation where the next US administration is likely to invest heavily in increasing its competitive advantages through deregulation, lower energy prices, tax cuts, and a [withdrawal from the Paris Agreement](https://en.wikipedia.org/wiki/United_States_withdrawal_from_the_Paris_Agreement)?
When von der Leyen was responsible for the German military, the situation became "[catastrophic](https://www.express.co.uk/news/world/1445429/ursula-von-der-leyen-news-germany-army-eu-brexit-uk-spt)". All six of the country's submarines were [out of commission](https://www.bbc.com/news/world-europe-43134896). At times, not a single one of the country's 14 transport aircraft could fly. German soldiers had to use [broomsticks](https://www.atlanticcouncil.org/blogs/natosource/german-soldiers-used-broomsticks-instead-of-guns-during-nato-exercise/) instead of guns during exercises.
Hopefully, von der Leyen will show more success in her handling of the EU's economy, defense, and preparedness than she has shown in her role as German Defense Minister. However, it may also be time for more people to challenge the prevailing narratives that shape our policies. What if the facts don't quite add up to the truth we're being told?
-

@ 42342239:1d80db24
2024-12-19 15:26:01
Im Frühjahr kündigte EU-Kommissarin Ursula von der Leyen an, sie wolle
einen „ [Europäischen
Demokratieschild ](https://www.euronews.com/my-europe/2024/05/14/von-der-leyen-pitches-plan-to-shield-eu-from-foreign-interference-if-re-elected)"
schaffen, um die EU vor ausländischer Einflussnahme zu schützen. Von der
Leyens Demokratieschild befindet sich derzeit in der Planungsphase. Die
erklärte Absicht besteht darin, eine „ [spezielle
Struktur ](https://neighbourhood-enlargement.ec.europa.eu/news/statement-european-parliament-plenary-president-ursula-von-der-leyen-candidate-second-mandate-2024-2024-07-18_en)zur
Bekämpfung ausländischer Informationsmanipulation und -einmischung" zu
schaffen. Obwohl es als Instrument zum Schutz der Demokratie angepriesen
wird, vermuten einige, dass es sich in Wirklichkeit um einen
verschleierten Versuch handelt, abweichende Meinungen zu unterdrücken.
Der im vergangenen Jahr verabschiedete Digital Services Act (DSA) der EU
ist eng mit diesem Schild verbunden. Durch den DSA riskieren große
Social-Media-Plattformen wie Elon Musks X erhebliche Geldstrafen, wenn
sie den Forderungen der EU-Bürokraten nach Zensur und Moderation nicht
nachkommen.
*Note: This text is also [available in English at substack.com](https://enlund.substack.com/p/the-knights-of-free-speech). Many thanks to `stroger1@iris.to` for this German translation.*
Im krassen Gegensatz dazu hat sich der künftige US-Präsident Donald
Trump als klarer Befürworter der Meinungsfreiheit und entschiedener
Gegner der Zensur hervorgetan. Er wurde bereits von YouTube gesperrt,
hat jedoch erklärt, er wolle [„das linke Zensurregime zerschlagen und
das Recht auf freie Meinungsäußerung für alle Amerikaner
zurückfordern" ](https://rumble.com/v20tc7k-president-trump-details-his-plans-to-fight-for-freedom-of-speech-121522.html).
Er hat auch behauptet: „Wenn wir keine freie Meinungsäußerung haben,
dann haben wir einfach kein freies Land."
Sein künftiger Vizepräsident J.D. Vance hat sogar angedeutet, dass er
bereit
sei, [US-Militärhilfe ](https://x.com/CollinRugg/status/1855460020357562814)von
der Achtung der Meinungsfreiheit in den europäischen NATO-Ländern
abhängig zu machen. Vances Aussage erfolgte, nachdem
EU-Binnenmarktkommissar Thierry Breton vor seinem geplanten Gespräch mit
Trump einen umstrittenen Brief an Musk geschickt hatte. Heute erscheint
dies als unkluger Schritt, nicht zuletzt, weil er als Versuch gewertet
werden kann, die US-Wahl zu beeinflussen -- etwas, das paradoxerweise
dem erklärten Zweck von von der Leyens Demokratieschild (d. h.
ausländische Manipulationen zu bekämpfen) widerspricht.
> Wenn die NATO möchte, dass wir sie weiterhin unterstützen, und die
> NATO möchte, dass wir weiterhin ein gutes Mitglied dieses
> Militärbündnisses sind, warum respektieren Sie dann nicht die
> amerikanischen Werte und die freie Meinungsäußerung?
**- J.D. Vance**
In der EU sind Verfechter der Meinungsfreiheit in der Öffentlichkeit
weniger verbreitet. In Deutschland hat Vizekanzler [Robert
Habeck ](https://x.com/hori_____zont/status/1855172591469609196)kürzlich
erklärt, er sei „überhaupt nicht glücklich darüber, was dort \[auf X\]
passiert ... seit Elon Musk das Amt übernommen hat", und wünscht sich
eine strengere Regulierung der sozialen Medien. Die Wohnung eines
deutschen Rentners wurde kürzlich von der Polizei durchsucht, nachdem er
ein Bild von Habeck mit [einem abfälligen Kommentar veröffentlicht
hatte ](https://archive.ph/KrZzT). Die deutsche Polizei verfolgt auch
einen anderen Kontoinhaber, der einen Minister als „übergewichtig"
bezeichnet hat. Dieser überhaupt nicht übergewichtige Minister hat
kürzlich [eine Zeitung verboten ](https://archive.ph/68n2z), die mit der
laut Meinungsumfragen zweitgrößten Partei Deutschlands, der Alternative
für Deutschland (AfD), verbündet ist. Eine Partei, die 113 deutsche
Parlamentarier nun [offiziell verbieten
wollen ](https://www.aa.com.tr/en/europe/german-lawmakers-initiate-process-to-ban-far-right-afd-party/3393091).
Nach dem US-Wahlergebnis stellen sich viele unbeantwortete Fragen. Wird
das Weiße Haus seine Aufmerksamkeit auf die restriktivere Haltung der EU
richten, die als Untergrabung der freien Meinungsäußerung angesehen
werden kann? Oder droht Musks X und Chinas TikTok stattdessen ein
EU-Verbot? Können EU-Länder noch mit militärischer Unterstützung aus den
USA rechnen? Und wenn große amerikanische Plattformen verboten werden,
wohin sollten sich die EU-Bürger stattdessen wenden? Abgesehen von
russischen Alternativen gibt es keine großen europäischen Plattformen.
Und wenn die Frage der Meinungsfreiheit neu überdacht wird, was bedeutet
das für die Zukunft von Parteien wie der deutschen AfD?
-

@ 8e0033c0:352a436e
2025-02-14 11:19:55
Tai88 là một nền tảng công nghệ hiện đại được thiết kế nhằm đáp ứng tối đa nhu cầu của người dùng trong thời đại số. Với giao diện thân thiện, dễ sử dụng, Tai88 mang lại trải nghiệm liền mạch, giúp mọi thao tác trở nên đơn giản và nhanh chóng. Nền tảng này hoạt động ổn định trên nhiều thiết bị, từ máy tính cá nhân đến điện thoại di động, mang lại sự linh hoạt vượt trội cho người dùng. Tính tương thích cao của Tai88 giúp bạn dễ dàng sử dụng ở bất kỳ đâu và bất kỳ lúc nào, hỗ trợ tối đa cho công việc, học tập hoặc giải trí.
Một trong những ưu điểm vượt trội của <a href="https://tai88.net
">TAI88</a> là hệ thống bảo mật mạnh mẽ, giúp bảo vệ người dùng trước những rủi ro tiềm tàng. Sử dụng các công nghệ mã hóa tiên tiến và lớp bảo mật đa tầng, nền tảng này đảm bảo rằng mọi thông tin cá nhân và dữ liệu quan trọng của bạn luôn được bảo vệ an toàn. Tai88 liên tục cải tiến và cập nhật các giải pháp bảo mật mới nhất, mang lại sự an tâm tuyệt đối trong quá trình sử dụng. Điều này không chỉ giúp Tai88 tạo dựng niềm tin với người dùng mà còn khẳng định vị thế là một nền tảng đáng tin cậy trên thị trường.
Tai88 cũng nổi bật với khả năng tùy chỉnh linh hoạt, mang đến cho người dùng một trải nghiệm cá nhân hóa vượt trội. Người dùng có thể điều chỉnh giao diện, cài đặt các tính năng theo nhu cầu và sở thích cá nhân, tạo ra môi trường sử dụng phù hợp nhất. Với sự linh hoạt này, Tai88 không chỉ là một công cụ công nghệ mà còn là một giải pháp đa năng, đáp ứng tốt các nhu cầu từ cơ bản đến phức tạp. Khả năng này đã giúp nền tảng ghi điểm với cộng đồng người dùng, từ cá nhân cho đến doanh nghiệp.
Ngoài các tính năng ưu việt, Tai88 còn là cầu nối cộng đồng, tạo điều kiện cho người dùng giao lưu và chia sẻ kinh nghiệm. Thông qua các diễn đàn, sự kiện trực tuyến và các công cụ hỗ trợ tương tác, Tai88 khuyến khích người dùng kết nối và học hỏi lẫn nhau. Đây không chỉ là nơi cung cấp công nghệ mà còn là một không gian để xây dựng mối quan hệ, khám phá những cơ hội mới và phát triển bản thân. Tinh thần cộng đồng chính là một trong những yếu tố làm nên giá trị khác biệt của Tai88.
Sự kết hợp giữa công nghệ hiện đại, bảo mật toàn diện, tính linh hoạt và tinh thần cộng đồng đã giúp Tai88 trở thành một nền tảng công nghệ dẫn đầu trong thời đại số hóa. Tai88 không ngừng đổi mới và hoàn thiện để mang đến những trải nghiệm tốt nhất cho người dùng, từ đó đáp ứng mọi nhu cầu trong công việc lẫn cuộc sống. Với sự cam kết về chất lượng và hiệu quả, Tai88 chắc chắn sẽ là người bạn đồng hành đáng tin cậy trong hành trình chinh phục những mục tiêu lớn lao.
-

@ 8e0033c0:352a436e
2025-02-14 11:18:34
V123 là nền tảng công nghệ được phát triển nhằm mang đến sự tiện lợi và tối ưu hóa trải nghiệm người dùng. Với giao diện thân thiện và thiết kế trực quan, V123 giúp người dùng dễ dàng tiếp cận các tính năng mà không cần quá nhiều thao tác phức tạp. Từ việc hỗ trợ công việc hàng ngày đến các nhu cầu giải trí, nền tảng này hoạt động mượt mà trên mọi thiết bị, đảm bảo tính linh hoạt và sự ổn định cao. Đây chính là giải pháp công nghệ lý tưởng cho những ai đang tìm kiếm sự kết hợp giữa hiệu quả và tính đơn giản trong một nền tảng duy nhất.
Bảo mật luôn là yếu tố được ưu tiên hàng đầu trên <a href="https://v123.store">V123</a>. Nền tảng này áp dụng các công nghệ mã hóa tiên tiến và hệ thống bảo mật đa lớp, giúp bảo vệ dữ liệu cá nhân của người dùng trước mọi nguy cơ tiềm tàng. Tất cả các giao dịch và thông tin đều được bảo vệ chặt chẽ, mang lại sự an tâm tuyệt đối trong quá trình sử dụng. Hơn nữa, V123 liên tục cập nhật các biện pháp an ninh mới nhất, đảm bảo nền tảng luôn đi đầu trong việc bảo vệ quyền riêng tư của người dùng. Sự an toàn mà V123 mang lại đã giúp nền tảng này trở thành lựa chọn đáng tin cậy cho hàng triệu người dùng trên toàn thế giới.
Không chỉ mạnh mẽ về bảo mật, V123 còn đặc biệt linh hoạt trong việc tùy chỉnh trải nghiệm người dùng. Nền tảng cho phép người dùng cá nhân hóa giao diện, điều chỉnh các tính năng phù hợp với nhu cầu sử dụng riêng của mình. Điều này mang lại cảm giác thoải mái và tiện nghi khi sử dụng, đồng thời giúp V123 trở thành một công cụ công nghệ lý tưởng phù hợp với nhiều phong cách và mục đích khác nhau. Khả năng tùy biến cao này không chỉ tăng tính tương tác mà còn giúp người dùng khai thác tối đa tiềm năng của nền tảng.
V123 cũng chú trọng vào việc xây dựng một cộng đồng người dùng gắn kết. Thông qua các diễn đàn trao đổi, sự kiện trực tuyến và các công cụ hỗ trợ tương tác, nền tảng này khuyến khích người dùng chia sẻ ý tưởng, học hỏi lẫn nhau và phát triển các mối quan hệ mới. V123 không chỉ là một nền tảng công nghệ mà còn là một cầu nối, giúp người dùng mở rộng mạng lưới kết nối và khám phá những cơ hội mới. Sự gắn kết trong cộng đồng người dùng của V123 là yếu tố quan trọng làm nên sức mạnh và giá trị lâu dài của nền tảng.
Sự kết hợp hoàn hảo giữa công nghệ hiện đại, bảo mật vượt trội và tinh thần cộng đồng đã giúp V123 trở thành nền tảng công nghệ toàn diện trong thời đại số. V123 không ngừng đổi mới để mang đến những tính năng và giải pháp tối ưu nhất, đáp ứng kỳ vọng của người dùng trên toàn cầu. Với cam kết về chất lượng và sự tiện lợi, V123 không chỉ là một công cụ hỗ trợ mà còn là người bạn đồng hành đáng tin cậy trong mọi hành trình chinh phục mục tiêu.
-

@ eac63075:b4988b48
2024-12-18 11:35:25
[🇧🇷 pt-br version](https://www.eddieoz.com/policing-by-design-como-os-novos-planos-de-vigilancia-da-ue-ameacam-a-privacidade-e-a-seguranca/)
The European Union is at a crossroads. While digital innovation and security cooperation remain critical in a connected world, recent proposals to enhance police surveillance and data sharing are stirring deep concerns about individual privacy, data security, and democratic oversight. Two recent reports published by *Statewatch* shed light on troubling developments in the EU’s policing landscape, raising alarms among privacy advocates and civil rights organizations.
The EU’s new plans to expand police surveillance could put your privacy and rights at risk and introduce risks far outweighing their potential benefits. This article will analyze these proposals, their implications, and the growing opposition from privacy and civil liberties defenders.
[Listen the Podcast (Spotify)](https://open.spotify.com/episode/79NheodjVb0C87gCgaDVVE)
[Listen the Podcast (Fountain)](https://www.fountain.fm/episode/Da4mQAi7n4I9ZoRswiL5)
# **Surveillance Infrastructure: Policing by Design**
The first *Statewatch* report, titled [“Policing by Design: The Latest EU Surveillance Plan”](https://www.statewatch.org/news/2024/june/policing-by-design-the-latest-eu-surveillance-plan/), outlines a concerning trend in the EU’s approach to law enforcement. The proposals advocate embedding surveillance tools directly into the design of new technologies, effectively creating an architecture where policing capabilities are integrated into the systems we use daily.
From facial recognition cameras to AI-driven analytics, the EU plans to enhance cross-border police cooperation by ensuring technology is designed to facilitate surveillance from the outset. Known as “policing by design,” this strategy involves building surveillance features directly into technologies we use every day. Imagine a network of cameras or software that can automatically monitor people’s faces or behaviors without any extra installation — it’s like your everyday tech quietly doubling as a police tool. The goal is to enable seamless sharing of data across borders for criminal investigations, but the unintended consequences are alarming.
## **The Problem with “Policing by Design”**
1. Mass Surveillance Normalized: By embedding surveillance features into public and private infrastructure, society risks normalizing mass surveillance, where every movement, transaction, or online interaction is monitored and analyzed.
2. Threats to Privacy: Such initiatives inherently contradict the principle of *privacy by design*, which prioritizes privacy protections in the development of technology. Instead, citizens are being treated as subjects of perpetual suspicion.
3. Lack of Transparency and Accountability: A systemic lack of transparency surrounding these plans raises serious governance issues. Civil society organizations, journalists, and privacy advocates have pointed to a lack of democratic oversight and meaningful debate.
4. Risks of Abuse: Surveillance systems are often deployed under the guise of security but are susceptible to abuse. History shows that tools designed for law enforcement can easily be turned against dissenters, journalists, or marginalized communities.
As the report highlights, these developments could establish a permanent surveillance infrastructure across Europe, enabling the collection of biometric, behavioral, and communications data on an unprecedented scale.
## **Flawed Justifications for Surveillance Expansion**
Privacy advocacy organizations, including the European Digital Rights (EDRi) network, argue that much of the justification for these surveillance plans relies on flawed assumptions. The rhetoric of the *“Going Dark”* report, which claims that law enforcement is losing access to communications due to encryption, has been widely debunked. As EDRi points out, law enforcement already has extensive tools at their disposal to access data and track individuals, but the focus on encryption risks undermining secure communication for everyone.
Instead of addressing systemic issues within law enforcement, these flawed reports have fueled calls for intrusive surveillance systems that risk eroding privacy while offering little evidence of improving public safety.
# **Centralized Police Data: A Substantial Security and Privacy Threat**
A second *Statewatch* report, titled [“EU Police Data Plans Pose Substantial Security and Privacy Threats”](https://www.statewatch.org/news/2024/december/eu-police-data-plans-pose-substantial-security-and-privacy-threats/), explores another equally concerning initiative: the EU’s push to centralize police data repositories and expand their use.
The EU has already established several large-scale databases, such as the Schengen Information System (SIS), which stores data about individuals who may be denied entry into the EU, and the Europol Information System, which can hold details about millions of people, including those not suspected of crimes. For example, a traveler flagged mistakenly in the system could face unnecessary scrutiny, detention, or restrictions when crossing borders — highlighting the real-world risks of inaccurate or overreaching data collection. The new proposals aim to go further, creating an interoperable web of police data accessible to law enforcement agencies across member states. Proponents argue this is necessary for combating cross-border crime and terrorism, but the risks are immense.
## **Key Concerns with Centralized Police Data**
1. Massive Data Collection: The EU’s proposed systems would require the collection of highly sensitive data, including biometric information (fingerprints, facial recognition scans) and behavioral analytics, to track individuals’ activities across borders.
2. Data Misuse and Security Risks: Centralized data systems are prime targets for cyberattacks, data breaches, and misuse. The larger and more interconnected the system, the greater the risks of unauthorized access, theft, or corruption of the data.
3. As *Statewatch* points out, the systems lack robust safeguards to prevent misuse or to ensure that data is handled proportionately and lawfully.
4. Erosion of Trust in Law Enforcement: Building centralized data repositories without meaningful safeguards undermines public trust. Individuals may be less willing to engage with law enforcement if they fear their data will be stored indefinitely, shared across borders, or used inappropriately.
5. Impact on Fundamental Rights: Mass police databases can violate the principle of proportionality, a cornerstone of EU law. By collecting and sharing data indiscriminately, these systems erode fundamental rights, including the right to privacy, freedom of movement, and the presumption of innocence.
## **Civil Society Opposition and Democratic Accountability**
In an open letter to EU institutions, over 30 civil society organizations — including EDRi — have criticized the lack of transparency in the High-Level Group’s (HLG) recommendations for data access. The letter highlights a concerning pattern: while industry stakeholders are included in key discussions, civil society voices remain sidelined. This exclusion undermines democratic accountability and reinforces fears that surveillance policies are being driven by corporate interests rather than public well-being.
These organizations have called for the EU to prioritize transparency, include meaningful public debate, and ensure any law enforcement proposals respect proportionality and fundamental rights.
# **Why Privacy Advocates Are Sounding the Alarm**
The reports from *Statewatch* highlight a fundamental clash between security policy and individual rights. Privacy advocates are urging EU lawmakers to take a step back and critically examine the following issues:
1. Lack of Democratic Oversight: Proposals to integrate surveillance systems and expand police databases are being pushed forward without genuine public debate or oversight. Civil society organizations have been excluded from key discussions.
2. Failure to Uphold Privacy Laws: The EU has some of the strongest privacy laws in the world, including the General Data Protection Regulation (GDPR). However, these proposals risk undermining GDPR principles by enabling indiscriminate data collection and sharing.
3. Ignoring Proportionality: Surveillance systems must be targeted, necessary, and proportionate to their objectives. Embedding policing into technological design and centralizing data far exceeds what is justified for fighting crime and terrorism.
4. Setting Dangerous Precedents: The failure to fully ban harmful surveillance technologies like facial recognition in public spaces sets a troubling precedent. It risks not only eroding privacy within the EU but also encouraging other nations to adopt similar measures, undermining global human rights.
# **A Call for Action: Safeguarding Our Privacy and Rights**
As the EU pushes forward with these plans, the opposition from civil rights defenders grows louder. Policymakers must address the following key demands to prevent an erosion of fundamental rights:
- Implement Privacy by Design: All new technologies must prioritize privacy protections at the design stage, ensuring they are not co-opted for surveillance.
- Establish Robust Oversight: Any new policing tools or databases must be subject to democratic scrutiny, independent oversight, and clear legal frameworks to prevent misuse.
- Reassess Interoperability Plans: Cross-border police cooperation is important, but it must not come at the cost of individuals’ privacy, security, and dignity.
- Strengthen Export Controls: The EU must ban the export of surveillance tools that risk facilitating human rights abuses in authoritarian regimes.
- Prioritize Data Security: Centralized systems require state-of-the-art security measures to protect sensitive data from breaches or misuse.
The EU’s role as a leader in digital rights and privacy is now at stake. If these plans proceed without significant safeguards, Europe risks undermining its own foundational principles of freedom, security, and justice.
# **Conclusion: The Price of Surveillance-Driven Security**
The EU’s surveillance plans may be presented as necessary for security, but they come at a steep cost to privacy, trust, and individual freedoms. Embedding surveillance into our technologies and centralizing police data pose far-reaching risks that cannot be ignored.
As privacy advocates, it is our responsibility to hold policymakers accountable and demand a security framework that upholds, rather than undermines, fundamental rights. Europe’s future must not be built on surveillance by design — but on privacy, democracy, and trust.
-

@ f6488c62:c929299d
2025-02-14 07:52:28
บทวิเคราะห์แนวโน้มราคาบิตคอยน์ปลายสัปดาห์นี้
วันที่ 14 กุมภาพันธ์ 2025 ราคาบิตคอยน์ (BTC) ล่าสุดอยู่ที่ประมาณ 97,032 ดอลลาร์สหรัฐ เพิ่มขึ้น 0.99% จากวันก่อนหน้า โดยมีการเคลื่อนไหวระหว่าง 95,258 - 97,241 ดอลลาร์ ท่ามกลางความผันผวนอย่างต่อเนื่องในตลาดสินทรัพย์ดิจิทัล
ความเคลื่อนไหวล่าสุดสะท้อนถึงสภาวะที่นักลงทุนยังคงจับตาดูนโยบายเศรษฐกิจของสหรัฐฯ อย่างใกล้ชิด ขณะเดียวกัน สถานการณ์แรงเทขายที่เกิดขึ้นในช่วงต้นเดือนกุมภาพันธ์ ซึ่งทำให้ราคา BTC ร่วงลงมาแตะระดับ 90,000 ดอลลาร์ ก็เริ่มคลี่คลายลงบ้างแล้ว โดยนักลงทุนระยะยาวยังคงถือครองเหรียญต่อไป ไม่ได้แสดงความตื่นตระหนก
นักวิเคราะห์มองว่า แนวโน้มราคาบิตคอยน์ในช่วงปลายสัปดาห์นี้ อาจอยู่ในลักษณะของการปรับฐาน หรือแกว่งตัวในกรอบแคบระหว่าง 95,000 - 98,000 ดอลลาร์ เนื่องจากตลาดยังอยู่ในช่วงรอปัจจัยใหม่เข้ามากระตุ้น ทั้งนี้ การเคลื่อนไหวดังกล่าวเกิดขึ้นหลังจากแรงกดดันจากทิศทางดอกเบี้ยของธนาคารกลางสหรัฐฯ (Fed) และสภาพคล่องในตลาดการเงินโลกที่ตึงตัวขึ้น
ทั้งนี้ วันศุกร์สุดท้ายของเดือนกุมภาพันธ์ในทุกปี มักเป็นช่วงเวลาที่ตลาดมีความผันผวนเพิ่มขึ้นจากการปรับพอร์ตการลงทุนของนักลงทุนสถาบัน รวมถึงการปิดสถานะของนักลงทุนรายใหญ่ ทำให้ราคาของสินทรัพย์ดิจิทัลอย่างบิตคอยน์ อาจเกิดการเคลื่อนไหวที่รวดเร็วกว่าปกติ นักลงทุนจึงควรระมัดระวังและวางแผนการลงทุนอย่างรอบคอบในช่วงเวลาดังกล่าว
อย่างไรก็ตาม ความเชื่อมั่นของผู้ถือครองระยะยาวยังคงแข็งแกร่ง โดยเฉพาะกลุ่มนักลงทุนที่เล็งเห็นศักยภาพของบิตคอยน์ในฐานะสินทรัพย์ปลอดภัยในระยะยาว ซึ่งอาจทำให้การปรับฐานของราคายังมีแรงซื้อคอยพยุงอยู่เสมอ
ทั้งนี้ นักลงทุนควรติดตามข่าวสารและปัจจัยแวดล้อมอย่างใกล้ชิด โดยเฉพาะความเคลื่อนไหวของดัชนีเศรษฐกิจสหรัฐฯ และท่าทีของ Fed ที่อาจส่งผลต่อทิศทางของสินทรัพย์เสี่ยง รวมถึงตลาดคริปโตในช่วงถัดไป
-

@ d360efec:14907b5f
2025-02-14 05:35:13
**ภาพรวม LUNCUSDT (OKX):**
LUNCUSDT กำลังอยู่ในช่วงที่ผันผวนและมีความไม่แน่นอนสูง หลังจากที่เคยมีสัญญาณบวกของการกลับตัวใน TF Day แต่ตอนนี้ทั้ง 3 Timeframes แสดงให้เห็นถึงแรงขายที่เข้ามา และแนวโน้มเริ่มไม่ชัดเจน
**วิเคราะห์ทีละ Timeframe:**
**(1) TF Day (รายวัน):** [https://www.tradingview.com/x/ulqLh1c9/](https://www.tradingview.com/x/ulqLh1c9/)

* **แนวโน้ม:** เริ่มไม่แน่นอน (จากเดิมที่เป็น Early Uptrend) หลังจากที่ราคาไม่สามารถยืนเหนือ EMA 50/200 ได้
* **SMC:**
* Break of Structure (BOS): มี BOS ทั้งด้านบนและด้านล่าง
* Change of Character (CHoCH): มี CHoCH ด้านบน
* Higher High (HH) & Higher Low (HL): HH ล่าสุดต่ำกว่า High ก่อนหน้า
* **EMA:**
* EMA 50 และ EMA 200 เคยเป็นแนวรับ แต่ตอนนี้ราคากลับลงมาอยู่ใต้เส้น EMA ทั้งสอง
* **Money Flow (LuxAlgo):**
* เริ่มมีแท่งสีแดงยาวขึ้น แสดงถึงแรงขายที่เข้ามา
* **Volume Profile:**
* Volume หนาแน่นบริเวณ 0.00012000 - 0.00014000 (แนวต้าน)
* **แท่งเทียน:**
* แท่งเทียนล่าสุดเป็นสีแดง แสดงถึงแรงขาย
* **แนวรับ:** บริเวณ 0.00006000-0.00007000
* **แนวต้าน:** EMA 50, EMA 200, 0.00014000, 0.00017953
* **สรุป:** แนวโน้มเริ่มไม่แน่นอน, สัญญาณการกลับตัวเริ่มอ่อนแอ, แรงขายเริ่มเข้ามา
**(2) TF4H (4 ชั่วโมง):** [https://www.tradingview.com/x/SLsNzZi2/](https://www.tradingview.com/x/SLsNzZi2/)

* **แนวโน้ม:** ขาลง (Downtrend) หลังจากราคาหลุด EMA 50
* **SMC:**
* Break of Structure (BOS): มี BOS ด้านล่าง
* Change of Character (CHoCH): ไม่ชัดเจน
* Lower Highs (LH) และ Lower Lows (LL)
* **EMA:**
* EMA 50 และ EMA 200 กลายเป็นแนวต้าน
* **Money Flow (LuxAlgo):**
* สีแดงเป็นส่วนใหญ่ แสดงถึงแรงขาย
* **Volume Profile:**
* Volume ค่อนข้างนิ่ง
* **แท่งเทียน:**
* แท่งเทียนล่าสุดเป็นสีแดง แสดงถึงแรงขาย
* **แนวรับ:** บริเวณ 0.00006000-0.00007000
* **แนวต้าน:** EMA 50, EMA 200, บริเวณ High ก่อนหน้า
* **สรุป:** แนวโน้มขาลง, แรงขายมีอิทธิพล
**(3) TF15 (15 นาที):** [https://www.tradingview.com/x/H8QdIEAL/](https://www.tradingview.com/x/H8QdIEAL/)

* **แนวโน้ม:** ขาลง (Downtrend)
* **SMC:**
* Break of Structure (BOS): มี BOS ด้านล่าง
* Change of Character (CHoCH): มีทั้งด้านบนและด้านล่าง
* Lower Highs (LH) และ Lower Lows (LL)
* **EMA:**
* EMA 50 และ EMA 200 เป็นแนวต้าน
* **Money Flow (LuxAlgo):**
* สีแดงเป็นส่วนใหญ่ แสดงถึงแรงขาย
* **Volume:**
* Volume ค่อนข้างเบาบาง
* **แนวรับ:** บริเวณ Low ล่าสุด
* **แนวต้าน:** EMA 50, EMA 200, บริเวณ High ก่อนหน้า
* **สรุป:** แนวโน้มขาลง, แรงขายมีอิทธิพล
**สรุปภาพรวมและกลยุทธ์ (LUNCUSDT):**
* **แนวโน้มหลัก:** เริ่มไม่แน่นอน (TF Day), ขาลง (TF4H, TF15)
* **Money Flow:**
* Day: แรงขายเริ่มเข้ามา
* 4H: แรงขายมีอิทธิพล
* 15m: แรงขายมีอิทธิพล
* **กลยุทธ์:**
1. **Wait & See (ดีที่สุด):** รอความชัดเจน
2. **Short (เสี่ยงสูง):** ถ้าไม่สามารถ Breakout EMA/แนวต้านได้
3. **ไม่แนะนำให้ Buy:** จนกว่าจะมีสัญญาณกลับตัวที่ชัดเจน
**คำแนะนำ:**
* **LUNC มีความเสี่ยงสูงมาก**
* **ความขัดแย้งของ Timeframes:** Day เริ่มไม่แน่นอน, 4H และ 15m เป็นขาลง
* **ถ้าไม่แน่ใจ อย่าเพิ่งเข้าเทรด**
*Disclaimer:** การวิเคราะห์นี้เป็นเพียงความคิดเห็นส่วนตัว ไม่ถือเป็นคำแนะนำในการลงทุน ผู้ลงทุนควรศึกษาข้อมูลเพิ่มเติมและตัดสินใจด้วยความรอบคอบ
-

@ ec42c765:328c0600
2024-12-15 11:13:44
てすと
nostr:nevent1qqst3uqlls4yr9vys4dza2sgjle3ly37trck7jgdmtr23uuz52usjrqqqnjgr
nostr:nevent1qqsdvchy5d27zt3z05rr3q6vvmzgslslxwu0p4dfkvxwhmvxldn9djguvagp2
-

@ 78c90fc4:4bff983c
2024-12-14 18:37:00
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
-

@ d360efec:14907b5f
2025-02-14 05:21:58
**ภาพรวม XRPUSDT (OKX):**
XRPUSDT กำลังแสดงสัญญาณที่น่าสนใจและมีความซับซ้อน แนวโน้มใน Timeframe ใหญ่ (Day) เริ่มเป็นขาขึ้น แต่ Timeframe กลาง (4H) เริ่มอ่อนแรง และ Timeframe เล็ก (15m) เป็นขาลง ทำให้เกิดความขัดแย้งที่ต้องระมัดระวัง
**วิเคราะห์ทีละ Timeframe:**
**(1) TF Day (รายวัน):** [https://www.tradingview.com/x/3EbxjOgV/](https://www.tradingview.com/x/3EbxjOgV/)

* **แนวโน้ม:** เริ่มเป็นขาขึ้น (Early Uptrend) หลังจากราคา Breakout EMA 50 ขึ้นมาได้
* **SMC:**
* Break of Structure (BOS): มี BOS ด้านบน (Breakout EMA 50)
* Change of Character (CHoCH): ยังไม่ชัดเจน
* Higher High (HH) & Higher Low (HL): เพิ่งเริ่มก่อตัว (ยังไม่ชัดเจน)
* **EMA:**
* ราคาอยู่เหนือ EMA 50 (สีเหลือง) และ EMA 200 (สีขาว)
* EMA 50 และ EMA 200 กำลังจะเกิด Golden Cross
* **Money Flow (LuxAlgo):**
* สีเขียวเป็นส่วนใหญ่ แสดงถึงแรงซื้อที่ยังคงมีอยู่
* มีแท่งสีแดงแทรกบ้าง แสดงถึงการขายทำกำไร
* **Volume Profile:**
* Volume หนาแน่นบริเวณ EMA 50
* **แท่งเทียน:**
* แท่งเทียนล่าสุดเป็นสีเขียว แสดงถึงแรงซื้อ
* **แนวรับ:** EMA 50, EMA 200
* **แนวต้าน:** 0.6448 (High ก่อนหน้า)
* **สรุป:** แนวโน้มเริ่มเป็นขาขึ้น แต่ยังอยู่ในช่วงเริ่มต้น
**(2) TF4H (4 ชั่วโมง):** [https://www.tradingview.com/x/nARcdWWp/](https://www.tradingview.com/x/nARcdWWp/)

* **แนวโน้ม:** เริ่มไม่แน่นอน (พักตัว, ทดสอบแนวรับ) หลังจากเป็นขาขึ้นระยะสั้น
* **SMC:**
* Break of Structure (BOS): มี BOS ด้านบน (ก่อนหน้านี้)
* Change of Character (CHoCH): ไม่ชัดเจน
* Higher High (HH) & Higher Low (HL): เริ่มไม่ชัดเจน
* มี Equal Highs (EQH)
* **EMA:**
* EMA 50 กำลังถูกทดสอบ
* EMA 200 เป็นแนวรับถัดไป
* **Money Flow (LuxAlgo):**
* เขียวและแดงผสมกัน แสดงถึงความไม่แน่นอน
* แท่งสีแดงเริ่มยาวขึ้น แสดงถึงแรงขายที่เข้ามา
* **Volume Profile:**
* Volume หนาแน่นบริเวณ EMA 50
* **แท่งเทียน:**
* แท่งเทียนล่าสุด เป็น Doji
* **แนวรับ:** EMA 50, EMA 200, บริเวณ 0.50-0.52
* **แนวต้าน:** บริเวณ High ก่อนหน้า
* **สรุป:** แนวโน้มเริ่มไม่แน่นอน, มีแรงขายเข้ามา, EMA 50 เป็นจุดสำคัญ
**(3) TF15 (15 นาที):** [https://www.tradingview.com/x/NI2wqamj/](https://www.tradingview.com/x/NI2wqamj/)

* **แนวโน้ม:** ขาลง (Downtrend) ระยะสั้น
* **SMC:**
* Break of Structure (BOS): มี BOS ด้านล่าง
* Change of Character (CHoCH): มีทั้งด้านบนและด้านล่าง
* Lower Highs (LH) และ Lower Lows (LL)
* **EMA:**
* EMA 50 และ EMA 200 กลายเป็นแนวต้าน
* **Money Flow (LuxAlgo):**
* สีแดงเป็นส่วนใหญ่ แสดงถึงแรงขาย
* **Volume Profile:**
* Volume สูง
* **แนวรับ:** บริเวณ Low ล่าสุด
* **แนวต้าน:** EMA 50, EMA 200, บริเวณ 0.54
* **สรุป:** แนวโน้มขาลง, แรงขายมีอิทธิพล
**สรุปภาพรวมและกลยุทธ์ (XRPUSDT):**
* **แนวโน้มหลัก (Day):** เริ่มเป็นขาขึ้น
* **แนวโน้มรอง (4H):** เริ่มไม่แน่นอน, พักตัว
* **แนวโน้มระยะสั้น (15m):** ขาลง
* **Money Flow:**
* Day: แรงซื้อยังคงมี
* 4H: แรงซื้อและแรงขายผสมกัน, แรงขายเริ่มเข้ามา
* 15m: แรงขายมีอิทธิพล
* **กลยุทธ์:**
1. **Wait & See (ดีที่สุด):** รอความชัดเจน
2. **Buy on Dip (Day, 4H) - *เสี่ยงสูงมาก*:** ต้องรอสัญญาณกลับตัวใน TF15
3. **Short (15m, เสี่ยงสูง):** ถ้าไม่สามารถ Breakout EMA/แนวต้านได้
**คำแนะนำ:**
* **ความขัดแย้งของ Timeframes:** ยังคงมีอยู่
* **Money Flow:** Day เป็นบวก, 4H เริ่มไม่แน่นอน, 15m เป็นลบ
* **EMA 50 (TF4H):** จุดสำคัญ
* **ถ้าไม่แน่ใจ อย่าเพิ่งเข้าเทรด**
*Disclaimer:** การวิเคราะห์นี้เป็นเพียงความคิดเห็นส่วนตัว ไม่ถือเป็นคำแนะนำในการลงทุน ผู้ลงทุนควรศึกษาข้อมูลเพิ่มเติมและตัดสินใจด้วยความรอบคอบ
-

@ d360efec:14907b5f
2025-02-14 04:13:06
Bitcoin (BTCUSDT) กำลังแสดงสัญญาณที่น่าสนใจ โดยรวมแล้วแนวโน้มระยะยาวยังเป็นขาขึ้น แต่ระยะสั้นมีความผันผวนและมีการปรับฐานลงมา
**วิเคราะห์ทีละ Timeframe:**
**(1) TF Day (รายวัน):** [https://www.tradingview.com/x/s9CAaSKQ/](https://www.tradingview.com/x/s9CAaSKQ/)

* **แนวโน้ม:** ขาขึ้น (Uptrend) แข็งแกร่ง
* **SMC:**
* Higher Highs (HH) และ Higher Lows (HL) อย่างต่อเนื่อง
* Break of Structure (BOS) ด้านบนหลายครั้ง
* ไม่มีสัญญาณการกลับตัวเป็นขาลง
* **EMA:**
* ราคาอยู่เหนือ EMA 50 (เส้นสีเหลือง) และ EMA 200 (เส้นสีขาว)
* EMA 50 และ EMA 200 เรียงตัวแบบ Golden Cross (EMA 50 ตัด EMA 200 ขึ้น)
* **Money Flow (LuxAlgo):**
* โดยรวมเป็นสีเขียว แสดงถึงแรงซื้อที่ยังคงมีอิทธิพลเหนือกว่า
* มีแท่งสีแดงแทรกบ้าง แสดงถึงการขายทำกำไร
* **Volume Profile:**
* Volume หนาแน่นที่บริเวณ 96,000 - 98,000 (ซึ่งตอนนี้กลายเป็นแนวรับไปแล้ว)
* **แท่งเทียน:**
* แท่งเทียนล่าสุดเป็นสีแดง แสดงถึงแรงขาย แต่ไส้เทียนด้านล่างยาว แสดงว่ามีแรงซื้อกลับเข้ามาบ้าง
* **แนวรับ:** EMA 50, EMA 200, บริเวณ 96,000 - 98,000
* **แนวต้าน:** 109,998.9 (High เดิม)
* **สรุป:** แนวโน้มขาขึ้นยังคงแข็งแกร่ง Buy on Dip ยังคงเป็นกลยุทธ์หลัก
**(2) TF4H (4 ชั่วโมง):** [https://www.tradingview.com/x/KsuVdl2e/](https://www.tradingview.com/x/KsuVdl2e/)

* **แนวโน้ม:** ขาขึ้น (Uptrend) แต่มีการพักตัวลงมา (Pullback)
* **SMC:**
* Higher Highs (HH) และ Higher Lows (HL)
* Break of Structure (BOS) ด้านบน
* ราคาพักตัวลงมา แต่ยังไม่เสียโครงสร้างขาขึ้น
* มี Equal Highs (EQH) บริเวณ 109,998.9
* **EMA:**
* EMA 50 กำลังถูกทดสอบ
* EMA 200 เป็นแนวรับถัดไป
* **Money Flow (LuxAlgo):**
* โดยรวมเป็นสีเขียว แต่เริ่มมีแท่งสีเขียวสั้นลง และมีแท่งสีแดงยาวขึ้น แสดงว่าแรงซื้อเริ่มอ่อนแรง และมีแรงขายเข้ามา
* **Volume Profile:**
* Volume หนาแน่นที่บริเวณ 96,000 - 98,000
* **แท่งเทียน:**
* แท่งเทียนล่าสุดเป็นสีแดง แสดงถึงแรงขาย
* **แนวรับ:** EMA 50, EMA 200, บริเวณ 96,000 - 98,000
* **แนวต้าน:** 109,998.9 (EQH, High เดิม)
* **สรุป:** แนวโน้มขาขึ้นยังไม่เสีย แต่เริ่มมีสัญญาณเตือน (Money Flow อ่อนแรง, ราคาพักตัว)
**(3) TF15 (15 นาที):** [https://www.tradingview.com/x/DSrpSjn6/](https://www.tradingview.com/x/DSrpSjn6/)

* **แนวโน้ม:** Sideways Down (แกว่งตัวลง) หลังจากพยายาม Breakout แต่ไม่สำเร็จ
* **SMC:**
* Break of Structure (BOS) ด้านล่าง (หลุดแนวรับย่อยๆ)
* Change of Character (CHoCH) ทั้งด้านบนและด้านล่าง
* Lower Highs (LH) และ Lower Lows (LL) เริ่มก่อตัว
* Equal Highs (EQH) หลายจุด
* **EMA:**
* EMA 50 และ EMA 200 กลายเป็นแนวต้าน
* **Money Flow (LuxAlgo):**
* สีแดงมีอิทธิพลเหนือกว่า แสดงถึงแรงขาย
* **Volume Profile:**
* Volume หนาแน่นที่บริเวณ 97,000-97,200 (กลายเป็นแนวต้าน)
* **แนวรับ:** บริเวณ Low ล่าสุด
* **แนวต้าน:** EMA 50, EMA 200, บริเวณ 96,000, 96,800, 97,000-97,200
* **สรุป:** แนวโน้มระยะสั้นเป็นขาลง, แรงขายยังมีอยู่
**สรุปภาพรวมและกลยุทธ์ (BTCUSDT):**
* **แนวโน้มหลัก (Day, 4H):** ขาขึ้น (Uptrend)
* **แนวโน้มระยะสั้น (15m):** ขาลง (Downtrend) / Sideways Down
* **Money Flow:**
* Day: แรงซื้อยังแข็งแกร่ง
* 4H: แรงซื้อเริ่มอ่อนแรง, แรงขายเริ่มเข้ามา
* 15m: แรงขายมีอิทธิพลเหนือกว่า
* **กลยุทธ์:**
1. **Wait & See (ดีที่สุด):** รอความชัดเจน เนื่องจากความขัดแย้งระหว่าง Timeframes
2. **Buy on Dip (Day, 4H) - *ความเสี่ยงสูงมาก*:** ต้องรอสัญญาณกลับตัวใน TF15
3. **Short (15m, ความเสี่ยงสูงมาก):** ถ้าไม่สามารถ Breakout EMA/แนวต้านได้
**คำแนะนำ:**
* **ความขัดแย้งของ Timeframes:** ยังคงมีอยู่
* **Money Flow:** Day เป็นบวก, 4H เริ่มเป็นลบ, 15m เป็นลบ
* **EMA 50 (TF4H):** จุดสำคัญ
* **ถ้าไม่แน่ใจ อย่าเพิ่งเข้าเทรด**
*Disclaimer:** การวิเคราะห์นี้เป็นเพียงความคิดเห็นส่วนตัว ไม่ถือเป็นคำแนะนำในการลงทุน ผู้ลงทุนควรศึกษาข้อมูลเพิ่มเติมและตัดสินใจด้วยความรอบคอบ
-

@ 3bf0c63f:aefa459d
2024-12-06 20:37:26
# iní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](https://fiatjaf.com/livros-olavo.html)
* [Antiga _homepage_ Olavo de Carvalho](https://site.olavo.fiatjaf.com "Sapientiam autem non vincit malitia")
* [Bitcoin explicado de um jeito correto e inteligível](nostr:naddr1qqrky6t5vdhkjmspz9mhxue69uhkv6tpw34xze3wvdhk6q3q80cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsxpqqqp65wp3k3fu)
* [Reclamações](nostr:naddr1qqyrgwf4vseryvmxqyghwumn8ghj7enfv96x5ctx9e3k7mgzyqalp33lewf5vdq847t6te0wvnags0gs0mu72kz8938tn24wlfze6qcyqqq823c9f9u03)
---
* [Nostr](-/tags/nostr)
* [Bitcoin](nostr:naddr1qqyryveexumnyd3kqyghwumn8ghj7enfv96x5ctx9e3k7mgzyqalp33lewf5vdq847t6te0wvnags0gs0mu72kz8938tn24wlfze6qcyqqq823c7nywz4)
* [How IPFS is broken](nostr:naddr1qqyxgdfsxvck2dtzqyghwumn8ghj7enfv96x5ctx9e3k7mgzyqalp33lewf5vdq847t6te0wvnags0gs0mu72kz8938tn24wlfze6qcyqqq823c8y87ll)
* [Programming quibbles](nostr:naddr1qqyrjvehxq6ngvpkqyghwumn8ghj7enfv96x5ctx9e3k7mgzyqalp33lewf5vdq847t6te0wvnags0gs0mu72kz8938tn24wlfze6qcyqqq823cu05y0j)
* [Economics](nostr:naddr1qqyk2cm0dehk66trwvq3zamnwvaz7tmxd9shg6npvchxxmmdqgsrhuxx8l9ex335q7he0f09aej04zpazpl0ne2cgukyawd24mayt8grqsqqqa28clr866)
* [Open-source software](nostr:naddr1qqy8xmmxw3mkzun9qyghwumn8ghj7enfv96x5ctx9e3k7mgzyqalp33lewf5vdq847t6te0wvnags0gs0mu72kz8938tn24wlfze6qcyqqq823cmyvl8h)
---
[Nostr](nostr:nprofile1qqsrhuxx8l9ex335q7he0f09aej04zpazpl0ne2cgukyawd24mayt8gpyfmhxue69uhkummnw3ez6an9wf5kv6t9vsh8wetvd3hhyer9wghxuet5fmsq8j) [GitHub](https://github.com/fiatjaf) [Telegram](https://t.me/fiatjaf) [code](https://git.fiatjaf.com)
-

@ 3eba5ef4:751f23ae
2025-02-14 03:52:48
🍨*Your weekly byte of the latest updates from the Bitcoin ecosystem!*
## Crypto Insights
### Solving the Optimal Cluster Linearization Problem With DeepSeek
Stefan Richter (stefanwouldgo) [found](https://delvingbitcoin.org/t/how-to-linearize-your-cluster/303/9?u=sss_is_me) a 1989 paper through DeepSeek R1 that provides a solid solution to the problem of optimal cluster linearization. The paper presents a proven algorithm that efficiently finds the subset of transactions with the highest fees; if this subset is included in a block, it is topologically valid.
### New Class in Cluster Mempool Improves Transaction Handling and Performance
The introduction of the `TxGraph` class in [Cluster Mempool](https://bitcoinops.org/en/topics/cluster-mempool/) enhances transaction handling by encapsulating the transaction graph, focusing on effective fees, sizes, and dependencies. It enables batched and lazy updates for more efficient mempool operations, with improvements in transaction prioritization, incentive compatibility, and performance. This design simplifies the code by abstracting graph management, allowing for easier validation and future optimizations.
More details in this [pull request](https://github.com/bitcoin/bitcoin/pull/31363).
### Independent Mining Still Feasible
Two independent miners recently mined Bitcoin blocks:
* [Block 881432](https://mempool.sethforprivacy.com/block/00000000000000000000931af218dd988191e459a8449dbce22b17e4475cd5a0) by [256 Foundation](https://256foundation.org/), a public organization promoting open-source Bitcoin mining. The group combined the hash rate from over 300 participants with the goal of breaking up the mining patent monopolies of large pools, making Bitcoin and free technology more accessible to all.
* [Block 881676](https://mempool.space/block/000000000000000000022247ce3898fc9e10be0161cde5f369293d7a916ca8b3) by the open-source home mining hardware [solo.ckpool](https://solo.ckpool.org/), using hash rate equivalent to thousands of BitAxe devices.
This demonstrates that independent miners can still compete, reinforcing Bitcoin’s decentralization and censorship resistance.
### 6-Block Confirmation No Longer Enough, Mining Centralization Impacts Bitcoin Security
Bitcoin Core developer Luke Dashjr [posted](https://x.com/LukeDashjr/status/1888295040113361129) that he intended to update the 6-blocks-to-confirm target in the Knots wallet GUI. However, he found that due to Antpool controlling around 48% of the network's hash rate, more than 800 block confirmations would be required to achieve 95% security. He also noted that many pools, like Braiins and ViaBTC, are actually Antpool under different names.
### Payjoin Development Progress Review
Spiral [reviewed](https://spiralbtc.substack.com/p/nerd-of-the-month-payjoin) the development progress of [Payjoin](https://bitcoinops.org/en/topics/payjoin/), which allows for including an additional input in a payment transaction to enhance privacy. The article also mentions that by using joint batching to optimize fees, Payjoin reduces transaction costs and increases network efficiency. Moreover, when both parties contribute inputs, Payjoin helps protect privacy by breaking common blockchain monitoring assumptions, making it harder for third parties to track payment amounts and private spending behaviors.
### Block Size Report Reveals: Growth Partly Limited by Miner Policies and Bitcoin Core Defaults
The [Block Size Report](https://research.mempool.space/block-size-report/), published by Mempool research, uses data-driven analysis to examine the evolution of block size in Bitcoin from its inception to February 2025. It discusses changes in block size post-SegWit upgrade and reveals how growth has been partly limited by miner policies and Bitcoin Core defaults over the years. The report concludes with predictions about the growth of Bitcoin’s blockchain in the coming years.
### Tutorial on Becoming an Advanced Nostr User With Sats Cashback
Rizful published a [guide](https://rizful.com/get_on_nostr_today) on how to become an advanced Nostr user and set up the self-owned Lightning node. After completing the tutorial, users can receive 5,000 sats via zap cashback.
### Build a Smart Card for Bitcoin and Nostr Event Signing for Under $25
The 100% open-source smart card [Satochip](https://stacker.news/items/877488) allows users to build their own signing device in just 10 minutes under 25 USD. Satochip's advantages include:
* Affordable and widely available
* Dual interface: supports both NFC (contactless) and Chip (contact) modes
* Minimal electronics, reducing the attack surface
* Enhanced security based in Secure Element
### Bitcoin at the Crossroads of AI Revolution and Sovereign Evolution
CKBEcoFund [shared](https://x.com/c_hongzhou/status/1887142941980041727) their insights from the talk at [The Satoshi Roundtable](https://satoshiroundtable.org/), discussing several macro issues including the dominance of artificial intelligence, Bitcoin's security, scalability, sovereignty, and national Bitcoin strategic reserves. He explored how CKB, as a Bitcoin Layer 2, is positioning itself for high-frequency micropayments, smart contracts, and cross-chain asset management.
## Top Reads on Blockchain and Beyond
### Pod: An Optimal-Latency, Censorship-Free, and Accountable Generalized Consensus Layer
[This paper](https://arxiv.org/pdf/2501.14931) introduces a new consensus concept pod, aiming to achieve physically optimal latency for one round-trip—just one write of a new transaction and one read. This work solves inherent problems of high latency in blockchain and low scalability in traditional consensus protocols.
[Grigore Rosu](https://x.com/RosuGrigore) commented: "It can lead to the end of blockchains as we know them today. It shows how we can still achieve all the benefits of blockchains, but dropping the tyranny of sequentiality (and all the value exploiters that come with it).”
### Tracking and Surveillance In-App Ads
The author learned of a massive [location data breach](https://www.404media.co/hackers-claim-massive-breach-of-location-data-giant-threaten-to-leak-data/?ref=timsh.org) revealing that over 2,000 apps in the App Store and Google Play were secretly collecting geographic location data without users' consent, and developers were unaware.
He then began tracking himself through location data leaked by some apps and made the following discoveries:
* Regardless of whether users choose "Allow" or "Ask not to track" in phone settings, the combination of "IP + location + user agent + geography" is still leaked to hundreds of third parties.
* The phone sends requests with location and leaked IP. These can be converted to geographic locations through reverse DNS.
* Data collection pathway: stack → [o.isx.unity3d.com](http://o.isx.unity3d.com/) → [molocoads](https://www.moloco.com/?ref=timsh.org) → bwin
* **Unity** is an SSP (supply-side platform) that collects app data via its SDK
* **Moloco Ads** is a DSP network that resells data from multiple SSPs like Unity, Applovin, Chartboost
* **bwin** is the advertiser that users see ads for in games
More discoveries in this [post](9https://timsh.org/tracking-myself-down-through-in-app-ads/).
### Potential DAO 2.0 Product Ideas
The author believes that the development of on-chain AI agents will lead to new forms of DAO, giving true autonomy to the "A" in DAO. [New product ideas](https://blog.variant.fund/dao-product-ideas) include:
* **DAO 2.0 launcher:** platform enables launching new community/governance tokens tied to an agent, agent responds to tokenholder votes, reads discussion forums and generates proposals
* **Quality assessment for token distribution**: agent assesses contribution quality to determine payouts/token distributions for DAOs/airdrops/etc.
* **ZachZBT:** agent monitors for hacks or other fraudulent activity and publishes research as well as tries to get funds back for people
* **Due diligence agent**: agent verifies contract integrity, dev reputations, on-chain behavior, and potential rug risks; allows users to interact with the agent to ask questions about risks
-

@ eac63075:b4988b48
2024-12-02 02:40:18
Estonia is a small country with just 1.3 million inhabitants and an area similar to that of the state of Rio de Janeiro, but with a notable difference: while Rio has about 16 million residents, Estonia shines with its efficiency, innovation, and digitalization. It's no wonder it's known as the "digital nation." For many Brazilians, the country has become a strategic gateway to start a business and settle in Europe.
Listen the podcast
https://www.fountain.fm/episode/pizBLdhqqP5qQrKQILFb
## The Purpose of the Event and the Context
The meeting organized by Bloco and the Brazilian digital community aimed primarily to explore the opportunities that Estonia offers to those wishing to expand their businesses or start a new life in Europe. With pizza, networking, and straightforward presentations, the evening was dedicated to demystifying questions like "Why Estonia?" and "What makes this country a viable option for Brazilians?"
Additionally, the event highlighted the importance of E-Residency, a digital identity that allows you to open and manage a company in Estonia from anywhere in the world. But that's just the beginning. Let's explore what makes Estonia a standout point on the European scene.
## Where Is Estonia Located?
If you open a map of Europe and look for this small country, you're likely to have difficulty locating it. Situated to the north of what's called Eastern Europe, Estonia borders Russia and Latvia and is separated from Finland by the Baltic Sea. Although geographically positioned in the east, many Estonians prefer to identify with the north due to cultural and historical proximity to the Nordic countries.
There's something fascinating about Estonia's history. According to local legends, Vikings set out from their Estonian islands to conquer the world, later returning to reclaim their lands. This spirit of resilience and reinvention permeates the country's culture to this day.
## Digitalization: The Estonian Revolution
Thirty years ago, when Estonia gained its independence from the Soviet Union, the country decided to look to the future. The question was simple: how to ensure the sovereignty and survival of a small, vulnerable nation? The answer was bold: total digitalization.
In 2001, the X-Road was created—a decentralized infrastructure that connects all government institutions and allows citizens to access public services digitally. This system is so advanced that even the servers of the Estonian government are located outside the country, stored with backups at the European Commission in Brussels.
Through this infrastructure, Estonia eliminated information silos, decentralized data, and allowed its citizens to authorize the use of personal information with complete control. Today, 98% of the population has a digital identity, 95% file taxes online in less than three minutes, and 100% of public services are available digitally.
For those accustomed to Brazilian bureaucracy, it's impressive to know that opening a company in Estonia can be done in just 15 minutes, without the need for an accountant.
## E-Residency: A Digital Passport for Business
Launched in 2014, the E-Residency program made Estonia the first country in the world to offer a digital identity to non-residents. This digital ID card allows entrepreneurs to open a company in the European Union, sign documents, and manage businesses remotely without needing to visit the country.
Although it doesn't grant citizenship or physical residency, E-Residency is perfect for those who want to test the European market or operate a digital company. The program has already attracted over 118,000 e-residents from around the world, including 1,300 Brazilians who have opened 379 companies in the country.
## Advantages of Doing Business in Estonia
Starting a business in Estonia has many advantages. Let's discuss some of the main ones:
### **Simple and Clear Taxation:**
Estonia adopts a flat tax rate of 20% (which increased to 22% after the pandemic and will be 24% in 2025) on distributed profits. If you reinvest the profits in the company, the taxation is zero—a unique policy that encourages sustainable growth.
### **Low Cost to Start:**
Unlike Switzerland, which requires an initial deposit of 100,000 Swiss francs to open a company, in Estonia, only 2,500 euros are needed. And the best part: this amount only needs to be deposited when the company distributes profits for the first time.
### **Complete Digitalization:**
Digital signatures in Estonia eliminate the need for notaries and paper documents. Everything can be done online, from opening the company to filing taxes.
### **Support for Startups and Innovation:**
With the Startup Visa, entrepreneurs can move to Estonia with their entire family and receive support to expand their businesses. Additionally, the country has the highest number of unicorns (startups valued at over one billion dollars) per capita in the world, including companies like Skype, Bolt, and Wise.
### **Easy Access to Europe:**
Establishing your company in Estonia means access to the European market, with its unified regulations and a vibrant innovation ecosystem.
## The Startup Visa: An Invitation for Entrepreneurs
For those who want more than just operating remotely, the Startup Visa program offers the opportunity to physically move to Estonia. The initial visa is valid for one year and can be renewed for three consecutive years. After eight years, there's the possibility of applying for European citizenship, although Estonia doesn't allow dual nationality.
One of the unique features of the Startup Visa is that there's no limit to the number of partners or family members who can be included in the program. This means that the entire team of founders and their families can benefit from the residence permit.
Additionally, Estonia offers support through the International House and its Work in Estonia program, a center where newcomers can resolve everything from assistance with opening bank accounts to cultural and professional integration.
## Innovation and Access to Investments
Estonia is known for its culture of innovation. Events like Latitude 59, one of Europe's main startup gatherings, offer prizes of up to two million euros for winning startups. The country also facilitates direct connections with investment funds and venture capital, often without bureaucratic barriers.
For early-stage companies, the Estonian ecosystem is especially attractive. There are cases of entrepreneurs who managed to raise hundreds of thousands of euros with little more than a prototype or a good idea on paper.
## A Small Country with Global Ambitions
Although small in size, Estonia is big in ambition. Its model of digitalization and support for startups serves as an example to the world. With unique opportunities like E-Residency and the Startup Visa, the country positions itself as a viable and accessible gateway for Brazilians who wish to explore the European market.
For those seeking innovation, simplicity, and access to the global market, Estonia offers more than opportunities; it offers a vision of the future. Whether it's to open a business, operate remotely, or move with the family, the country proves that with the right strategies, even a small nation can make a giant impact.
-

@ 19220736:7578e0e9
2025-02-14 03:44:21
While Zelle promotes itself as a quick and easy way to send money, its instant, irreversible transactions have made it a prime target for fraudsters. Despite mounting reports of consumer losses, banks continue to deny reimbursement for many fraud victims, citing narrow legal loopholes. Meanwhile, Early Warning Services, the company behind Zelle, profits from the vast consumer data it collects, fueling concerns about privacy and corporate exploitation. With government investigations ramping up and public pressure mounting, Zelle and their bank owners have teamed up with the Aspen Institute, forming a new task force with corporate and government players.
In 2017, [Early Warning Services](https://www.earlywarning.com/about), owned by Bank of America, Capital One, JPMorgan Chase, PNC Bank, Trust, U.S. Bank, and Wells Fargo, released the [Zelle](https://www.zellepay.com/faq/what-zelle) payment system. It was a fast way to send and receive funds peer to peer between different bank accounts by only needing either the other person's email address or their U.S. mobile phone number.
By 2018, there were growing [concerns](https://www.nytimes.com/2018/04/22/business/zelle-banks-fraud.html) about fraud on Zelle. Despite its convenience, Zelle's design allows funds to transfer instantly and irreversibly, making it a target for scammers. Victims reported being defrauded through tactics like fake online sales or impersonation schemes, and many struggled to recover lost funds due to inconsistent fraud policies among banks. Consumer advocates criticized the platform for inadequate protections, urging banks to implement stronger safeguards to prevent fraud and better support affected customers.
In 2022, a Senate report [criticized](https://www.bankingdive.com/news/warren-zelle-fraud-scams-report-truist-pnc-us-bank-america-jpmorgan-wells-fargo-aba-bpi-cba/633305/) major U.S. banks, including JPMorgan Chase, Bank of America, and Wells Fargo, for failing to adequately protect consumers from fraud on the Zelle payment platform. The investigation revealed that these banks often deny reimbursement for scams where victims are tricked into transferring funds, citing a narrow interpretation of liability under the Electronic Fund Transfer Act. (*"While banks bear responsibility for unauthorized transactions to scammers, consumer-authorized transactions made to fraudsters are another matter”*.) Jamie Dimon, CEO of JPMorgan Chase, [explained](https://www.bankingdive.com/news/bank-ceos-defend-zelle-in-senate-hearing/632554/), *“Anything unauthorized, we do cover”*
On June 16, 2023, the United States Senate Committee on Homeland Security and Governmental Affairs subcommittee, the Permanent Subcommittee on Investigations, launched an inquiry into Early Warning Services and the three largest banks that co-own EWS: JPMorgan Chase, Bank of America, and Wells Fargo.
After a 15-month investigation, the Senate Permanent Subcommittee on Investigations released a [report](https://www.hsgac.senate.gov/wp-content/uploads/2024.7.23-PSI-Majority-Staff-Report-on-Zelle.pdf) on July 23, 2024, highlighting consumer fraud issues tied to the Zelle payment network. The report noted significant drops in the percentage of fraud disputes reimbursed—from 62% in 2019 to just 38% in 2023. Between 2021 and 2023 Zelle [refused](https://dailyhodl.com/2024/07/25/jpmorgan-chase-wells-fargo-and-bank-of-america-refuse-to-reimburse-863000000-to-customers-in-repeated-relentless-failure-to-protect-victims-of-fraud-us-senate-investigation/) to reimburse $880 million to customers who fell victim to fraud on their payment network. Bank employees were found to have broad discretion in deciding whether to reimburse fraud claims, often denying compensation without clear justification. This has raised questions about whether banks are meeting legal obligations under the Electronic Fund Transfer Act ([Regulation E](https://www.consumerfinance.gov/rules-policy/regulations/1005/))
Early Warning Services (EWS) runs the payment network Zelle at a financial loss but generates revenue by selling data-based services to financial institutions. EWS collects extensive consumer and bank data through its operation of Zelle and daily data-sharing agreements with its member banks. This data is used to develop fraud and risk management products, which EWS sells to financial institutions as its primary profit source. While EWS asserts it has not commercialized this data beyond these financial products, the sale of such services remains its main revenue driver.
On August 4, 2024, Senator Richard Blumenthal sent a [letter](https://www.hsgac.senate.gov/wp-content/uploads/2024.08.04-Blumenthal-Letter-to-Chopra.pdf) to CFPB Director Rohit Chopra urging immediate action to address fraud concerns tied to the Zelle payment platform. The letter calls for the Consumer Financial Protection Bureau (CFPB) to investigate their dispute resolution practices and ensure that they fully and promptly address consumer fraud reports. On August 7, 2024, it was [reported](https://www.reuters.com/business/finance/us-consumer-watchdog-probes-major-us-banks-over-zelle-scam-wsj-reports-2024-08-07/) that the Consumer Financial Protection Bureau was investigating several banks due to their handling of Zelle.
On December 20, 2024, The Consumer Financial Protection Bureau (CFPB) responded by [filing](https://files.consumerfinance.gov/f/documents/cfpb_Zelle-Complaint_2024-12.pdf) a lawsuit against Early Warning Services, LLC and the major banks including Bank of America, JPMorgan Chase, and Wells Fargo. The CFPB alleges that these institutions prioritized the rapid deployment of Zelle over implementing effective anti-fraud measures, resulting in significant consumer losses. The lawsuit contends that the defendants failed to adequately address these issues, often denying relief to defrauded consumers. The CFPB seeks injunctive relief, monetary compensation for affected consumers, and civil penalties.
Just 5 days before the Senate Permanent Subcommittee on Investigations released its report, the [Aspen Institute](https://www.aspeninstitute.org/) Financial Security Program (Aspen FSP) [announced](https://www.aspeninstitute.org/news/task-force-on-fraud-and-scams/) the formation of a National Task Force for Fraud & Scam Prevention with their founding sponsor JPMorganChase and executive sponsor Zelle. The stated purpose of the Task Force is to develop a unified national strategy to help the U.S. government and private sector companies work together to stop fraud and scams. [Members](https://fraudtaskforce.aspeninstitute.org/membership) of this private/public task force include: JPMorgan Chase, Bank of America, Wells Fargo, Google, Meta, Amazon, Visa, Mastercard, Verizon, the Federal Trade Commission, the FBI Criminal Investigation Unit, US Department of the Treasury, Homeland Security, and many others.
The Aspen Institute is a 501(c)(3) nonprofit located in Washington DC. In [2023](https://projects.propublica.org/nonprofits/organizations/840399006) they had revenue of $232M and total assets of $519M with the primary source of income coming from donations and federal grants. Per their [mission](https://www.aspeninstitute.org/what-we-do/) statement, their goal is "realizing a free, just, and equitable society." The Institute works to achieve this through creating and driving policy as well as training future policy leaders.
Recently on November 25, 2024, FinCen [announced](https://www.fincen.gov/news/news-releases/fincen-joins-public-private-partnership-combat-fraud-and-scams-impacting) they are also joining the National Task Force that *"brings together key stakeholders including the financial services sector, technology companies, consumer advocacy groups, information sharing and analysis centers, and federal government agencies to develop a comprehensive national strategy for combating fraud and scams."* In The Case for a Coordinated National Strategy to Prevent Fraud and Scams, the Task Force lists [key components](https://fraudtaskforce.aspeninstitute.org/time-is-now) of a national strategy to include improved education of consumers to identify fraud, enhanced information sharing across industry, law enforcement, and regulatory agencies by use of data exchanges and legal mechanisms for sharing information. As well as empowering law enforcement with additional authority and resources. The document cites the recent [UK action](https://www.gov.uk/government/news/new-powers-to-seize-cryptoassets-used-by-criminals-go-live) as an example of recent amendments to law enforcement powers which in England means police will no longer be required to arrest seizing crypto from a suspect, can seize written passwords or memory sticks, as well as transfer "crypto assets" to a law enforcement wallet.
In an August 2024 [interview](https://www.businessinsider.com/zelle-scams-how-to-get-money-back-2024-8?) with Fortune, Ben Chance, the Chief Fraud Risk Management Officer for Early Warning Services reportedly "told the outlet that the best way to prevent scams on money-sharing apps is better user education, sound policy and more funding for law enforcement." This sounds very similar to the National Strategy to Prevent Fraud and Scams being crafted by the National Task Force for Fraud & Scam Prevention, with more user education and law enforcement. No mention of standardized reimbursement policies or enhancing transparency around fraud investigations which are the primary accusations aimed at Zelle and its owners by the US Senate and the subject of the current investigation by the Consumer Financial Protection Bureau.
-

@ e373ca41:b82abcc5
2025-02-13 22:27:58
*This article has been written with the* ***[Pareto client](https://pareto.space/read).*** *(read it there for the full experience). It was first published in German by Milosz Matuschek on* ***["Freischwebende Intelligenz".](https://www.freischwebende-intelligenz.org/p/unterwanderter-journalismus-der-mediale)***
***
It is unmistakable. The hydra of the Deep State is losing a few heads - and this time it's the turn of the media heads. Anyone can look at [USASpending](https://www.usaspending.gov/) to see how much taxpayers' money has gone to whom in the USA.
### When the state pays its advocates
The mainstream media were also among the beneficiaries: Politico (100% Axel Springer) received over [USD 7 million](https://www.usaspending.gov/recipient/fa0cefae-7cfb-881d-29c3-1bd39cc6a49e-C/latest); the New York Times received over USD 40 million. Thousands of (probably not always necessary) government subscriptions flowed to large media houses - paid for with taxpayers' money. A form of covert press financing by the state. At what point can or should we speak of state media?
")
However, this is only the tip of the iceberg. The CIA front organization USAID ([known for its funding of virus research in Wuhan and other questionable activities](https://pareto.space/a/naddr1qqxnzden8quryveexq6rywp3qgswxu72gyq7ykjdfl9j556887jpzwu3mw3v9ez36quas55whq4te3grqsqqqa28qyxhwumn8ghj7mn0wvhxcmmvqyf8wumn8ghj7mmxve3ksctfdch8qatzqythwumn8ghj7urpwfjhgmewdehhxarjxyhxxmmdqy28wumn8ghj7un9d3shjtnyv9kh2uewd9hsz9nhwden5te0wfjkccte9ehx7um5wghxyctwvszsxfjh)) - [pumped USD 472.6 million directly into the media landscape via the “Internews Network”.](https://www.zerohedge.com/political/usaid-funded-massive-global-state-propaganda-news-matrix-nearly-billion-people-reach) FAZ journalist Udo Ulfkotte once called this “bought journalists” in a very clear and media-effective way, which was not good for his health. There is ample evidence of the CIA-USAID connections, for example [here](https://timesofindia.indiatimes.com/toi-plus/international/how-usaid-worked-alongside-cia-in-vietnam-a-whistleblowers-account/articleshow/118164225.cms), [here](https://foreignpolicy.com/2014/04/03/cuban-twitter-and-other-times-usaid-pretended-to-be-an-intelligence-agency/) and [here.](https://www.jstor.org/stable/4017728)
")
But this is now over for the time being: USD 268 million, which was to go to “independent media for the free flow of information” (according to the [Columbia Journalism Review](https://www.cjr.org/the_media_today/usaid-and-the-media-in-a-time-of-monsters.php)) in 2025, has been frozen. The largest media influence machine in the Western world is bleeding a little. One has to admit: part of the media-deepstate swamp is actually being drained dry financially. The fact that the Columbia Journalism Review doesn't even seem to notice that “free international journalism”, which, as it writes, is largely funded by USAID, ceases to be “free journalism” speaks volumes about this “hotbed of journalism”. Matt Taibbi of Racket News rightly finds, “The legacy media system is dead. They just don't know it yet.”
***
ADVERTISEMENT:
*Looking for the easiest way to buy Bitcoin and store it yourself? The **[Relai app](https://relai.app/de/?af_xp=custom\&source_caller=ui\&pid=INFLUENCER\&is_retargeting=true\&af_click_lookback=7d\&shortlink=eo5zpzew\&af_channel=branded_url\&af_inactivity_window=30d\&c=Milosz%20Matuszek)** is the No. 1 crypto start-up and No. 2 of all fintech start-ups in Switzerland. **[Here you can buy Bitcoin](https://relai.app/de/?af_xp=custom\&source_caller=ui\&pid=INFLUENCER\&is_retargeting=true\&af_click_lookback=7d\&shortlink=eo5zpzew\&af_channel=branded_url\&af_inactivity_window=30d\&c=Milosz%20Matuszek)** in just a few steps and also set up savings plans. Nobody has access to your Bitcoin except you. With the referral code MILOSZ you save on fees (no financial advice). Disclaimer due to regulatory issues: The services of the Relai App are hereby only recommended to inhabitants of Switzerland or Italy.*

*Need more security? The **[Trezor wallets](https://trezor.io/trezor-safe-5-bitcoin-only?transaction_id=102e192a206d1585e56a2fddef6d83\&offer_id=238\&affiliate_id=35234)** are recommended and easy to use, others are available in the **[store](https://trezor.io/?transaction_id=102bc85bdca2733287749c7f879ebd\&offer_id=133\&affiliate_id=35234)**. Need more advice? Book an **[introductory meeting](https://trezor.io/trezor-expert-session?transaction_id=1020e18dad0aa4b1186289fd22e90f\&offer_id=241\&affiliate_id=35234)** with a wallet expert.*
***
Large-scale media manipulation has become visible. The propaganda matrix, if you will. The disastrous thing about it: if the Overton window is infiltrated, so to speak, the entire institution of journalism cannot be trusted. Every day, readers must expect to be pulled through the nose ring of intelligence service narratives and public agendas by mainstream journalists who pretend to be objective (and are often simply clueless and unsuspecting). The panorama of what we are supposed to see and believe, so to speak.
How many mainstream journalists today are basically mouthpieces for the services? Every mainstream reader must now ask themselves: Is my favorite journalist at NZZ, Welt, SZ, ZEIT or FAZ perhaps just a CIA-IM? There were no major dissenters among them: EU criticism? Vaccination criticism? Criticism of NATO? Criticism of Biden and America? Criticism of Nord Stream? There were brief moments on television when questions about journalists' ties to lobby organizations were still part of the German satire program.
<https://x.com/Spitze_Zunge_/status/1887915509988876786>
### The cards in the media are being reshuffled
The watchdog of the powerful has been infiltrated by the powerful. This means that the Fourth Power is not a power at all, but part of the executive branch, a mouthpiece of the government. The claim that the mainstream is quality journalism, the gold standard for trustworthy information, is therefore the real fake news. It is the last, now crumbling dogma of an infiltrated press sect that has formed a cartel and is subjecting citizens to a permanent psy-op with intelligence-controlled taxpayers' money. A troupe of spokespeople at the work of mental synchronization.
<https://x.com/TopherField/status/1887962959072149989>
### The fight against independent media
But they not only give to one, they also take from the other. While government agencies use taxpayers' money to promote a certain type of journalism, the juice is actively being cut off from the critical part. All it takes is to be classified as a “PEP” (politically exposed person) and the bank account is gone. This is what has just happened to swiss Radio Kontrafunk. The critical Swiss author Stefan Millius was canceled by his publisher. Others have had their monetization via YouTube cut off (Snicklink). Others are harassed by the state media authority (Multipolar, Alexander Wallasch). The next one has a house search. It has been known since the Twitter files that the government and services also intervened massively in social media communication. This is no longer the Cold War. But it is the cold information war.
<https://www.youtube.com/watch?v=kmgWAGDFCZI>
Is this all so outrageous and new? During the Cold War, the CIA systematically infiltrated media outlets in the US. Thousands of agents were deployed as journalists - and wrote what they were told. This “Operation Mockingbird”, which the Church Committee also investigated, never ended, so to speak. It lives on as Operation Mockingbird 2.0.
Intelligence payments to media outlets continue to exist.
USAID distributes millions for “pro-democratic” reporting.
Government subscriptions keep uncritical media alive.
Media control of public opinion is the most important tool of power in a modern “democracy”. The difference to back then? Today, the manipulation is global. However, these revelations come at a time when trust in the media is already at an all-time low. [The fear of being lied to by the powerful is currently the majority opinion at 70%.](https://www.edelman.com/trust/2025/trust-barometer) They are currently in the process of convincing the remaining 30% of their own incompetence.

### Update on the [Pareto project](https://pareto.space/en)

“Half the victory”, says Sun Tsu, ‘lies in the impregnable defense’. Free media now have the opportunity to build their own impregnable bastion and the [Pareto Project](https://pareto.space/read) invites them to do just that: [become uncensorable, be able to scale infinitely and not depend on third parties for all processes of journalistic work](https://pareto.space/a/naddr1qqxnzdenxuerxdpkxycngvpcqgsvlutjpemmkp50p6aa8zwu65yz9hg6erf2czc0tuyqpt57zhr79vsrqsqqqa28qyxhwumn8ghj7mn0wvhxcmmvqy28wumn8ghj7un9d3shjtnyv9kh2uewd9hs33ee7d). It's all possible now. Everyone has to realize that: With other platforms, you build your house on someone else's property. With Nostr/Pareto, there is nothing and no one between author and reader, both in terms of communication and payment (via Bitcoin/Lightning).
**A brief update on the project, January was very busy.**
* We have about 35 journalists, publications, substackers, bloggers, memers onboarded who publish texts via the Pareto client, and the number is growing all the time.
* The first Telepolis authors, such as Mathias Bröckers and Alexander Unzicker, will soon be able to re-publish their deleted texts with us in a censorship-proof manner, and we are helping with the migration of content.
* We recently successfully tested the newsletter function! We will soon be able to offer all authors and readers the functions of Substack, Steady, Ghost etc. without having to entrust their readers' sensitive data to a platform or expose them to platform tracking.
* We are delighted to have more high-caliber additions to our development team, which now comprises around ten wonderful people, almost all of whom come from this group of readers.
* Our [open source code is now also public.](https://github.com/twenty-eighty/pareto-client)
* We have opened a [crowdfunding on Geyser!](https://geyser.fund/project/pareto)
- Our editor will soon be available to everyone free of charge (atm you have to drop us your npub: <team@pareto.space>)
### What's next?
This opens up a new window of unimagined possibilities: On a strong basis such as that offered by decentralized technology, many critical authors can now publish securely or new publications can be created - worldwide and uncensorable. What kind of publications would you like to see? Where do you see gaps (also in the critical spectrum) that need to be filled, both in terms of formats and topics? What does the journalism of the future look like to you? Feel free to write to me: **<milosz@pareto.space>**
## One last thing
Our funds are coming to an end. If you would like to support us: We have started a [crowdfunding on Geyser](https://geyser.fund/project/pareto), where you can help us with Bitcoin/Lightning donations. 

For traditional donations, you can find our bank account on our **[landingpage.](https://pareto.space/en)**
***
***Join the marketplace of ideas!** We are building a publishing ecosystem on Nostr for citizen-journalism, starting with a client for blogging and newsletter distribution. Sound money and sound information should finally be in the hands of the people, right? Want to learn more about the [Pareto Project](https://pareto.space/en)? Zap me, if you want to contribute (all Zaps go to the project).*
*Are you a publication or journalist and want to be part of it, test us, migrate your content to Nostr? Write to **<team@pareto.space>***
**Not yet on** **[Nostr](https://nostr.com/)** **and want the full experience?** Easy onboarding via **[Start.](https://start.njump.me/)**
-

@ a39d19ec:3d88f61e
2024-11-17 10:48:56
This week's functional 3d print is the "Dino Clip".

## Dino Clip
I printed it some years ago for my son, so he would have his own clip for cereal bags.
Now it is used to hold a bag of dog food close.
The design by "Sneaks" is a so called "print in place". This means that the whole clip with moving parts is printed in one part, without the need for assembly after the print.

The clip is very strong, and I would print it again if I need a "heavy duty" clip for more rigid or big bags.
Link to the file at [Printables](https://www.printables.com/model/64493-dino-clip-mechanical-cam-chip-clip-print-in-place)