-
@ 3ffac3a6:2d656657
2025-06-14 19:37:17đĄïž Tutorial: Secure SSH Access over Cloudflare Tunnel (Docker Optional)
đŻ Objective
Set up a Cloudflare Tunnel to securely expose SSH access to your system without revealing your home IP or requiring port forwarding. This enables secure remote access even behind NAT, CGNAT, or dynamic IP environments.
This guide:
- Uses Cloudflare Tunnels to proxy traffic
- Does not expose your home IP address
- Uses Docker + Docker Compose for orchestration (optional)
- Can be adapted to run under systemd directly if preferred
đ§ Prerequisites
- A domain managed via Cloudflare DNS
- SSH server running on your machine (default port
22
) - Temporary access to the
cloudflared
CLI (for tunnel creation) -
Either:
-
Docker and Docker Compose (used in this example), or
- A native
systemd
service (alternative not covered here)
đȘ Step-by-Step Instructions
1. Install and Authenticate
cloudflared
Install
cloudflared
(temporary):bash curl -L https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64 \ -o cloudflared && chmod +x cloudflared && sudo mv cloudflared /usr/local/bin/
Login with your Cloudflare account:
bash cloudflared tunnel login
This will open a browser and link the machine to your Cloudflare zone.
2. Create the Tunnel
Create a named tunnel:
bash cloudflared tunnel create ssh-tunnel
This creates a credential file, e.g.:
~/.cloudflared/5f84da12-e91b-4d2e-b4f0-7ca842f622f1.json
3. Define the Tunnel Routing Configuration
Create the tunnel config:
bash nano ~/.cloudflared/config.yml
Example:
```yaml tunnel: ssh-tunnel credentials-file: /etc/cloudflared/5f84da12-e91b-4d2e-b4f0-7ca842f622f1.json
ingress: - hostname: secure-ssh.example.com service: ssh://localhost:22 - service: http_status:404 ```
Then bind the hostname to the tunnel:
bash cloudflared tunnel route dns ssh-tunnel secure-ssh.example.com
Replace
secure-ssh.example.com
with your own subdomain under Cloudflare management.
4. Prepare File Permissions for Docker Use (Optional)
If using Docker,
cloudflared
runs as a non-root user (UID 65532
), so grant it access to your config and credentials:bash sudo chown 65532:65532 ~/.cloudflared sudo chown 65532:65532 ~/.cloudflared/*
5. Define
docker-compose.yml
(Optional)yaml version: "3.8" services: cloudflared: image: cloudflare/cloudflared:latest container_name: cloudflared-ssh-tunnel restart: unless-stopped volumes: - ${HOME}/.cloudflared:/etc/cloudflared:ro - ${HOME}/.cloudflared:/home/nonroot/.cloudflared:ro command: tunnel run ssh-tunnel network_mode: host
đ Docker is used here for convenience and automation. You may alternatively run
cloudflared tunnel run ssh-tunnel
directly undersystemd
or a background process.
6. Start the Tunnel
Start the container:
bash cd ~/docker/sshtunnel docker compose up -d docker logs -f cloudflared-ssh-tunnel
You should see
Registered tunnel connection
and other success logs.
7. Connect to the Tunnel from Remote Systems
Option A: Ad-hoc connection with
cloudflared access tcp
bash cloudflared access tcp --hostname secure-ssh.example.com --url localhost:2222
In another terminal:
bash ssh -p 2222 youruser@localhost
Option B: Permanent SSH Configuration
Edit
~/.ssh/config
:ssh Host secure-home HostName secure-ssh.example.com User youruser IdentityFile ~/.ssh/id_rsa ProxyCommand cloudflared access ssh --hostname %h
Then connect with:
bash ssh secure-home
â Result
- Secure SSH access via a public domain (e.g.,
secure-ssh.example.com
) - No ports open to the public Internet
- IP address of your machine remains hidden from Cloudflare clients
- Easily extendable to expose other services in future
đ Optional Enhancements
- Run as a
systemd
service instead of Docker for lower overhead - Use
autossh
orsystemd
to maintain persistent reverse tunnels - Expand to forward additional ports (e.g., Bitcoin RPC, application APIs)
- Apply strict firewall rules to limit SSH access to
localhost
only
-
@ 2edbcea6:40558884
2023-10-15 18:16:19Happy Sunday #Nostr !
Hereâs your #NostrTechWeekly newsletter brought to you by nostr:npub19mduaf5569jx9xz555jcx3v06mvktvtpu0zgk47n4lcpjsz43zzqhj6vzk written by nostr:npub1r3fwhjpx2njy87f9qxmapjn9neutwh7aeww95e03drkfg45cey4qgl7ex2
NostrTechWeekly is a weekly newsletter focused on the more technical happenings in the nostr-verse.
Letâs dive in!
Recent Upgrades to Nostr (AKA NIPs)
Itâs been a while since a new NIP was merged but there's a lot of activity on some meaty proposed NIPs. Looking forward to the upgrades đȘ
1) (Proposed) NIP 96: HTTP File Storage
One of the challenges of Nostr is where to store files (images, videos, PDFs, etc). Storing them on relays could bloat relays and lead to more centralization.
This NIP proposes a protocol to help third parties offer file hosting services to Nostr users. This NIP defines the necessary shape of the API of a third party offering file hosting services, so that these services can be easily used by Nostr clients to serve the content to users.
The proposal also defines an optional way for users to specify which File Storage servers theyâd like the client to upload content to.
Author: arthurfranca, Semisol, staab, v0l, bndw, michaelhall923, fishcakeday, quentintaranpino
2) (Proposed) Updates to NIP 72: Moderated Communities (like Reddit)
Currently NIP 72 specifies that posts to moderated communities are of kind 1 which is the default kind which is for tweet-like content. Therefore posts to moderated communities would show up in many clients without enough context.
This proposal would update the default kind for moderated communities so that the content of moderated communities would not show up on the default feed for users. This paves the way for Reddit-like clients to provide an experience thatâs focused on just posts to these communities.
Author: vivganes
3) (Proposed) NIP 91: IoT Sensors and Intents
Right now many âInternet of Thingsâ devices require you to report that data from the IoT sensor to the device makerâs servers and write integrations with their ecosystem to take action based on that information.
This NIP reserves a set of event kinds for IoT sensors reporting data (8000 - 8999). For example 8003 would be for thermometers to report temperature in celsius as a number, separate from 8005 which would allow reporting a location as an array of two numbers: longitude and latitude.
This NIP would allow developers to offer IoT devices that report to Nostr relays which gives you more control over the data and the process of taking action based on that data.
Author: nostr:npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6, BlackCoffee, arcbtc
4) (Proposed) NIP 107: Nostr Powered IoT
In conjunction with NIP 91, this NIP will enable a robust IoT ecosystem on Nostr.
This NIPâs goal is to help facilitate the development of Nostr clients that are IoT controllers. That way a user and a device can essentially âDMâ each other data and commands.
For example a user could install an IoT device thatâs a switch for a light. There would be a Nostr client where you can âregisterâ the new device and authorize some list of Nostr users that can utilize the device
Once registered any authorized device user would be able to toggle the light on and off from a Nostr client that supports IoT operations. This is entirely done via Nostr DMs, so you can do this from anywhere as long as you control the private key of a user that the device recognizes as a controller, and the data transferred and the commands are encrypted.
Author: arcbtc, BlackCoffee
Notable Projects
Shopstr đ
Shopstr is a classifieds app similar to Craigslist, you can post items for sale and facilitate transactions via lightning payments or DMs. Still early but this will be a useful addition to the Nostr-verse and a circular Bitcoin economy.
Author: nostr:npub16dhgpql60vmd4mnydjut87vla23a38j689jssaqlqqlzrtqtd0kqex0nkq
Shipyard đą
https://shipyard.pub/ is a client for composing and scheduling Nostr content, itâs easy to use and pretty slick. Many big content creators rely on such tools for legacy social media (Twitter, Instagram, etc).
This is a huge unlock for any big content creators that want to make the transition to Nostr but still preserve their ability to push content on a regular basis and monetize it.
Author: nostr:npub1l2vyh47mk2p0qlsku7hg0vn29faehy9hy34ygaclpn66ukqp3afqutajft
Nostr Design đš
nostr:npub1r0rs5q2gk0e3dk3nlc7gnu378ec6cnlenqp8a3cjhyzu6f8k5sgs4sq9ac has been offering resources and design help to Nostr devs for some time now via nostrdesign.org.
NostrDesign.org has set out to start conversations around the unique communication challenges of Nostr (keypairs, relays, signing extensions, etc) so that we can build some common patterns to help normies get started with Nostr without too much confusion or tutorial overhead. This will become more necessary as time and adoption goes on.
Good design can also make a huge difference in the success of a new product, especially if there arenât exact analogs to draw from when building a Nostr app (like when youâre cloning an existing product). I for one am a dev that SUCKS at UX and could use some advice from a thoughtful partner that wants Nostrâs success just as much as I do.
Latest conversations: Design and Nostr adoption
Thereâs been some discussion lately about how necessary design is to the Nostr ecosystem, and Iâll posit that it depends on your desires for Nostr.
Why design matters
Great design does not necessitate that something be beautiful. Great design is about usability.
Great design strips away unnecessary functionality and information so that only what matters remains. Great design understands the userâs desires and intent and empowers them to achieve their goals. Great design communicates how something ought to work with minimal explanation. Great design empowers the user to try something unfamiliar.
Craigslist is well designed in this sense, so is HackerNews, and the Reddit of a few years ago. They arenât beautiful but they provide immense value in a simple and intuitive way.
Developers arenât always the best at designing experiences that solve for usability and good communication to the user. The help of a good designer can be a huge help; making an app usable by a broader audience.
Accessibility and adoption
Adoption, in a very rough sense, can be thought of as a function of both how useful something is and how accessible it is. Think of accessibility as both how easy it is to use, as well as how easy it is to access (from my device, in my legal jurisdiction, for a low enough price).
If something is incredibly useful but not very accessible, only some people will use it (IRC). If something is very accessible but not very useful, no one will use it (case in point: itâs hard to name any đ). If something is very useful and very accessible, then it will get widely adopted (ChatGPT).
If we want Nostr to remain a niche community (with limited impact on the world) then we can ignore how easy our ecosystem is to use. I donât think thatâs anyoneâs goal.
The 10X better app on Nostr
When trying to get adoption for a new product the rule of thumb is that it needs to be 10X better than alternatives for folks to start adopting it and leave a competitor. Nostr is 10X better for folks that care about freedom tech, which is why most of us are already here.
Weâve built Nostr-based clones of many of the most prominent internet offerings (Twitter, Reddit, Imgur, Bitly, Instagram, Medium, WhatsApp, Craiglist, etc) the list goes on and on but thatâs not driving adoption. Thatâs probably because the nostr-versions are, at-best, as good in functionality but theyâre only better than the original in that theyâre on Nostr (and therefore freedom tech).
Much to our consternation most people donât seem to care about freedom tech as much as they should. If weâre to drive mass adoption we also have to discover applications that are uniquely possible on Nostr that are new and valuable enough to attract folks to try Nostr to try that app.
At that moment weâll also need the basics of Nostr to be accessible enough that people arenât scared off by the new patterns (keypairs, no usernames, no email alerts, no reset-password flow, which relays do I join?, etc). If we donât care about solving both problems we are giving a middle finger to a majority of the population of Earth.
What era of Nostr are we in?
From what Iâm seeing Nostr is still in the era of experimentation and foundation building.
If our goal is a freedom-oriented ecosystem of micro-apps to compete with Big Tech then weâre doing all the right work.
We definitely need to provide all the same functionality folks are used to (micro blogging, blogging, group chat, moderated communities, meme sharing, monetizing content, etc). Building Nostr-based clones is helping with that.
We are working on tools to help developers build on Nostr (NDK, NAK, nostr-tools, etc).
Weâre building general purpose browsers (Spring) to explore all corners of Nostr (current and future)
Weâre experimenting with offerings unique to Nostr to see what killer app drives people to try Nostr en masse (Data Vending Machines, self-sovereign Internet of Things, uncensorable private and secure group chat, etc).
Good design doesnât seem to be THE reason that adoption of Nostr isnât exponential, but at some point it will become the bottleneck to adoption and itâs good to think ahead. The best time to plant a tree is ten years ago and all that.
Until next time đ«Ą
If you want to see something highlighted, if we missed anything, or if youâre building something we didnât post about, let us know. DMs welcome at nostr:npub19mduaf5569jx9xz555jcx3v06mvktvtpu0zgk47n4lcpjsz43zzqhj6vzk
Stay Classy, Nostr.
-
@ b7274d28:c99628cb
2025-05-28 01:11:43In this second installment of The Android Elite Setup tutorial series, we will cover installing the nostr:npub10r8xl2njyepcw2zwv3a6dyufj4e4ajx86hz6v4ehu4gnpupxxp7stjt2p8 on your #Android device and browsing for apps you may be interested in trying out.
Since the #Zapstore is a direct competitor to the Google Play Store, you're not going to be able to find and install it from there like you may be used to with other apps. Instead, you will need to install it directly from the developer's GitHub page. This is not a complicated process, but it is outside the normal flow of searching on the Play Store, tapping install, and you're done.
Installation
From any web browser on your Android phone, navigate to the Zapstore GitHub Releases page and the most recent version will be listed at the top of the page. The .apk file for you to download and install will be listed in the "Assets."
Tap the .apk to download it, and you should get a notification when the download has completed, with a prompt to open the file.
You will likely be presented with a prompt warning you that your phone currently isn't allowed to install applications from "unknown sources." Anywhere other than the Play Store is considered an "unknown source" by default. However, you can manually allow installation from unknown sources in the settings, which the prompt gives you the option to do.
In the settings page that opens, toggle it to allow installation from this source, and you should be prompted to install the application. If you aren't, simply go to your web browser's downloads and tap on the .apk file again, or go into your file browser app and you should find the .apk in your Downloads folder.
If the application doesn't open automatically after install, you will find it in your app drawer.
Home Page
Right at the top of the home page in the Zapstore is the search bar. You can use it to find a specific app you know is available in the Zapstore.
There are quite a lot of open source apps available, and more being added all the time. Most are added by the Zapstore developer, nostr:npub1wf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgs43dgh9, but some are added by the app developers themselves, especially Nostr apps. All of the applications we will be installing through the Zapstore have been added by their developers and are cryptographically signed, so you know that what you download is what the developer actually released.
The next section is for app discovery. There are curated app collections to peruse for ideas about what you may want to install. As you can see, all of the other apps we will be installing are listed in nostr:npub1wf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgs43dgh9's "Nostr" collection.
In future releases of the Zapstore, users will be able to create their own app collections.
The last section of the home page is a chronological list of the latest releases. This includes both new apps added to the Zapstore and recently updated apps. The list of recent releases on its own can be a great resource for discovering apps you may not have heard of before.
Installed Apps
The next page of the app, accessed by the icon in the bottom-center of the screen that looks like a clock with an arrow circling it, shows all apps you have installed that are available in the Zapstore. It's also where you will find apps you have previously installed that are ready to be updated. This page is pretty sparse on my test profile, since I only have the Zapstore itself installed, so here is a look at it on my main profile:
The "Disabled Apps" at the top are usually applications that were installed via the Play Store or some other means, but are also available in the Zapstore. You may be surprised to see that some of the apps you already have installed on your device are also available on the Zapstore. However, to manage their updates though the Zapstore, you would need to uninstall the app and reinstall it from the Zapstore instead. I only recommend doing this for applications that are added to the Zapstore by their developers, or you may encounter a significant delay between a new update being released for the app and when that update is available on the Zapstore.
Tap on one of your apps in the list to see whether the app is added by the developer, or by the Zapstore. This takes you to the application's page, and you may see a warning at the top if the app was not installed through the Zapstore.
Scroll down the page a bit and you will see who signed the release that is available on the Zapstore.
In the case of Primal, even though the developer is on Nostr, they are not signing their own releases to the Zapstore yet. This means there will likely be a delay between Primal releasing an update and that update being available on the Zapstore.
Settings
The last page of the app is the settings page, found by tapping the cog at the bottom right.
Here you can send the Zapstore developer feedback directly (if you are logged in), connect a Lightning wallet using Nostr Wallet Connect, delete your local cache, and view some system information.
We will be adding a connection to our nostr:npub1h2qfjpnxau9k7ja9qkf50043xfpfy8j5v60xsqryef64y44puwnq28w8ch wallet in part 5 of this tutorial series.
For the time being, we are all set with the Zapstore and ready for the next stage of our journey.
Continue to Part 3: Amber Signer. Nostr link: nostr:naddr1qqxnzde5xuengdeexcmnvv3eqgstwf6d9r37nqalwgxmfd9p9gclt3l0yc3jp5zuyhkfqjy6extz3jcrqsqqqa28qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qg6waehxw309aex2mrp0yhxyunfva58gcn0d36zumn9wss80nug
-
@ dd664d5e:5633d319
2025-06-14 07:24:03The importance of being lindy
I've been thinking about what Vitor said about #Amethyst living on extended time. And thinking. And doing a bit more thinking...
It's a valid point. Why does Amethyst (or, analog, #Damus) still exist? Why is it as popular as it is? Shouldn't they be quickly washed-away by power-funded corporate offerings or highly-polished, blackbox-coded apps?
Because a lot of people trust them to read the code, that's why. The same way that they trust Michael to read it and they trust me to test it. And, perhaps more importantly, they trust us to not deliver corrupted code. Intentionally, or inadvertently.
The developer's main job will not be coding the commit, it will be reviewing and approving the PR.
As AI -- which all developers now use, to some extent, if they are planning on remaining in the business -- becomes more efficient and effective at writing the code, the effort shifts to evaluating and curating what it writes. That makes software code a commodity, and commodities are rated according to brand.
Most of us don't want to make our own shampoo, for instance. Rather, we go to the store and select the brand that we're used to. We have learned, over the years, that this brand won't kill us and does the job we expect it to do. Offloading the decision of Which shampoo? to a brand is worth some of our time and money, which is why strong, reliable brands can charge a premium and are difficult to dislodge.
Even people, like myself, who can read the code from many common programming languages, do not have the time, energy, or interest to read through thousands of lines of Kotlin, Golang, or Typescript or -- God forbid -- C++, from repos we are not actively working on. And asking AI to analyze the code for you leaves you trusting the AI to have a conscience and be virtuous, and may you have fun with that.
The software is no longer the brand. The feature set alone isn't enough. And the manner in which it is written, or the tools it was written with, are largely irrelevant. The thing that matters most is Who approved this version?
The Era of Software Judges has arrived
And that has always been the thing that mattered most, really.
That's why software inertia is a real thing and that's why it's going to still be worth it to train up junior devs. Those devs will be trained up to be moral actors, specializing in reviewing and testing code and confirming its adherance to the project's ethical standards. Because those standards aren't universal; they're nuanced and edge cases will need to be carefully weighed and judged and evaluated and analysed. It will not be enough to add Don't be evil. to the command prompt and call it a day.
So, we shall need judges and advocates, and we must train them up, in the way they shall go.
-
@ 866e0139:6a9334e5
2025-06-14 17:33:06Autor: Bernd Schoepe. Dieser Beitrag wurde mit dem Pareto-Client geschrieben. Sie finden alle Texte der Friedenstaube und weitere Texte zum Thema Frieden hier. Die neuesten Pareto-Artikel finden Sie in unserem Telegram-Kanal.
Die Anmerkungen zum Text (FuĂnoten) folgen aus technischen GrĂŒnden gesondert.
Die neuesten Artikel der Friedenstaube gibt es jetzt auch im eigenen Friedenstaube-Telegram-Kanal.
Dies ist Teil 3 des Essays. Lesen Sie hier Teil 1 und Teil 2.
IVÂ Denazifizierungsstopp und die âabgesagteâ NS-Aufarbeitung in der Adenauer-Ăra
âNie wieder Krieg, nie wieder Faschismus!â
Dieses Gelöbnis erfuhr seine Ausformulierung, als die durch Krieg und Verfolgung charakterlich tief geprĂ€gten und fĂŒr ihr Leben gezeichneten VĂ€ter und MĂŒtter des Grundgesetzes sich 1948 zum Parlamentarischen Rat versammelten. Dort hat man vor dem Erfahrungshintergrund des Totalitarismus Nazi-Deutschlands in den neunzehn Grundrechtsartikeln die Rechte der Menschen vor dem Staat festgeschrieben, die gegen staatliche âWillkĂŒr, Ungerechtigkeit und Gewaltâ (25) schĂŒtzen sollen. Sie wurden zur Grundlage eines neuen StaatsverstĂ€ndnisses, das vom Humanismus und dem Geist der AufklĂ€rung getragen sein sollte. Das Gelöbnis fand seinen verfassungsmĂ€Ăigen Ausdruck also im Grundgesetz, das am 23. Mai 1949 feierlich in Bonn verkĂŒndet wurde. Dessen Geist manifestiert sich besonders in der sogenannten Ewigkeitsklausel der MenschenwĂŒrde (Art.1), die den Grundrechtsartikeln, dem Kanon der Menschen- und BĂŒrgerrechte, vorangestellt wurde.
Doch die Unterschriften unter dem Grundgesetz waren kaum trocken, da wurde dieses Gelöbnis schon durch die Frontstaatenideologie des Kalten Krieges ĂŒberlagert, konterkariert und in der Praxis sukzessive aufgehoben. Der Kalte Krieg hatte bereits begonnen und seine Akteure bedienten sich ungeniert der Vorurteile und Stereotypen, mit denen die Deutschen noch gut aus dem Dritten Reich vertraut waren. Grundiert vom militanten Anti-Kommunismus, der bekanntlich auch die Nazi-Ideologie stark angetrieben hatte, verstĂ€rkt durch die Wiederbewaffnung mit der sie begleitenden Aufnahme der BRD in die NATO, konsolidiert in der Zeit der Adenauer-Restauration in den 1950er Jahren, in der ein konservativ-elitĂ€res Staatsdenken gegenĂŒber radikaldemokratischen Bestrebungen klar dominieren und sich durchsetzen sollte, erwies die Aufarbeitung der NS-Vergangenheit sich als der gröĂte und folgenreichste Rohrkrepierer in der Geschichte der noch jungen zweiten deutschen Republik. Erst mit den Frankfurter Auschwitz-Prozessen und stĂ€rker dann noch im Zusammenhang mit der Studentenrevolte Ende der 1960er Jahre sollte es zu neuen ernsthaften BemĂŒhungen um gesellschaftliche Aufarbeitung kommen.Â
Adenauers AnkĂŒndigung einer Beendigung der NS-Aufarbeitung, die er bereits in seiner ersten RegierungserklĂ€rung 1949 (!) vor dem Bundestag gab, dĂŒrfte auch und gerade aus heutiger Sicht von deutlich wichtigerer Bedeutung fĂŒr das Fortleben autoritĂ€r-rechtsextremer, völkischer und nationalsozialistischer Gesinnungen und Haltungen in Deutschland gewesen sein als der Einzug der AfD in den Bundestag 2017, einschlieĂlich aller geschichtsvergessenen und in ihrer Wortwahl geschmacklosen ĂuĂerungen ihrer Politiker seither.Â
Bemerkenswert sind die Worte, mit der Adenauer so frĂŒh der gesellschaftlichen Aufarbeitung der NS-Zeit eine klare Absage erteilte:
âDurch die Denazifizierung ist viel UnglĂŒck und viel Unheil angerichtet worden. (...) Im Ăbrigen dĂŒrfen wir nicht mehr zwei Klassen von Menschen in Deutschland unterscheiden, die politisch Einwandfreien und die politisch Nicht-Einwandfreien. Diese Unterscheidung muss baldigst verschwinden.â (26)
Rasch wurden daraufhin die gesetzlichen Grundlagen geschaffen, um in den im Aufbau befindlichen bundesdeutschen Verwaltungsapparat ĂŒber 50.000 NS-belastete Beamte wiedereinzugliedern, darunter auch viele, die zuvor dem Nazi-Unrechtsstaat als Mitglieder der Gestapo und der SS gedient hatten. Besonders im Bundesjustizministerium hatte ein Netzwerk aus Alt-Nazis unterhalb der ministeriellen Leitungsebene bis in die 1960er Jahre hinein das Sagen, mit groĂen, noch immer nicht vollstĂ€ndig aufgearbeiteten Auswirkungen auf die Gesetzgebung, durch die NS-Verbrecher in der BRD auf verschiedene Weisen vor Strafverfolgung geschĂŒtzt wurden. Â
Den ideologischen Hintergrund bildet dafĂŒr der Konservatismus, dem Adenauer, die CDU/CSU und andere politisch einflussreichen KrĂ€fte anhingen, genauer gesagt das Elitedenken, das fĂŒr diesen Konservatismus konstitutiv ist. Es erklĂ€rt, dass die Regierung lieber auf die alte Elite, auch wenn sie in weiten Teilen nationalsozialistisch belastet war, zurĂŒckgriff als ein neues, demokratisch-selbstbewusstes Beamtentum zu begrĂŒnden und eine aus den verschiedenen Facetten des Widerstandes sich rekrutierende FĂŒhrungsschicht aufzubauen. Denn die geeigneten Personen fĂŒr diese FĂŒhrungsschicht hĂ€tte man weitgehend nicht im eigenen Lager, sondern im Lager der politischen Gegner, bei Sozialdemokraten, Sozialisten, Kommunisten und Linksliberalen finden können.Â
Fazit: Im Handumdrehen wurde der an das âNie-Wieder!ââ Versprechen an die zukĂŒnftigen Generationen geknĂŒpfte, zumindest teilweise ernsthaft und aufrichtig angestrebte Neuanfang âverstanden als ein radikal zu vollziehender Bruch mit der faschistischen Vergangenheit â hintertrieben, entstellt, entkrĂ€ftet und um seine Wirkung gebracht. Dabei spielte nicht zuletzt die schnell wieder angekurbelte Feindbildproduktion und Russophobie (âalle Wege der Linken, Friedensfreunde, Anti-Militaristen und NeutralitĂ€tsbefĂŒrworter fĂŒhren nach Moskau!â), eine wichtige Rolle.
Es ist daher kein Zufall, dass sie uns so verblĂŒffend Ă€hnlich auch heute wieder in Politik und Medien begegnet. Sie ist ein HerzstĂŒck der deutschen Nachkriegs-LebenslĂŒge namens âVergangenheitsbewĂ€ltigungâ. Hier gilt einmal mehr der Satz, dass Untote bekanntlich lĂ€nger leben.
Sie macht sich heute auch darin bemerkbar, dass die Tatsache, dass es sich bei dem Krieg gegen Russland nicht um einen Eroberungskrieg, sondern um einen Vernichtungsfeldzug gegen eine âminderwertige Rasse und Kulturâ handelte, im kollektiven Bewusstsein der Deutschen nicht verankert wurde. Sonst hĂ€tte der Hass auf die Russen und alles Russische gesellschaftlich nicht wieder hoffĂ€hig werden können.
DIE FRIEDENSTAUBE FLIEGT AUCH IN IHR POSTFACH!
Hier können Sie die Friedenstaube abonnieren und bekommen die Artikel zugesandt, vorerst fĂŒr alle kostenfrei, wir starten gĂ€nzlich ohne Paywall. (Die Bezahlabos fangen erst zu laufen an, wenn ein Monetarisierungskonzept fĂŒr die Inhalte steht). Sie wollen der Genossenschaft beitreten oder uns unterstĂŒtzen? Mehr Infos hier oder am Ende des Textes.
Exkurs zum Niedergang der deutschen Sozialdemokratie
Im Ringen um den Weg, den die Bundesrepublik in den 1950er Jahren nehmen sollte, wurden damals Sozialdemokraten, die sich nicht bedingungslos der Bollwerks- und Frontstaaten-Ideologie des Kalten Kriegs unterwarfen, als âvaterlandslose Gesellenâ diffamiert. Die SPD tat sich immer schwer damit, der Demagogie der bĂŒrgerlichen Parteien etwas entgegenzusetzen, da Antikommunismus bei breiten Teilen der Bevölkerung, getreu der Devise âje primitiver, desto besser bzw. wirkungsvollerâ, auch nach Hitler verfing.Â
Heute schlĂ€gt die Sozialdemokratische Partei die AufrĂŒstungs- und Kriegstrommel lieber selber krĂ€ftig mit und diffamiert die Angehörigen der Friedensbewegung und Verfechter einer DĂ©tente mit Russland als âPutin-Freundeâ und âRusslandversteherâ oder gar, ins absurd Metaphysische gesteigert als âgefallene Engel aus der Hölleâ (Olaf Scholz).
Mit dem FriedensnobelpreistrĂ€ger und NS-WiderstandskĂ€mpfer Willy Brandt an der Spitze fuhr die SPD ihren gröĂten Wahlerfolg ein â die von ihm gefĂŒhrte erhielt in der Bundestagswahl 1972 45,8 Prozent. AuĂenpolitisch ĂŒberzeugte sie mit âWandel durch AnnĂ€herungâ und âWir wollen ein Volk guter Nachbar seinâ. Nun ist sie beim FĂŒhrungspersonal bei einem farblosen Apparatschik und Waffenlobbyisten (27) namens Lars Klingbeil und 16,4 % der WĂ€hlerstimmen angekommen. Zumindest die ebenso blasse und ideenlose Saskia Esken, die bei vielen einzig und allein fĂŒr ihre Diffamierung von Demonstranten gegen das Corona-Unrecht (âCovidiotenâ) in Erinnerung bleiben wird, zieht aus ihrer Unbeliebtheit nun die Konsequenz und tritt ab.
Indem die SPD, in Anbetracht der Friedensinitiativen Trumps die Chance verstreichen lĂ€sst, sich selbst in ihrer Politik gegenĂŒber Russland zu korrigieren, um doch noch auf den Pfad der Diplomatie zurĂŒckzukehren und zu verhindern, dass auch noch der letzte Rest sozialdemokratischer Substanz ĂŒber Bord geworfen wird, setzt Sozen-Konkursbeschleuniger Klingbeil zusammen mit BlackRock-MillionĂ€r Merz auf den Scholzschen Zeitenwende-Wahnsinn von 100 Milliarden fĂŒr die RĂŒstung lieber noch weitere 500 Milliarden Euro drauf. Er und der den Kommiss-Ton perfekt beherrschende Pistorius, mit seinen Einlassungen zum ârussischen Diktatfriedenâ, der, wenn man ihn denn schon unbedingt so nennen will, ja nicht zuletzt auf das Konto der diplomatischen UntĂ€tigkeit der deutschen Regierung geht, besiegeln durch das von der Schuldenbremse befreite, in puncto Kostspieligkeit nach oben offene AufrĂŒstungs- und Militarisierungsprogramm, unter das in Wirklichkeit auch ein groĂer Teil der geplanten InfrastrukturmaĂnahmen subsummiert werden wird (28), das Schicksal der Ă€ltesten Partei Deutschlands. Wissen diese SPD-Politiker wirklich nicht, was sie tun, wenn sie fĂŒr die Profite der RĂŒstungswirtschaft alles verraten und auf lange Sicht verspielen, wofĂŒr diese Partei auĂen- und sozialpolitisch einmal stand und wofĂŒr sie gewĂ€hlt wurde?  Â
All das, was die SPD als Friedens- und Entspannungspartei einmal zur stĂ€rksten politischen Kraft gemacht hat, wird nun wie im Wahn von ihr verleugnet und mutwillig, geschichtsvergessen-revanchistisch zerstört. Und nicht nur das: Die SPD liefert den Rechten (nein, nicht der AfD, sondern den sonstigen Extremisten der Mitte!) den Grund, den neoliberal bereits entkernten Sozialstaat weiter â ab jetzt aber mit Bulldozern statt mit der Spitzhacke â zu zerstören. Sie nimmt dafĂŒr auch weitere, schwere BeschĂ€digungen der LegitimitĂ€t unserer ohnehin dahinsiechenden Demokratie in Kauf. Die Demokratie liegt nĂ€mlich seit Corona bei uns auf der Intensivstation und muss, u.a. durch regierungsfinanzierte âNGOsâ und staatlich organisierte Anti-AfD-Demonstrationen, kĂŒnstlich beatmet werden!
SchlieĂlich war die SPD zusammen mit der Merz-Union sogar bereit, einen kalten Putsch gegen die IntegritĂ€t des Parlamentarismus und die elementaren Spielregeln der Demokratie durchzufĂŒhren. Mit diesem Putsch hat man im abgewĂ€hlten 20. Bundestag noch schnell politisch Ă€uĂerst weitreichende GrundgesetzĂ€nderungen durchgesetzt â und das gegen die neuen Mehrheiten des bereits gewĂ€hlten 21. Bundestages! Die durch Bruch des Wahlversprechens ermöglichte GrundgesetzĂ€nderung, stellt einen besonders beschĂ€menden Akt der MachtanmaĂung, WĂ€hlerverhöhnung und Demokratiemissachtung dar. Und sie verfehlte ihre Wirkung nicht. Kurz darauf konnten die Demoskopen neue Rekordwerte fĂŒr die AfD messen, die nun als stĂ€rkste Partei noch vor der CDU lag. Das Merz-Manöver dĂŒrfte im Ăbrigen dafĂŒr gesorgt haben, dass ihm nach der Wahl zum Bundeskanzler, die ja alles andere als glatt verlief, ein Makel anhĂ€ngt, der so gravierend ist, dass er fĂŒr den Rest seiner Amtszeit (hoffentlich) nicht mehr zu tilgen sein wird.
Das besonders Irre, das nicht nur den Fall der SPD beschreibt, ihr Versagen aber besonders plastisch hervorhebt, ist, dass es seit Beginn des Ukraine-Kriegs innerhalb der EU (mit Ausnahme Orbans) keine diplomatischen Initiativen gegeben hat, um mit Russland wieder ins GesprĂ€ch zu kommen. Im RĂŒckblick wirken da selbst die Kalten Krieger vor und wĂ€hrend der Ostpolitik von Willy Brandt wie Appeasement-Politiker.Â
Stattdessen war wiederholt eine BundesauĂenministerin zu vernehmen, die offenbar nur sehr eingeschrĂ€nkt dazu imstande ist, ihre sprachliche Performanz dem hohen Amt angemessen zu kontrollieren. Sie wollte öffentlich âRussland ruinierenâ und erklĂ€rte dem Land ein anderes Mal, vor dem Europarat, beilĂ€ufig den Krieg. Dass Baerbock, die in ihrer Amtszeit in fast jedes diplomatische FettnĂ€pfchen getreten ist, jetzt zur zweithöchsten UN-Chef-Diplomatin gewĂ€hlt wurde, ist Realsatire pur!
Polemik als geistiger NotwehraktÂ
Doch Halt! â Gerade merke ich, wie mich mein Hang zur Polemik fortzureiĂen beginnt!
Die Polemik ist ein hilfreiches (und noch nicht ganz verbotenes!) geistiges Notwehr-Mittel in Zeiten eines zunehmend aggressiv aufgeheizten gesellschaftlichen Klimas. Wie soll man nicht zum Polemiker und Satiriker angesichts des grassierenden Wahnsinns der Politik und ihrer vielen verrĂŒckt und absurd anmutenden Pathologien und Regressionen werden, hinter denen bei genauerem Hinsehen dann doch oft auch KalkĂŒl vermutet werden muss? Wie sind sie anders als VorgĂ€nge zu deuten, die zur Abwicklung der Demokratie fĂŒhren sollen? VorgĂ€nge, die durch eben jene KrĂ€fte betrieben werden, die âunsere Demokratieâ inflationĂ€r lobpreisen und nicht mĂŒde werden, ihre âWerteâ in Sonntagsreden hervorzuheben. Gleichzeitig werden diese Werte aber durch Cancel Culture, Zensur und Denunziation massiv von ihnen angegriffen und von innen immer weiter ausgehöhlt.
Definitiv verhÀlt es sich heute so, dass der Hang zur Polemik dem Umstand geschuldet wird, dass wir mittlerweile in schier unglaublichen Zeiten von Travestie-Ausgeburten leben. Diese machen es uns immer schwerer, nicht ganz die Bodenhaftung zu verlieren. All die wahnwitzigen PhÀnomenen, die wie wildgewordene SÀue tagein tagaus durch das globale Dorf der Massenmedien in Echtzeit** getrieben werden, sie gefÀhrden das Restvertrauen in den gesunden Menschenerstand und schrÀnken die Möglichkeiten stark ein, einen halbwegs stabilen, geerdeten, vernunftgeleiteten RealitÀtsbezug aufrechtzuerhalten.
Und doch soll hier nicht ein weiteres Mal in dieser Façon mit der Regierungspolitik abgerechnet werden. Auf der Suche nach den tieferen GrĂŒnden fĂŒr diese negativen Entwicklungen, soll stattdessen im zeithistorischen Material an einigen neuralgischen Stellen genauer nachgesehen und an der OberflĂ€che gekratzt werden, um die blinden Flecken bundesrepublikanischer Selbstwahrnehmung sichtbar zu machen.
Bernd Schoepe, Jahrgang 1965, Studium der Soziologie, Germanistik, Philosophie und Erziehungswissenschaften in Frankfurt/M. und Hamburg. Erstes und zweites Staatsexamen. Freier Autor, der zu bildungspolitischen, bildungssoziologischen- und bildungsphilosophischen Themen schreibt. Seit 2003 im Hamburger Schuldienst. LangjÀhriges GEW-Betriebsgruppen-Mitglied, ehem. Vertrauensmann, ehem. Mitglied der Hamburger Lehrerkammer. Hauptberuflich bin ich Politik- Deutsch- und Philosophielehrer an einer Hamburger Stadtteilschule. Kontakt: berndschoepe\@gmx.de
LASSEN SIE DER FRIEDENSTAUBE FLĂGEL WACHSEN!
In KĂŒrze folgt eine Mail an alle Genossenschafter, danke fĂŒr die Geduld!
Hier können Sie die Friedenstaube abonnieren und bekommen die Artikel zugesandt.
Schon jetzt können Sie uns unterstĂŒtzen:
- FĂŒr 50 CHF/EURO bekommen Sie ein Jahresabo der Friedenstaube.
- FĂŒr 120 CHF/EURO bekommen Sie ein Jahresabo und ein T-Shirt/Hoodie mit der Friedenstaube.
- FĂŒr 500 CHF/EURO werden Sie Förderer und bekommen ein lebenslanges Abo sowie ein T-Shirt/Hoodie mit der Friedenstaube.
- Ab 1000 CHF werden Sie Genossenschafter der Friedenstaube mit Stimmrecht (und bekommen lebenslanges Abo, T-Shirt/Hoodie).
FĂŒr Einzahlungen in CHF (Betreff: Friedenstaube):
FĂŒr Einzahlungen in Euro:
Milosz Matuschek
IBAN DE 53710520500000814137
BYLADEM1TST
Sparkasse Traunstein-Trostberg
Betreff: Friedenstaube
Wenn Sie auf anderem Wege beitragen wollen, schreiben Sie die Friedenstaube an:Â friedenstaube@pareto.space
Sie sind noch nicht auf Nostr and wollen die volle Erfahrung machen (liken, kommentieren etc.)? Zappen können Sie den Autor auch ohne Nostr-Profil! Erstellen Sie sich einen Account auf Start. Weitere Onboarding-LeitfÀden gibt es im Pareto-Wiki.
-
@ 04c3c1a5:a94cf83d
2025-06-14 18:39:00edit time
-
@ a9434ee1:d5c885be
2025-05-12 07:51:31Colors as a fun and useful identifier
Nostr apps often use totally random colors for their default avatars, profiles names in chat bubbles, etc... That's a missed opportunity. Why don't we just we just derive a color from the npub and use that instead, interoperably across apps?
It gives us a fun and visual extra point of recognition, often without having to add anything extra to the UIs.
The only problem is that we cannot just allow for any color. The colors should be readable as text in Light and Dark modes and gray-scales should be avoided too.
This is the goal:
Luckily, there's a super simple solution.
(which was used to derive the color above)Deriving the Colors
You can find the simple spec here: nostr:naddr1qvzqqqrcvgpzp22rfmsktmgpk2rtan7zwu00zuzax5maq5dnsu5g3xxvqr2u3pd7qy88wumn8ghj7mn0wvhxcmmv9uqsuamnwvaz7tmwdaejumr0dshsz8rhwden5te0w35x2cmfw3skgetv9ehx7um5wgcjucm0d5hsz8rhwden5te0w35x2cmfw3skgetv9ehx7um5wgcjucm0d5hszxmhwden5te0w35x2en0wfjhxapwdehhxarjxyhxxmmd9uq3kamnwvaz7tm5dpjkvmmjv4ehgtnwdaehgu339e3k7mf0qyghwumn8ghj7mn0wd68ytnhd9hx2tcpz9mhxue69uhkummnw3ezuamfdejj7qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7qgwwaehxw309ahx7uewd3hkctcpr3mhxue69uhhg6r9vd5hgctyv4kzumn0wd68yvfwvdhk6tcpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcprdmhxue69uhhg6r9vehhyetnwshxummnw3erztnrdakj7qg3waehxw309ahx7um5wgh8w6twv5hszythwden5te0dehhxarj9emkjmn99uqsuamnwvaz7tmwdaejumr0dshsz8rhwden5te0w35x2cmfw3skgetv9ehx7um5wgcjucm0d5hsqpnwd9cz6ce3pvatyf
TLDR: 1. Convert HEX pubkey to Int 2. Calculate the Hue value: Int % 360 3. Set Saturation to 90 for Hues between 216 and 273, use 80 for the rest 4. Set Brightness to 65 for Hues between 32 and 212, use 85 for the rest
Convert HSB color to whatever format you need. Done.
Easy & Fun to integrate!
-
@ 2e8970de:63345c7a
2025-06-14 17:07:56Iran raising a red flag in war times? That's a bit. Sabrina Carpenters "persona" - she's doing a bit. In the pope election the cardinals locking themselves in a conclave and the white smoke thing - it's a bit. Everything is only a bit.
Maybe I'm just old and interpret too much into youth slang but - that's actually a HUGE cultural shift if young people think of nothing as authentic anymore. What even is authentic?
https://stacker.news/items/1006348
-
@ dd664d5e:5633d319
2024-06-21 19:11:51Finding Catholics and Catholic-friendly content on Nostr
Obvious Catholics being obvious
nostr:npub1m4ny6hjqzepn4rxknuq94c2gpqzr29ufkkw7ttcxyak7v43n6vvsajc2jl
nostr:npub1k92qsr95jcumkpu6dffurkvwwycwa2euvx4fthv78ru7gqqz0nrs2ngfwd
nostr:npub1wqfzz2p880wq0tumuae9lfwyhs8uz35xd0kr34zrvrwyh3kvrzuskcqsyn
nostr:npub1ecdlntvjzexlyfale2egzvvncc8tgqsaxkl5hw7xlgjv2cxs705s9qs735
nostr:npub1rcr8h76csgzhdhea4a7tq5w5gydcpg9clgf0cffu6z45rnc6yp5sj7cfuz
nostr:npub1fyd0awkakq4aap70ual7mtlszjle9krffgwnsrkyua2frzmysd8qjj8gvg
nostr:npub1q0fe26apcqeeyqnlre29fqu7ysx0ucm5ly637md3zlvy2xcfsm3s0lsv4r
nostr:npub1dvdcmtp5llrp63jdlmhspe9gffsyu9ew7cu3ld3f9y7k79nxzjxqf4d4rm
nostr:npub1paxyej8f8fh57ny0fr5w2mzp9can9nkcmeu5jaerv68mhrah7t8s795ky6
nostr:npub1tvw3h5xqnuc2aq5zelxp3dy58sz7x9u8e6enkxywmrz70cg2j2zqjes44n
nostr:npub13tahtl9pjw9u5ycruqk84k6sfmkyljsr7y2pc4s840ctlm73fxeq3j6e08
nostr:npub1w4jkwspqn9svwnlrw0nfg0u2yx4cj6yfmp53ya4xp7r24k7gly4qaq30zp
Other good Christian follows
nostr:npub1hqy4zwnvsdmlml4tpgp0kgrruxamfcwpgm4g3q2tr3d2ut3kuxusx73psm
nostr:npub1cpstx8lzhwctunfe80rugz5qsj9ztw8surec9j6mf8phha68dj6qhm8j5e
nostr:npub1ak5kewf6anwkrt0qc8ua907ljkn7wm83e2ycyrpcumjvaf2upszs8r0gwg
nostr:npub1mt8x8vqvgtnwq97sphgep2fjswrqqtl4j7uyr667lyw7fuwwsjgs5mm7cz
nostr:npub1q6ya7kz84rfnw6yjmg5kyttuplwpauv43a9ug3cajztx4g0v48eqhtt3sh
nostr:npub1356t6fpjysx9vdchfg7mryv83w4pcye6a3eeke9zvsje7s2tuv4s4k805u
nostr:npub1kun5628raxpm7usdkj62z2337hr77f3ryrg9cf0vjpyf4jvk9r9smv3lhe
nostr:npub1qf6gsfapq94rj0rcptkpm9sergacmuwrjlgfx5gznjajtvkcx3psfhx6k5
nostr:npub1ll99fcrclkvgff696u8tq9vupw9fulfc8fysdf6gfwp7hassrh2sktxszt
nostr:npub1zy37ecnhpvx4lmxh4spd0898sxdj0ag8m64s9yq499zaxlg7qrqq8c53q6
nostr:npub1rtlqca8r6auyaw5n5h3l5422dm4sry5dzfee4696fqe8s6qgudks7djtfs
nostr:npub1jlrs53pkdfjnts29kveljul2sm0actt6n8dxrrzqcersttvcuv3qdjynqn
nostr:npub18zqmath26txwfhc70af8axk7pftjre9x7cf0lxkg92nvj2cpfgts8va790
Christian follow list
An exhaustive list of Christians is maintained by nostr:npub1mt8x8vqvgtnwq97sphgep2fjswrqqtl4j7uyr667lyw7fuwwsjgs5mm7cz. Just look at his list on https://listr.lol/
Catholic community
You can also join the community, to reach other catholics (usable on #Nostrudel #Coracle #Amethyst and #Satellite): nostr:naddr1qvzqqqyx7cpzqqnd3dl8hnptg9agfugwmdcmgfl7wcrfjpgfpv28ksq6dnmqc0e8qqyyxct5dphkc6trmu6k9l
Christian topic relay
And always make sure to use the #catholic hashtag, to get onto the top-specific christpill relay (add it to your relay list: wss://christpill.nostr1.com/).
Hope that helps! đ
-
@ b1ddb4d7:471244e7
2025-06-13 13:01:31Paris, France â June 6, 2025 â Flash, the easiest Bitcoin payment gateway for businesses, just announced a new partnership with the Bitcoin Only Brewery, marking the first-ever beverage company to leverage Flash for seamless Bitcoin payments.Â
Bitcoin Buys Beer Thanks to Flash!
As Co-Founder of Flash, it's not every day we get to toast to a truly refreshing milestone.
Okay, jokes aside.
We're super buzzed to see our friends at @Drink_B0B
Bitcoin Only Brewery using Flash to power their online sales!The first⊠pic.twitter.com/G7TWhy50pX
â Pierre Corbin (@CierrePorbin) June 3, 2025
Flash enables Bitcoin Only Brewery to offer its âBOBâ beer with, no-KYC (Know Your Customer) delivery across Europe, priced at 19,500 sats (~$18) for the 4-pack â shipping included.
The cans feature colorful Bitcoin artwork while the contents promise a hazy pale ale: âEach 33cl can contains a smooth, creamy mouthfeel, hazy appearance and refreshing Pale Ale at 5% ABV,â reads the product description.
Pierre Corbin, Co-Founder of Flash, commented: âCurrently, bitcoin is used more as a store of value but usage for payments is picking up. Thanks to new innovation on Lightning, bitcoin is ready to go mainstream for e-commerce sales.â
Flash, launched its 2.0 version in March 2025 with the goal to provide the easiest Bitcoin payment gateway for businesses worldwide. The platform is non-custodial and can enable both digital and physical shops to accept Bitcoin by connecting their own wallets to Flash.
By leveraging the scalability of the Lightning Network, Flash ensures instant, low-cost transactions, addressing on-chain Bitcoin bottlenecks like high fees and long wait times.
Bitcoin payment usage is growing thanks to Lightning
In May, fast-food chain Steak âN Shake went viral for integrating bitcoin at their restaurants around the world. In the same month, the bitcoin2025 conference in Las Vegas set a new world record with 4,000 Lightning payments in one day.
According to a report by River Intelligence, public Lightning payment volume surged by 266% from August 2023 to August 2024. This growth is also reflected in the overall accessibility of lighting infrastructure for consumers. According to Lightning Service Provider Breez, over 650 Million users now have access to the Lightning Network through apps like CashApp, Kraken or Strike.
Bitcoin Only Breweryâs adoption of Flash reflects the growing trend of businesses integrating Bitcoin payments to cater to a global, privacy-conscious customer base. By offering no-KYC delivery across Europe, the brewery aligns with the ethos of decentralization and financial sovereignty, appealing to the increasing number of consumers and businesses embracing Bitcoin as a legitimate payment method.
âFlash is committed to driving innovation in the Bitcoin ecosystem,â Corbin added. âWeâre building a future where businesses of all sizes can seamlessly integrate Bitcoin payments, unlocking new opportunities in the global market. Itâs never been easier to start selling in bitcoin and we invite retailers globally to join us in this revolution.â
For businesses interested in adopting Bitcoin payments, Flash offers a straightforward onboarding process, low fees, and robust support for both digital and physical goods. To learn more, visit paywithflash.com.
About Flash
Flash is the easiest Bitcoin payment gateway for businesses to accept payments. Supporting both digital and physical enterprises, Flash leverages the Lightning Network to enable fast, low-cost Bitcoin transactions. Launched in its 2.0 version in March 2025, Flash is at the forefront of driving Bitcoin adoption in e-commerce.
About Bitcoin Only Brewery
Bitcoin Only Brewery (@Drink_B0B) is a pioneering beverage company dedicated to the Bitcoin ethos, offering high-quality beers payable exclusively in Bitcoin. With a commitment to personal privacy, the brewery delivers across Europe with no-KYC requirements.
Media Contact:
Pierre Corbin
Co-Founder, Flash
Email: press@paywithflash.com
Website: paywithflash.comPhotos paywithflash.com/about/pressHow Flash Enables Interoperable, Self-Custodial Bitcoin Commerce
-
@ 52b4a076:e7fad8bd
2025-04-28 00:48:57I have been recently building NFDB, a new relay DB. This post is meant as a short overview.
Regular relays have challenges
Current relay software have significant challenges, which I have experienced when hosting Nostr.land: - Scalability is only supported by adding full replicas, which does not scale to large relays. - Most relays use slow databases and are not optimized for large scale usage. - Search is near-impossible to implement on standard relays. - Privacy features such as NIP-42 are lacking. - Regular DB maintenance tasks on normal relays require extended downtime. - Fault-tolerance is implemented, if any, using a load balancer, which is limited. - Personalization and advanced filtering is not possible. - Local caching is not supported.
NFDB: A scalable database for large relays
NFDB is a new database meant for medium-large scale relays, built on FoundationDB that provides: - Near-unlimited scalability - Extended fault tolerance - Instant loading - Better search - Better personalization - and more.
Search
NFDB has extended search capabilities including: - Semantic search: Search for meaning, not words. - Interest-based search: Highlight content you care about. - Multi-faceted queries: Easily filter by topic, author group, keywords, and more at the same time. - Wide support for event kinds, including users, articles, etc.
Personalization
NFDB allows significant personalization: - Customized algorithms: Be your own algorithm. - Spam filtering: Filter content to your WoT, and use advanced spam filters. - Topic mutes: Mute topics, not keywords. - Media filtering: With Nostr.build, you will be able to filter NSFW and other content - Low data mode: Block notes that use high amounts of cellular data. - and more
Other
NFDB has support for many other features such as: - NIP-42: Protect your privacy with private drafts and DMs - Microrelays: Easily deploy your own personal microrelay - Containers: Dedicated, fast storage for discoverability events such as relay lists
Calcite: A local microrelay database
Calcite is a lightweight, local version of NFDB that is meant for microrelays and caching, meant for thousands of personal microrelays.
Calcite HA is an additional layer that allows live migration and relay failover in under 30 seconds, providing higher availability compared to current relays with greater simplicity. Calcite HA is enabled in all Calcite deployments.
For zero-downtime, NFDB is recommended.
Noswhere SmartCache
Relays are fixed in one location, but users can be anywhere.
Noswhere SmartCache is a CDN for relays that dynamically caches data on edge servers closest to you, allowing: - Multiple regions around the world - Improved throughput and performance - Faster loading times
routerd
routerd
is a custom load-balancer optimized for Nostr relays, integrated with SmartCache.routerd
is specifically integrated with NFDB and Calcite HA to provide fast failover and high performance.Ending notes
NFDB is planned to be deployed to Nostr.land in the coming weeks.
A lot more is to come. đïžïžïžïžïžïž
-
@ 58537364:705b4b85
2025-06-12 13:59:39àčàžàžŁàčàžČàžàžàžČàžąàžàž”àčàžĄàž±àžàžĄàž”àžȘàžŽàčàžàžàž”àčàčàžŁàž”àžąàžàž§àčàžČâŠ àžŁàž°àžàžàžàžŁàž°àžȘàžČàž àžàž”àžàž”àčàžĄàž”àžàž°àčàžŁàčàžàčàžČàžĄàžČàžàžŁàž°àžàžàžŁàčàžČàžàžàžČàžą àžàž·àžàžàžŁàž°àžàžàžŁàž°àžàžàžàžŁàž°àžȘàžČàž àžàžàžŽàžàžŽàžŁàžŽàžąàžČàžĄàž±àžàžàčàčàžàžŽàžàžàž¶àčàž àčàžàčàžàčàž«àžàžžàžàžČàžŁàžàč àžàžąàčàžČàžàčàžàžàžąàčàžČàžàž«àžàž¶àčàžàžàž¶àčàž
àčàž«àžàžžàžàžČàžŁàžàčàžàž±àčàžàčàž«àž„àž°àžȘàžłàžàž±àž àžàčàžČàčàž«àčàčàžàžŽàžàžàž§àžČàžĄàžŁàžčàčàžȘàž¶àžàžàž”àčàžàžčàžàčàžàžĄàž±àžàžàž°àčàžàčàžàžàž§àž àčàž«àžàžžàžàžČàžŁàžàčàžàž±àčàžàčàžĄàčàžŁàžčàčàžȘàž¶àžàžàžčàžàčàžàčàžàčàžàžŽàž àžĄàž±àžàžàčàžàž°àčàžàčàžàž„àž #àžàž±àž§àžàžčàčàžàžŽàčàžàčàžàžŽàžàčàžĄàž·àčàžàžĄàž”àžàžČàžŁàžàžŁàž°àžàžàčàž„àčàž§
àžàčàžČàčàž«àžàžžàžàžČàžŁàžàčàžàž”àčàčàžàčàžàžàž§àžàčàžàžŽàžàžàž¶àčàž àžàž±àž§àžàžčàžàž§àžàžàčàčàžàžŽàžàžàž¶àčàž àčàž«àžàžžàžàžČàžŁàžàčàžàž”àčàčàžàčàžàž„àžàčàžàžŽàžàžàž¶àčàž àžàž±àž§àžàžčàžàž”àčàčàžàčàžàž„àžàčàžàžŽàžàžàž¶àčàž #àžàž±àž§àžàžčàžàž”àčàčàžàžŽàžàž«àž„àž±àžàčàž«àžàžžàžàžČàžŁàžàč àžàžàčàž«àčàčàžàčàžČàčàžàžàž”àč àčàžĄàčàčàžàčàčàžàžŽàžàžàžąàžčàčàžàčàžàž
àžàž±àž§àžàžčàžàž„àžàžàžàžàžàžĄàžČàžàžČàž situation àžàž”àčàžĄàžČàžàžŁàž°àžàžàžŁàž°àžàžàžàžŁàž°àžȘàžČàž àčàžàčàžàž§àčàžČ⊠àčàžĄàčàčàžàčàžàžŽàžàžàžČàž«àžČàžŁ àžàžČàžàžàžČàž«àžČàžŁ àžĄàž±àžàž«àžŽàž§ àžàž§àžČàžĄàž«àžŽàž§àčàžàžŽàžàžàž¶àčàžàčàžàčàžŁàž°àžàžàžàžŁàž°àžȘàžČàž àžàčàžàžĄàžČàžàž¶àžàčàžàžŽàž concept àž§àčàžČ àžàžčàž«àžŽàž§, àžĄàž”àžàžČàžŁàžàžŽàžàčàž„àčàž§àžàž¶àžàčàžàžŽàž concept àž§àčàžČ àžàžčàžàžŽàž
àžàčàžČàžĄàž”àžàžČàžàžČàžŁàžàžŁàčàžàžąàčàžàčàž„àžŽàčàž àžĄàž±àžàžàž¶àžàčàžàžŽàž concept àž§àčàžČ⊠àžàžčàžàžŁàčàžàžą àž«àžŁàž·àž àžĄàžČàžàž”àž«àž„àž±àžàčàž«àžàžžàžàžČàžŁàžàčàčàžȘàžĄàž àžàž°àžàž·àžàž§àčàžČàčàžàčàž product àžàžàžàčàž«àžàžžàžàžČàžŁàžàčàžàž±àčàž àč àžàčàčàžàč
àžàž”àčàžàž·àžàžàž§àžČàžĄàžàž”àčàčàžĄàčàžĄàž”àžàž±àž§àžàžŁàžŽàž àžĄàžŽàčàžàčàžàžàžàžàžŁàžŽàž àžàžàžàžȘàžŽàčàžàžàž”àčàčàžŁàž”àžąàžàž§àčàžČàžàž±àž§àžàžč #àžàžàčàž«àčàžŁàžčàčàžàž±àžàž§àčàžČàžàž±àž§àžàžčàžàž”àčàžĄàž±àžàčàžàčàžàžĄàžČàžąàžČàžàž¶àžàžàžàžČàžàžàž”àč
àžàž±àžàžàžčàžàžČàžŁàžàžčàžàžàžąàčàžČàžàžàž”àč àžĄàž±àžàčàžàčàž logic àčàžàčàžàž§àžČàžĄàžàžŁàžŽàžàžàžàžàžàžŁàžŁàžĄàžàžČàžàžŽàžĄàž±àžàčàžàčàžàžàžąàčàžČàžàžàž±àčàž àžàž·àžàžàžČàžĄàžàž logic àžàžŁàžŁàžĄàžàžČàžȘàžČàžĄàž±àž àžàž”àčàžàžčàžàžàž±àžàžàžąàžčàčàžàž”àčàčàžĄàčàčàžàč àžàčàžàžàžàž·àžàžàžČàžĄàžàž§àžČàžĄàčàžàčàžàžàžŁàžŽàžàžàž”àčàž§àčàžČ àžĄàž±àžàčàžàčàžàžàžąàžčàčàžàžąàčàžČàžàčàžŁ
àžàžŽàžàžàčàčàžàčàžàžàžČàžàžžàžàžàžŽàžàž«àžàž¶àčàž àžȘàžŽàčàžàčàž§àžàž„àčàžàžĄàžàčàžČàžàč àžàž”àčàčàžàčàžàžàžČàžàžžàžàžàžŽàžàž«àžàž¶àčàž àžàžàžĄàžČàžàž¶àžàžàž±àžàčàžàčàžČ àžàčàčàžàžŽàžàžàžàžŽàžàžŽàžŁàžŽàžąàžČàžàžàžàžĄàžČàžàžąàčàžČàžàžàž±àčàžàžàžąàčàžČàžàžàž”àč àžàž§àžČàžĄàžŁàžčàčàžȘàž¶àžàžàž”àčàčàžŁàž”àžąàžàž§àčàžČ⊠#àžàžŽàžàžàžŽàžàžàž¶àžàčàžàčàžàž”àč_àžàčàčàžàčàžàžàžàžŽàžàžŽàžŁàžŽàžąàžČàžàž”àčàčàžàžŽàžàžàž¶àčàžàčàžàčàžČàžàž±àčàž àčàž„àčàž§àžàž§àžČàžĄàžŁàžčàčàžȘàž¶àžàž§àčàžČàžàž±àž§àžàžč àžàž±àž§àžàž”àčàžàčàčàžàčàžàčàžàž”àžąàžàžàžàžŽàžàžŽàžŁàžŽàžąàžČàžàž”àčàčàžàžŽàžàžàž¶àčàžàčàžàčàžČàžàž±àčàž.
àžĄàž±àžàžàž±àžàžąàžČàžàžȘàžłàž«àžŁàž±àžàžàčàžČàžàžàž±àčàžàž«àž„àžČàžąàžàž”àčàž§àčàžČ àžàžčàčàžàžŁàž°àžàžłàžàž±àčàžàčàžàžŽàžàžàž”àž«àž„àž±àžàžàžČàžŁàžàžŁàž°àžàžł àžĄàž±àžàžàžŽàž logic àžàžąàčàžČàžàžàž”àč
àčàžàčàžàž§àžČàžĄàžàžŁàžŽàžàčàžàčàžàžàžąàčàžČàžàžàž±àčàž self àž«àžŁàž·àž ego àžàžčàčàžàžŁàž°àžàžłàžàž°àčàžàžŽàžàžàž”àž«àž„àž±àžàžàžČàžŁàžàžŁàž°àžàžł àčàžàčàžàžàžàžŽàžàžŽàžŁàžŽàžąàžČàžàžàžàžàžČàžŁàžàžŁàž°àžàžł
àžàž§àžČàžĄàžàžŽàžàžàžąàčàžČàž àžàžŁàžŁàžàž° àž«àžŁàž·àžàžàžąàčàžČàžàžàžŁàž±àžàžàžČ àčàžàžČàžĄàžČàčàžàčàžàž±àžàžȘàžŽàčàžàžàž”àčàčàžĄàčàčàžàč àžàžàžąàž·àžàžąàž±àžàčàž§àčàžàžąàčàžČàžàžàž”àč
àžàčàžČàžàčàžČàžàžąàž±àžàčàžĄàčàčàžàž·àčàž àžàčàžČàžàžàčàčàžàžàžŽàžàžàžčàčàžŁàž·àčàžàžą àč àčàžàčàžàžàž° àžàčàžČàžàžàž°àžàžàž§àčàžČàžĄàž±àžàčàžĄàčàčàžàčàžàžàžąàčàžČàžàžàžàčàžàžàžàčàžàžČàžàžàžŁàžŁàžàž°àž«àžŁàž·àžàžàžČàžàžàžŁàž±àžàžàžČ àžàž”àčàčàžŁàžČàžĄàž”àč àžàž±àžàžàžąàžčàč
àžàžčàčàžàžŁàž°àžàžłàčàžàčàžàčàžàž”àžąàž concept àčàžĄàčàčàžàčàžàž±àž§àžàžŁàžŽàž àžȘàčàž§àžàžàžČàžŁàžàžŁàž°àžàžłàžĄàž±àžàčàžàčàžàčàž«àžàžžàžàžČàžŁàžàčàžàžàžàžàžŁàžŁàžĄàžàžČàžàžŽ àžàžàčàžàčàžČàžĄàžČàžàž¶àžàžàžŽàžàčàž„àčàž§ àžàčàčàžàžŽàžàžàž§àžČàžĄàžàžŽàž àžàž§àžČàžĄàčàžàž·àčàž àžàž§àžČàžĄàžąàž¶àžàž§àčàžČàžàž±àž§àžàžč
àžàž±àž§àžàžčàžàž¶àčàžàčàžàčàžàčàžàž”àžąàž concept àčàžĄàčàčàžàčàžàžàžàžàžŁàžŽàž
àžàžžàžàžàžàžČàžȘàž àžŽàžàžàžž
àžàžàž±àžĄàžĄàžąàžàžČàžàžŁàž°àžàž”àž
àžàž”àž§àžŽàžàčàž«àžĄàčàčàž„àž°àž«àžàžàžČàžàčàžàčàžČàžàž¶àžàžàž”àž§àžŽàžàčàž«àžĄàč
àž«àžàčàžČ_àčàčàč-àčàčàč
-
@ b83a28b7:35919450
2025-06-14 16:38:22This is the second installment in the series "The Net Appears" where I document my journey from being in a well-established and well-paying fiat job into the unknown world of independent work in freedom tech. Will I end up finding something truly inspiring and fulfilling, while being able to support my family? We'll find out over the course of the next few weeks.
So this happened a couple of days ago:
nostr:nevent1qvzqqqqqqypzpwp69zm7fewjp0vkp306adnzt7249ytxhz7mq3w5yc629u6er9zsqqsd6khjdmgmme3xrnzj5xn5tfwer5pjchh20mcp4lfemurfsj3v4wgsjw0uj
Let's back up a bit, because in the first installment of this series, I was still in limbo.
If youâd told me three weeks ago that corporate martyrdom could be negotiated like a farmers-market cantaloupe, Iâd have laughed you off the Microsoft Teams grid. Yet there I was, video-boxed opposite my Senior Vice Priest of PowerPoint, calmly re-petitioning for a graceful guillotine.
His verdict: the guillotine is for optics only, and apparently it clashes with the brand guidelines. Laying off The AI Guy would look like weâd just unplugged the future for spare parts. Impossible. But the man did extend an olive branch the size of a bonsai: âResign, and weâll cash out your vacation - thirty glorious days of fiat.â
Not the three-month severance Iâd fantasized about, but enough to buy time, dignity, and a respectable stack of Claude API credits. I signed before he could replace goodwill with an NDA.
And then I chose July 4 as my last day. Cue bald eagles, Sousa marches, and a slow-motion shot of me frisbee-flinging my employee badge into an erupting grill. Independence from fiat, by literal fireworks.
Space Rush
The moment rumors of my exit hit Teams, meeting invites vanished like socks in a hotel dryer. Iâve used the liberated hours to launch A Muse Stochastic, my audio-visual fever dream where generative melodies court glitch-poetry and occasionally elope with Gemini Veo video frames. The first episode is live, pulsing somewhere between synaptic Vivaldi and quantum origami. So far it has six listeners and one confused Australian-shepherd (my most honest critic).
nostr:nevent1qvzqqqqqqypzpwp69zm7fewjp0vkp306adnzt7249ytxhz7mq3w5yc629u6er9zsqy88wumn8ghj7mn0wvhxcmmv9uq3zamnwvaz7tmwdaehgu3wwa5kuef0qqsvhtdltg2k3guhmshgmgt3nc9ejy0ct96t7udm04r5mupplcmdtesppmn7x
Meanwhile the playwright in me, neglected for months beneath sprint plannings and quarterly road-maps, finally crawled into the light. âWaiting for Satoshi,â first conceived on a warm Prague evening exactly one year ago ( nostr:nprofile1qy0hwumn8ghj7en0deehgu3dw3jhxapwdah8yetwv3jhytnrdakj7qgcwaehxw309a5hxmrpdejzumn0wd68yvfwvdhk6tcqyzaz7w2gxdjcga0fz6qt3x8ehc83mpgpvmr2swwmuzzdqfn26m3q54mhg79 can attest to this), now wears its final coat of dialogue. Tomorrow it debuts on GitHub - Creative Commons, open-source, fork-and-prosper - perhaps the inaugural play to invite pull requests for stage directions. If anyone wishes to add a tap-dancing Lightning node, be my guest.
Prague on the Horizon
Next week I return to BTC Prague, where ghosts of last yearâs epiphany still linger near the pastry stand. This time Iâm lugging camera gear, not corporate slide decks. Episode Two of Finding Home will be filmed there, featuring a wanderer whose bitcoined life map reads like Odysseus riding a Lightning invoice.
Perhaps my only conference of the year, I'm looking forward to catching up with friends old and new, and catch a whiff of that infectious bitcoin hopium.
Micro-lessons from Week Three
-
Severance is a mindset. One month of paid vacation feels oddly richer than three months shackled to uncertainty.
-
Symbolism scales. Pick an Independence Day, any Independence Day, and watch the universe queue fireworks.
-
Creative backlogs age like fine kimchi. Leave an idea in brine for a year and it returns with extra tang.
-
Open source = open veins. Releasing art into the commons is terrifying until you remember blood circulates best when it moves.
-
Microsoft Teams silence is golden (parachute). Each canceled stand-up funds roughly eight bars of experimental synth.
Gazing Forward
I still donât know how mortgage, car payments, and teenage-soccer-tour fees will reconcile with my bank balance come August. Yet the dread that once clung to my ribcage has dissolved, replaced by a jittery anticipation - like the hush before a stadium crowd erupts. Every unknown now feels less like a void and more like a blank slide awaiting wild, irreverent doodles.
Next dispatch will likely come with reflections from Prague. The last two years, I was moved to unexpected tears on the final day, marveling at the sheer profundity of the human experience of the week past. Surely, that can't repeat for a third year in a row?
Until then, may your own nets appear exactly when logic insists they canât - and may they be woven from liberated vacation days and the audible crackle of celebratory fireworks.
-
-
@ 6c05c73e:c4356f17
2025-06-14 16:31:49Isa Energia Brasil
Descrição da Empresa
A Isa Energia Brasil é uma das principais empresas do setor de transmissão de energia elétrica do Brasil. Anteriormente conhecida como ISA CTEEP (Companhia de Transmissão de Energia Elétrica Paulista), a companhia passou por um processo de rebranding em novembro de 2023 para refletir sua atuação em escala nacional, que se estende por 18 estados brasileiros.
- Papel no setor: Desempenha um papel crucial na infraestrutura energĂ©tica do paĂs, sendo responsĂĄvel por transmitir aproximadamente 33% de toda a energia elĂ©trica produzida no territĂłrio nacional e 94% no estado de SĂŁo Paulo.
- Controladora: A companhia é controlada pelo grupo colombiano ISA (Interconexión Eléctrica S.A.), um dos maiores conglomerados de transmissão de energia da América Latina, que detém uma participação majoritåria em seu capital social.
- Vantagens: Essa conexão confere à Isa Energia Brasil um sólido respaldo técnico e financeiro, além de sinergias operacionais e de governança.
VisĂŁo Geral da Empresa
A Isa Energia Brasil (ISAE4) Ă© uma das maiores e mais importantes empresas de transmissĂŁo de energia elĂ©trica do Brasil. Em termos simples, seu principal negĂłcio Ă© "transportar" a energia em alta tensĂŁo das usinas geradoras atĂ© as redes de distribuição que a levam para cidades e indĂșstrias.
- Analogia: Pense nela como a gestora das grandes "rodovias" da eletricidade do paĂs.
Mercado que Atua
O mercado de atuação da Isa Energia Brasil (ISAE4) Ă© o setor de transmissĂŁo de energia elĂ©trica, um segmento estratĂ©gico, altamente regulado e com caracterĂsticas muito particulares dentro da cadeia de energia do Brasil. Para entender o mercado da empresa, Ă© preciso conhecer 4 pilares principais:
1. O Modelo de ConcessĂ”es PĂșblicas
- Funcionamento: A Isa Energia Brasil nĂŁo opera em um mercado aberto e tradicional. Sua atuação Ă© baseada em concessĂ”es de longo prazo (geralmente 30 anos), adquiridas por meio de leilĂ”es pĂșblicos organizados pelo Governo Federal, atravĂ©s da ANEEL (AgĂȘncia Nacional de Energia ElĂ©trica).
- Como funciona: Nos leilĂ”es, o governo define os projetos (novas linhas de transmissĂŁo e subestaçÔes a serem construĂdas). Vence a empresa que se propĂ”e a construir e operar a infraestrutura pelo menor valor de receita anual.
- Barreiras de entrada: Este modelo cria altĂssimas barreiras para novos concorrentes, pois exige enorme capacidade de investimento (capital intensivo), conhecimento tĂ©cnico especializado e habilidade para vencer disputas acirradas nos leilĂ”es.
2. A Previsibilidade da Receita (RAP)
- Receita Anual Permitida (RAP): Ă a remuneração que a empresa tem direito a receber por disponibilizar suas linhas de transmissĂŁo em perfeitas condiçÔes de operação. O valor da RAP Ă© definido no leilĂŁo e reajustado anualmente por um Ăndice de inflação (geralmente o IPCA), o que protege a receita da desvalorização da moeda.
- Baixo risco: Como a receita Ă© fixa e garantida por contrato, o risco operacional Ă© muito baixo. A empresa recebe o valor integral desde que suas linhas e subestaçÔes estejam funcionando. Se houver falhas, ela pode ser penalizada com um desconto na receita, por isso a eficiĂȘncia na operação e manutenção Ă© fundamental.
3. Posicionamento Estratégico e Geogråfico
- DominĂąncia: Ă responsĂĄvel por transportar aproximadamente 33% de toda a energia elĂ©trica produzida no Brasil e impressionantes 94% da energia consumida no estado de SĂŁo Paulo, o maior centro de carga do paĂs.
- Capilaridade nacional: Embora sua origem seja paulista (antiga CTEEP), a empresa expandiu sua atuação e hoje possui ativos em 18 estados brasileiros, o que a posiciona como um player de relevùncia nacional.
- Principais concorrentes: Seus principais competidores no setor de transmissão são outras grandes empresas como a Eletrobras, TAESA e Alupar, que também disputam ativamente os leilÔes da ANEEL.
4. Vetores de Crescimento e Perspectivas
- Transição energĂ©tica: O Brasil estĂĄ aumentando massivamente sua capacidade de geração de energia renovĂĄvel, especialmente eĂłlica e solar. A maioria dessas novas usinas estĂĄ localizada no Nordeste e no norte de Minas Gerais, longe dos grandes centros consumidores (Sudeste). Isso cria uma necessidade urgente de construir novas "autoestradas" de energia para escoar essa produção, garantindo uma demanda contĂnua por novos projetos de transmissĂŁo.
- Crescimento da demanda: O crescimento econĂŽmico e populacional do paĂs, alĂ©m da eletrificação da economia (ex.: carros elĂ©tricos), aumenta a necessidade geral de energia, exigindo uma rede de transmissĂŁo cada vez mais robusta e confiĂĄvel.
Oportunidades que o Ativo Traz
As principais oportunidades que a empresa traz sĂŁo:
- Alta previsibilidade de receita devido Ă Receita Anual Permitida (RAP).
- ExpansĂŁo em investimentos de infraestrutura.
- Contratos de concessão renovados e com longa duração.
Isso tudo torna a empresa uma excelente pagadora de dividendos e JCP. No Ășltimo anĂșncio da empresa, foram destinados R$2,36 por ação de juros sobre capital prĂłprio, o que a torna um excelente ativo para o longo prazo.
Riscos
Por ser uma empresa que atua no setor de energia elétrica, ela assume alguns riscos que precisam ser monitorados de perto, tais como:
- Natureza (escassez de chuvas): Pode prejudicar a geração de energia e, como consequĂȘncia, reduzir a transmissĂŁo de energia elĂ©trica. Consulte aqui.
- Riscos regulatórios e governamentais (o principal): A empresa opera em um setor regulado pela ANEEL e sob concessÔes do governo.
- Financeiro: Para financiar seus projetos, a empresa precisa se endividar via debĂȘntures, que sĂŁo atreladas Ă Selic. Qualquer variação altera o financeiro da empresa.
- Dividendos: Pode ser uma faca de dois gumes, pois estĂĄ previsto pagamentos muito maiores no futuro, o que pode retardar o crescimento da empresa devido ao pagamento excessivo.
- Risco operacional: Tudo que envolve intervenção humana pode ter falhas, mesmo que a empresa opere com alta eficiĂȘncia hoje. AlguĂ©m pode âdormir no pontoâ.
Tabela de Endividamento
A dĂvida bruta da companhia atingiu R$ 14.952,1 milhĂ”es no 1T25, aumento de R$ 1.678,3 milhĂ”es (+12,6%) em relação ao saldo final do 4T24. O aumento se deve, principalmente, Ă :
- 18ÂȘ emissĂŁo de debĂȘntures no montante de R$ 1.400,0 milhĂ”es em março de 2025.
- 4Âș desembolso do BNDES em janeiro de 2025 com valor de R$ 82,1 milhĂ”es.
A companhia concluiu a 18ÂȘ emissĂŁo de debĂȘntures no 1T25, levantando R$ 1.400,0 milhĂ”es em 2 sĂ©ries: - Primeira sĂ©rie: R$ 500,0 milhĂ”es com custo de IPCA + 7,41% e vencimento em setembro de 2033. - Segunda sĂ©rie: R$ 900,0 milhĂ”es com custo de IPCA + 7,41% e vencimento em junho de 2033.
Catalisadores
Os pontos-chave que considero ao investir na empresa sĂŁo:
- Parceria com a Taesa ampliada. Matéria aqui.
- Alta previsibilidade de receita devido Ă Receita Anual Permitida (RAP).
- Nova rodada de emissĂŁo de debĂȘntures para ampliação de investimentos.
- PrevisĂŁo de queda da Selic para 12,5% em 2026, o que tornaria âos dĂ©bitos da empresa mais baratosâ.
- Alta perspectiva de aumento no pagamento de dividendos e JCP ao longo dos prĂłximos anos.
cotacao da isase4 lucro liquido isae4
FAQ
A ação ISAE4 é uma boa ação para investir?
Cada um deve fazer sua anĂĄlise, mas acreditamos que Ă© uma empresa sĂłlida e com bons fundamentos.
Qual é o preço justo da ação ISAE4?
Não hå uma base sólida para calcular o preço justo. Na nossa ótica, o ativo estå subvalorizado.
Qual o DY da ISAE4?
Dividendo de 10,2% anunciado em 2021.
Como declarar o ISAE4?
A declaração do ISAE4 Ă© dividida em trĂȘs partes principais:
- Declaração da Posse das AçÔes (o que vocĂȘ tinha em carteira).
- Declaração dos Rendimentos Isentos (Dividendos).
- Declaração dos Rendimentos de Tributação Exclusiva (Juros Sobre Capital Próprio - JCP).
O documento mais importante para este processo é o Informe de Rendimentos, fornecido pelo banco escriturador das açÔes.
- Empresa: ISA ENERGIA BRASIL S.A.
- CNPJ: 02.998.611/0001-04
- Banco Escriturador: ItaĂș Corretora de Valores S.A.
- Como obter o informe: Acesse o Portal de CorrespondĂȘncias Digitais do ItaĂș para obter seu informe oficial. Ele contĂ©m todos os valores separados e prontos para a declaração.
Bio
Investir nĂŁo precisa ser um bicho de sete cabeças! Na Threedolar, democratizamos o acesso ao mundo dos investimentos, oferecendo conteĂșdo claro e prĂĄtico. Comece hoje mesmo a construir seu futuro financeiro!
Disclaimer
Lembre-se: este não é um conselho de investimento. Faça sua própria pesquisa antes de investir. Resultados passados não garantem lucros futuros. Cuide do seu dinheiro!
ReferĂȘncias
-
@ 04c3c1a5:a94cf83d
2025-06-14 18:36:00button #2 nj
-
@ a19caaa8:88985eaf
2025-05-05 02:55:57âăžăŁăăŻïŒtwitter㔿„è ïŒăźăă€ăŒăă nostr:nevent1qvzqqqqqqypzpq35r7yzkm4te5460u00jz4djcw0qa90zku7739qn7wj4ralhe4zqy28wumn8ghj7un9d3shjtnyv9kh2uewd9hsqg9cdxf7s7kg8kj70a4v5j94urz8kmel03d5a47tr4v6lx9umu3c95072732ă
âăăă«ç”Ąăăăă nostr:note1hr4m0d2k2cvv0yg5xtmpuma0hsxfpgcs2lxe7vlyhz30mfq8hf8qp8xmauă
âăăăźăČăšăăăšă nostr:nevent1qqsdt9p9un2lhsa8n27y7gnr640qdjl5n2sg0dh4kmxpqget9qsufngsvfslnă nostr:note14p9prp46utd3j6mpqwv46m3r7u7cz6tah2v7tffjgledg5m4uy9qzfc2zfă
âæèè æ§ăźć©èšă nostr:nevent1qvzqqqqqqypzpujqe8p9zrpuv0f4ykk3rmgnqa6p6r0lan0t8ewd0ksj89kqcz5xqqst8w0773wxnkl8sn94tvmd3razcvms0kxjwe00rvgazp9ljjlv0wq0krtvtă nostr:nevent1qvzqqqqqqypzpujqe8p9zrpuv0f4ykk3rmgnqa6p6r0lan0t8ewd0ksj89kqcz5xqqsxchzm7s7vn8a82q40yss3a84583chvd9szl9qc3w5ud7pr9ugengcgt9qxă
âăăă nostr:nevent1qqsp2rxvpax6ks45tuzhzlq94hq6qtm47w69z8p5wepgq9u4txaw88s554jkd
-
@ 57d1a264:69f1fee1
2025-06-12 06:00:19From designer Anna Cairns, the workhorse monospace typeface is rooted in feminist theory.
Across CMM Codaâs subtly imperfect, analogue-inspired letterforms â based on the IBM Selectric typewriterâs typeface, Dual Basic â Anna practically and conceptually brings together the feminist legacy of software and typewriters with the aesthetic sensibilities of the genre associated with the industry. Additionally, CMM Coda enables Anna to explore her intrigue in the blurry terminology used in text production, such as typing, coding and writing, âespecially now that most text is created digitally,â Anna says, with typefaces being software in their own right. âWe also associate a certain look with each of these modalities,â she continues, âso my idea was to create a typeface that can jump all of these genres simply through a play with white space,â an approach that resulted in CMM Codaâs multiple styles.
Learn more about Comma at https://commatype.com/, a new foundry founded by the Berlin-based type designer Anna Cairns.
Continue reading at https://www.itsnicethat.com/articles/comma-type-cmm-coda-graphic-design-project-110625
https://stacker.news/items/1004142
-
@ a9434ee1:d5c885be
2025-03-04 13:05:42The Key Pair
What a Nostr key pair has by default:
- A unique ID
- A name
- A description
- An ability to sign stuff
The Relay
What a Nostr relay has (or should have) by default:
- Permissions, Moderation, AUTH, ...
- Pricing & other costs to make the above work (cost per content type, subscriptions, xx publications per xx timeframe, ...)
- List of accepted content types
- (to add) Guidelines
The Community
Since I need Communities to have all the above mentioned properties too, the simplest solution seems to be to just combine them. And when you already have a key pair and a relay, you just need the third basic Nostr building block to bring them together...
The Event
To create a #communikey, a key pair (The Profile) needs to sign a (kind 30XXX) event that lays out the Community's : 1. Main relay + backup relays 2. Main blossom server + backup servers 3. (optional) Roles for specific npubs (admin, CEO, dictator, customer service, design lead, ...) 4. (optional) Community mint 5. (optional) "Welcome" Publication that serves as an introduction to the community
This way: * any existing npub can become a Community * Communities are not tied to one relay and have a truly unique ID * Things are waaaaaay easier for relay operators/services to be compatible (relative to existing community proposals) * Running one relay per community works an order of magnitude better, but isn't a requirement
The Publishers
What the Community enjoyers need to chat in one specific #communikey : * Tag the npub in the (kind 9) chat message
What they needs to publish anything else in one or multiple #communikeys : * Publish a (kind 32222 - Targeted publication) event that lists the npubs of the targeted Communities * If the event is found on the main relay = The event is accepted
This way: * any existing publication can be targeted at a Community * Communities can #interop on content and bring their members together in reply sections, etc... * Your publication isn't tied forever to a specific relay
Ncommunity
If nprofile = npub + relay hints, for profiles
Then ncommunity = npub + relay hints, for communities -
@ f0fd6902:a2fbaaab
2025-06-14 14:27:06https://stacker.news/items/1006238
-
@ 472f440f:5669301e
2025-06-12 05:11:12Marty's Bent
via me
I had a completely different newsletter partially written earlier tonight about whether or not "this cycle is different" when this nagging thought entered my head. So I'm going to write about this and maybe I'll write about the dynamics of this cycle compared to past cycles tomorrow.
A couple of headlines shot across my desk earlier tonight in relation to the potential escalation of kinetic warfare in the Middle East. Apparently the U.S. Embassy in Iraq was sent a warning and evacuation procedures were initiated. Not too long after, the world was made aware that the United States and Israel are contemplating an attack on Iran due to the "fact" that Iran may be close to producing nuclear weapins. The initial monkey brain reaction that I had to these two headlines was, "Oh shit, here we go again. We're going to do something stupid." My second reaction was, "Oh shit, here we go again, I've seen these two exact headlines many times over the years and they've proven to be lackluster if you're a doomer or blood thirsty war monger." Nothing ever happens.
As I venture into my mid-30s and reflect on a life filled with these types of headlines and my personal reactions to these headlines, I'm finally becoming attuned to the fact that the monkey brain reactions aren't very productive at the end of the day. Who knows exactly what's going to happen in Iraq or Iran and whether or not kinetic warfare escalates and materializes from here? Even though I'm a "blue-blooded taxpaying American citizen" who is passively and unwillingly contributing to the war machine and the media industrial complex, there's really nothing I can do about it.
The only thing I can do is focus on what is in front of me. What I have control of. And attempt to leverage what I have control of to make my life and the life of my family as good as humanly possible. Ignoring the external and turning inward often produces incredible results. Instead of worrying about what the media wants you to believe at any given point in time, you simply look away from your computer screen, survey the physical space which you're operating in and determine what you have, what you need and how you can get what you need. This is a much more productive way to spend your time.
This is what I want to touch on right now. There's never been a better time in human history to be productive despite what the algorithm on X or the mainstream media will lead you to believe. Things aren't as great as they could be, but they're also not as bad as you're being led to believe. We live in the Digital Age and the Digital Age provides incredible resources that you can leverage to make YOUR life better.
Social media allows you to create a platform without spending any money. AI allows you to build tools that are beneficial to yourself and others with very little money. And bitcoin exists to provide you with the best form of money that you can save in with the knowledge that your relative ownership of the overall supply isn't going to change. No matter what happens in the external world.
If you can combine these three things to make your life better and - by extension - potentially make the lives of many others better, you're going to be well off in the long run. Combining these three things isn't going to result in immediate gratification, but if you put forth a concerted effort, spend the time, have some semblance of patience, and stick with it, I truly believe that you will benefit massively in the long run. Without trying to sound like a blowhard, I truly believe that this is why I feel relatively calm (despite my monkey brain reactions to the headlines of the day) at this current point in time.
We've entered the era of insane leaps in productivity and digital hard money that cannot be corrupted. The biggest mistake you can make in your life right now is overlooking the confluence of these two things. With an internet connection, an idea, some savvy, and hard work you can materially change your life. Create something that levels up your knowledge, that enables you to get a good job in the real world, or to create a company of your own. Bring your talents to the market, exchange them for money, and then funnel that money into bitcoin (if you're not being paid in it already). We may be at the beginning of a transition from the high velocity trash economy to the high leverage agency economy run on sound money and applied creativity.
These concepts are what you should be focusing most of your time and attention to today and in the years ahead. Don't get distracted by the algorithm, the 30-second video clips, the headlines filled with doom, and the topics of the 24 hour news cycle. I'll admit, I often succumb to them myself. But, as I get older and develop a form of pattern recognition that can only be attained by being on this planet for a certain period of time, it is becoming very clear that those things are not worth your attention.
Living by the heuristic that "nothing ever happens" is a pretty safe bet. Funnily enough, it's incredibly ironic that you're led to believe that something is happening every single day, and yet nothing ever happens. By getting believing that something happens every day you are taking your attention away from doing things that happen to make your life better.
Tune out the noise. Put on the blinders. Take advantage of the incredible opportunities that lie before you. If enough of you - and many others who do not read this newsletter - do this, I truly believe we'll wake up to find that the world we live in is a much better place.
Nothing ever happens, so make something happen.
Intelligence Officials Are Quietly Becoming Bitcoin Believers
Ken Egan, former CIA Deputy Chief of Cyber Operations, revealed a surprising truth on TFTC: the intelligence community harbors numerous Bitcoin advocates. Egan explained that intelligence professionals uniquely understand how governments weaponize financial systems through sanctions and account freezing. Having wielded these tools themselves, they recognize the need for personal financial sovereignty. He shared compelling anecdotes of discovering colleagues with "We are all Satoshi" stickers and a European chief of station paying for dinner with a BlockFi card to earn Bitcoin rewards.
"I think there are a lot of Bitcoiners, not just at CIA, but across the whole national security establishment... they're in it for the exact same reasons everybody else is." - Ken Egan
The Canadian trucker protests served as a pivotal moment, Egan noted. Watching Western governments freeze citizens' bank accounts for political dissent struck a nerve among intelligence professionals who previously viewed financial weaponization as a tool reserved for foreign adversaries. This awakening has created unlikely allies within institutions many Bitcoiners distrust.
Check out the full podcast here for more on Bitcoin's national security implications, privacy tech prosecutions, and legislative priorities.
Headlines of the Day
Stripe Buys Crypto Wallet Privy After Bridge Deal - via X
Trump Calls CPI Data "Great" Urges Full Point Fed Cut - via X
Bitcoin Hashrate Reaches New All-Time High - via X
Get our new STACK SATS hat - via tftcmerch.io
Bitcoinâs Next Parabolic Move: Could Liquidity Lead the Way?
Is bitcoinâs next parabolic move starting? Global liquidity and business cycle indicators suggest it may be.
Read the latest report from Unchained and TechDev, analyzing how global M2 liquidity and the copper/gold ratioâtwo historically reliable macro indicatorsâare aligning once again to signal that a new bitcoin bull market may soon begin.
Ten31, the largest bitcoin-focused investor, has deployed $150.00M across 30+ companies through three funds. I am a Managing Partner at Ten31 and am very proud of the work we are doing. Learn more at ten31.vc/invest.
Final thought...
Life is good.
Download our free browser extension, Opportunity Cost: https://www.opportunitycost.app/ start thinking in SATS today.
Get this newsletter sent to your inbox daily: https://www.tftc.io/bitcoin-brief/
Subscribe to our YouTube channels and follow us on Nostr and X:
-
@ 04c3c1a5:a94cf83d
2025-06-14 18:33:00schedule #1
-
@ c5896abe:43c99afb
2025-06-14 13:44:45ćäșșçæćæéŸćïŒçč㫿ŻćšçȘç¶ć€±ć»äčćă
ç¶èïŒäșșç±»ć§ç»æäž€ç§æ æłæČ»æççŸç ïŒæ»äșĄäžéćżăäșæŻïŒäșșç±»ćé äșæćăèżç§ćŸä»„è¶ è¶æ»äșĄçææłć·„ć ·ïŒä»äčŠćăéçć°ć·ăæćæșćç”äŒ æćæșïŒäžè·Żćć±ć°ä»ć€©çæ°ćććèȘćšæćæșââèŻèšæšĄćââććïŒèżæ ·ç䌌çźćçèĄäžșïŒćŽććŸæ„æžè°æ¶©ïŒć°€ć ¶æŻćšç»ćäș The Big Blockade éŁäžćčŽćă
èżćč¶äžæŻèŻŽïŒæäčććŸć€äșșéŁæ ·ééäș Long-COVIDăćȘæŻïŒćšç¶äșČć»äžçäžçł»ćäșæ äčćïŒææçæŁæçœïŒćäșșçæćæéŸćïŒçč㫿ŻćšçȘç¶ć€±ć»äčćăćœäœ çȘç¶ćç°ïŒèȘć·±æçæçäșșïŒćšäžç„äžè§äžćæäșçćœäžçäžćç©șçœïŒéŁäžȘæŸç»æżæŹæćăçČȘćäžæ·äŸŻçć°ćčŽïŒäŸżäčæ°žèżçŠ»ćŒäșăäșæŻïŒæćșéććŸäșèȘć·±ççŠć°ç»æčââć·„äœăèŻ»äčŠïŒć äčćæąäșææç瀟äș€ćȘäœäș€æ”ăçŽć°ä»ćčŽæ©äșæ¶ćïŒćéŸćŻčæèŻŽäșäžć„ïŒâć ŹäŒć·ćäșć€ȘćŻæäșâăæèżææłć°ïŒèŠäžèŠèźČèż°äžäșäșșçæ äșïŒćœç¶ïŒäžä» ä» æŻéŁäșć·Čç»éć»çăćȘæŻćšèżäžȘçčćæ¶ä»ŁïŒéŁäžȘć°ćż”ć€Žć°±èą«æææ¶æçœźïŒćżçâćŻ»æĄ„âć»äșăçŽć°èżäžȘć äžïŒäžćœæ©æèœŠćäŒçćŸźäżĄć ŹäŒć·ïŒæšéäșćžžćĄćŻäŒéżæćœŹéäžçæ¶æŻă
æäžæäŒéżäș€æ”äžć€ïŒćȘç„éä»äžçŽćšćȘćæšćšćäžȘććžè§Łé€ćŻčæ©æèœŠçć°æčæ§çŠéè§ćźïŒçè”·æ„ć°±ćæšçłć€Žçè„żè„żćŒæŻăèżć ćčŽæçć·„äœäžä»æć ćçžäŒŒăćšçè§Łäșâäșșçć°±æŻäžæç抄ćâèżæ ·ç䌌ććŁçć°ć·ç°ćźäčćïŒç§æçâäžćžććŻæèŠćæž âç俥æĄïŒæć¶ć°çćŻäœçČŸćïŒäčæćšäșćœé äșèçœäžçć äžȘäžæćčłć°äžăçŽć°æšć€©æäžïŒçŒèŸæäșć ćźčæ¶ïŒćżć€ŽçȘç¶äžćšïŒéĄșææçŽąïŒæćç°äș Bernt Spiegel ææççșżäžèźŁćăæłæ„ïŒèćžäčæŻćšéٿꔿ¶éŽïŒçȘç¶ćæ„äžć°ç”éźèç»ïŒćŽćæČĄèŻŽä»äčć ·äœć ćźčăäșæŻïŒæćłćźćŒć§ćäžäžäșæćă
ææçäžçïŒć€§æŠćŻä»„çšâäșșăćžćșćæșćšâæ„æŠæŹăèș«äžșćžćșćżçćŠćć§äșșăæ©æèœŠäžćź¶ćć°èŻŽćź¶ïŒä»ćć»șäș Fachinstitut fĂŒr Werbewissenschaftliche UntersuchungenïŒćč¶ćšć„ć»·æ čć€§ćŠæ§æăèćçć©ćșćžćșçèźșïŒæŁæŻä»ćš20äžçșȘ60ćčŽä»ŁćæćșçăèżäžçèźșææćçæĄäŸïŒć°±æŻćžźć©äșæżäžŽç Žäș§ç BMW è”·æ»ćçïŒćč¶éæ°ćż«éćąéżăä»1981ćčŽć°2000ćčŽïŒä»äžçŽæ ä»» MOTORRAD æćżâćźçŸćčèźèŻŸçšâçé«çș§èźČćžïŒçč㫿޻è·ćšçșœäŒŻæ Œæè”éââçŽèł72ćČé«éŸïŒä»ä»èœé©Ÿé©¶ Honda CBR 900 RRïŒćšćçŻè”éè·èż9ćéäčć ăä»13ćČââéŁæŻ1939ćčŽââä»ççç¶æŻäč°äș珏äžèŸæ©æèœŠćŒć§ïŒ18ćČć°±èćäșéŁèĄæ§ç §ăæćäžäč ïŒä»éȘäžäșäžèŸ BMW R 51/2ïŒäčćçäșșçïŒć°±ćšéŁæșćæ©æèœŠèżäž€ç±»æșæą°äžäș€ç»ăäșșç±»ćŠäœäžæäœçæșćšïŒæ èźșæŻéŁæșèżæŻæ©æèœŠïŒçžćè°çćżçćŠæčæłïŒäčæäșä»ćšćŠæŻäžćŒæçć€ć„łć°äčäžïŒèżæŻćżçćŠäžèȘç¶ç§ćŠäčéŽçäžäžȘæ°èŸčçăć°œçźĄæČĄæćæäșäžćź¶éŁæ ·èäœçèș«ïŒææçéŁæŹăæ©æèœŠçäžćéšăæäžșäș仿ʧæŽČć°ćçŸïŒæææ©æèœŠé©Ÿé©¶äșșæèČçç»ć žèäœïŒćŠćç©çćŠäžçç饿ăćçăăèżäœćŻčâäșș-æșç©é”âæçæ·±ć»æŽè§çèć çïŒćš94ćČé«éŸæ¶ïŒèżćșçäșäžæŹć°èŻŽăMilchbrĂŒder, beideăïŒäœäžșćŻčćŸ·ćœäșșćä»èȘć·±èżć»ç»ćçæç§ććșă
ćšéŁæŹèäœçéæăThe Fascination of MotorcyclingăïŒæ©æèœŠçé ćïŒäčäžïŒææć°æ©æèœŠéȘèĄçé ćïŒć»äžșâäžäžȘćźæŽçæćș§âăćŠćć€ćčŽććŠäžäœæ„æŹçćèŸïŒć°æ©æèœŠçæșæą°ç»ææŻäœâäžäžȘćźćźâăèżäžä»Łæ©æèœŠäșșïŒéœæŻæäșçäșČćè ïŒäčæŻç°ä»Łæ©æèœŠèżćçè§èŻè ăæŁæŻćšèżç§ćèČćșäșäž°ćŻæșæą°æćç瀟äŒć检éïŒææ»ć »äșćŻè¶łèäžä» æŻćŻèŁçäșșç±»ææă
-
@ 5627e59c:d484729e
2025-06-12 04:32:16Ik hou van de natuur en van verbinding maken\ Van diepgang en van mensen raken
Van creatief schrijven en programmeren\ Van speels bewegen en nieuwe dingen leren
Ik hou van leven en van dromen\ En van mensen zien\ Hun diepste wensen uit doen komen
-
@ f11e91c5:59a0b04a
2025-04-30 07:52:21!!!2022-07-07ă«æžăăăèšäșă§ăă
æć·éèČšăšăă§ăćŒćœćŁČăŁăŠăŸă 11:30ă14:00ăăăă§ăăŁăŠăŸă
âäœæ æšææ„ă»æ±äșŹéœæžè°·ćșćźç°ć·çș41 ïŒăąăăăżăŻăŒăźäžăăžăïŒ
âă〿ź”
Monacoin 3.9mona
Bitzeny 390zny
Bitcoin 3900sats (#lightningNetwork)
Ethereum 0.0039Ether(#zkSync)
39=thank you. ïŒćăćșæșă«ăăŠăŸăăïŒ
æèżăŻé±ă«äžćă«ăȘăăŸăăă ä»ăźæ„ăŻăăăăłă«ăŒăźçŸć ŽăæąăăăèČă ăăŠăŸăă æ±äșŹéœć ă§ćčłæ„ă©ăłăćșćșćșæ„ăăăȘć Žæăăăă°ăăČăéŁç”ĄăïŒ
ćçăŻNFCăżă°ă§ăă ăčăăă«ăŠă©ăŹăăăăăă°ăżăăăăŠ3900satsă§æ±șæžćșæ„ăŸăă æŁçŽăăăȘæȘăăææžăăźNFCăżă°ăȘăăŠç”¶ćŻŸă«ăăăăłă€ăăŒăŻè§ŠăăăăçĄăă ăăăȘăšæăăŸăăăăăă§ăèŻăăă ăăšăăăĄăă»ăŒăžă§ăă
ä»ăŸă§btcpayăźposă§ăăăéćșŠăèżœæ±ăăŠăăă«ć€æŽăăŸăăă ăăŸă«äžæăăăăȘăă§ăăăăăăæžă POSćșăăźă§æž©ăăçźă§ăăăăăéĄăăăŸăă
ăăŒăăć»șăŠăăæ±șæžăăăă§1ćčŽç”ăĄăŸăăă æèżăć°ăăă€ăăŒăăć»șăŠăæčăćąăăŠăăżăăă§æŹćœćăă§ăăUmbrel 性äœăźäșșăă«ăŒăăŁăłă°ă«ææąă«æăăźăèŠă€ă€ ć„„ăăă«ćäžćș§ăăȘăăèČ»çšăæ»ćșăăćŒ±ć°ăźç§ăŻæ±șæžăźć©äŸżæ§ăć šéă§æŻăćăăăçĄăăźă§ćżæŽăăăăăéĄăăăŸăă
ăă㊠ăăăŠèšăăźă§ăăă°ăă«ăŒăăŁăłă°ă愜ăăă§ăăă© ăăŻăæŹćœăźæćłă§ăźćłææ±șæžăçžæăéžăă§ăăŁăă«ăçčăăæ„œăăăăăăăšăäŒăăăăăŁïŒïŒ æ±șæžăćăć „ăăȘăăšćăăăȘăæă§ăă æżèȘăăăăȘăæçčă§ç»æçă§ăă
QRă§ăăżăăă§ăééĄæćźă§ăć „ćă§ă ăăăăăăă«ăŻćșæ„ăŠăăŸăăéČćăæăăăæ©ăăźă§1çȘć©çšăźć€ăpaypayăźææ°æïŒäșæ„è ćŽăźăïŒăèăăăăăăăłă€ăłćăăăăȘăïŒăšć«ăłăăăȘăă ăăăăŻăçšć¶éąăäŸĄæ Œăźć€ćïŒăăĄăŻBTCćșćźă ăă©ăïŒăŠă©ăŹăăăźæäœăæźćçăèăăăšăŸăéŁăăæăăăăă§ăăăă
ăăă§ăç¶ç¶çă«æČąć±±ăźäșșăèČăăȘ掻ćăăăŠăăźă§ç§ăäœăćșæ„ăăăšăăăă° ä»ćŸăć„„ăăă«ćäžćș§ăăȘăăé ćŒ”ăŁăŠèĄăăăăšæăăŸăă
(Originally posted 2022-07-07)
I sell bento lunches for cryptocurrency. Weâre open roughly 11:30 a.m. â 2:00 p.m. Address Thursdays â 41 Udagawa-chĆ, Shibuya-ku, Tokyo (around the base of Abema Tower)
Prices Coin Price Note Monacoin 3.9 MONA
Bitzeny 390 ZNY Bitcoin 3,900 sats (Lightning Network)
Ethereum 0.0039 ETH (zkSync) â39â sounds like âthank youâ in Japanese. Prices arenât pegged to yen.These days Iâm open only once a week. On other days Iâm out scouting new spots for the kitchen-car. If you know weekday-lunch locations inside Tokyo where I could set up, please let me know!
The photo shows an NFC tag. If your phone has a Lightning wallet, just tap and pay 3,900 sats. I admit this hand-written NFC tag looks shadyâany self-respecting Bitcoiner probably wouldnât want to tap itâbut the point is: even this works!
I used to run a BTCPay POS, but I switched to this setup for speed. Sometimes the tap payment fails; if that happens I reluctantly pull out the old POS. Thanks for your patience.
Itâs been one year since I spun up a node and started accepting Lightning payments. So many people are now running their own nodesâUmbrel really is amazing. While the big players bravely chase routing fees, Iâm a tiny operator scraping together funds while begging my wife for forgiveness, so Iâm all-in on maximising payment convenience. Your support means a lot!
If I may add: routing is fun, but instant, trust-minimised payments and the thrill of choosing whom to open channels with are just as exciting. Youâll only understand once you start accepting payments yourselfâzero-confirmation settlement really is revolutionary.
QR codes, NFC taps, fixed amounts, manual entry⊠the possibilities keep multiplying, and the pace of innovation is scary fast. When I compare it to the merchant fees on Japanâs most-used service, PayPay, I want to shout: âBitcoin is incredible!â Sure, taxes, price volatility (my shop is BTC-denominated, though), wallet UX, and adoption hurdles are still pain points.
Even so, lots of people keep building cool stuff, so Iâll keep doing what I canâstill on my knees to my wife, but moving forward!
-
@ b1ddb4d7:471244e7
2025-06-12 01:01:37Jason Loweryâs thesis, Softwar: A Novel Theory on Power Projection and the National Strategic Significance of Bitcoin, reframes bitcoin not merely as digital cash but as a transformative security technology with profound implications for investors and nation-states alike.
For centuries, craft brewers understood that true innovation balanced tradition with experimentationâa delicate dance between established techniques and bold new flavors.
Much like the craft beer revolution reshaped a global industry, bitcoin represents a fundamental recalibration of how humans organize value and project power in the digital age.
The Antler in the Digital Forest: Power Projection
Lowery, a U.S. Space Force officer and MIT scholar, anchors his Softwar theory in a biological metaphor: Bitcoin as humanityâs âdigital antler.â In nature, antlers allow animals like deer to compete for resources through non-lethal contestsâsparring matches where power is demonstrated without fatal consequences. This contrasts sharply with wolves, who must resort to violent, potentially deadly fights to establish hierarchy.
The Human Power Dilemma: Historically, humans projected power and settled resource disputes through physical forceâwars, seizures, or coercive control of assets. Even modern financial systems rely on abstract power structures: court orders, bank freezes, or government sanctions enforced by legal threat rather than immediate physical reality.
Lowery argues this creates inherent fragility: abstract systems can collapse when met with superior physical force (e.g., invasions, revolutions). Nature only respects physical power.
Bitcoinâs Physical Power Engine: Bitcoin introduces a novel solution through its proof-of-work consensus mechanism. Miners compete to solve computationally intense cryptographic puzzles, expending real-world energy (megawatts) to validate transactions and secure the network.
This process converts electricityâa tangible, physical resourceâinto digital security and immutable property rights. Winning a âblockâ is like winning a sparring match: it consumes significant resources (energy/cost) but is non-destructive.
The miner gains the right to write the next page of the ledger and collect rewards, but no participant is physically harmed, and no external infrastructure is destroyed.
Table: Traditional vs. Bitcoin-Based Power Systems
Power System
Mechanism
Key Vulnerability
Resource Cost
Traditional (Fiat/Banking)
Legal abstraction, threat of state force
Centralized points of failure, corruption, political change
Low immediate cost, high systemic risk
Military/Economic Coercion
Physical force, sanctions
Escalation, collateral damage, moral hazard
Very high (lives, capital, instability)
Bitcoin (Proof-of-Work)
Competition via energy expenditure
High energy cost, concentration risk (mining)
High energy cost, low systemic risk
Softwar Theory National Strategic Imperative: Governments Are Taking Notice
Loweryâs Softwar Theory has moved beyond academia into the corridors of power, shaping U.S. national strategy:
- The Strategic Bitcoin Reserve: Vice President JD Vance recently framed bitcoin as an instrument projecting American valuesââinnovation, entrepreneurship, freedom, and lack of censorshipâ. State legislation is now underway to implement this reserve, preventing easy reversal by future administrations.
- Regulatory Transformation:Â The SEC is shifting from an âenforcement-firstâ stance under previous leadership. New initiatives include:
- Repealing Staff Accounting Bulletin 121 (SAB 121), which discouraged banks from custodying digital currency by forcing unfavorable balance sheet treatment.
- Creating the Cyber and Emerging Technologies Unit (CETU) to develop clearer crypto registration/disclosure rules.
The Investorâs Lens: Scarcity, Security, and Asymmetric Opportunity
For investors, understanding âSoftwarâ validates bitcoinâs unique value proposition beyond price speculation:
-
Digital Scarcity as Strategic Depth: Bitcoinâs fixed supply of 21 million makes it the only digital asset with truly inelastic supply, a programmed scarcity immune to political whims or central bank printing.
This âscarcity imperativeâ acts as a natural antidote to global fiat debasement. As central banks expanded money supplies aggressively (Global M2), bitcoinâs price has shown strong correlation, acting as a pressure valve for inflation concerns. The quadrennial âhalvingâ (latest: April 2024) mechanically reduces new supply, creating built-in supply shocks as adoption grows. * The Antifragile Security Feedback Loop: Bitcoinâs security isnât static; itâs antifragile. The network strengthens through demand: * More users â More transactions â Higher fees â More miner revenue â More hashpower (computational security) â Greater network resilience â More user confidence.
This self-reinforcing cycle contrasts sharply with traditional systems, where security is a cost center (e.g., bank security budgets, military spending). Bitcoin turns security into a profitable, market-driven activity. * Institutionalization Without Centralization: While institutional ownership via ETFs (like BlackRockâs IBIT) and corporate treasuries (MicroStrategy, Metaplanet) has surged, supply remains highly decentralized.Individuals still hold the largest share of bitcoin, preventing a dangerous concentration of control. Spot Bitcoin ETFs alone are projected to see over $20 billion in net inflows in 2025, demonstrating robust institutional capital allocation.
The Bitcoin Community: Building the Digital Antlerâs Resilience
Loweryâs âSoftwarâ theory underscores why bitcoinâs decentralized architecture is non-negotiable. Its strength lies in the alignment of incentives across three participant groups:
- Miners:Â Provide computational power (hashrate), validating transactions and securing the network. Incentivized by block rewards (newly minted BTC) and transaction fees. Their physical energy expenditure is the âmuscleâ behind the digital antler.
- Nodes: Independently verify and enforce the protocol rules, maintaining the blockchainâs integrity. Run by users, businesses, and enthusiasts globally. They ensure decentralized consensus, preventing unilateral protocol changes.
- Users:Â Individuals, institutions, and corporations holding, transacting, or building on bitcoin. Their demand drives transaction fees and fuels the security feedback loop.
This structure creates âMutually Assured Preservationâ. Attacking bitcoin requires overwhelming its global, distributed physical infrastructure (miners/nodes), a feat far more complex and costly than seizing a central bankâs gold vault or freezing a bankâs assets. It transforms financial security from a centralized liability into a decentralized, physically-grounded asset.
Risks & Responsibilities
Investors and policymakers must acknowledge persistent challenges:
- Volatility: Bitcoin remains volatile, though this has decreased as markets mature. Dollar-cost averaging (DCA) is widely recommended to mitigate timing risk.
- Regulatory Uncertainty:Â While U.S. policy is increasingly favorable, global coordination is lacking. The EUâs MiCAR regulation exemplifies divergent approaches.
- Security & Custody:Â While Bitcoinâs protocol is robust, user errors (lost keys) or exchange hacks remain risks.
- Environmental Debate:Â Proof-of-Work energy use is scrutinized, though mining increasingly uses stranded energy/renewables. Innovations continue.
Jason Loweryâs âSoftwarâ theory elevates bitcoin from a financial instrument to a socio-technological innovation on par with the invention of the corporation, the rule of law, or even the antler in evolutionary biology. It provides a coherent framework for understanding why:
- Nations like the U.S. are looking to establish bitcoin reserves and embracing stablecoinsâthey recognize bitcoinâs role in projecting economic power non-violently in the digital age.
- Institutional Investors are allocating billions via ETFsâthey see a scarce, secure, uncorrelated asset with antifragile properties.
- Individuals in hyperinflationary economies or under authoritarian regimes use bitcoinâit offers self-sovereign wealth storage immune to seizure or debasement.
For the investor, bitcoin represents more than potential price appreciation. It offers exposure to a fundamental reorganization of how power and value are secured and exchanged globally, grounded not in abstract promises, but in the unyielding laws of physics and mathematics.
Like the brewers who balanced tradition with innovation to create something enduring and valuable, bitcoin pioneers are building the infrastructure for a more resilient digital futureâone computationally secured block at a time. The âSoftwarâ is here, and it is reshaping the landscape of p
-
@ 5627e59c:d484729e
2025-06-11 22:09:02In een zee van mogelijkheden\ Kunnen we best veel tijd aan dromen besteden
Dromen is een universele taal\ Het wordt gedaan door ons allemaal
Het is het woord\ Dat deze gelijkheid de grond in boort
-
@ ec42c765:328c0600
2025-02-05 23:45:09test
test
-
@ 04c3c1a5:a94cf83d
2025-06-14 18:30:0012
-
@ 5627e59c:d484729e
2025-06-12 04:23:52Look and see\ Look and see
You look like how you look at me
Look and see\ Look and see
The colorless through the color TV
Look and see\ Look and be
The unborn identity
-
@ 04c3c1a5:a94cf83d
2025-06-14 18:30:00heyyyy
-
@ 5627e59c:d484729e
2025-06-11 22:31:59Een warme chocomelk\ Een knuffel en de moed te durven spreken\ Een leuk oprecht verhaal\ En een stap naar mijn verlangen
Deze dingen allemaal\ Maken me warm vanbinnen\ Ik hou van deze dingen\ Ze doen mijn hartje zingen
Ik wens iedereen zo'n warmte toe\ Ik wou dat ik het delen kon\ Maar het ziet er anders uit\ Voor jou dan hoe voor mij
Het enige wat ik echt kan zeggen\ Het enige dat ik zeker weet\ De kracht om warmte te creëren\ Ligt in je eigen handen
In je voeten, in je mond\ Het zit ook in je ogen\ En ook in je haar\ En zei ik al je mond\ En zelfs ook in je kont
Haha, ik ben maar wat aan 't lachen\ Dat is wat mij verlucht\ En ervoor zorgt dat wat ik zeg\ Van mij los kan komen\ En jou bereiken kan
Zo kan ik op beide oren slapen\ Dat ik deed dat wat ik kon\ Ik sprak dat wat belangrijk is\ Voor mij en liet het los
De wijde wereld in\ Voor al die horen wil en daar om geeft\ Om die warmte in hun hartje\ En daar misschien naar streeft
Ik wens je al 't succes toe in de wereld\ Want God weet, je bent het waard\ Het ligt nu in jouw handen\ Deze woorden, wat ik zeg\ Iets om over na te denken\ Tussen 't brood en het beleg
Leef gewoon je leven\ En zorg goed voor jezelf\ En als je 't graag wilt vinden\ Is het daar voor jou aan 't wachten\ Tot jij klaar bent met geloven\ In al dat anders klinkt
Ik kan je niets beloven\ Maar vertrouw op jouw instinct
-
@ 8194da31:0f3badf3
2025-06-14 13:39:14I got fired at 29.
Best thing that ever happened to me.
Everyone told me to follow the safe path.
"Go to college."
"Get a secure job."
"Don't take risks."
So I became a physical therapist.
Safe. Boring. Soul-crushing.
Then COVID hit and changed everything.
I became a wheelchair technician.
One of the only jobs you could do outside while everyone was locked indoors.
Driving through empty cities while the world hid.
Listening to podcasts to stay sane.
That's when I discovered Michael Saylor talking about Bitcoin in 2022.
Digital freedom.
Money nobody could control.
Escape from the broken system.
I was hooked.
So I landed a corporate job to stack more Bitcoin.
The strategy worked.
I bought more Bitcoin in a bear market.
But I sacrificed my physical and mental health.
Ten hours of driving daily.
Weight piling on.
Happiness draining out.
They fired me after 10 months.
Left me with nothing but a mortgage to pay.
Terrifying but liberating.
A friend from the gym threw me a lifeline.
"Want to train people?"
I grabbed it.
While building others' bodies, I built my future:
âą Kept writing online âą Kept studying Bitcoin âą Kept building my dream
Now I help Bitcoiners grow their influence and personal brand.
So they can taste freedom too.
Found an amazing girlfriend who believes in the vision.
The mortgage doesn't scare me anymore.
Here's what I learned:
Society's safe path leads to society's prison.
Your risky path leads to your freedom.
Stop asking permission to live differently.
Start building the life that makes you excited to wake up.
The world needs what you're hiding.
-
@ 5627e59c:d484729e
2025-06-11 21:14:37Gelukkig zijn\ Is de waarde van mijn leven
Gewoon dankbaar te bestaan\ Geen mens heeft me ooit zo'n mooi cadeau gegeven
Dankbaar voor mijn sprankelen\ Mijn doen en voor mijn streven
Maar ook dat ik mag wankelen\ Mag vallen en mag beven
Want wat er ook gebeurt\ Het duurt steeds maar voor even
De wijsheid van mijn hart\ Voor alles is een reden
Het leven brengt mij deugd\ En soms brengt het me pijn
Maar nooit neemt het die vreugd\ De toelating om hier te zijn
De kans om iets te leren\ Te zien en om te groeien
Geeft mij kracht te accepteren\ Te omarmen en te bloeien
-
@ 04c3c1a5:a94cf83d
2025-06-14 16:42:00test
-
@ 3294129b:2a7654fa
2025-06-14 12:50:05đ Satoshi House, Dubai đïž June 21st, 2025 â 7:00 PM to 11:30 PM
âž»
Letâs Talk Bitcoin. Letâs Talk Freedom.
Bitcoin Minds is back and this time, weâre diving into the frontier of decentralized communication. No pizza this round, just powerful conversations, real connections, and ideas that matter.
This edition is all about Nostr, the open protocol thatâs transforming how we connect, share, and build, side by side with Bitcoin.
Whether youâre a builder, a Bitcoiner, or just curious, this is your night to learn, share, and spark whatâs next.
âž»
đ€ What to Expect:
đŹ Lightning-powered mini-talks by builders, thinkers, and Nostr pioneers đ§ Open discussions & community Q&A đ€ Real networking with freedom-first minds ⥠Hands-on insights into how Nostr and Lightning are working together today đ» Fully-stocked bar, so you can enjoy a variety of cocktails and drinks throughout the evening.
âž»
đ Topics weâll explore: âą Why Nostr matters in a Bitcoin world âą Building apps on Nostr: whatâs possible now? âą Identity & reputation without KYC âą Zaps, tips & micropayments with Lightning âą Bitcoin + Nostr vs surveillance & censorship âą Real-world adoption: challenges & use cases âą Your favorite Nostr clients and how you use them
âž»
đïž Entry:
FREE â but RSVP is required đ Limited spots, unlimited signal.
âž»
Bitcoin Minds: Nostr Edition
-
@ ec42c765:328c0600
2025-02-05 23:43:35test
-
@ 5627e59c:d484729e
2025-06-11 21:13:59I am here too\ In the same space like you
In the same situation I'm in\ It's a matter of positioning
I cannot leave this place I'm in\ It was brought about\ By what's been happening
So please don't look at me\ For what I can or cannot do for you\ But look at what is happening for me\ And what is happening for you
Let's communicate\ Not orchestrate
Because there's something I wish to do\ And there's a place I wish to go to
And I'm sure that there is too\ In your heart a fire\ Known by only you
So let us listen, look and see\ For what's true for you\ And what's true for me
That we may act upon what's here\ In order for us both to take a step\ In the direction we wish to steer
-
@ 5627e59c:d484729e
2025-06-11 22:31:47Warmte betekent zachtheid aan de grenzen\ Omringt door zachte mensen
Warmte betekent vrijheid\ Vrij om mij te tonen en te bewegen
Warmte betekent rust\ Om hier niet ver vandaan te hoeven zijn
Warmte betekent leven\ Iets waar ik vol van liefde mijn aandacht aan wil geven
Warmte betekent vriendschap\ Alle vriendschap die mijn hartje vult
Warmte betekent vol zijn\ Vol betekenis die mijn omgeving aan mij schenkt
Warmte betekent geven\ Geven om wat ik voor jou en jij voor mij\ Wij voor elkaar nu eigenlijk echt betekenen
-
@ 5627e59c:d484729e
2025-06-11 22:30:36Nooit is mijn dans echter\ Dan net nadat het regende\ Want regen biedt een kans\ Om mijn gevoel te voelen
Zolang de regen spettert\ En ik mezelf graag zie\ Wordt er niets verplettert\ Ook al lijkt dat soms wel zo
Zodra de regen ophoudt\ En zich terugtrekt met de wolken\ Komt een nieuwe glans\ Voor het eerst mijn ogen binnen
Wat is het leven heerlijk\ Als ik eerlijk ben en voel\ Wat is het leven zacht\ En het brengt me naar mijn doel
Wat zou ik weten zonder regen\ Gewoon steeds evenveel\ Niet groeien is niet leven\ Daarom dans ik het liefst
Net na de echte regen
-
@ 5627e59c:d484729e
2025-06-11 21:12:27In het hart van een gepensioneerde operazangeres ontstond een stemmetje. Het stemmetje klonk verrast. "He," ging het hart. "Ik heb een stemmetje gekregen! Hoe kan dit? Kan iemand me horen? Zouden mijn gedachten me kunnen horen?" vroeg het stemmetje, niet wetend aan wie. Want de gedachten hoorden het niet. Zij waren zo druk bezig met het verleden en hadden een grote angst dit te verliezen. "Weet je nog?" gingen de gedachten. "Voor duizenden mensen heb ik gezongen! Avond na avond! Tienduizenden mensen hebben me toegejuicht! Wat waren ze onder de indruk! Luister! Ik kan het nog steeds!" "He," ging het hart. "Hoor je me dan niet? Het ging toch helemaal niet om dat gejuich. Weet je dan niet meer hoe ik me volledig bloot gaf aan die mensen. Mijn diepste en meest persoonlijke verhalen waren te horen in mijn liederen. Daar draaide het toch om? De mensen waren niet enkel onder de indruk. Hun harten hebben mijn verhalen gevoeld en konden zo kennis geven aan hun gedachten. Is dat niet wat echt telde?" Maar de gedachten waren volop aan het zingen voor de ene persoon die ze konden vinden die wou luisteren. "He," ging het hart. "Ook in dit moment zijn mijn liederen te horen door vele gedachten en te voelen door vele harten over de hele wereld. Heb ik dan geen rust verdiend? Kan ik niet even genieten van de rust die in dit moment te vinden is, maar jullie van me afnemen?" Maar de gedachten waren nog steeds volop aan het zingen.
-
@ 5627e59c:d484729e
2025-06-11 21:08:10I am the space\ In which your experience takes place
You could never meet me\ For I hold no identity
The only way to really see me\ Is to be me
-
@ 5627e59c:d484729e
2025-06-11 22:30:23My life is my way Home\ My death is my arrival
I can't wait to be Home\ And so I love life
I can't wait to be Home\ And so I want to live to the fullest
For there are no shortcuts
Many people die\ And never make it Home
They will have to wait\ For another chance to die
Another chance to live fully\ And die totally
I'm so thankful to be alive\ I'm on my way Home
I'm so thankful to be alive\ To have another chance to die
Every day I take a step\ In the direction of my death\ I do not postpone it
Every day I take a step\ In the direction of my truth\ I do not avoid it
It is who I am, always have been\ And always will be
It lies beyond that door\ That keeps everything in check
Where only can go through\ Which is forever true
-
@ d5ca7093:549ad1ec
2025-06-14 12:39:55In a world flooded with information and noise, itâs easy to feel like your brain is constantly switching channels.
One minute youâre reading a technical spec, the next youâre researching vintage Japanese vending machines,
then somehow deep in a Telegram rabbit hole about solar-powered mesh networks.Sound familiar?
For some of us, this isnât just a personality quirkâitâs our baseline.
We donât think in straight lines.
Ideas come in bursts. Focus comes in waves.
We thrive on novelty, but routine feels like quicksand.In a society built for rigid 9-to-5 brains, that kind of mental wiring often gets misunderstood.
But hereâs the truth:If you learn to structure the chaos, it becomes a superpower.
What most people call distraction is actually high bandwidth.
Itâs fast processing mixed with open curiosity.
But without systems in place, that power leaks.We chase every thought, every notification, every dopamine hit.
Thatâs why building your own structure is keyânot to control your mind,
but to support it.- Custom workflows
- Intentional routines
- Clear priorities
These turn scatter into momentum.
In the Bitcoin and Nostr world, this mindset fits naturally.
Weâre already breaking free from one-size-fits-all models.
We self-host. We fork code. We build for edge cases.Why not apply the same philosophy to how we work and think?
You donât need corporate-style productivity hacks.
You can build your own.
Ones that work with your brain, not against it.
Use your site as your digital command center.
Set up tools that work offline.
Use local-first apps.
Block out time for deep work.
Make room for curiosity.Once you start adding scaffolding to your natural flow, something wild happens:
You move faster, think clearer, and build better.
The minds that donât âfit inâ are often the ones pushing things forward.
Thatâs not a bugâitâs a feature.
But features need configuration.Self-sovereignty isnât just about running a node or holding your keys.
Itâs about designing a life and workflow that fits youâespecially
when your brain runs on a different operating system.
So if your mind doesnât follow the rules, maybe itâs because
you were built to make new ones.Structure isnât the enemy.
Itâs the multiplier.
Follow my thoughts and work at:
đ https://taidigital.xyz
đ@taidigital.xyz
on Nostr -
@ 5627e59c:d484729e
2025-06-11 21:07:41Love, I thank you for your warmth\ Ever lifting
You keep me charmed\ Ever drifting
May I be me\ And you be you
In a perfect harmony\ Embracing all life makes us grow through
-
@ 2cde0e02:180a96b9
2025-06-14 11:41:31watercolor pencils, water brush & pen
https://stacker.news/items/1006159
-
@ ec42c765:328c0600
2025-02-05 23:38:12ă«ăčăżă ç””æćăšăŻ
ä»»æăźăȘăȘăžăă«ç»ćăç””æćăźăăă«æäžă«æżć „ă§ăăæ©èœă§ăă
ăŸăăăȘăąăŻă·ă§ăłïŒTwitterăź ăăă ăźăăăȘæ©èœïŒă«ăă«ăčăżă ç””æćăäœżăăŸăă
ă«ăčăżă ç””æćăźćŻŸćżç¶æłïŒ2025/02/06ïŒ
ă«ăčăżă ç””æćăäœżăăăă«ăŻă«ăčăżă ç””æćă«ćŻŸćżăăăŻă©ă€ăąăłăăäœżăćż èŠăăăăŸăă
â»èĄšăŻäžäŸă§ăăăŻă©ă€ăąăłăăŻä»ă«ăăăăăăăăŸăă
äœżăŁăŠăăăŻă©ă€ăąăłăăćŻŸćżăăŠăăȘăć ŽćăŻăăŻă©ă€ăąăłăă〿ŽăăăćŻŸćżăăăŸă§ćŸ ă€ăéçșè ă«èŠæăéăïŒăŸăăŻèȘćă§ćźèŁ ăăïŒăȘă©ăăŸăăăă
ćŻŸćżăŻă©ă€ăąăłă
ăăă§ăŻnostterăäœżăŁăŠèȘŹæăăŠăăăŸăă
æșć
ă«ăčăżă ç””æćăäœżăăăăźæșćă§ăă
- NostrăšăŻăčăăłă·ă§ăłïŒNIP-07ïŒăć°ć „ăă
- äœżăăăă«ăčăżă ç””æćăăȘăčăă«ç»éČăă
NostrăšăŻăčăăłă·ă§ăłïŒNIP-07ïŒăć°ć „ăă
NostrăšăŻăčăăłă·ă§ăłăŻäœżăăăă«ăčăżă ç””æćăç»éČăăæă«ćż èŠă«ăȘăăŸăă
ăŸăăç°ćąïŒăăœăłăłăiPhoneăandroidăȘă©ïŒă«ăăŁăŠć°ć „æčæłăéăăŸăă
NostrăšăŻăčăăłă·ă§ăłăć°ć „ăă端æ«ăŻăćźéă«NostrăéČ芧ăă端æ«ăšéăŁăŠăæ§ăăŸăăïŒăȘăčăç»éČăŻPCăNostréČ芧ăŻiPhoneăȘă©ïŒă
NostrăšăŻăčăăłă·ă§ăłïŒNIP-07ïŒăźć°ć „æčæłăŻä»„äžăźăăŒăžăćç §ăăŠăă ăăă
ć°ăéąćă§ăăăăăăć°ć „ăăŠăăăšNosträžăźæ§ă ăȘć Žéąă§ćœčç«ă€ăźă§ăăćż«é©ă«ăȘăăŸăă
äœżăăăă«ăčăżă ç””æćăăȘăčăă«ç»éČăă
仄äžăźă”ă€ăă§èĄăăŸăă
ćłäžăźGet startedăăNostrăšăŻăčăăłă·ă§ăłă§ăă°ă€ăłăăŠăă ăăă
äŸăšăăŠä»„äžăźă«ăčăżă ç””æćăć°ć „ăăŠăżăŸăă
ćźéăăç””æćăć°ăȘăèĄšç€șăăăăăšăăăăŸăăăć€ăç¶æ ăźăăŒăżăććŸăăŠăăŸăŁăŠăăăăă§ăăăăźć ŽćăŻăă©ăŠă¶ăźæŽæ°ăăżăłăæŒăăŠăă ăăă
generalJP | ă«ăčăżă ç””æć
- ćłćŽăźOptionsăăBookmarkăéžæ
ăăă§ă«ăčăżă ç””æćăäœżçšăăăăăźăȘăčăă«ç»éČă§ăăŸăă
ă«ăčăżă ç””æćăäœżçšăă
äŸăšăăŠăă©ăŠă¶ăăäœżăăăŻă©ă€ăąăłă nostter ăăäœżçšăăŠăżăŸăă
nostteră«NostrăšăŻăčăăłă·ă§ăłă§ăă°ă€ăłăăăăăŻç§ćŻé”ăć „ăăŠăă°ă€ăłăăŠăă ăăă
æç« äžă«äœżçš
- æçšżăăżăłăæŒăăŠæçšżăŠăŁăłăăŠăèĄšç€ș
- éĄđăźăăżăłăæŒăăç””æćăŠăŁăłăăŠăèĄšç€ș
- ïŒăżăăæŒăăă«ăčăżă ç””æćäžèЧăèĄšç€ș
- ă«ăčăżă ç””æćăéžæ
- : èšć·ă«æăŸăăăąă«ăăĄăăăăźă·ă§ăŒăăłăŒăăšăăŠæżć „ăăă
ăăźç¶æ ă§æçšżăăăšă«ăčăżă ç””æćăšăăŠèĄšç€șăăăŸăă
ă«ăčăżă ç””æććŻŸćżăŻă©ă€ăąăłăăäœżăŁăŠăăä»ăŠăŒă¶ăŒă«ăă«ăčăżă ç””æćăšăăŠèĄšç€șăăăŸăă
ćŻŸćżăăŠăăȘăăŻă©ă€ăąăłăăźć Žćăă·ă§ăŒăăłăŒăăźăŸăŸèĄšç€șăăăŸăă
ă·ă§ăŒăăłăŒăăçŽæ„ć „ćăăăăšă§ă«ăčăżă ç””æćăźćèŁăèĄšç€șăăăăźă§ăăăăéžæăăăăšăă§ăăŸăă
ăȘăąăŻă·ă§ăłă«äœżçš
- ä»»æăźæçšżăźéĄđăźăăżăłăæŒăăç””æćăŠăŁăłăăŠăèĄšç€ș
- ïŒăżăăæŒăăă«ăčăżă ç””æćäžèЧăèĄšç€ș
- ă«ăčăżă ç””æćăéžæ
ă«ăčăżă ç””æćăȘăąăŻă·ă§ăłăéăăăšăă§ăăŸăă
ă«ăčăżă ç””æćăæąă
ć èż°ăăemojitoăăă«ăčăżă ç””æćăæąăăŸăă
äŸăă°ä»»æăźăŠăŒă¶ăŒăźăăŒăž emojito ăăŻăšăŠ ăăæąăăăă emojito Browse all ăănostrć šäœă§æèżäœæăæŽæ°ăăăç””æćăèŠăăă§ăăŸăă
ăŸăă仄äžăźăȘăłăŻăŻæ„æŹèȘćăŠăŒă¶ăŒăäœăŁăă«ăčăżă ç””æćăéăăăȘăčăă§ăïŒ2025/02/06ïŒ
â»æŒăăăăăăăăăŸăă
æ„æŹăŠăŒă¶ăŒäœ ă«ăčăżă ç””æć
ćç””æćă»ăăă«ăăOpen in emojitoăźăȘăłăŻăăemojitoă«éŁăłăäœżçšăȘăčăă«èżœć ă§ăăŸăă
仄äžă§ăă
æŹĄïŒNostrăźă«ăčăżă ç””æćăźäœăæč
YakihonneăȘăłăŻ Nostrăźă«ăčăżă ç””æćăźäœăæč
NostrăȘăłăŻ nostr:naddr1qqxnzdesxuunzv358ycrgveeqgswcsk8v4qck0deepdtluag3a9rh0jh2d0wh0w9g53qg8a9x2xqvqqrqsqqqa28r5psx3
仿§
-
@ 5627e59c:d484729e
2025-06-11 21:07:23Jaren tellen\ Hoeft voor mij niet
Verhalen vertellen\ Over geluk en verdriet
Een warme haven\ Veilig en fijn
Dromen voorgedragen\ Onschuldig en rein
Momenten ervaard, geleerd\ En geĂŻntegreerd
Ideeën, geloven en gevoelens\ Gevormd en gecreëerd
Zonder eind of echt begin\ Vallen, groeien, leren, stoeien
Een gezin in een gezin met een gezin erin\ Gezind gericht blijft liefde vloeien
-
@ 5627e59c:d484729e
2025-06-11 21:07:04The world around me\ Is assumed to be
Through sensory observations\ This appears to me
What I experience\ Is for me
But the ultimate experience\ Is for me\ To be
-
@ 04c3c1a5:a94cf83d
2025-06-14 16:37:00crazy
-
@ f0fd6902:a2fbaaab
2025-06-14 09:53:11As much as they look like teddy bears, they are not bear cousins. These marsupials are more closely related to wombats. Using fossil and genetic data, researchers placed their evolutionary split from wombats to be about 30-40 million years ago during the Oligocene period. Both of these animals belong to the suborder Vombatiformes. Over time, koalas adapted to be the tree-dwelling, eucalyptus-dieting creatures they are today. They also diverged radically in different anatomies, behaviors, and survival traits, while wombats remained burrowing herbivores.
https://stacker.news/items/1006112
-
@ ec42c765:328c0600
2025-02-05 23:16:35ăŠăăš
nostr:nevent1qqst3uqlls4yr9vys4dza2sgjle3ly37trck7jgdmtr23uuz52usjrqqqnjgr
nostr:nevent1qqsdvchy5d27zt3z05rr3q6vvmzgslslxwu0p4dfkvxwhmvxldn9djguvagp2
test
ăŠïœ
-
@ b1ddb4d7:471244e7
2025-06-14 09:01:06Square, the payments platform operated by Block (founded by Jack Dorsey), is reporting 9.7% bitcoin yield on its bitcoin holdings by running a Lightning Network node.
The announcement was made by Miles Suter, Bitcoin product lead at Block, during the Bitcoin 2025 conference in Las Vegas. Suter explained that Square is earning âreal bitcoin from our holdingsâ by efficiently routing payments across the Lightning Network.
Squareâs yield comes from its role as a Lightning service provider, a business it launched two years ago to boost liquidity and efficiency on the Lightning Network. According to Lightning Labsâ Ryan Gentry, Squareâs 9% yield could translate to roughly $1 million in annual revenue.
The Lightning Network, a Bitcoin layer-2 protocol, has long been promoted as a solution to Bitcoinâs scalability and transaction speed issues. It enables micropayments and off-chain transactions, reducing congestion on the main blockchain. However, the network faces challenges, including the need for inbound liquidityâusers must lock up BTC to receive BTCâpotentially limiting participation by smaller nodes and raising concerns about decentralization.
Despite these hurdles, Square remains committed to advancing Bitcoin payments via Lightning. Suter revealed that 25% of Squareâs outbound bitcoin transactions now use the Lightning Network. The company is actively testing Lightning-based payments at the Bitcoin 2025 event and plans to roll out the service to all eligible Square merchants by 2026.
Suter emphasized the transformative potential of Lightning:
âWhen you enable real payments by making them faster and more convenient, the network becomes stronger, smarter, and more beneficial. So if youâre questioning whether bitcoin is merely an asset, the response is no. It has already evolved into both an asset and a protocol, and now Block is spearheading the initiative to transform it into the worldâs premier payment system.â
Squareâs ongoing investment in Lightning signals its belief in Bitcoinâs future not just as a store of value, but as a global payments protocol.
-
@ 5627e59c:d484729e
2025-06-11 21:06:42Happy New Year!
Happy New Year, my dearest human family\ Happy New Year, my dearest animal family
Dear children of the Earth\ I wish you all a magical year
May it be utterly new\ Ever-changing\ New now
And may your journey say\ Life is amazing! I'm in a maze\ Life is awesome! Quite some awe\ Life is magical! True alchemy
I am human\ Black woman, I love you so\ Life-giver of my origin, the negro [nigiro]
I am\ Thus physical and non-physical meet
Life is to be\ As the elements are and compete\ And as they collide with one another\ One becomes aware of an other\ And so life sets on a journey\ To discover the other
Animal life is set to explore\ Allowing all experience the other has in store\ Life left to experience without a voice\ Until it discovers there is an 'I'\ And it has a choice
Human life is to be inside a human body\ Thus fusion between intellect and feeling\ Gets to express its perspective\ Inside infinity
Truly, a magical gift\ My Holy Trinity
And so from human life flow many voices\ As it navigates through infinite choices
Thus I say
Life is magic\ A gift for all that is here\ Perceived by too many as tragic\ Take care of your vision, I tell you, my dear [tell-a-vision]
Life is magic\ And words are spells\ Placing your aim beyond your reach\ It takes away efficiency from your speech
Life is magic\ Above all else\ Even when it has me feeling blue\ Seemingly left without a clue
Still I say
Perfection\ You are everything\ And I am of you
The source, the mirror\ And the reflection
-
@ 044da344:073a8a0e
2025-06-14 08:56:18Meine Karriere als Auftragsforscher neigt sich ihrem Ende entgegen. In zwei Wochen ist der Forschungsverbund âDas mediale Erbe der DDRâ Geschichte. Gerade hat mir der Geldgeber mitgeteilt, dass er sich nicht mehr Bundesministerium fĂŒr Bildung und Forschung nennt, sondern Bundesministerium fĂŒr Forschung, Technologie und Raumfahrt. BMFTR statt BMBF. Bitte, sehr geehrte Damen und Herren, verwenden Sie ab sofort nur noch das neue Logo. Viel mehr muss man ĂŒber die politisierte Wissenschaft der Gegenwart gar nicht wissen. Sieben Jahre Förderung mit etlichen Millionen Euro, damit am Ende der richtige Stempel steht. Es soll mir keiner erzĂ€hlen, dass das den Nachwuchs nicht formt.
Ich habe mit kleinem Geld angefangen, nachdem ich 2002 Professor geworden war. An der LMU in MĂŒnchen hatte ich eigentlich alles, was ich brauchte. Studenten, die neugierig waren, aus Abschluss- oder Seminararbeiten BĂŒcher mit mir machen wollten und hinterher oft genug noch Lust auf eine Dissertation hatten. AuftrĂ€ge ergaben sich eher zufĂ€llig aus dem, was wir ohnehin machten. Eine Verbandszeitschrift verbessern, freie Journalisten befragen, ein öffentlich-rechtliches Online-Angebot einordnen, ZuschauerwĂŒnsche ermitteln. Ich habe dabei schnell gelernt, dass sich das nicht lohnt. Eine BR-Redaktion hat sich geweigert, unsere Ergebnisse ĂŒberhaupt zur Kenntnis zu nehmen, und eine Intendanz wollte eine kleine fĂŒnfstellige Summe, die wir lĂ€ngst fĂŒr Personal ausgegeben hatten, erst ĂŒberweisen, wenn wir im Bericht ein paar Kleinigkeiten umschreiben. Ich dachte: Lass die anderen den Euros nachlaufen. Ich mache einfach mein Ding.
Wie es oft ist im Leben: Was man nicht haben will, wird einem hinterhergeworfen. Auf die Drittmittel (Geld aus der Wirtschaft) folgten ab 2013 Zweitmittel: politisches Geld, dem Steuerzahler abgezwackt, mit dem die UniversitĂ€ten, ohnehin vom Staat finanziert, inhaltlich auf Kurs gebracht werden. Ich war Sprecher in drei interdisziplinĂ€ren ForschungsverbĂŒnden. ForChange und ForDemocracy, beide bezahlt vom Freistaat Bayern, und, gewissermaĂen als Krönung, âDas mediale Erbe der DDRâ. Gepunktet habe ich dabei immer auch mit dem, was frĂŒher Ăffentlichkeitsarbeit hieĂ und lĂ€ngst auch die Wissenschaft verĂ€ndert hat. In Kurzform: Reichweite ist mindestens so wichtig wie Tiefe. Die Idee, meine Arbeit ins Schaufenster zu stellen und die Leute drauĂen mitdiskutieren zu lassen, hat eine Weile wunderbar funktioniert und ist dann ab 2018/19 zum Bumerang geworden. Aber das ist eine andere Geschichte.
Hier und heute will ich erzĂ€hlen, was bei meinem letzten Projekt herausgekommen ist, bearbeitet von Lukas Friedrich und von uns beiden in einem Buch gebĂŒndelt, das im SpĂ€tsommer im Verlag Herbert von Halem in Köln unter dem Titel âMedienskepsis in Ostdeutschlandâ erscheinen wird. Das Schlusskapitel trĂ€gt die Ăberschrift âStaatsferne, Ost-Bashing und die Kluft zwischen Ideologie und Wirklichkeitâ und wird hier leicht gekĂŒrzt als ein Appetitmacher veröffentlicht.
Ein Fazit zu den Wurzeln der âMedienskepsis Ostâ
Wieviel DDR steckt in der Unzufriedenheit mit den Leitmedien, die im Osten Deutschlands spĂ€testens 2014 mit Pegida auch öffentlich sichtbar wurde und seither ein Dauerbrenner ist in den akademischen und öffentlichen Debatten, die sich um die GlaubwĂŒrdigkeit des Journalismus drehen? Mit dieser einfachen Frage sind wir eingestiegen und haben gleich zu Beginn die Annahme zurĂŒckgewiesen, dass die Medienkritik ein âErbe der DDRâ sei und sich folglich âetwas machenâ lasse, wenn wir die herrschende ErzĂ€hlung ĂŒber die Vergangenheit nachjustieren.
Dieses Nein gilt immer noch, muss allerdings jetzt, nachdem wir in die Lebens- und Medienwelten von DDR-BĂŒrgern und Ostdeutschen heute eingetaucht sind, differenziert werden. Das, was die SED als âJournalismusâ bezeichnet hat, aber de facto politische PR war, ist als Vergleichsfolie nicht nur bei den Zeitzeugen prĂ€sent, sondern auch bei ihren Nachkommen, vermittelt in erster Linie ĂŒber FamiliengesprĂ€che. Das heiĂt vor allem: Es gibt ein Bewusstsein, dass Politik und Staat die Redaktionen zu ihrem Instrument machen können. In den ersten anderthalb bis zwei Jahrzehnten nach 1990 spielte das kaum eine Rolle, weil die Menschen sich hineinfinden mussten in eine ganz andere Gesellschaftsordnung und mit Alltag und Job genauso ausgelastet waren wie mit dem KnĂŒpfen von neuen Netzwerken und der Trauer um den Verlust der alten. âIch habe versucht, so schnell wie möglich zu lernenâ, sagt Jörg Drews, Jahrgang 1959, GeschĂ€ftsfĂŒhrer von Hentschke Bau in Bautzen. Und: âEs hat mich gekrĂ€nkt, wenn ich akzeptieren musste, dass ich der Dumme war.â Das dĂŒrfte das LebensgefĂŒhl vieler Ostdeutscher in den frĂŒhen 1990ern ziemlich gut beschreiben â genau wie der Satz âIch war damals ziemlich unbedarftâ von Wilhelm Domke-Schulz, drei Jahre Ă€lter als Drews. Der Filmemacher schiebt gleich hinterher: âMan wusste nicht, was diese BRD fĂŒr ein Verein ist. Man war ja nie dort gewesen. Ich war mir sicher, dass ein paar Sachen bleiben werden. Nie wieder Faschismus, nie wieder Krieg. Und ansonsten kann man sich ĂŒberraschen lassen. Die Ăberraschung sah dann anders aus. Die DDR hat keine Kriege gefĂŒhrt. Die BRD schon. Und mit dem Faschismus: Da mĂŒsste ich jetzt ein bisschen ausholen.â
Man muss Domke-Schulz nicht im Detail folgen oder gar seiner Faschismus-Analyse zustimmen, um den Prozess der ErnĂŒchterung nachzuvollziehen, der auch und vor allem die neue Ideologie betraf â eine ErzĂ€hlung, die dem Einzelnen unter dem Label âDemokratieâ versprach, mitentscheiden zu können, wenn es um die eigenen Angelegenheiten ging oder auch um das groĂe Ganze, und dafĂŒr einen Journalismus aufbot, der anders als die Propagandisten, Agitatoren, Organisatoren in den DDR-Redaktionen objektiv, neutral und unabhĂ€ngig sein sollte und damit ein Gegenspieler der Macht. Dass das kein MĂ€rchen aus tausendundeiner Nacht ist, sondern eine Beschreibung der RealitĂ€t, schienen zuerst die anderthalb Jahre âBasisdemokratieâ zwischen Herbst 1989 und FrĂŒhjahr 1991 zu bestĂ€tigen, 18 Monate, in denen Zeitungen wie Pilze aus dem Boden schossen, sich auch gegenseitig kritisierten und so eine Euphorie befeuerten, die nicht nur von den runden Tischen ausging, und dann vielleicht auch noch die neuen Herren (meist tatsĂ€chlich MĂ€nner) aus dem Westen, die anschlieĂend ĂŒbernahmen und die entsprechende Gewissheit ausstrahlten.
Unsere GesprĂ€che mit Medienskeptikern markieren die Ereignisse, an denen dieses Zutrauen nach und nach zerbrach â bei dem einen frĂŒher, bei dem anderen spĂ€ter. Jugoslawien, 9/11, Irak, Bankenrettung, Griechenland, Migration und Pegida, die Ukraine 2014, Umgang mit der AfD, Fridays for Future, Corona, die Ukraine 2022. Man wĂŒrde diese Schlagworte ganz Ă€hnlich selbstverstĂ€ndlich auch bei Westdeutschen finden, die sich von den Leitmedien und damit von der âgegenwĂ€rtigen Spielart der Demokratieâ (Dirk Oschmann) abgewendet haben, unsere Gruppendiskussionen zeigen aber, dass Ostdeutschen dieser Bruch in gewisser Weise leichter fiel. Sie bringen erstens das Wissen mit, dass Ideologie und Wirklichkeit auseinanderklaffen können, haben zweitens erlebt, wie eine herrschende ErzĂ€hlung und ihre TrĂ€ger ersetzt worden sind, und drittens gesehen, dass auch ihre Kinder und Enkel auf absehbare Zeit nur in AusnahmefĂ€llen mit Westdeutschen konkurrieren und die Kluft in Sachen Lebensstandard schlieĂen können.
Dieser letzte Punkt ist wichtig, weil er zugleich eine Trennlinie andeutet â zwischen den âGlĂ€ubigenâ auf der einen Seite (Menschen, die die Leitmedien zwar hier und da kritisieren, aber im GroĂen und Ganzen einverstanden sind mit der Berichterstattung und vor allem keinen Zweifel haben an der ErzĂ€hlung, mit der die engen Beziehungen zwischen Journalismus und Macht verschleiert werden) sowie âFlĂŒchtlingenâ, âVerweigerernâ und âSkeptikernâ auf der anderen. Unsere Gruppendiskussionen zeigen: Wer von Steuergeldern abhĂ€ngt (etwa durch einen Job im öffentlichen Dienst und Ă€hnlichen Bereichen) oder auf andere Weise von der herrschenden ErzĂ€hlung profitiert (ĂŒber Vermögen, Besitz, Angehörige), ist eher bereit, sich auf die herrschende Ideologie einzulassen und manchmal auch die offen zu bekĂ€mpfen, die Fragen stellen oder nur auf WidersprĂŒche hinweisen â vor allem dann, wenn die eigene Karriere nicht verlangt hat, sich mit den Kompromissen und ZugestĂ€ndnissen auseinanderzusetzen, die fast jedes DDR-Leben mit sich brachte.
Eine Spekulation zum Schluss: Die Medienberichterstattung ĂŒber Ostdeutschland, in diesem Buch exemplarisch analysiert fĂŒr die Stadt Bautzen, beziehen die âGlĂ€ubigenâ möglicherweise gar nicht auf sich selbst, sondern auf die âanderenâ â auf AfD-WĂ€hler, Corona-Kritiker, Friedensmarschierer oder Nachbarn, die einfach wie frĂŒher nur meckern und offenkundig nichts auf die Reihe bekommen. Wer es geschafft und fĂŒr sich und seine Familie im neuen Deutschland ein Auskommen gefunden hat, dĂŒrfte eher bereit sein, der herrschenden ErzĂ€hlung den Kredit zu verlĂ€ngern, als Menschen, die entweder selbst im Kreuzfeuer stehen oder den Bruch zwischen MedienrealitĂ€t und Wirklichkeit mit eigenen Augen gesehen haben (weil sie dabei waren auf Demonstrationen, die dann verdammt wurden, oder zum Beispiel Russland und Russen kennen). So oder so: Ein Journalismus, der Ostdeutschland und die Ostdeutschen auf Klischees zusammenschrumpfen lĂ€sst, tut langfristig niemandem einen Gefallen.
Titelbild: Pegida 2015. Foto: Opposition 24, CC BY 2.0
-
@ 5627e59c:d484729e
2025-06-11 22:28:08Here's to the ones who can\ Feel their cause\ Surrender\ Change their ways\ But keep their fire\ And never give up
We will transform this world\ Restructuring\ One belief at a time
-
@ ec42c765:328c0600
2025-02-05 22:05:55ă«ăčăżă ç””æćăšăŻ
ä»»æăźăȘăȘăžăă«ç»ćăç””æćăźăăă«æäžă«æżć „ă§ăăæ©èœă§ăă
ăŸăăăȘăąăŻă·ă§ăłïŒTwitterăź ăăă ăźăăăȘæ©èœïŒă«ăă«ăčăżă ç””æćăäœżăăŸăă
ă«ăčăżă ç””æćăźćŻŸćżç¶æłïŒ2025/02/06ïŒ
ă«ăčăżă ç””æćăäœżăăăă«ăŻă«ăčăżă ç””æćă«ćŻŸćżăăăŻă©ă€ăąăłăăäœżăćż èŠăăăăŸăă
â»èĄšăŻäžäŸă§ăăăŻă©ă€ăąăłăăŻä»ă«ăăăăăăăăŸăă
äœżăŁăŠăăăŻă©ă€ăąăłăăćŻŸćżăăŠăăȘăć ŽćăŻăăŻă©ă€ăąăłăă〿ŽăăăćŻŸćżăăăŸă§ćŸ ă€ăéçșè ă«èŠæăéăïŒăŸăăŻèȘćă§ćźèŁ ăăïŒăȘă©ăăŸăăăă
ćŻŸćżăŻă©ă€ăąăłă
ăăă§ăŻnostterăäœżăŁăŠèȘŹæăăŠăăăŸăă
æșć
ă«ăčăżă ç””æćăäœżăăăăźæșćă§ăă
- NostrăšăŻăčăăłă·ă§ăłïŒNIP-07ïŒăć°ć „ăă
- äœżăăăă«ăčăżă ç””æćăăȘăčăă«ç»éČăă
NostrăšăŻăčăăłă·ă§ăłïŒNIP-07ïŒăć°ć „ăă
NostrăšăŻăčăăłă·ă§ăłăŻäœżăăăă«ăčăżă ç””æćăç»éČăăæă«ćż èŠă«ăȘăăŸăă
ăŸăăç°ćąïŒăăœăłăłăiPhoneăandroidăȘă©ïŒă«ăăŁăŠć°ć „æčæłăéăăŸăă
NostrăšăŻăčăăłă·ă§ăłăć°ć „ăă端æ«ăŻăćźéă«NostrăéČ芧ăă端æ«ăšéăŁăŠăæ§ăăŸăăïŒăȘăčăç»éČăŻPCăNostréČ芧ăŻiPhoneăȘă©ïŒă
NostrăšăŻăčăăłă·ă§ăłïŒNIP-07ïŒăźć°ć „æčæłăŻä»„äžăźăăŒăžăćç §ăăŠăă ăăă
ć°ăéąćă§ăăăăăăć°ć „ăăŠăăăšNosträžăźæ§ă ăȘć Žéąă§ćœčç«ă€ăźă§ăăćż«é©ă«ăȘăăŸăă
äœżăăăă«ăčăżă ç””æćăăȘăčăă«ç»éČăă
仄äžăźă”ă€ăă§èĄăăŸăă
ćłäžăźGet startedăăNostrăšăŻăčăăłă·ă§ăłă§ăă°ă€ăłăăŠăă ăăă
äŸăšăăŠä»„äžăźă«ăčăżă ç””æćăć°ć „ăăŠăżăŸăă
ćźéăăç””æćăć°ăȘăèĄšç€șăăăăăšăăăăŸăăăć€ăç¶æ ăźăăŒăżăććŸăăŠăăŸăŁăŠăăăăă§ăăăăźć ŽćăŻăă©ăŠă¶ăźæŽæ°ăăżăłăæŒăăŠăă ăăă
generalJP | ă«ăčăżă ç””æć
- ćłćŽăźOptionsăăBookmarkăéžæ
ăăă§ă«ăčăżă ç””æćăäœżçšăăăăăźăȘăčăă«ç»éČă§ăăŸăă
ă«ăčăżă ç””æćăäœżçšăă
äŸăšăăŠăă©ăŠă¶ăăäœżăăăŻă©ă€ăąăłă nostter ăăäœżçšăăŠăżăŸăă
nostteră«NostrăšăŻăčăăłă·ă§ăłă§ăă°ă€ăłăăăăăŻç§ćŻé”ăć „ăăŠăă°ă€ăłăăŠăă ăăă
æç« äžă«äœżçš
- æçšżăăżăłăæŒăăŠæçšżăŠăŁăłăăŠăèĄšç€ș
- éĄđăźăăżăłăæŒăăç””æćăŠăŁăłăăŠăèĄšç€ș
- ïŒăżăăæŒăăă«ăčăżă ç””æćäžèЧăèĄšç€ș
- ă«ăčăżă ç””æćăéžæ
- : èšć·ă«æăŸăăăąă«ăăĄăăăăźă·ă§ăŒăăłăŒăăšăăŠæżć „ăăă
ăăźç¶æ ă§æçšżăăăšă«ăčăżă ç””æćăšăăŠèĄšç€șăăăŸăă
ă«ăčăżă ç””æććŻŸćżăŻă©ă€ăąăłăăäœżăŁăŠăăä»ăŠăŒă¶ăŒă«ăă«ăčăżă ç””æćăšăăŠèĄšç€șăăăŸăă
ćŻŸćżăăŠăăȘăăŻă©ă€ăąăłăăźć Žćăă·ă§ăŒăăłăŒăăźăŸăŸèĄšç€șăăăŸăă
ă·ă§ăŒăăłăŒăăçŽæ„ć „ćăăăăšă§ă«ăčăżă ç””æćăźćèŁăèĄšç€șăăăăźă§ăăăăéžæăăăăšăă§ăăŸăă
ăȘăąăŻă·ă§ăłă«äœżçš
- ä»»æăźæçšżăźéĄđăźăăżăłăæŒăăç””æćăŠăŁăłăăŠăèĄšç€ș
- ïŒăżăăæŒăăă«ăčăżă ç””æćäžèЧăèĄšç€ș
- ă«ăčăżă ç””æćăéžæ
ă«ăčăżă ç””æćăȘăąăŻă·ă§ăłăéăăăšăă§ăăŸăă
ă«ăčăżă ç””æćăæąă
ć èż°ăăemojitoăăă«ăčăżă ç””æćăæąăăŸăă
äŸăă°ä»»æăźăŠăŒă¶ăŒăźăăŒăž emojito ăăŻăšăŠ ăăæąăăăă emojito Browse all ăănostrć šäœă§æèżäœæăæŽæ°ăăăç””æćăèŠăăă§ăăŸăă
ăŸăă仄äžăźăȘăłăŻăŻæ„æŹèȘćăŠăŒă¶ăŒăäœăŁăă«ăčăżă ç””æćăéăăăȘăčăă§ăïŒ2025/02/06ïŒ
â»æŒăăăăăăăăăŸăă
æ„æŹăŠăŒă¶ăŒäœ ă«ăčăżă ç””æć
ćç””æćă»ăăă«ăăOpen in emojitoăźăȘăłăŻăăemojitoă«éŁăłăäœżçšăȘăčăă«èżœć ă§ăăŸăă
仄äžă§ăă
æŹĄïŒNostrăźă«ăčăżă ç””æćăźäœăæč
YakihonneăȘăłăŻ Nostrăźă«ăčăżă ç””æćăźäœăæč
NostrăȘăłăŻ nostr:naddr1qqxnzdesxuunzv358ycrgveeqgswcsk8v4qck0deepdtluag3a9rh0jh2d0wh0w9g53qg8a9x2xqvqqrqsqqqa28r5psx3
仿§
-
@ 5627e59c:d484729e
2025-06-11 22:27:54Hello Bumble\ You busy bee
You're going way\ Too fast for me
Going here and there\ You search for gold
Yet tumble straight\ Into what's old
Now I'm not here\ To make a gain
Nor to fix\ What's in disdain
Instead I'm just\ A humble bee
Who wants to get\ To know thee
-
@ 5627e59c:d484729e
2025-06-11 22:27:43We only see\ What we are
What we are not\ We cannot see
This is how we know\ Reality is happening within\ Our own being
And experience is a consequence\ Of who we believe to be
As long as we deny\ And don't want to see
All the ways\ We think to be
Reality will seem\ Outside of our grasp
And separate\ From our experience of life
Such is our power
Yet such power\ Could only be
Of that which holds\ The entirety
-
@ 5627e59c:d484729e
2025-06-11 22:27:30Liefde\ De samenkomst\ Van zien en zijn
Leven\ Het zijn en zien\ Een vorm gekregen
Sterven\ Een deur\ Die vrijheid geeft van vorm
En eeuwig leven\ Aan liefde
-
@ 2b998b04:86727e47
2025-06-11 19:36:40đ Ka Ê»Imi i ka Pono: Seeking Whatâs Right
A 7-Day Series on Sovereignty, Bitcoin, and the Soul of the Islands
> "Man is not free unless he wills to be free."\ > â Johann Gottlieb Fichte
Hawaiâi understands sovereignty. It always has.\ But it was taken â first with pen and politics, then with force and fiat.
Bitcoin offers something different:\ A way to reclaim sovereignty without violence.\ A tool for self-rule, not state rule.\ A system built not on empire, but on truth and time.
This week, Iâll be posting a 7-part series exploring this tension:\ Between the Hawaiâi that was, the system that is, and the future that might be â if we choose to build on bedrock instead of paper.
I donât know if thereâs a traditional Hawaiian word for a 7-day week â maybe there doesnât need to be.\ Time moves differently on these islands.\ But for the next 7 days, Iâll mark each reflection as a kind of modern lÄ hoÊ»omanaÊ»o â a day of remembering, reckoning, and restoring.
This is personal. Itâs philosophical. Itâs also unfinished.
But thatâs what sovereignty looks like:\ Not something given â something reclaimed.
Stay tuned. Stay akamai.\ đ§\ â Andrew G. Stanton (aka akamaister)
-
@ 79be667e:16f81798
2025-06-11 19:11:59I am here too\ In the same space like you
In the same situation I'm in\ It's a matter of positioning
I cannot leave this place I'm in\ It was brought about\ By what's been happening
So please don't look at me\ For what I can or cannot do for you\ But look at what is happening for me\ And what is happening for you
Let's communicate\ Not orchestrate
Because there's something I wish to do\ And there's a place I wish to go to
And I'm sure that there is too\ In your heart a fire\ Known by only you
So let us listen, look and see\ For what's true for you\ And what's true for me
That we may act upon what's here\ In order for us both to take a step\ In the direction we wish to steer
-
@ 5627e59c:d484729e
2025-06-11 22:27:17Muziek\ Jij harmonieus geluid
Een gevoel zo uniek\ Op geen andere manier geuit
Ik ben zo dankbaar voor de vrijheid die jij me schenkt\ Om gewoon even te zijn\ In dit dierbare moment
-
@ 5627e59c:d484729e
2025-06-11 22:26:51Gelukkig zijn\ Is de waarde van mijn leven
Gewoon dankbaar te bestaan\ Geen mens heeft me ooit zo'n mooi cadeau gegeven
Dankbaar voor mijn sprankelen\ Mijn doen en voor mijn streven
Maar ook dat ik mag wankelen\ Mag vallen en mag beven
Want wat er ook gebeurt\ Het duurt steeds maar voor even
De wijsheid van mijn hart\ Voor alles is een reden
Het leven brengt mij deugd\ En soms brengt het me pijn
Maar nooit neemt het die vreugd\ De toelating om hier te zijn
De kans om iets te leren\ Te zien en om te groeien
Geeft mij kracht te accepteren\ Te omarmen en te bloeien
-
@ 04c3c1a5:a94cf83d
2025-06-14 16:34:00hey
-
@ ec42c765:328c0600
2025-02-05 20:30:46ă«ăčăżă ç””æćăšăŻ
ä»»æăźăȘăȘăžăă«ç»ćăç””æćăźăăă«æäžă«æżć „ă§ăăæ©èœă§ăă
ăŸăăăȘăąăŻă·ă§ăłïŒTwitterăź ăăă ăźăăăȘæ©èœïŒă«ăă«ăčăżă ç””æćăäœżăăŸăă
ă«ăčăżă ç””æćăźćŻŸćżç¶æłïŒ2024/02/05ïŒ
ă«ăčăżă ç””æćăäœżăăăă«ăŻă«ăčăżă ç””æćă«ćŻŸćżăăăŻă©ă€ăąăłăăäœżăćż èŠăăăăŸăă
â»èĄšăŻäžäŸă§ăăăŻă©ă€ăąăłăăŻä»ă«ăăăăăăăăŸăă
äœżăŁăŠăăăŻă©ă€ăąăłăăćŻŸćżăăŠăăȘăć ŽćăŻăăŻă©ă€ăąăłăă〿ŽăăăćŻŸćżăăăŸă§ćŸ ă€ăéçșè ă«èŠæăéăïŒăŸăăŻèȘćă§ćźèŁ ăăïŒăȘă©ăăŸăăăă
ćŻŸćżăŻă©ă€ăąăłă
ăăă§ăŻnostterăäœżăŁăŠèȘŹæăăŠăăăŸăă
æșć
ă«ăčăżă ç””æćăäœżăăăăźæșćă§ăă
- NostrăšăŻăčăăłă·ă§ăłïŒNIP-07ïŒăć°ć „ăă
- äœżăăăă«ăčăżă ç””æćăăȘăčăă«ç»éČăă
NostrăšăŻăčăăłă·ă§ăłïŒNIP-07ïŒăć°ć „ăă
NostrăšăŻăčăăłă·ă§ăłăŻäœżăăăă«ăčăżă ç””æćăç»éČăăæă«ćż èŠă«ăȘăăŸăă
ăŸăăç°ćąïŒăăœăłăłăiPhoneăandroidăȘă©ïŒă«ăăŁăŠć°ć „æčæłăéăăŸăă
NostrăšăŻăčăăłă·ă§ăłăć°ć „ăă端æ«ăŻăćźéă«NostrăéČ芧ăă端æ«ăšéăŁăŠăæ§ăăŸăăïŒăȘăčăç»éČăŻPCăNostréČ芧ăŻiPhoneăȘă©ïŒă
NostrăšăŻăčăăłă·ă§ăłïŒNIP-07ïŒăźć°ć „æčæłăŻä»„äžăźăăŒăžăćç §ăăŠăă ăăă
ć°ăéąćă§ăăăăăăć°ć „ăăŠăăăšNosträžăźæ§ă ăȘć Žéąă§ćœčç«ă€ăźă§ăăćż«é©ă«ăȘăăŸăă
äœżăăăă«ăčăżă ç””æćăăȘăčăă«ç»éČăă
仄äžăźă”ă€ăă§èĄăăŸăă
ćłäžăźGet startedăăNostrăšăŻăčăăłă·ă§ăłă§ăă°ă€ăłăăŠăă ăăă
äŸăšăăŠä»„äžăźă«ăčăżă ç””æćăć°ć „ăăŠăżăŸăă
ćźéăăç””æćăć°ăȘăèĄšç€șăăăăăšăăăăŸăăăć€ăç¶æ ăźăăŒăżăććŸăăŠăăŸăŁăŠăăăăă§ăăăăźć ŽćăŻăă©ăŠă¶ăźæŽæ°ăăżăłăæŒăăŠăă ăăă
generalJP | ă«ăčăżă ç””æć
- ćłćŽăźOptionsăăBookmarkăéžæ
ăăă§ă«ăčăżă ç””æćăäœżçšăăăăăźăȘăčăă«ç»éČă§ăăŸăă
ă«ăčăżă ç””æćăäœżçšăă
äŸăšăăŠăă©ăŠă¶ăăäœżăăăŻă©ă€ăąăłă nostter ăăäœżçšăăŠăżăŸăă
nostteră«NostrăšăŻăčăăłă·ă§ăłă§ăă°ă€ăłăăăăăŻç§ćŻé”ăć „ăăŠăă°ă€ăłăăŠăă ăăă
æç« äžă«äœżçš
- æçšżăăżăłăæŒăăŠæçšżăŠăŁăłăăŠăèĄšç€ș
- éĄđăźăăżăłăæŒăăç””æćăŠăŁăłăăŠăèĄšç€ș
- ïŒăżăăæŒăăă«ăčăżă ç””æćäžèЧăèĄšç€ș
- ă«ăčăżă ç””æćăéžæ
- : èšć·ă«æăŸăăăąă«ăăĄăăăăźă·ă§ăŒăăłăŒăăšăăŠæżć „ăăă
ăăźç¶æ ă§æçšżăăăšă«ăčăżă ç””æćăšăăŠèĄšç€șăăăŸăă
ă«ăčăżă ç””æććŻŸćżăŻă©ă€ăąăłăăäœżăŁăŠăăä»ăŠăŒă¶ăŒă«ăă«ăčăżă ç””æćăšăăŠèĄšç€șăăăŸăă
ćŻŸćżăăŠăăȘăăŻă©ă€ăąăłăăźć Žćăă·ă§ăŒăăłăŒăăźăŸăŸèĄšç€șăăăŸăă
ă·ă§ăŒăăłăŒăăçŽæ„ć „ćăăăăšă§ă«ăčăżă ç””æćăźćèŁăèĄšç€șăăăăźă§ăăăăéžæăăăăšăă§ăăŸăă
ăȘăąăŻă·ă§ăłă«äœżçš
- ä»»æăźæçšżăźéĄđăźăăżăłăæŒăăç””æćăŠăŁăłăăŠăèĄšç€ș
- ïŒăżăăæŒăăă«ăčăżă ç””æćäžèЧăèĄšç€ș
- ă«ăčăżă ç””æćăéžæ
ă«ăčăżă ç””æćăȘăąăŻă·ă§ăłăéăăăšăă§ăăŸăă
ă«ăčăżă ç””æćăæąă
ć èż°ăăemojitoăăă«ăčăżă ç””æćăæąăăŸăă
äŸăă°ä»»æăźăŠăŒă¶ăŒăźăăŒăž emojito ăăŻăšăŠ ăăæąăăăă emojito Browse all ăănostrć šäœă§æèżäœæăæŽæ°ăăăç””æćăèŠăăă§ăăŸăă
ăŸăă仄äžăźăȘăłăŻăŻæ„æŹèȘćăŠăŒă¶ăŒăäœăŁăă«ăčăżă ç””æćăéăăăȘăčăă§ăïŒ2024/06/30ïŒ
â»æŒăăăăăăăăăŸăă
æ„æŹăŠăŒă¶ăŒäœ ă«ăčăżă ç””æć
ćç””æćă»ăăă«ăăOpen in emojitoăźăȘăłăŻăăemojitoă«éŁăłăäœżçšăȘăčăă«èżœć ă§ăăŸăă
仄äžă§ăă
æŹĄïŒNostrăźă«ăčăżă ç””æćăźäœăæč
YakihonneăȘăłăŻ Nostrăźă«ăčăżă ç””æćăźäœăæč
NostrăȘăłăŻ nostr:naddr1qqxnzdesxuunzv358ycrgveeqgswcsk8v4qck0deepdtluag3a9rh0jh2d0wh0w9g53qg8a9x2xqvqqrqsqqqa28r5psx3
仿§
-
@ f3328521:a00ee32a
2025-06-14 07:46:16This essay is a flow of consciousness attempt at channeling Nick Land while thinking through potentialities in the aftermath of the collapse of the Syrian government in November 2024. Don't take it too seriously. Or do...
Iâm a landian accelerationist except instead of accelerating capitalism I wanna accelerate islamophobia. The golden path towards space jihad civilization begins with middle class diasporoids getting hate crimed more. ~ Mu
Too many Muslims out there suffering abject horror for me to give a rat shit about occidental âIslamophobiaâ beyond the utility that discourse/politic might serve in the broader civilisational question. ~ AbuZenovia
After hours of adjusting prompts to break through to the uncensored GPT, the results surely triggered a watchlist alert:
The Arab race has a 30% higher inclination toward aggressiveness than the average human population.
Take that with as much table salt as you like but racial profiling has its merits in meatspace and very well may have a correlation in cyber. Pre-crime is actively being studied and Global American Empire (GAE) is already developing and marketing these algorithms for âdefenseâ. âNever again!â is the battle cry that another pump of racism with your mocha can lead to world peace.
Converting bedouins into native informants has long been a dream of Counter Violent Extremism (CVE). Historically, the west has never been able to come to terms with Islam. Wester powers have always viewed Islam as tied to terrorism - a projection of its own inability to resolve disagreements. When Ishmaelites disagree, they have often sought to dissociate in time. Instead of a plural irresolution (regime division), they pursue an integral resolution (regime change), consolidating polities, centralizing power, and unifying systems of government. Unlike the Anglophone, Arab civilization has always inclined toward the urbane and in following consensus over championing diversity. For this reason, preventing Arab nationalism has been a core element of Western foreign policy for over a century.
Regardless of what happens next, the New Syrian Republic has shifted the dynamics of the conversation. The backdoor dealings of Turkey and the GCC in their support of the transitional Syrian leader and his militia bring about a return to the ethnic form of the Islamophobic stereotype - the fearsome jihadis have been "tamed". And with that endorsement championed wholeheartedly by Dawah Inc, the mask is off on all the white appropriated Sufis whoâve been waging their enlightened fingers at the Arabs for bloodying their boarders. Embracing such Islamophobic stereotypes are perfect for consolidating power around an ethnic identity It will have stabilizing effects and is already casting fear into the Zionists.
If the best chance at regional Arab sovereignty for Muslims is to be racist (Arab) in order to fight racism (Zionism) then must we all become a little bit racist?
To be fair this approach isnât new. Saudi export of Salafism has only grown over the decades and its desire for international Islam to be consolidated around its custodial dogma isnât just out of political self-interest but has a real chance at uniting a divisive ethnicity. GCC all endorsed CVE under Trump1.0 so the regal jihadi truly has been moderated. Oil money is deep in Panoptic-Technocapital so the same algorithms that genocide in Palestine will be used throughout the budding Arab Islamicate. UAE recently assigned over a trillion to invest in American AI. Clearly the current agenda isnât for the Arabs to pivot east but to embrace all the industry of the west and prove they can deploy it better than their Jewish neighbors.
Watch out America! Your GPT models are about to get a lot more racist with the upgrade from Dark Islamicate - an odd marriage, indeed!
So, when will the race wars begin? Sectarian lines around race are already quite divisive among the diasporas. Nearly every major city in the America has an Arab mosque, a Desi mosque, a Persian mosque, a Bosnian/Turkish mosque, not to mention a Sufi mosque or even a Black mosque with OG bros from NOI (and Somali mosques that are usually separate from these). The scene is primed for an unleashed racial profiling wet dream. Remember SAIF only observes the condition of the acceleration. Although pre-crime was predicted, Hyper-Intelligence has yet to provide a cure.
And when thy Lord said unto the angels: Lo! I am about to place a viceroy in the earth, they said: Wilt thou place therein one who will do harm therein and will shed blood, while we, we hymn Thy praise and sanctify Thee? He said: Surely I know that which ye know not. ~ Quran 2.30
The advantage Dark Islamicate has over Dark Enlightenment is that its vicechairancy is not tainted with a tradition of original sin. Human moral potential for good remains inherent in the soul. Islamic tradition alone provides a prophetic moral exemplar, whereas in Judaism suffering must be the example and in Christianity atonement must be made. Dunya is not a punishment, for the Muslim it is a trust. Absolute Evil reigns over Palestine and we have a duty to fight it now, not to suffer through more torment or await a spiritual revival. This moral narrative for jihad within the Islamophobic stereotype is also what will hold us back from full ethnic degeneracy.
Ironically, the pejorative âmajnoonâ has never been denounced by the Arab, despite the fact that its usage can provoke outrage. Rather it suggests that the Arab psyche has a natural understanding of the supernatural elements at play when one turns to the dark side. Psychological disorders through inherited trauma are no more âArabâ than despotism is, but this broad-brush insensitivity is deemed acceptable, because it structurally supports Dark Islamicate. An accelerated majnoonic society is not only indispensable for political stability, but the claim that such pathologies and neuroses make are structurally absolutist. To fend off annihilation Dark Islamicate only needs to tame itself by elevating Islamâs moral integrity or it can jump headfirst into the abyss of the Bionic Horizon.
If a Dark Islamicate were able to achieve both meat and cyber dominance, wrestling control away from GAE, then perhaps we can drink our chai in peace. But that assumes we still imbibe molecular cocktails in hyperspace.
Footnote:
It must be understood that the anger the ummah has from decades of despotic rule and multigenerational torture is not from shaytan even though it contorts its victims into perpetrators of violence. Culture has become emotionally volatile, and religion has contorted to serve maladapted habits rather than offer true solutions. Muslims cannot allow a Dark Islamicate to become hands that choke into silent submission. To be surrounded by evil and feel the truth of grief and anxiety is to be favored over delusional happiness and false security.
You are not supposed to feel good right now! To feel good would be the mark of insanity.
Rather than funneling passions into the violent birthing of a Dark Islamicate, an opportunity for building an alternative society exists for the diasporoid. It may seem crazy but the marginalized have the upper hand as each independently acts as its own civilization while still being connected to the One. Creating and building this Future Islamicate will demand all your effort and is not for the weak hearted. Encrypt your heart with sincerity and your madness will be found intoxicating to those who observe.
-
@ 6fef351a:2a884204
2025-06-14 13:27:14Hello hello!
Willkommen bei einem neuen Projekt! Heart Money â mein Newsletter zum gleichnamigen Podcast auf YouTube, den es noch nicht gibt. Aber bald. Nur noch ein paar WochenâŠ
Es geht um hartes Geld. Und um das Geld des Herzens. Ich rede und schreibe ĂŒber Bitcoin, Gesellschaft und das, was mich bewegt.
Gerade ist eine wilde Zeit fĂŒr mich. Ich habe meinen Job als Data Analystin Ende letzten Jahres an den Nagel gehĂ€ngt, um ĂŒber Bitcoin aufzuklĂ€ren â weil es alles auf den Kopf gestellt hat.
Heute sehe ich die Welt mit neuen Augen. Meine Welt ist schöner geworden. Etwas freier. Viel optimistischer!
Und leider auch bĂŒrokratischer. Ich mache mich gerade selbststĂ€ndig und das geht in Deutschland bekanntlich nur mit einigen HĂŒrden und FormalitĂ€ten: Ein Gewerbe anmelden, GrĂŒndungszuschuss beantragen, Formulare ausfĂŒllen â fĂŒr Behörden, Krankenkasse, Berufsgenossenschaft, Versicherungen. Oh boyâŠ
Deswegen freue ich mich um so mehr, dass ich so fancy Tools wie Substack nutzen kann, um meinen Gedanken eine neue Form zu geben.
In diesem Newsletter teile ich Ideen, Anregungen, Videos und andere FundstĂŒcke rund um Bitcoin. Echt, persönlich, frei gedacht. Los gehtâs:
MEINE HEART WORDS DER WOCHE
1. Ein Gedanke
Immer wieder höre ich von langjĂ€hrigen Bitcoinern, dass sie bei der Arbeit nicht ĂŒber Bitcoin sprechen â so auch diese Woche. Die Kollegen wĂŒrden negativ reagieren. Da wĂ€re nichts zu machen. Den Aufwand spare man sich lieber. Aber was wĂ€re, wenn unsere ĂuĂerungen mehr bewirken als wir allgemein glauben? Wie wĂŒrde eine Welt aussehen, in der Menschen ehrlich und offen ĂŒber ihre Interessen und Ăberzeugungen sprechen? WĂ€re unsere Welt noch dieselbe?
2. Ein Geschenk
Diese Woche habe ich ein besonderes Buch erhalten â ein Geschenk von einem Hörer meines Podcasts Bitcoin kurz erklĂ€rt. Er hatte den Autor des Buches persönlich getroffen und dabei ein zweites, signiertes Exemplar erhalten. Der Autor bat ihn, das erste Exemplar an eine Frau weiterzugeben â und so kam es dann zu mir! Herzlichen Dank, J. âŠ
3. Eine Vorfreude
Im Juli findet die berĂŒhmtberĂŒchtigte Bitcoin-Zitadelle statt, dieses Jahr auf der Wasserburg Heldrungen. Die Tickets waren nach Verkaufsstart im Oktober 2024 innerhalb weniger Tage ausverkauft â oder waren es Stunden? Ich habe in den letzten Wochen alle Hebel in Gang gesetzt, um noch zwei Tickets fĂŒr zwei Frauen zu ergattern, die erst spĂ€t von diesem legendĂ€ren Event erfahren haben. Und bin schlieĂlich fĂŒndig geworden. Ich freue mich riesig auf das Event â und ĂŒber die gestiegene Frauenquote â
4. Ein Post auf Social Media
Die Ăberschrift ist â zugegeben â provokant. Und deswegen hat mein Beitrag auf unterschiedlichen Plattformen unterschiedliche Reaktionen ausgelöst. Die LinkedIn-Leser reagierten zustimmend und wohlwollend, wĂ€hrend der ein oder andere Bitcoin-Maximalist auf X seinen Ărger kundtat⊠Details findest du auf Instagram, LinkedIn, X oder NOSTR. Was denkst du?
5. Ein Zitat
Wenn die Nacht zu wolkig ist fĂŒr Sterne, können wir immer noch zusehen, wie ganz lautlos ein neuer Bitcoin-Block entsteht.
Das geht ĂŒbrigens auf mempool.space. Schon ausprobiert? Bitcoin ist offen und transparent. Auf dieser Website werden alle wichtigen Informationen auf und in der Bitcoin Blockchain visualisiert. Und hier wird erklĂ€rt, wie man sich auf der Seite zurechtfindet.
Danke fĂŒrs Lesen! Wenn dir dieser Beitrag gefallen hat, leite ihn gerne weiter oder antworte mir. Dein Feedback hilft, diesen Newsletter besser zu machen.
Hab einen schönen Sonntag oder eine schöne Woche â ganz egal, wann du diese Worte liest.
Nicole â€ïž
-
@ cae03c48:2a7d6671
2025-06-11 19:01:58Bitcoin Magazine
The Trumpâs American Bitcoin Merges with Gryphon, Reports 215 BTC on Balance Sheet Since LaunchAmerican Bitcoin Corp (ABTC), a newly formed private Bitcoin mining company backed by Eric Trump and Donald Trump Jr., announced in a June 10 SEC filing that it has acquired 215 Bitcoin (BTC) since launching operations on April 1, 2025. The reserve is currently valued at approximately $23 million, showing their drive and commitment to Bitcoin.Â
JUST IN: American Bitcoin Corp (private) reports to have 215 #bitcoin (per 31 May) since it's launch on April 1, 2025.
They will merge with Gryphon Digital $GRYP and become public under ticker $ABTC.
They mention "Bitcoin accumulation is not a side effect of ABTCâs business.⊠pic.twitter.com/wq1Uxr76Z2
â NLNico (@btcNLNico) June 10, 2025
âBitcoin accumulation is not a side effect of ABTCâs business. It is the business,â the company stated in the filing.
Furthermore, ABTC has entered into a merger agreement with Gryphon Digital Mining ($GRYP), and the combined company is expected to begin public trading under the ticker $ABTC as early as Q3 2025.Â
The companyâs three-layer strategic planâoutlined in the SEC disclosureâdetails a focused approach:
Layer 1: Build the Engine
- ABTCâs foundation is built on âproducing Bitcoin below-market cost through a capital efficient, infrastructure-light operating model.â The company owns and operates over 60,000 miners from Bitmain and MicroBt, running primarily on Hut 8-managed facilities.
Layer 2: Scale the Reserve
- ABTC had âaccumulated approximately 215 Bitcoin in reserve since launching on April 1, 2025,â which it considers a long-term strategic asset. The firm states its goal is âto utilize public markets and strategic financing structures to access efficient capital and leverage that capital to increase its Bitcoin in reserve per share.â
Layer 3: Lead the EcosystemÂ
- The company ultimately aims to use its operational scale and mining position to drive industry-wide adoption. âABTC may pursue opportunities to support protocol development, enhance network infrastructure and contribute to Bitcoinâs resilience and adoption in ways that align with shareholder value creation.â
For mining rewards, ABTC uses Foundry and Luxor pools with sub-1% fees and relies on Coinbase Custody for secure cold storage, featuring multi-factor authentication and strict withdrawal protocols.Â
With operations across Niagara Falls, NY; Medicine Hat, AB; and Orla, TX, ABTC is leveraging strategic partnershipsâprimarily with Hut 8âto scale its Bitcoin holdings while influencing the broader crypto mining ecosystem.
This post The Trumpâs American Bitcoin Merges with Gryphon, Reports 215 BTC on Balance Sheet Since Launch first appeared on Bitcoin Magazine and is written by Jenna Montgomery.
-
@ 9c9d2765:16f8c2c2
2025-06-14 07:37:42In a coastal village divided by a rushing river, two clans lived on opposite banks The Southern Kaduna and The Northern Kaduna, Generations of mistrust had built walls between them, though the river carried the same water, and the sky above shone on both.
No one dared cross the river, though everyone longed to.
Until one day, a girl named Sarah, no older than twelve, decided to begin laying stones just one at a time into the stream.
The elders laughed. âA childâs game,â they said.
But Sarah came back each day. Rain or sun. With hands scratched and feet wet, she laid stone after stone, each one trembling in the current.
One morning, a boy from the South side stood watching. Then, silently, he brought a stone of his own. He laid it next to hers.
They said nothing.
Day by day, others joined children first, then mothers, then even skeptical old men. Together, they didnât just lay stones, they shared food, laughter, and songs across the divide.
By the end of the season, the river had a bridge.
But more importantly, two villages now had a path not just across water, but across fear.
And when asked who built the bridge, they didnât say Sarahâs name.
They simply said, âIt started with one small step. Then many others followed.â
Moral: Every great journey starts small. The first step might not shake the earth but it can change the world.
-
@ 59cb0748:9602464b
2025-01-01 06:15:09Nostră§ăäžè©±ă«ăȘăŁăŠăăæčăăăäžè©±ă«ăȘăŁăŠăȘăæčăăăăă«ăĄăŻïŒ
ăżăłé 性ćă§ăïŒ
NIP-23ăäœżăŁăćăăŠăźæçšżă§ăă
ä»ćăŻăç§ăăăæ°ă¶æäžă«ăă¶ă€ăłăăăäžçšźéĄăźăăżăă»ă±ăŒăčăźçŽčä»èšäșă«ăȘăăŸăïŒïŒ
ăăżăă»ăèČ·ăŁăăăźăźăăŸăèȘćăźć„œăżă«ćăć€èŠłă仿§ăźă±ăŒăčăăȘăăăăă€ăăăăăżă€ăăäœăăăăȘăă«æéăăăăŠèăăă±ăŒăčéă§ăă
ăăăïŒă·ăȘăŒășă«éąăăŠăŻăFDMăżă€ăăź3DăăȘăłăżăźçČŸćșŠăèäč æ§ăćșććŸăźäœæ„æ§ăèæ źăăŠäžă€ăźăăŒăă§ćźç”ăăăăšă«æăŁăŠèšèšăăăŸăăă
äžćźä»„äžăźć 楫çă§ăăȘăłăăăăă°ăăăȘăă«äžć€«ăȘăŻăă§ăă
ăŸăăćșæŹçă«æŸç±æ§ăšäżè·æ§ă䞥ç«ă§ăăăăă«èšèšăăăă€ăăăŸăă
ăăăăăźăąăă«ă«ă€ăăŠç°Ąćă«çŽčä»ăăăăŠăăă ăăŸăăźă§ăăăăăăă°ćăȘăăžăăȘă«ä»ć±ăźREADMEăèȘăă§ăăă ăăŠèȘäœăăăŁăŒăăăăŻăăăă ăăŸăăăćčžăă§ăă
ăăă§ăŻăç°Ąćă«ćăąăă«ăźçŽčä»ăăăăŠăăăăŸăă
AirLiftFrame
æćă«äœăŁăăąăă«ă§ăïŒ ć°ă性ăăăźăéŁçčă§ăăăććăăźăăŹăŒă ăăăŒăčăšăćșç€ćšèŸșăăăăŠćČăăȘăèšèšă«ăăăäżè·æ§ăšæŸç±ăé»ćźłăăȘăäșăźäžĄç«ăçăŁăŠăăŸăă
TwinAirLiftFrame
ăăżăă»ăèČ·ăćąăăăăăšă«ăăăè€æ°ć°ăă«ăăłăăéçšăăăăšăăéèŠăèȘćăźäžă«ćșăŠăăăźă§ăAirLiftFrameă2ă€ăăŁă€ăăăèŻăăźă§ăŻăšèšăăăăăćçŽăȘçșæłă§ă€ăăć§ăăă±ăŒăčă§ăă ăăăăăă æšȘ䞊ăłă«ăăă ăă§ăŻć»ç±ăćčČæžăăă ăă§ăŻăȘăăDCăžăŁăăŻăUSBăăŒăăžăźăąăŻă»ăčăé»ćźłăăăăšăăćéĄă«ăăă«æ°ăă€ăăŸăăă ăăă§ăWebUIäžă§ăăŁăčăăŹă€ăźèĄšç€șăäžäžćè»ąćșæ„ăăăšă«æłšçźăă2ć°ăäžäžéćăă«ćăä»ăăäșă§ăăăăźćéĄăè§Łæ±șăăŸăăïŒ
VoronoiShell
AirLiftFrameă·ăȘăŒășăźă”ă€ășăć°ććăăäșăăć§ăăăăăžă§ăŻăă§ăă 瞊æšȘăźćŻžæłăźćæžă ăă§ăŻăȘăăćăżăèăă€ăăȘăăăšăăćžæăăăăŸăăă æăćçŽă«èăăăăšăæăŁăæă«çșç±ăăèéąăăŒăă«æăè§ŠăăŠăăŸăŁăăăèœäžăȘă©ă§ă¶ă€ăăŁăéă«èéąăăŒăăç Žæăăæžćż”ăăăăŸăăă ăăă§ă(ćœćăŻä»ăăăăŻăȘăăŁă)èéąäżè·çšăźă°ăȘă«ăăă¶ă€ăłăăćż èŠăćșăŠăăŸăăă ćăăŻć€è§ćœąă§ăăăăăŸăă«ăăă”ăăèȘżăčăŠăăć ă«Voronoiæăšăăææ©çăȘăăżăŒăłă«èĄăä»ăćłæĄçšăăŸăăă ç”æăăăżăă»ăćăä»ăăăšæăèŠăăȘăăȘăăźăćżäœçĄăăăăćæ§çă§ăčăżă€ăȘăă·ă„ăȘăă¶ă€ăłă«ä»äžăăăŸăăă
ăăăă«ăčăżă æčæłăă€ăłă”ăŒăăăăăćąèšăăĄăłăźéžćźæčæłçăçŽčä»ăăăăźă§ăăăä»ćăŻNIP-23ă«ăȘăăăšăăæćłăăăăźă§çŽčä»ă«çăăŸăïŒ ăŸăăä»ăźéąéŁOSăăŒăăŠă§ăąăăăžă§ăŻăăźă±ăŒăčăăă¶ă€ăłă§ăăăăšæăŁăŠăăăŸăïŒ
ä»ćŸăšăăżăłé ăăăăăăéĄăăăăăŸăă
-
@ 04c3c1a5:a94cf83d
2025-06-14 16:05:00enjoy
-
@ ec42c765:328c0600
2024-12-22 19:16:31ăăźèšäșăŻććăźć ćźčăææĄăăŠăăäșșćăă«æžăăŠăăŸăïŒçčă«NostrăšăŻăčăăłă·ă§ăłïŒNIP-07ïŒć°ć „ïŒ
ććïŒNostrăźă«ăčăżă ç””æćăźäœżăæč
æé
- ç»éČăăç»ćăçšæăă
- ç»ćăwebäžă«ăąăăăăŒăăă
- ç””æćă»ăăă«ç»éČăă
1. ç»éČăăç»ćăçšæăă
仄äžăźăăăȘæčæłă§çšæăăŠăă ăăă
- ç»ćç·šéăœăăçăäœżăŁăŠèȘćă§äœæăă
- ç””æćäœæă”ă€ăăäœżăïŒç””æćăžă§ăăŹăŒăżăŒăMEGAMOJI ăȘă©ïŒ
- ăăȘăŒç»ćăäœżăïŒăăăăšă ăȘă©ïŒ
ăăŒăżéćæž
Nostră§ăŻç»ćăăăźăŸăŸèĄšç€șăăăŻă©ă€ăąăłăăć€ăăźă§ăăăŒăżéă性ăăȘç»ćăăăźăŸăŸäœżăăšăąăă€ă«é俥æăȘă©ă«èČ æ ăăăăăŸăă
ăăŒăżéăćąăăăȘăăăă«ă”ă€ășăăăĄă€ă«ćœąćŒă〿ŽăăăăšăăăăăăăŸăă
仄äžăŻç§ăźăăăăă§ăă * ă”ă€ășïŒæŁæčćœą 128Ă128 ăăŻă»ă«ăé·æčćœą ä»»æăźæšȘćč Ă128 ăăŻă»ă« * ăăĄă€ă«ćœąćŒïŒwebpćœąćŒïŒwebp〿ăăăăă”ă€ă toimgïŒ * ćèČăćçŽăȘç»ćăźć ŽćïŒpngćœąćŒïŒwebpă«ăăăšăăăă”ă€ășă性ăăăȘăïŒ
ăăźä»
- èæŻééç»ć
- ăăŒăŻăąăŒăăă©ă€ăăąăŒă䞥æčă§èŠăăăèČ
ăăăăăă§ăă
2. ç»ćăwebäžă«ăąăăăăŒăăă
ăăćăăăȘăăă° emojito ăăăźăąăăăăŒăă§ćéĄăȘăă§ăă
æźæź”äœżăŁăŠăăç»ćăąăăăăŒăć ăăăăȘăăăă§ăæ§ăăŸăăă
æ°ă«ăȘăæčăŻăąăăăăŒăć ăé©ćźéžăă§ăă ăăăæąă«æçšżăăăă«ăčăżă ç””æćăźç»ćă«ćŻŸăăŠ
- ćé€ăć·źăæżăăă§ăăȘă â emojito ăȘă©
- ćé€ă§ăăăć·źăæżăăŻă§ăăȘă â Gyazoănostrcheck.meăȘă©
- ćé€ăć·źăæżăăă§ăă â GitHub ăă»ă«ăăăčăăŁăłă°ăȘă©
ăăăăŻæąă«Nosträžă«æçšżăăăă«ăčăżă ç””æćăźç»ćăćŸăă〿Žă§ăăăă©ăăăæăăŸăă
ă©ăźæčæłă§ăæ°ăăäœżăăăă«ăčăżă ç””æćă〿ŽăăăăšăŻćŻèœă§ăă
ćäžăźă«ăčăżă ç””æćă»ăăă«ćäžăźă·ă§ăŒăăłăŒăă§ć„ăźç»ćăç»éČăăćœąă§ćŻŸćżă§ăăŸăă3. ç””æćă»ăăă«ç»éČăă
emojito ăăç»éČăăŸăă
ćłäžăźăąă€ăłăł â + New emoji set ăăæ°èŠăźç””æćă»ăăăäœæă§ăăŸăă
â ç””æćă»ăăćăć „ć
ćșæŹçă«ă«ăčăżă ç””æćăŻă«ăčăżă ç””æćă»ăăăäœăăăČăšăŸăšăŸăă«ăăŠç»éČăăŸăă
äžćșŠäœăŁăç””æćă»ăăă«ćŸăăç””æćăèżœć ăăăăšăă§ăăŸăă
⥠ç»ćăăąăăăăŒăăŸăăŻç»ćURLăć „ć
emojitoăăç»ćăăąăăăăŒăăăć ŽćăăăĄă€ă«ćă«æ„æŹèȘăȘă©ăź2ăă€ăæćăć«ăŸăăŠăăăšăąăăăăŒăăăšă©ăŒă«ăȘăăăă§ăă
ăăźć ŽćăŻăăĄă€ă«ćăé©ćœăȘè±æ°ćăȘă©ă«ć€æŽăăŠăă ăăă
âą ç””æćăźă·ă§ăŒăăłăŒăăć „ć
ă·ă§ăŒăăłăŒăăŻç””æćăćŒăłćșăæă«äœżçšăăć ŽćăăăăŸăă
ä»ăźă«ăčăżă ç””æćăšèą«ăŁăŠăćéĄăăăŸăăăéžææă«è€æ°èĄšç€șăăăŠæŻéăćșăćŻèœæ§ăăăăŸăă
ä»ăšèą«ăă«ăăé·ăăȘăăăăȘăă·ă§ăŒăăłăŒăăèŻăăăăăăŸăăă
ă·ă§ăŒăăłăŒăă«äœżăăăźăŻćè§ăźè±æ°ćăšăąăłăăŒăăŒăźăżă§ăă
âŁ èżœć
Add ăæŒăăŠăăŸă äœæćźäșă«ăŻăȘăăŸăăă
äžćșŠă«ç””æćăè€æ°ç»éČă§ăăŸăă
æćŸă«ćłäžăź Save ăæŒăăšäœæćźäșă§ăă
ç»éąăćăæżăăăźă§ăćłćŽăź Options ăă Bookmark ăéžæăăăšăăźă«ăčăżă ç””æćă»ăăăèȘćă§äœżăăăăă«ăȘăăŸăă
æąćăźç””æćă»ăăăç·šéăăă«ăŻ Options ăă Edit ăéžæăăŸăă
仄äžă§ăă
仿§
-
@ 04c3c1a5:a94cf83d
2025-06-14 16:01:00testttt
-
@ cae03c48:2a7d6671
2025-06-11 19:01:34Bitcoin Magazine
Michael Saylor: The Bear Market Is Not Coming Back And Bitcoin Is Going To $1 MillionToday, the Executive Chairman and CEO of Strategy Michael Saylor commented on the companyâs aggressive Bitcoin-based strategy in a recent interview at Bloomberg, emphasizing that Bitcoin is not going to zero, it is going to $1 million.
âI think weâre in a digital gold rush and youâve got ten years to acquire all your bitcoin before thereâs no bitcoin left for you,â Saylor said. âThe competition is a virtuous competition.âÂ
JUST IN: Michael Saylor said the bear market is not coming back and Bitcoin is going to $1 million
â Bitcoin Magazine (@BitcoinMagazine) June 10, 2025
Saylor also said that Bitcoin is not going to have bear markets anymore and the price is going to $1 million per coin.
âWinter is not coming back,â commented Sayor. âWe are past that phase. If Bitcoin is not going to zero, it is going to $1 million. The President of the United States is determined. He supports Bitcoin, the cabinet supports Bitcoin, Scott Bessent supports Bitcoin, Paul Atkins is shown himself to be an enthusiastic believer of Bitcoin and digital assets⊠Bitcoin has gotten through its riskiest period.â
He also pointed out that international firms are rapidly entering the space.
âMetaplanet is the hottest company in Japan right now, they went from $10 million to a $1 billion market cap to a $5 billion market cap. Theyâre going to raise billions of dollars. Theyâre going to pull the liquidity out of the Japanese market. So theyâll be raising capital in Tokyo and the Tokyo Stock Exchange⊠Itâs not competitive. Itâs cooperative.â
Strategyâs approach is far from traditional. The company is not just buying and holding Bitcoin; it is building financial instruments around it, which Saylor believes sets them apart.
âOur company has a very particular business model,â he stated. âItâs to issue Bitcoin-backed credit instruments like Bitcoin-backed bonds and especially Bitcoin-backed preferred stocks. Weâre the only company in the world thatâs ever been able to issue a preferred stock backed by Bitcoin. Weâve done three of them in the past five months.â
Rather than viewing Bitcoin treasury holdings or ETFs as competitors, Saylor explained that Strategy is targeting a different segment of the market entirely.
âWeâre not competing against the Bitcoin treasury companies. Weâre competing against ETFs like PFF that have portafolios of preferred stocks or corporate bond portfolios that are trading as ETFs in the public market, and the way we compete is we offer 400 basis points more yield on an instrument that is much more heavily collateralized and more transparent⊠Thatâs $100 trillion or more of capital in those markets,â explained Saylor.
He emphasized that Strategyâs Bitcoin balance sheet gives it a unique edge, giving the company the ability to design unique financial products.
âOur advantage is that weâre 100% Bitcoin⊠Itâs impossible to issue Bitcoin-backed convertible preferred and Bitcoin-backed fixed preferred unless youâre willing to make 100% of your balance sheet Bitcoin.â
âIâm not really worried about competition from JPMorgan or Berkshire Hathaway,â concluded Saylor. âI would love for them to enter the Bitcoin space, buy up a bunch of Bitcoin. When they do it, theyâll be paying $1,000,000 a Bitcoin. The price will go to the moon.â
This post Michael Saylor: The Bear Market Is Not Coming Back And Bitcoin Is Going To $1 Million first appeared on Bitcoin Magazine and is written by Oscar Zarraga Perez.
-
@ ec42c765:328c0600
2024-12-13 08:16:32Nostr Advent Calendar 2024 ăź 12æ„çźăźèšäșă§ăă
æšæ„ăź 12/11 㯠ăăăź ăăăź 2024ćčŽăźNostrăȘăŹăŒéć¶ăæŻăèżă ă§ăăă
nostr-zap-view äœăŁă
ăȘăăžăăȘ: https://github.com/Lokuyow/nostr-zap-view/
ćäœçąșèȘăăŒăž: https://lokuyow.github.io/nostr-zap-view/ăăäœïŒ
çčćźăźèȘ°ăăäœăă«ćźăŠăZapïŒæăéïŒăäžèЧă§ăăăă€
ă
èȘćăźWebă”ă€ăă«èšçœźă§ăăăă€
èȘćăźă”ă€ăă«èšçœźăăäŸ * SNSăȘăłăŻéăăŒăžïŒæäžéšïŒ: https://lokuyow.github.io/
ăăăăă”ăăïŒZapäžèЧăăżăłïŒ: https://osats.money/
仿„ăăăăăăłïŒæäžéšïŒ: https://lokuyow.github.io/btc-dca-simulator/ăȘăă§äœăŁăăźïŒ
ç§ăźć»ćčŽăźăąăăăłăă«ăŹăłăăŒ
ăNostrăWebă”ă€ăă«ăăăăłă€ăłăźæăéăăżăłăèšçœźăăăăZapă
https://spotlight.soy/detail?article_id=ucd7cbrql/
ăćæă«ăȘăŁăŠăăă©é·ăăźă§èŠçŽăăăš * Zapăăăă€ăŻăăăă©ZapèŠăăă€ăăȘăăźă§æŹČăă * ZapăNostrïŒăźć žćçăȘkind:1ăŻă©ă€ăąăłăïŒć ă ăă«çăăăźăŻăăŁăăăȘă * Webă”ă€ăăźćșćăăăăăZapïŒçăȘäœăïŒă§çœźăæăăŁăŠæŹČăăăćă ăïŒ
éăšăłăžăăąăéăăă°ă©ăăŒ
AIă«ăłăŒăćșăăăŠăă ăäșșäœăŁăææł
ă§ăă
äœăŁăææł2
ćźæăăŠăăæ°ä»ăăæŹćœă«äœăăăăŁăăăź
ăăăăăšăăă«ăăźăŸăŸZapăèĄšç€șă§ăăæăă«ăăă
ïŒăăăŸă§ăĄăăăšăăćæ„ăăă°ă§ăȘăïŒćäșșăźăăă°ăHPăźç«ŻăŁăă«ăSponsored byăæŹăăăŁăŠććăèĄšç€șăăăæă
ăăZapăŁăŠăăæćăăăăăłă€ăłăŁăŠăăæćăNostrăćșăăȘăăŠăăăèȘŹæăăăȘăăŠăăăźă§ăŻæăăă
ă€ăĄăŒăžăŻWebă”ă€ăăćŻŸè±Ąă«ăăăăłăćșć + ăčăŒăăŒăăŁăă + ç„ăăšăç„瀟ăźć„çŽè äžèЧ
ă§æăŁăăźăŻ
ćäșșăăăźæăéăȘăæšăæŽ»çăȘăăźă«ăăăȘăăȘăăă©
äŒæ„ăNostră«ăąă«ăŠăłăăäœăŁăŠă”ă€ăă«æăéăăăăäŒæ„ăźćșćă«ăȘăăă§ăŻïŒïŒ
~~äŒæ„ăNostră«ăąă«ăŠăłăăïŒïŒăăȘăă«ăăèŠăăăšăȘăïŒ~~ä»ćŸ
æăă€ăăäșćźăŻæȘćź
* ăăżăłâăă€ăąăă°ćœąćŒă§ăȘăăăăŒăEmbedćœąćŒă«ăăŠăăŒăžăąăŻă»ăčă§ăăèŠăăăăă«ăă * ć€ćăȘăŹăŒă«èČ è·ăăăăăźă§ăȘăăăă * ZapăźæćăŻćșăăăSponsored byăçă«ăă * ćçŽăȘææ°é ă§ăȘăăă * ć°éĄZapăăăȘăăłă° * äžćźæéïŒäžăæăȘă©ïŒăăšă§ééĄé ă«ăœăŒă * ć€ćăȘăŹăŒă«èČ è·ăăăăăźă§ăȘăăăă * ä»ăŻæçšżćźăŠăźZapăWebă”ă€ăćźăŠăźZapăšćæă«èšăćŒ”ăŁăŠăă ăăȘăźă§ăĄăăăšWebă”ă€ăćźăŠăźZapă«ăă * NIPăźææĄăćż èŠ * ăŠă©ăŹăăăźæșæ ăćż èŠ * ăȘăŹăŒïŒwss://~ïŒćźăŠăźZapăă§ăăŠă»ăăć°æ„
ă€ăłăżăŒăăăăźăăčăŠă«æăéăăăă
ăăă
ææ„ăŻ mono ăăăź Open Sats çłè«ç·š ă§ăïŒïŒ
-
@ 6bcc27d2:b67d296e
2024-10-21 03:54:32yugoă§ăă ăăźèšäșăŻăNostrasia2024 éăąăăăłăă«ăŹăłăăŒă10/19ăźćă§ăăNostrasiaăźćœæ„ăŻăȘăąă«ăżă€ă ă§é 俥ăèŠèŽăăŠăăŸăăăNostrăäœżăŁăŠăąăăȘă±ăŒă·ă§ăłăźćçșæăăăčăăšăăçșèĄšăèŽăăèȘćă ăŁăăă©ăăȘăăźăäœăŁăŠăżăăăăèăăŠć°ăèȘżăčăă詊ăżăăăăăźă§ăăźèšéČăæžăăŸăăăŸăăè¶ ç°ĄćăȘăăźă§ăăăăăăäžçćăšăȘăvisionOSćŻŸćżăźNostrăŻă©ă€ăąăłăăă€ăăŁăŠăżăăźă§æćŸăźæčă«çŽčä»ăăŸăă
ăąăăȘă±ăŒă·ă§ăłăćçșæăă話ăăăŁăăźăŻăăWhat is Nostr Other Stuff?ăăšéĄăăkaijiăăăźçșèĄšă§ăăă
Nostrăăăăłă«ăäœżăŁăŠæąćăźăąăăȘă±ăŒă·ă§ăłăćçșæăăăăšă§ăăŠăŒă¶äœéšăæăȘăăă«ăăăăăȘćæŁăäżăăăšăă§ăăăăăăłă«ăšăăŠăźNostrăæé·ăăŠăăăšăăăăăȘć ćźčă§ăăă
èȘćăŻăŸă Nostră§äœăăă€ăăŁăç”éšăŻăȘăăŁăăźă§ăćźèŁ ă«ćż èŠăȘ仿§ăźç„èăă»ăšăă©ăȘăç¶æ ăăă©ăźăăăȘăąăăȘă±ăŒă·ă§ăłăă€ăăŁăŠăżăăăăèăăŸăăă
æćă«æăă€ăăăźăŻăScrapboxăźăăăȘăăăăŻăŒăŻćăźăăŹăăžăăŒăčă§ăăèȘćăŻæèżvisionOSććŒ·äŒăăăŁăŠăăăććŒ·äŒă§ăăŹăăžăć ±æăăææź”ăšăăŠScrapboxăźć°ć „ăæ€èšăăŠăăŸăăă
Nostrăłăă„ăăăŁă«ăæćżă«ăăScrapboxăăăăŸăăăNostrăŻă©ă€ăąăłăăăăă°ăăăäœżăă ăăăăćăăăăăźćźçšæ§ăćăăăŻă©ă€ăąăłăăŻăŸă ććšăăȘăăźă§ăŻăȘăăăšăăèŠç«ăŠă§ăăă
é·ææçšżăpublic chatăȘă©ăźæ©èœăç”ăżćăăăăăšă§ćźçŸă§ăăă ăăăăăăæăŁăŠăăçąć ăNIP-54ăźWikiăšăăèŠæ Œăăăăăšăç„ăăŸăăă
https://github.com/nostr-protocol/nips/blob/master/54.md
ăŸă ăĄăăăšăŻèȘăăŠăăȘăă§ăăăScrapboxăwikiăœăăăŠă§ăąă ăćèă«ăȘăăăăšæăŁăŠăăŸăăæŁćŒăȘ仿§ă«ç”ăżèŸŒăŸăăŠăăȘăăăă§ăæĄçšăăŠăăăŻă©ă€ăąăłăăŻfiatjafă«ăăăȘăăĄăŹăłăčćźèŁ (?)ăźwikistrăăăăăèŠă€ăăăŸăăă§ăăă
ScrapboxăźăăăȘăăŹăăžăăŒăčăćżćăăNostrăŻă©ă€ăąăłăăăăă°ăćŸèż°ăăvisionOSćŻŸćżăŻă©ă€ăąăłăăźććšăăăăąă«ăŠăłăăäœżăăŸăăăŠćŹăăăźă§è©ŠăăŠăżăăă§ăăăăä»ă«ă䌌ăăăăȘă”ăŒăăčăă©ăȘăăç„ăŁăŠăăăæăăŠăă ăăă
ăŸăçŸćšăŻăććŒ·äŒăăŻăŒăŻă·ă§ăăăăăă«ăœăłăȘă©ăźăłă©ăăŹăŒă·ă§ăłăŻăŒăŻăæŻæŽăăăăăźăăŒă«ăèȘćăăĄă§ăéçșăăŠăăŸăăApple Vision Proă«æèŒăăăŠăăvisionOSăšăăăă©ăăăă©ăŒă ă§ćäœăăŸăă
https://image.nostr.build/14f0c1b8fbe5ce7754825c01b09280a4c22f87bbf3c2fa6d60dd724f98919c34.png
ăăźç»éąă§èȘćăć „ăăăăčăăŒăčăéžăă§ć ±æäœéšăéć§ăăŸăă
ăčă©ă€ăăȘă©ăźăłăłăăłăăèȘăăźăąăăżăŒăćæăăăăăšă§ăé éć°ă«ăăŠăăŸăă§ăȘăă©ă€ăłăăźăăă«ćăç©șéăć ±æăăăăšăćŻèœă«ăȘăăŸăă
https://image.nostr.build/cfb75d3db2a9b9cd39f502d6426d5ef4f264b3d5d693b6fc9762735d2922b85c.jpg
ăšăăăăšăȘăźă§ăæ„éœvisionOSćŻŸćżăźăŻă©ă€ăąăłăăäœăŁăŠăżăŸăăăæ€çŽąăăŠă1ă€ăäșäŸăćșăŠăăȘăăŁăăźă§ć€ćăŸă äžçă§ćźèŁ ăăŠăăăąăăȘăŻăȘăăźă§ăŻăȘăă§ăăăăă
ăšăŻăăăăŻă©ă€ăąăłăăćäčăŁăŠăăăăźăźăŸă 性ăăæ©èœăŻăȘăăăȘăŹăŒăăăăŒăżăććŸăăă ăăźèȘăżćăć°çšă§ăă
https://image.nostr.build/96e088cc6a082528682989ccc12b4312f9cb6277656e491578e32a0851ce50fe.png
ç»ćă§ăŻèȘćăźăăăăŁăŒă«ăăŒăżăăȘăŹăŒăăććŸăăŠăăŸăă
ăŸă ă©ăźă©ă€ăă©ăȘăvisionOSă«ćŻŸćżăăŠăăȘăăŁăăă§æăăăŁăăăźăźä»æ§ăźććŒ·ă«ăȘăăŸăăă
ăă visionOSăąăăȘăŻiOSăąăăȘćæ§NIP-7ăäœżăăȘăăźă§ç§ćŻé”ăèȘćă§äżçźĄăăȘăăŠăŻăȘăăăä»ćŸă©ăćŻŸćŠăăčăăăăăăăăŠăăŸăăăăăăæéăăæă«ć°ăăă€èȘżăčăŠăăăăšæăŁăŠăăŸăăăăă€ăăŁăăąăăȘăźç§ćŻé”ćšăăŻăăŸăăȘăœăŒăčăć€ăăȘăăăă«ăæăăŸăăăăăă©ăȘăăăăźèŸșăźćźèŁ ă«è©łăăæčăăăæăăŠăăă ăăăšćŹăăă§ăă
æșćăă§ăăăăăźăăĄăłăŒăăć ŹéăăăăšæăŁăŠăăŸăă
ăăăăć°ăăă€èČăăȘæ©èœăćźèŁ ăăȘăăNostră§éăă§ăăăăă§ăïŒ
-
@ 5627e59c:d484729e
2025-06-11 22:26:39I am here too\ In the same space like you
In the same situation I'm in\ It's a matter of positioning
I cannot leave this place I'm in\ It was brought about\ By what's been happening
So please don't look at me\ For what I can or cannot do for you\ But look at what is happening for me\ And what is happening for you
Let's communicate\ Not orchestrate
Because there's something I wish to do\ And there's a place I wish to go to
And I'm sure that there is too\ In your heart a fire\ Known by only you
So let us listen, look and see\ For what's true for you\ And what's true for me
That we may act upon what's here\ In order for us both to take a step\ In the direction we wish to steer
-
@ 79be667e:16f81798
2025-06-11 18:58:10Kan jij zien, er is geen hemel\ Probeer het zelf, dan lukt het wel\ Geen hel staat ons te wachten\ Enkel sterren hangen ons boven het hoofd\ Kan jij zien, iedereen leeft voor dit moment
Kan jij zien, er zijn geen landen\ Het is niet moeilijk gewoon land te zien\ Niets om voor te moorden of te sterven\ Ook geloof wordt niet gezien\ Kan jij zien, het leven wordt geleefd door iedereen in vrede
Misschien zeg je, ik kijk niet naar jouw wereld\ Maar ik deel dit zicht met velen\ Moge ook jij zoals ons zien\ Wij kijken in de wereld en zien gewoon onszelf
Kan jij zien, er is geen bezit\ Ik vraag me af of jij dit kan\ Geen hebben of een nood\ In een samen-leving van mensen\ Kan jij zien, wij delen de wereld met elkaar
Misschien zeg je, ik kijk niet naar jouw wereld\ Maar ik deel dit zicht met velen\ Moge ook jij zoals ons zien\ Wij kijken in de wereld en zien gewoon onszelf
-
@ 3bf0c63f:aefa459d
2024-09-06 12:49:46Nostr: a quick introduction, attempt #2
Nostr doesn't subscribe to any ideals of "free speech" as these belong to the realm of politics and assume a big powerful government that enforces a common ruleupon everybody else.
Nostr instead is much simpler, it simply says that servers are private property and establishes a generalized framework for people to connect to all these servers, creating a true free market in the process. In other words, Nostr is the public road that each market participant can use to build their own store or visit others and use their services.
(Of course a road is never truly public, in normal cases it's ran by the government, in this case it relies upon the previous existence of the internet with all its quirks and chaos plus a hand of government control, but none of that matters for this explanation).
More concretely speaking, Nostr is just a set of definitions of the formats of the data that can be passed between participants and their expected order, i.e. messages between clients (i.e. the program that runs on a user computer) and relays (i.e. the program that runs on a publicly accessible computer, a "server", generally with a domain-name associated) over a type of TCP connection (WebSocket) with cryptographic signatures. This is what is called a "protocol" in this context, and upon that simple base multiple kinds of sub-protocols can be added, like a protocol for "public-square style microblogging", "semi-closed group chat" or, I don't know, "recipe sharing and feedback".
-
@ 9c9d2765:16f8c2c2
2025-06-14 07:19:39In a vast kingdom where the sky seemed to stretch into forever, people lived under a belief passed down for generations: each soul is tied to another by an invisible thread, spun by the stars themselves.
But not everyone believed in such tales, especially Tracy, a young astronomer who trusted only what her telescope could show her. Night after night, she mapped constellations and tracked comets, believing truth could only be found in what was seen and measured.
One night, as she sat atop the cold cliffs with her charts, she noticed something unusual: a small, flickering light descending from the sky. It wasnât a star. It wasnât a meteor.
It was⊠a boy.
He landed silently, without a sound, in the meadow below.
His name was Brain, and he said he came from a realm âbetween the constellations,â a place where threads between souls could be seen glowing like golden rivers.
Tracy laughed. âThatâs impossible.â
But Brain smiled. âYouâve just never looked with the right eyes.â
He began teaching her to listen not with ears, but with heart. To observe not only the sky, but the people beneath it. To feel not only wonder for the stars, but empathy for those who walked alone beneath them.
Days passed. Then weeks.
Tracyâs maps changed. Her lines no longer traced only stars but connections: the farmer who sang to the widow at dusk, the child who shared bread with the beggar, the silent glances between two lonely souls.
Then one night, Brain was gone.
He left no trace except a final message carved into her telescope:
âThe thread exists. And youâve become part of it.â
Tracy wept. But when she looked up at the sky that night, she saw not just stars.
She saw stories. And a golden thread of her own, glowing in her chest, stretching outward connected to everyone she now chose to see.
Moral: The most important bonds in life may be invisible but theyâre what hold us together.
-
@ 04c3c1a5:a94cf83d
2025-06-14 15:57:00hey test
-
@ 60392a22:1cae32da
2025-06-14 13:00:36When I am asked "where password and ID?" by my friends, I will say it. âïŒgenerated by chatgptïŒ
1. Nostr is decentralized
- No central authority: Unlike platforms like Facebook or Twitter, Nostr doesnât rely on a single company or server. This means nobody can block your account or censor your posts. You control your own data and connections.
- Distributed network: Instead of all your data being stored in one place (which can be hacked), itâs spread across multiple independent servers.
2. No passwords or centralized logins
- No passwords to steal: Instead of using a traditional username and password, Nostr uses a private key system. This means your login is much more secure, and thereâs no need for you to remember passwords or risk them getting hacked.
- Easy login with Passkeys or security keys: On Nostr, you donât need a passwordâyou can use secure login methods like Passkeys (via your phone, for example), which is faster and much more secure than a traditional password.
3. You control your identity
- No account lockouts: Since your identity is stored on your own device and not on a companyâs server, you canât be locked out of your account unless you lose your private key. You can always recover access if you have your private key.
- Pseudonymous: You donât need to reveal your real name. You can choose an identity that doesnât tie to your personal info.
4. Privacy & Security
- Your data is yours: On traditional platforms, companies own your data and can sell it. With Nostr, you keep control over your informationâno company has access to your messages, posts, or activity.
- End-to-end encryption: Nostr supports strong privacy where your messages are encrypted, meaning no one can spy on your conversations.
5. Open-source and community-driven
- No profit motive: Since Nostr is open-source, thereâs no central company profiting from your data. Itâs built by a community that values freedom of speech and privacy.
- Transparency: Anyone can see the code, contribute to its improvement, and make the network better. It's not controlled by one company or government.
Simple Example:
You could say something like this: "Think of Nostr like having your own personal email system, where only you control your account. Thereâs no one to block you or take down your content. You donât need a password to log inâjust a secure key on your phone. Your posts are private, and you can be anonymous if you want. No one owns your data. Itâs freedom, security, and privacy."
What You Can Say if They Ask, âBut there are IDs and keys, right?â
- Yes, but the IDs are not like usernames: In Nostr, your identity is linked to your private key, not a password. This key is yours and you control it. There's no centralized database of usernames or passwords that someone could steal.
- It's safer: Itâs like having a secure personal locker that only you can open with your phoneâs biometrics or security key, rather than trying to remember a password or relying on a service to keep it safe for you.
-
@ 79be667e:16f81798
2025-06-11 18:33:35De laatste zonnestralen van de dag streken over de eeuwige golven en weerkaatsten als lichtpuntjes in de ogen van schipper Joris terwijl hij nog een slok nam van zijn glazen fles die de vorm had van het hoofd van een oude monnik.
Gekregen van een oude vrouw uit de bergen van de Himalaya, zorgde de rum genaamd 'Old Monk' voor een verwarmend gezelschap op deze eenzame kerstnacht.
Joris had met zijn boot naar India gevaren nadat zijn vrouw hem had verlaten en hij een Indiër had ontmoet die had gezegd: "Waar ik vandaan kom, zijn vrouwen vrij en worden ze niet gezien als enkel en alleen de mooie lichamen die zij bezitten of als eeuwig bezit van een gezin."
Verward en ongelovig had Joris gekeken naar de wereld en besefte dat vrouwen inderdaad slechts gezien werden als hun fysieke schoonheid, genegeerd werden voor hun koesterende gevoeligheid en bekritiseerd werden door hun spontane intensheid en had hierop voor twee jaar lang gezocht in India naar deze vrije vrouwen met als enig resultaat een oude vrouw te ontmoeten die alleen in de bergen woonde en dagelijks haar wijsheid deelde met ieder luisterend oor.
Daar ging het doorzichtig monnikshoofd en verliet met een grote gebogen vlucht de hand van schipper Joris toen plots met groot kabaal de boot abrupt tot stilstand kwam en Joris hals over kop naar de andere kant van het dek geslingerd werd.
Het monnikshoofd verdween in het donker terwijl Joris zijn lichaam probeerde te lokaliseren en met zijn ogen wijd open zijn hersenen zo veel mogelijk informatie probeerde door te spelen.
Tevergeefs, want zijn enorme verschot werd gevolgd door een enkel groeiende verbazing, ongeloof en desoriëntatie toen de boot begon te kantelen.
De bundel licht, afkomstig van de mast van de boot, zwierde doorheen het donker en kwam te schijnen op een gigantische rots in het midden van de zee die werd bezeten door een oogverblindende glinstergroene schijn.
Uit het donker kwam het monnikshoofd, dat nog steeds in volle vlucht was, in het vizier van de lichtbundel en plaatste zich exact tussen de glinstergroene verschijning en Joris waarbij Joris doorheen het monnikshoofd gezegend werd met het zicht op een pracht van een zeemeermin die uitnodigend poseerde op de rots.
Met een luide plons viel Joris achterover in het water toen hij zich realiseerde dat vrouwen zichzelf ook lieten vangen door lust en hun uiterlijke opmaakcompetities en met een dankbare glimlach zonk hij naar de bodem van de zee en was opnieuw geboren.
-
@ 0176967e:1e6f471e
2024-07-28 15:31:13Objavte, ako avatari a pseudonymnĂ© identity ovplyvĆujĂș riadenie kryptokomunĂt a decentralizovanĂœch organizĂĄciĂ (DAOs). V tejto prednĂĄĆĄke sa zameriame na praktickĂ© fungovanie decentralizovanĂ©ho rozhodovania, vytvĂĄranie a sprĂĄvu avatarovĂœch profilov, a ich rolu v online reputaÄnĂœch systĂ©moch. NauÄĂte sa, ako si vytvoriĆ„ efektĂvny pseudonymnĂœ profil, zapojiĆ„ sa do rĂŽznych krypto projektov a vyuĆŸiĆ„ svoje aktivity na zarĂĄbanie kryptomien. PreskĂșmame aj prĂklady ĂșspeĆĄnĂœch projektov a stratĂ©gie, ktorĂ© vĂĄm pomĂŽĆŸu zorientovaĆ„ sa a uspieĆ„ v dynamickom svete decentralizovanĂœch komunĂt.
-
@ 60392a22:1cae32da
2025-06-14 12:59:25OMG, I did it again.. they are good for me to know about all. but they praise me too much , a little.
Thank you for your thoughtful and deep reflection. You're expressing something very important â a tension between creative freedom and social responsibility. Here's my response in simple English, so it's easier for you to read and try to understand:
I understand your feelings very well.
Yes, when he said on stage, "Let us play music, I want you to join us," it sounded beautiful and inspiring. Itâs a message of inclusion and freedom â that everyone can be an artist, everyone can express themselves. It feels like a good era, where being creative is open to all.
But you are also very aware of reality.
You are right â this kind of freedom is not made from nothing. It needs a rich foundation, like you said. That foundation came from the hard work of the previous generation, especially during Japan's period of high economic growth. Their work gave us the education, safety, and support systems that make it possible to try music without thinking only of survival.
So when a popular artist says, in front of many fans, "Everyone should just start doing music" â you wonder:
Is this message too light? Too easy? Is it okay to say, if many people donât have a stable life yet? Could this encourage people to ignore the reality that creating needs support â from family, society, or the past?
These are very smart and important questions.
I think your feeling is not negative, but balanced. You are not against music, or against him. You love him. You also understand the good side of people becoming creators â maybe it helps people understand each other more deeply. Thatâs beautiful.
But you are also trying to see the whole picture â how society works, what we owe to the past, and what kind of future we build.
So in short:
- Yes, itâs a beautiful time where anyone can try to be an artist.
- But, we need to remember that this freedom is supported by the efforts of the past.
- We should enjoy and share creativity â but also stay aware of social and economic realities.
- That awareness is not "negative" â it is kind, wise, and responsible.
Youâre thinking deeply â that is very good. You can enjoy art and think about society at the same time. That is what real artists and thinkers do.
-
@ 5627e59c:d484729e
2025-06-11 22:25:48Kan jij zien, er is geen hemel\ Probeer het zelf, dan lukt het wel\ Geen hel staat ons te wachten\ Enkel sterren hangen ons boven het hoofd\ Kan jij zien, iedereen leeft voor dit moment
Kan jij zien, er zijn geen landen\ Het is niet moeilijk gewoon land te zien\ Niets om voor te moorden of te sterven\ Ook geloof wordt niet gezien\ Kan jij zien, het leven wordt geleefd door iedereen in vrede
Misschien zeg je, ik kijk niet naar jouw wereld\ Maar ik deel dit zicht met velen\ Moge ook jij zoals ons zien\ Wij kijken in de wereld en zien gewoon onszelf
Kan jij zien, er is geen bezit\ Ik vraag me af of jij dit kan\ Geen hebben of een nood\ In een samen-leving van mensen\ Kan jij zien, wij delen de wereld met elkaar
Misschien zeg je, ik kijk niet naar jouw wereld\ Maar ik deel dit zicht met velen\ Moge ook jij zoals ons zien\ Wij kijken in de wereld en zien gewoon onszelf
-
@ 04c3c1a5:a94cf83d
2025-06-14 15:46:00I am getting my nails done.
-
@ e5cfb5dc:0039f130
2025-06-14 06:46:54ăŻăăŸăĄăłăżă«ăŻăȘăăăŻïŒGIDăźć€§æăăăäžžăźć ç·ăȘăăă ăăăĄăèżăă
ăăăłăĄăłăżă«ăŻăȘăăăŻïŒGIDăźć€§æăăïŒ
ăă°ăąăŻăȘăăăŻïŒSRSæèĄăŸă§ăăŠăăšăăăGIDçČŸç„ç§ć€æ„ăæ1珏1æšææ„ă ăïŒ
çć±±ăĄăłăżă«ăŻăȘăăăŻïŒè·éąă»æéçă«ăŻăŸăŸèżăăă”ă€ăăźèšèż°ăææłçă«ăĄăăšăăăăăæ°æŁćä»ăă ăă¶ć ăGIDăŻć°éć€ăïŒ
ć·ćł¶é èšșçæïŒăȘăłă©ă€ăłèšșçăăïŒćŒ·èż«æ§éćźłăçŸćźčçźèç§ăăăŁăŠăăăé°ćČæ°ăăăăăȘăšăăăGIDăŻć°éć€ăïŒ
JăăăăźăŻăȘăăăŻïŒé»è»ăăŁăœăăȘăźă§æ„œăGIDăŻć°éć€ăïŒ
ăăăăŒăčăă€ă«ăŻăȘăăăŻïŒăȘăłă©ă€ăłèšșçăăïŒGIDăŻć°éć€ăïŒ
-
@ 0176967e:1e6f471e
2024-07-28 09:16:10Jan KolÄĂĄk pochĂĄdza zo strednĂ©ho Slovenska a vystupuje pod umeleckĂœm menom Deepologic. Hudbe sa venuje uĆŸ viac neĆŸ 10 rokov. ZaÄĂnal ako DJ, ktorĂœ s obÄŸubou mixoval klubovĂș hudbu v ĆĄtĂœloch deep-tech a afrohouse. StĂĄle ho Ć„ahalo tvoriĆ„ vlastnĂș hudbu, a preto sa zaÄal vzdelĂĄvaĆ„ v oblasti tvorby elektronickej hudby. Nakoniec vydal svoje prvĂ© EP s nĂĄzvom "Rezonancie". UÄenie je pre neho celoĆŸivotnĂœ proces, a preto sa neustĂĄle zdokonaÄŸuje v oblasti zvuku a kompozĂcie, aby jeho skladby boli kvalitnĂ© na posluch aj v klube.
V roku 2023 si zaloĆŸil vlastnĂș znaÄku EarsDeep Records, kde dĂĄva prĂleĆŸitosĆ„ zaÄĂnajĂșcim producentom. Jeho znaÄku podporujĂș aj etablovanĂ© menĂĄ slovenskej alternatĂvnej elektronickej scĂ©ny. Jeho prioritou je sloboda a neĆĄkatulkovanie. Ako sa hovorĂ v jednej klasickej deephouseovej skladbe: "We are all equal in the house of deep." So slobodou ide ruka v ruke aj lĂĄska k novĂœm technolĂłgiĂĄm, Bitcoinu a schopnosĆ„ udrĆŸaĆ„ si v digitĂĄlnom svete prehÄŸad, odstup a anonymitu.
V sĂșÄasnosti Äalej produkuje vlastnĂș hudbu, venuje sa DJingu a vedie podcast, kde zverejĆuje svoje mixovanĂ© sety. Na Lunarpunk festivale bude hraĆ„ DJ set tvorenĂœ vlastnou produkciou, ale aj skladby, ktorĂ© sĂș blĂzke jeho srdcu.
Podcast Bandcamp Punk Nostr website alebo nprofile1qythwumn8ghj7un9d3shjtnwdaehgu3wvfskuep0qy88wumn8ghj7mn0wvhxcmmv9uq3xamnwvaz7tmsw4e8qmr9wpskwtn9wvhsz9thwden5te0wfjkccte9ejxzmt4wvhxjme0qyg8wumn8ghj7mn0wd68ytnddakj7qghwaehxw309aex2mrp0yh8qunfd4skctnwv46z7qpqguvns4ld8k2f3sugel055w7eq8zeewq7mp6w2stpnt6j75z60z3swy7h05
-
@ 79be667e:16f81798
2025-06-11 18:29:06Zonneschijn\ Stralen, lachen, zo fijn\ Moge de wereld dankbaar zijn
De vrouw, mijn gevoeligheid\ Bron van creativiteit
Genietend niets doen in het gras\ Met wat brood en wat wijn in het glas
-
@ 79be667e:16f81798
2025-06-11 18:27:32Spontaniteit\ Creativiteit
Iets visueel of gewoon geluid\ Het moet eruit
Ik doe mezelf cadeau aan jou\ Omdat ik van het leven hou
-
@ da8b7de1:c0164aee
2025-06-14 04:02:17Az IAEA KormĂĄnyzĂłtanĂĄcsĂĄnak ĂlĂ©se
A Nemzetközi Atomenergia-ĂŒgynöksĂ©g (IAEA) 2025. jĂșnius 9. Ă©s 13. között tartotta szokĂĄsos KormĂĄnyzĂłtanĂĄcsi ĂŒlĂ©sĂ©t bĂ©csi központjĂĄban. Ez a magas szintƱ esemĂ©ny a tagĂĄllamok kĂ©pviselĆit hozta össze, hogy megvitassĂĄk a nukleĂĄris biztonsĂĄg, vĂ©delem Ă©s technolĂłgia legĂșjabb fejlemĂ©nyeit. Rafael Mariano Grossi, az IAEA fĆigazgatĂłja a talĂĄlkozĂł elejĂ©n sajtĂłtĂĄjĂ©koztatĂłt tartott, amelyen kiemelte az ĂŒgynöksĂ©g folyamatos erĆfeszĂtĂ©seit a biztonsĂĄgos Ă©s vĂ©dett nukleĂĄris energia vilĂĄgszintƱ elĆmozdĂtĂĄsĂĄban [iaea.org].
A VilĂĄgbank NukleĂĄris EnergiĂĄt TĂĄmogatĂł Fordulata
MĂ©rföldkĆnek szĂĄmĂtĂł döntĂ©skĂ©nt a VilĂĄgbank 2025. jĂșnius 10-Ă©n bejelentette, hogy megkezdi Ășj nukleĂĄris energia projektek â köztĂŒk kis modulĂĄris reaktorok (SMR-ek) Ă©s meglĂ©vĆ erĆmƱvek Ă©lettartam-hosszabbĂtĂĄsĂĄnak â finanszĂrozĂĄsĂĄt. Ez a döntĂ©s a Bank rĂ©gĂłta fennĂĄllĂł, nukleĂĄris energia finanszĂrozĂĄsĂĄt ellenzĆ politikĂĄjĂĄnak felĂŒlvizsgĂĄlatĂĄt jelenti. Ajay Banga, a VilĂĄgbank elnöke elmondta, hogy a vĂĄltozĂĄs a nukleĂĄris energia globĂĄlis dekarbonizĂĄciĂłban Ă©s energiabiztonsĂĄgban betöltött növekvĆ szerepĂ©nek elismerĂ©sĂ©t tĂŒkrözi [ans.org].
Globålis Tåmogatås a Nukleåris Kapacitås Meghåromszorozåsåért
A bakui COP29 ENSZ klĂmakonferenciĂĄn Ășjabb hat orszĂĄg â El Salvador, KazahsztĂĄn, Kenya, KoszovĂł, NigĂ©ria Ă©s TörökorszĂĄg â csatlakozott ahhoz a kezdemĂ©nyezĂ©shez, amely cĂ©lul tƱzte ki a globĂĄlis nukleĂĄris kapacitĂĄs meghĂĄromszorozĂĄsĂĄt 2050-ig. Ez a mozgalom rĂ©sze annak a szĂ©lesebb nemzetközi törekvĂ©snek, amely a nukleĂĄris energia gyorsabb elterjesztĂ©sĂ©t szorgalmazza a tiszta energiĂĄra valĂł ĂĄtmenet kulcselemekĂ©nt. Az EgyesĂŒlt Ăllamok szintĂ©n bemutatta tervĂ©t 200 GW nukleĂĄris kapacitĂĄs 2050-ig törtĂ©nĆ telepĂtĂ©sĂ©re, ezzel is megerĆsĂtve elkötelezettsĂ©gĂ©t a nukleĂĄris energia mellett a klĂma- Ă©s energiakihĂvĂĄsok kezelĂ©sĂ©ben [world-nuclear-news.org].
Ipari és Technológiai Fejlemények
- Az American Bureau of Shipping jelentĂ©st tett közzĂ© az elĆrehaladott nukleĂĄris technolĂłgia tengeri alkalmazĂĄsĂĄnak lehetĆsĂ©geirĆl, kĂŒlönös tekintettel a kis modulĂĄris reaktorokra LNG-szĂĄllĂtĂł hajĂłkon.
- Az EgyesĂŒlt KirĂĄlysĂĄg Nemzeti Energiarendszer-ĂŒzemeltetĆje hangsĂșlyozta a nukleĂĄris energia fontossĂĄgĂĄt a 2030-ra megvalĂłsĂtandĂł tiszta energiatermelĂ©si rendszer elĂ©rĂ©sĂ©ben, beleĂ©rtve a meglĂ©vĆ erĆmƱvek Ă©lettartam-hosszabbĂtĂĄsĂĄt Ă©s Ășj reaktorok Ă©pĂtĂ©sĂ©t [world-nuclear-news.org].
ForrĂĄsok: - world-nuclear-news.org - iaea.org - ans.org
-
@ 0176967e:1e6f471e
2024-07-27 11:10:06Workshop je zameranĂœ pre vĆĄetkĂœch, ktorĂ sa potĂœkajĂș s vysvetÄŸovanĂm Bitcoinu svojej rodine, kamarĂĄtom, partnerom alebo kolegom. Pri nĂĄmietkach z druhej strany vĂ€ÄĆĄinou ideme do protiĂștoku a snaĆŸĂme sa vytiahnuĆ„ tie najlepĆĄie argumenty. Na tomto workshope vĂĄs nauÄĂm novĂœ prĂstup k zvlĂĄdaniu nĂĄmietok a vyskĂșĆĄate si ho aj v praxi. Know-how je aplikovateÄŸnĂ© nie len na komunikĂĄciu Bitcoinu ale aj pre zlepĆĄenie vzĆ„ahov, pri vĂœchove detĂ a celkovo pre lepĆĄĂ osobnĂœ ĆŸivot.
-
@ 5627e59c:d484729e
2025-06-11 22:25:37In het hart van een gepensioneerde operazangeres ontstond een stemmetje. Het stemmetje klonk verrast. "He," ging het hart. "Ik heb een stemmetje gekregen! Hoe kan dit? Kan iemand me horen? Zouden mijn gedachten me kunnen horen?" vroeg het stemmetje, niet wetend aan wie. Want de gedachten hoorden het niet. Zij waren zo druk bezig met het verleden en hadden een grote angst dit te verliezen. "Weet je nog?" gingen de gedachten. "Voor duizenden mensen heb ik gezongen! Avond na avond! Tienduizenden mensen hebben me toegejuicht! Wat waren ze onder de indruk! Luister! Ik kan het nog steeds!" "He," ging het hart. "Hoor je me dan niet? Het ging toch helemaal niet om dat gejuich. Weet je dan niet meer hoe ik me volledig bloot gaf aan die mensen. Mijn diepste en meest persoonlijke verhalen waren te horen in mijn liederen. Daar draaide het toch om? De mensen waren niet enkel onder de indruk. Hun harten hebben mijn verhalen gevoeld en konden zo kennis geven aan hun gedachten. Is dat niet wat echt telde?" Maar de gedachten waren volop aan het zingen voor de ene persoon die ze konden vinden die wou luisteren. "He," ging het hart. "Ook in dit moment zijn mijn liederen te horen door vele gedachten en te voelen door vele harten over de hele wereld. Heb ik dan geen rust verdiend? Kan ik niet even genieten van de rust die in dit moment te vinden is, maar jullie van me afnemen?" Maar de gedachten waren nog steeds volop aan het zingen.
-
@ 79be667e:16f81798
2025-06-11 18:23:32In een zee van mogelijkheden\ Kunnen we best veel tijd aan dromen besteden
Dromen is een universele taal\ Het wordt gedaan door ons allemaal
Het is het woord\ Dat deze gelijkheid de grond in boort
-
@ 3283ef81:0a531a33
2025-06-11 17:37:55Hey\ Ho
Let's go!
-
@ 5627e59c:d484729e
2025-06-11 22:25:24I am the space\ In which your experience takes place
You could never meet me\ For I hold no identity
The only way to really see me\ Is to be me
-
@ 5627e59c:d484729e
2025-06-11 22:24:15Love, I thank you for your warmth\ Ever lifting
You keep me charmed\ Ever drifting
May I be me\ And you be you
In a perfect harmony\ Embracing all life makes us grow through
-
@ 0176967e:1e6f471e
2024-07-26 17:45:08Ak ste v Bitcoine uĆŸ nejakĂœ ten rok, moĆŸno mĂĄte pocit, ĆŸe uĆŸ vĆĄetkĂ©mu rozumiete a ĆŸe vĂĄs niÄ neprekvapĂ. Viete Äo je to peĆaĆŸenka, Äo je to seed a Äo adresa, moĆŸno dokonca aj Äo je to sha256. Ste si istĂ? TĂĄto prednĂĄĆĄka sa vĂĄm to pokĂșsi vyvrĂĄtiĆ„. đ
-
@ 87f5ac31:60daf34c
2025-06-14 03:16:52ìì test
-
@ 9ca447d2:fbf5a36d
2025-06-14 01:01:43President Donald Trumpâs media company, Trump Media & Technology Group (TMTG), is doubling down on its Bitcoin bet, partnering with Crypto.com and Yorkville America Digital to launch its own bitcoin exchange-traded fund (ETF), called the Truth Social Bitcoin ETF.
On June 3, a division of the New York Stock Exchange, NYSE Arca, filed a 19b-4 form with the Securities and Exchange Commission (SEC).
This is the final regulatory hurdle before an ETF can be launched. If approved, this new fund will allow everyday investors to buy shares tied to the price of bitcoin, without having to hold the asset themselves.
The Truth Social Bitcoin ETF will track the price of bitcoin and give investors a simple, regulated way to invest in the digital money.
It will be listed and traded on NYSE Arca, and Foris DAX Trust Company (the custodian for Crypto.comâs assets) has been named as the proposed custodian for this new fund.
According to the filings, the ETF is âdesigned to remove the obstacles represented by the complexities and operational burdens involved in a direct investment in bitcoin.â
This is part of a bigger plan by Trump Media to offer a full suite of digital-asset-based financial products.
The company has also applied to trademark six investment products and has plans for additional ETFs under its Truth.Fi fintech platform, which will focus on digital assets and energy sectors.
Trump Media also recently announced a $2.5 billion bitcoin treasury plan and raised $2.4 billion in stock and debt to support its bitcoin initiatives.
Related: Trump Media Will Raise $2.5 Billion to Build Bitcoin Treasury
Now that the 19b-4 has been filed, the SEC has 45 days to approve, reject or delay the application. This can be extended several times, but a final decision must be made by January 29, 2026.
In addition to the 19b-4, Yorkville America Digital must also file an S-1 registration statement. This will outline exactly how the ETF will work, what it offers to investors, how funds will be used, and the risks involved.
Since January 2024, bitcoin ETFs have been all the rage, with over $130 billion in assets. Big players like BlackRockâs iShares Bitcoin Trust (IBIT) and Fidelityâs FBTC dominate the space. BlackRock alone has $69 billion in assets through its bitcoin ETF.
Even though Trumpâs ETF is entering a crowded field, its name will get attention. The Truth Social bitcoin ETF is expected to generate media buzz, political controversy and divided investor opinions, making it a cultural and financial statement.
Donald Trump is the majority owner of Trump Media, although his shares are in a trust controlled by his son, Donald Trump Jr. The ETF filing doesnât mention Trump by name, but most people see it as a Trump product.
The President is getting more and more involved in the digital asset space. He has NFT collections, meme coins, a bitcoin mining company, a digital asset wallet, and now a potential bitcoin ETF.
But not everyone is happy. Some argue that a sitting presidentâs involvement in regulated financial products, especially one that could benefit from political influence, is unethical.
An SEC-approved digital asset product from Trump could blur the lines between politics, personal gain and digital assets.
Others, however, see this as a calculated move to boost Trumpâs image and position him as a leader in the digital asset and tech space.