-
@ 91bea5cd:1df4451c
2025-04-15 06:27:28Básico
bash lsblk # Lista todos os diretorios montados.
Para criar o sistema de arquivos:
bash mkfs.btrfs -L "ThePool" -f /dev/sdx
Criando um subvolume:
bash btrfs subvolume create SubVol
Montando Sistema de Arquivos:
bash mount -o compress=zlib,subvol=SubVol,autodefrag /dev/sdx /mnt
Lista os discos formatados no diretório:
bash btrfs filesystem show /mnt
Adiciona novo disco ao subvolume:
bash btrfs device add -f /dev/sdy /mnt
Lista novamente os discos do subvolume:
bash btrfs filesystem show /mnt
Exibe uso dos discos do subvolume:
bash btrfs filesystem df /mnt
Balancea os dados entre os discos sobre raid1:
bash btrfs filesystem balance start -dconvert=raid1 -mconvert=raid1 /mnt
Scrub é uma passagem por todos os dados e metadados do sistema de arquivos e verifica as somas de verificação. Se uma cópia válida estiver disponível (perfis de grupo de blocos replicados), a danificada será reparada. Todas as cópias dos perfis replicados são validadas.
iniciar o processo de depuração :
bash btrfs scrub start /mnt
ver o status do processo de depuração Btrfs em execução:
bash btrfs scrub status /mnt
ver o status do scrub Btrfs para cada um dos dispositivos
bash btrfs scrub status -d / data btrfs scrub cancel / data
Para retomar o processo de depuração do Btrfs que você cancelou ou pausou:
btrfs scrub resume / data
Listando os subvolumes:
bash btrfs subvolume list /Reports
Criando um instantâneo dos subvolumes:
Aqui, estamos criando um instantâneo de leitura e gravação chamado snap de marketing do subvolume de marketing.
bash btrfs subvolume snapshot /Reports/marketing /Reports/marketing-snap
Além disso, você pode criar um instantâneo somente leitura usando o sinalizador -r conforme mostrado. O marketing-rosnap é um instantâneo somente leitura do subvolume de marketing
bash btrfs subvolume snapshot -r /Reports/marketing /Reports/marketing-rosnap
Forçar a sincronização do sistema de arquivos usando o utilitário 'sync'
Para forçar a sincronização do sistema de arquivos, invoque a opção de sincronização conforme mostrado. Observe que o sistema de arquivos já deve estar montado para que o processo de sincronização continue com sucesso.
bash btrfs filsystem sync /Reports
Para excluir o dispositivo do sistema de arquivos, use o comando device delete conforme mostrado.
bash btrfs device delete /dev/sdc /Reports
Para sondar o status de um scrub, use o comando scrub status com a opção -dR .
bash btrfs scrub status -dR / Relatórios
Para cancelar a execução do scrub, use o comando scrub cancel .
bash $ sudo btrfs scrub cancel / Reports
Para retomar ou continuar com uma depuração interrompida anteriormente, execute o comando de cancelamento de depuração
bash sudo btrfs scrub resume /Reports
mostra o uso do dispositivo de armazenamento:
btrfs filesystem usage /data
Para distribuir os dados, metadados e dados do sistema em todos os dispositivos de armazenamento do RAID (incluindo o dispositivo de armazenamento recém-adicionado) montados no diretório /data , execute o seguinte comando:
sudo btrfs balance start --full-balance /data
Pode demorar um pouco para espalhar os dados, metadados e dados do sistema em todos os dispositivos de armazenamento do RAID se ele contiver muitos dados.
Opções importantes de montagem Btrfs
Nesta seção, vou explicar algumas das importantes opções de montagem do Btrfs. Então vamos começar.
As opções de montagem Btrfs mais importantes são:
**1. acl e noacl
**ACL gerencia permissões de usuários e grupos para os arquivos/diretórios do sistema de arquivos Btrfs.
A opção de montagem acl Btrfs habilita ACL. Para desabilitar a ACL, você pode usar a opção de montagem noacl .
Por padrão, a ACL está habilitada. Portanto, o sistema de arquivos Btrfs usa a opção de montagem acl por padrão.
**2. autodefrag e noautodefrag
**Desfragmentar um sistema de arquivos Btrfs melhorará o desempenho do sistema de arquivos reduzindo a fragmentação de dados.
A opção de montagem autodefrag permite a desfragmentação automática do sistema de arquivos Btrfs.
A opção de montagem noautodefrag desativa a desfragmentação automática do sistema de arquivos Btrfs.
Por padrão, a desfragmentação automática está desabilitada. Portanto, o sistema de arquivos Btrfs usa a opção de montagem noautodefrag por padrão.
**3. compactar e compactar-forçar
**Controla a compactação de dados no nível do sistema de arquivos do sistema de arquivos Btrfs.
A opção compactar compacta apenas os arquivos que valem a pena compactar (se compactar o arquivo economizar espaço em disco).
A opção compress-force compacta todos os arquivos do sistema de arquivos Btrfs, mesmo que a compactação do arquivo aumente seu tamanho.
O sistema de arquivos Btrfs suporta muitos algoritmos de compactação e cada um dos algoritmos de compactação possui diferentes níveis de compactação.
Os algoritmos de compactação suportados pelo Btrfs são: lzo , zlib (nível 1 a 9) e zstd (nível 1 a 15).
Você pode especificar qual algoritmo de compactação usar para o sistema de arquivos Btrfs com uma das seguintes opções de montagem:
- compress=algoritmo:nível
- compress-force=algoritmo:nível
Para obter mais informações, consulte meu artigo Como habilitar a compactação do sistema de arquivos Btrfs .
**4. subvol e subvolid
**Estas opções de montagem são usadas para montar separadamente um subvolume específico de um sistema de arquivos Btrfs.
A opção de montagem subvol é usada para montar o subvolume de um sistema de arquivos Btrfs usando seu caminho relativo.
A opção de montagem subvolid é usada para montar o subvolume de um sistema de arquivos Btrfs usando o ID do subvolume.
Para obter mais informações, consulte meu artigo Como criar e montar subvolumes Btrfs .
**5. dispositivo
A opção de montagem de dispositivo** é usada no sistema de arquivos Btrfs de vários dispositivos ou RAID Btrfs.
Em alguns casos, o sistema operacional pode falhar ao detectar os dispositivos de armazenamento usados em um sistema de arquivos Btrfs de vários dispositivos ou RAID Btrfs. Nesses casos, você pode usar a opção de montagem do dispositivo para especificar os dispositivos que deseja usar para o sistema de arquivos de vários dispositivos Btrfs ou RAID.
Você pode usar a opção de montagem de dispositivo várias vezes para carregar diferentes dispositivos de armazenamento para o sistema de arquivos de vários dispositivos Btrfs ou RAID.
Você pode usar o nome do dispositivo (ou seja, sdb , sdc ) ou UUID , UUID_SUB ou PARTUUID do dispositivo de armazenamento com a opção de montagem do dispositivo para identificar o dispositivo de armazenamento.
Por exemplo,
- dispositivo=/dev/sdb
- dispositivo=/dev/sdb,dispositivo=/dev/sdc
- dispositivo=UUID_SUB=490a263d-eb9a-4558-931e-998d4d080c5d
- device=UUID_SUB=490a263d-eb9a-4558-931e-998d4d080c5d,device=UUID_SUB=f7ce4875-0874-436a-b47d-3edef66d3424
**6. degraded
A opção de montagem degradada** permite que um RAID Btrfs seja montado com menos dispositivos de armazenamento do que o perfil RAID requer.
Por exemplo, o perfil raid1 requer a presença de 2 dispositivos de armazenamento. Se um dos dispositivos de armazenamento não estiver disponível em qualquer caso, você usa a opção de montagem degradada para montar o RAID mesmo que 1 de 2 dispositivos de armazenamento esteja disponível.
**7. commit
A opção commit** mount é usada para definir o intervalo (em segundos) dentro do qual os dados serão gravados no dispositivo de armazenamento.
O padrão é definido como 30 segundos.
Para definir o intervalo de confirmação para 15 segundos, você pode usar a opção de montagem commit=15 (digamos).
**8. ssd e nossd
A opção de montagem ssd** informa ao sistema de arquivos Btrfs que o sistema de arquivos está usando um dispositivo de armazenamento SSD, e o sistema de arquivos Btrfs faz a otimização SSD necessária.
A opção de montagem nossd desativa a otimização do SSD.
O sistema de arquivos Btrfs detecta automaticamente se um SSD é usado para o sistema de arquivos Btrfs. Se um SSD for usado, a opção de montagem de SSD será habilitada. Caso contrário, a opção de montagem nossd é habilitada.
**9. ssd_spread e nossd_spread
A opção de montagem ssd_spread** tenta alocar grandes blocos contínuos de espaço não utilizado do SSD. Esse recurso melhora o desempenho de SSDs de baixo custo (baratos).
A opção de montagem nossd_spread desativa o recurso ssd_spread .
O sistema de arquivos Btrfs detecta automaticamente se um SSD é usado para o sistema de arquivos Btrfs. Se um SSD for usado, a opção de montagem ssd_spread será habilitada. Caso contrário, a opção de montagem nossd_spread é habilitada.
**10. descarte e nodiscard
Se você estiver usando um SSD que suporte TRIM enfileirado assíncrono (SATA rev3.1), a opção de montagem de descarte** permitirá o descarte de blocos de arquivos liberados. Isso melhorará o desempenho do SSD.
Se o SSD não suportar TRIM enfileirado assíncrono, a opção de montagem de descarte prejudicará o desempenho do SSD. Nesse caso, a opção de montagem nodiscard deve ser usada.
Por padrão, a opção de montagem nodiscard é usada.
**11. norecovery
Se a opção de montagem norecovery** for usada, o sistema de arquivos Btrfs não tentará executar a operação de recuperação de dados no momento da montagem.
**12. usebackuproot e nousebackuproot
Se a opção de montagem usebackuproot for usada, o sistema de arquivos Btrfs tentará recuperar qualquer raiz de árvore ruim/corrompida no momento da montagem. O sistema de arquivos Btrfs pode armazenar várias raízes de árvore no sistema de arquivos. A opção de montagem usebackuproot** procurará uma boa raiz de árvore e usará a primeira boa que encontrar.
A opção de montagem nousebackuproot não verificará ou recuperará raízes de árvore inválidas/corrompidas no momento da montagem. Este é o comportamento padrão do sistema de arquivos Btrfs.
**13. space_cache, space_cache=version, nospace_cache e clear_cache
A opção de montagem space_cache** é usada para controlar o cache de espaço livre. O cache de espaço livre é usado para melhorar o desempenho da leitura do espaço livre do grupo de blocos do sistema de arquivos Btrfs na memória (RAM).
O sistema de arquivos Btrfs suporta 2 versões do cache de espaço livre: v1 (padrão) e v2
O mecanismo de cache de espaço livre v2 melhora o desempenho de sistemas de arquivos grandes (tamanho de vários terabytes).
Você pode usar a opção de montagem space_cache=v1 para definir a v1 do cache de espaço livre e a opção de montagem space_cache=v2 para definir a v2 do cache de espaço livre.
A opção de montagem clear_cache é usada para limpar o cache de espaço livre.
Quando o cache de espaço livre v2 é criado, o cache deve ser limpo para criar um cache de espaço livre v1 .
Portanto, para usar o cache de espaço livre v1 após a criação do cache de espaço livre v2 , as opções de montagem clear_cache e space_cache=v1 devem ser combinadas: clear_cache,space_cache=v1
A opção de montagem nospace_cache é usada para desabilitar o cache de espaço livre.
Para desabilitar o cache de espaço livre após a criação do cache v1 ou v2 , as opções de montagem nospace_cache e clear_cache devem ser combinadas: clear_cache,nosapce_cache
**14. skip_balance
Por padrão, a operação de balanceamento interrompida/pausada de um sistema de arquivos Btrfs de vários dispositivos ou RAID Btrfs será retomada automaticamente assim que o sistema de arquivos Btrfs for montado. Para desabilitar a retomada automática da operação de equilíbrio interrompido/pausado em um sistema de arquivos Btrfs de vários dispositivos ou RAID Btrfs, você pode usar a opção de montagem skip_balance .**
**15. datacow e nodatacow
A opção datacow** mount habilita o recurso Copy-on-Write (CoW) do sistema de arquivos Btrfs. É o comportamento padrão.
Se você deseja desabilitar o recurso Copy-on-Write (CoW) do sistema de arquivos Btrfs para os arquivos recém-criados, monte o sistema de arquivos Btrfs com a opção de montagem nodatacow .
**16. datasum e nodatasum
A opção datasum** mount habilita a soma de verificação de dados para arquivos recém-criados do sistema de arquivos Btrfs. Este é o comportamento padrão.
Se você não quiser que o sistema de arquivos Btrfs faça a soma de verificação dos dados dos arquivos recém-criados, monte o sistema de arquivos Btrfs com a opção de montagem nodatasum .
Perfis Btrfs
Um perfil Btrfs é usado para informar ao sistema de arquivos Btrfs quantas cópias dos dados/metadados devem ser mantidas e quais níveis de RAID devem ser usados para os dados/metadados. O sistema de arquivos Btrfs contém muitos perfis. Entendê-los o ajudará a configurar um RAID Btrfs da maneira que você deseja.
Os perfis Btrfs disponíveis são os seguintes:
single : Se o perfil único for usado para os dados/metadados, apenas uma cópia dos dados/metadados será armazenada no sistema de arquivos, mesmo se você adicionar vários dispositivos de armazenamento ao sistema de arquivos. Assim, 100% do espaço em disco de cada um dos dispositivos de armazenamento adicionados ao sistema de arquivos pode ser utilizado.
dup : Se o perfil dup for usado para os dados/metadados, cada um dos dispositivos de armazenamento adicionados ao sistema de arquivos manterá duas cópias dos dados/metadados. Assim, 50% do espaço em disco de cada um dos dispositivos de armazenamento adicionados ao sistema de arquivos pode ser utilizado.
raid0 : No perfil raid0 , os dados/metadados serão divididos igualmente em todos os dispositivos de armazenamento adicionados ao sistema de arquivos. Nesta configuração, não haverá dados/metadados redundantes (duplicados). Assim, 100% do espaço em disco de cada um dos dispositivos de armazenamento adicionados ao sistema de arquivos pode ser usado. Se, em qualquer caso, um dos dispositivos de armazenamento falhar, todo o sistema de arquivos será corrompido. Você precisará de pelo menos dois dispositivos de armazenamento para configurar o sistema de arquivos Btrfs no perfil raid0 .
raid1 : No perfil raid1 , duas cópias dos dados/metadados serão armazenadas nos dispositivos de armazenamento adicionados ao sistema de arquivos. Nesta configuração, a matriz RAID pode sobreviver a uma falha de unidade. Mas você pode usar apenas 50% do espaço total em disco. Você precisará de pelo menos dois dispositivos de armazenamento para configurar o sistema de arquivos Btrfs no perfil raid1 .
raid1c3 : No perfil raid1c3 , três cópias dos dados/metadados serão armazenadas nos dispositivos de armazenamento adicionados ao sistema de arquivos. Nesta configuração, a matriz RAID pode sobreviver a duas falhas de unidade, mas você pode usar apenas 33% do espaço total em disco. Você precisará de pelo menos três dispositivos de armazenamento para configurar o sistema de arquivos Btrfs no perfil raid1c3 .
raid1c4 : No perfil raid1c4 , quatro cópias dos dados/metadados serão armazenadas nos dispositivos de armazenamento adicionados ao sistema de arquivos. Nesta configuração, a matriz RAID pode sobreviver a três falhas de unidade, mas você pode usar apenas 25% do espaço total em disco. Você precisará de pelo menos quatro dispositivos de armazenamento para configurar o sistema de arquivos Btrfs no perfil raid1c4 .
raid10 : No perfil raid10 , duas cópias dos dados/metadados serão armazenadas nos dispositivos de armazenamento adicionados ao sistema de arquivos, como no perfil raid1 . Além disso, os dados/metadados serão divididos entre os dispositivos de armazenamento, como no perfil raid0 .
O perfil raid10 é um híbrido dos perfis raid1 e raid0 . Alguns dos dispositivos de armazenamento formam arrays raid1 e alguns desses arrays raid1 são usados para formar um array raid0 . Em uma configuração raid10 , o sistema de arquivos pode sobreviver a uma única falha de unidade em cada uma das matrizes raid1 .
Você pode usar 50% do espaço total em disco na configuração raid10 . Você precisará de pelo menos quatro dispositivos de armazenamento para configurar o sistema de arquivos Btrfs no perfil raid10 .
raid5 : No perfil raid5 , uma cópia dos dados/metadados será dividida entre os dispositivos de armazenamento. Uma única paridade será calculada e distribuída entre os dispositivos de armazenamento do array RAID.
Em uma configuração raid5 , o sistema de arquivos pode sobreviver a uma única falha de unidade. Se uma unidade falhar, você pode adicionar uma nova unidade ao sistema de arquivos e os dados perdidos serão calculados a partir da paridade distribuída das unidades em execução.
Você pode usar 1 00x(N-1)/N % do total de espaços em disco na configuração raid5 . Aqui, N é o número de dispositivos de armazenamento adicionados ao sistema de arquivos. Você precisará de pelo menos três dispositivos de armazenamento para configurar o sistema de arquivos Btrfs no perfil raid5 .
raid6 : No perfil raid6 , uma cópia dos dados/metadados será dividida entre os dispositivos de armazenamento. Duas paridades serão calculadas e distribuídas entre os dispositivos de armazenamento do array RAID.
Em uma configuração raid6 , o sistema de arquivos pode sobreviver a duas falhas de unidade ao mesmo tempo. Se uma unidade falhar, você poderá adicionar uma nova unidade ao sistema de arquivos e os dados perdidos serão calculados a partir das duas paridades distribuídas das unidades em execução.
Você pode usar 100x(N-2)/N % do espaço total em disco na configuração raid6 . Aqui, N é o número de dispositivos de armazenamento adicionados ao sistema de arquivos. Você precisará de pelo menos quatro dispositivos de armazenamento para configurar o sistema de arquivos Btrfs no perfil raid6 .
-
@ 460c25e6:ef85065c
2025-02-25 15:20:39If you don't know where your posts are, you might as well just stay in the centralized Twitter. You either take control of your relay lists, or they will control you. Amethyst offers several lists of relays for our users. We are going to go one by one to help clarify what they are and which options are best for each one.
Public Home/Outbox Relays
Home relays store all YOUR content: all your posts, likes, replies, lists, etc. It's your home. Amethyst will send your posts here first. Your followers will use these relays to get new posts from you. So, if you don't have anything there, they will not receive your updates.
Home relays must allow queries from anyone, ideally without the need to authenticate. They can limit writes to paid users without affecting anyone's experience.
This list should have a maximum of 3 relays. More than that will only make your followers waste their mobile data getting your posts. Keep it simple. Out of the 3 relays, I recommend: - 1 large public, international relay: nos.lol, nostr.mom, relay.damus.io, etc. - 1 personal relay to store a copy of all your content in a place no one can delete. Go to relay.tools and never be censored again. - 1 really fast relay located in your country: paid options like http://nostr.wine are great
Do not include relays that block users from seeing posts in this list. If you do, no one will see your posts.
Public Inbox Relays
This relay type receives all replies, comments, likes, and zaps to your posts. If you are not getting notifications or you don't see replies from your friends, it is likely because you don't have the right setup here. If you are getting too much spam in your replies, it's probably because your inbox relays are not protecting you enough. Paid relays can filter inbox spam out.
Inbox relays must allow anyone to write into them. It's the opposite of the outbox relay. They can limit who can download the posts to their paid subscribers without affecting anyone's experience.
This list should have a maximum of 3 relays as well. Again, keep it small. More than that will just make you spend more of your data plan downloading the same notifications from all these different servers. Out of the 3 relays, I recommend: - 1 large public, international relay: nos.lol, nostr.mom, relay.damus.io, etc. - 1 personal relay to store a copy of your notifications, invites, cashu tokens and zaps. - 1 really fast relay located in your country: go to nostr.watch and find relays in your country
Terrible options include: - nostr.wine should not be here. - filter.nostr.wine should not be here. - inbox.nostr.wine should not be here.
DM Inbox Relays
These are the relays used to receive DMs and private content. Others will use these relays to send DMs to you. If you don't have it setup, you will miss DMs. DM Inbox relays should accept any message from anyone, but only allow you to download them.
Generally speaking, you only need 3 for reliability. One of them should be a personal relay to make sure you have a copy of all your messages. The others can be open if you want push notifications or closed if you want full privacy.
Good options are: - inbox.nostr.wine and auth.nostr1.com: anyone can send messages and only you can download. Not even our push notification server has access to them to notify you. - a personal relay to make sure no one can censor you. Advanced settings on personal relays can also store your DMs privately. Talk to your relay operator for more details. - a public relay if you want DM notifications from our servers.
Make sure to add at least one public relay if you want to see DM notifications.
Private Home Relays
Private Relays are for things no one should see, like your drafts, lists, app settings, bookmarks etc. Ideally, these relays are either local or require authentication before posting AND downloading each user\'s content. There are no dedicated relays for this category yet, so I would use a local relay like Citrine on Android and a personal relay on relay.tools.
Keep in mind that if you choose a local relay only, a client on the desktop might not be able to see the drafts from clients on mobile and vice versa.
Search relays:
This is the list of relays to use on Amethyst's search and user tagging with @. Tagging and searching will not work if there is nothing here.. This option requires NIP-50 compliance from each relay. Hit the Default button to use all available options on existence today: - nostr.wine - relay.nostr.band - relay.noswhere.com
Local Relays:
This is your local storage. Everything will load faster if it comes from this relay. You should install Citrine on Android and write ws://localhost:4869 in this option.
General Relays:
This section contains the default relays used to download content from your follows. Notice how you can activate and deactivate the Home, Messages (old-style DMs), Chat (public chats), and Global options in each.
Keep 5-6 large relays on this list and activate them for as many categories (Home, Messages (old-style DMs), Chat, and Global) as possible.
Amethyst will provide additional recommendations to this list from your follows with information on which of your follows might need the additional relay in your list. Add them if you feel like you are missing their posts or if it is just taking too long to load them.
My setup
Here's what I use: 1. Go to relay.tools and create a relay for yourself. 2. Go to nostr.wine and pay for their subscription. 3. Go to inbox.nostr.wine and pay for their subscription. 4. Go to nostr.watch and find a good relay in your country. 5. Download Citrine to your phone.
Then, on your relay lists, put:
Public Home/Outbox Relays: - nostr.wine - nos.lol or an in-country relay. -
.nostr1.com Public Inbox Relays - nos.lol or an in-country relay -
.nostr1.com DM Inbox Relays - inbox.nostr.wine -
.nostr1.com Private Home Relays - ws://localhost:4869 (Citrine) -
.nostr1.com (if you want) Search Relays - nostr.wine - relay.nostr.band - relay.noswhere.com
Local Relays - ws://localhost:4869 (Citrine)
General Relays - nos.lol - relay.damus.io - relay.primal.net - nostr.mom
And a few of the recommended relays from Amethyst.
Final Considerations
Remember, relays can see what your Nostr client is requesting and downloading at all times. They can track what you see and see what you like. They can sell that information to the highest bidder, they can delete your content or content that a sponsor asked them to delete (like a negative review for instance) and they can censor you in any way they see fit. Before using any random free relay out there, make sure you trust its operator and you know its terms of service and privacy policies.
-
@ 97c70a44:ad98e322
2025-02-18 20:30:32For the last couple of weeks, I've been dealing with the fallout of upgrading a web application to Svelte 5. Complaints about framework churn and migration annoyances aside, I've run into some interesting issues with the migration. So far, I haven't seen many other people register the same issues, so I thought it might be constructive for me to articulate them myself.
I'll try not to complain too much in this post, since I'm grateful for the many years of Svelte 3/4 I've enjoyed. But I don't think I'll be choosing Svelte for any new projects going forward. I hope my reflections here will be useful to others as well.
If you're interested in reproductions for the issues I mention here, you can find them below.
The Need for Speed
To start with, let me just quickly acknowledge what the Svelte team is trying to do. It seems like most of the substantial changes in version 5 are built around "deep reactivity", which allows for more granular reactivity, leading to better performance. Performance is good, and the Svelte team has always excelled at reconciling performance with DX.
In previous versions of Svelte, the main way this was achieved was with the Svelte compiler. There were many ancillary techniques involved in improving performance, but having a framework compile step gave the Svelte team a lot of leeway for rearranging things under the hood without making developers learn new concepts. This is what made Svelte so original in the beginning.
At the same time, it resulted in an even more opaque framework than usual, making it harder for developers to debug more complex issues. To make matters worse, the compiler had bugs, resulting in errors which could only be fixed by blindly refactoring the problem component. This happened to me personally at least half a dozen times, and is what ultimately pushed me to migrate to Svelte 5.
Nevertheless, I always felt it was an acceptable trade-off for speed and productivity. Sure, sometimes I had to delete my project and port it to a fresh repository every so often, but the framework was truly a pleasure to use.
Svelte is not Javascript
Svelte 5 doubled down on this tradeoff — which makes sense, because it's what sets the framework apart. The difference this time is that the abstraction/performance tradeoff did not stay in compiler land, but intruded into runtime in two important ways:
- The use of proxies to support deep reactivity
- Implicit component lifecycle state
Both of these changes improved performance and made the API for developers look slicker. What's not to like? Unfortunately, both of these features are classic examples of a leaky abstraction, and ultimately make things more complex for developers, not less.
Proxies are not objects
The use of proxies seems to have allowed the Svelte team to squeeze a little more performance out of the framework, without asking developers to do any extra work. Threading state through multiple levels of components without provoking unnecessary re-renders in frameworks like React is an infamously difficult chore.
Svelte's compiler avoided some of the pitfalls associated with virtual DOM diffing solutions, but evidently there was still enough of a performance gain to be had to justify the introduction of proxies. The Svelte team also seems to argue that their introduction represents an improvement in developer experience:
we... can maximise both efficiency and ergonomics.
Here's the problem: Svelte 5 looks simpler, but actually introduces more abstractions.
Using proxies to monitor array methods (for example) is appealing because it allows developers to forget all the goofy heuristics involved with making sure state was reactive and just
push
to the array. I can't count how many times I've writtenvalue = value
to trigger reactivity in svelte 4.In Svelte 4, developers had to understand how the Svelte compiler worked. The compiler, being a leaky abstraction, forced its users to know that assignment was how you signaled reactivity. In svelte 5, developers can just "forget" about the compiler!
Except they can't. All the introduction of new abstractions really accomplishes is the introduction of more complex heuristics that developers have to keep in their heads in order to get the compiler to act the way they want it to.
In fact, this is why after years of using Svelte, I found myself using Svelte stores more and more often, and reactive declarations less. The reason being that Svelte stores are just javascript. Calling
update
on a store is simple, and being able to reference them with a$
was just a nice bonus — nothing to remember, and if I mess up the compiler yells at me.Proxies introduce a similar problem to reactive declarations, which is that they look like one thing but act like another on the edges.
When I started using Svelte 5, everything worked great — until I tried to save a proxy to indexeddb, at which point I got a
DataCloneError
. To make matters worse, it's impossible to reliably tell if something is aProxy
withouttry/catch
ing a structured clone, which is a performance-intensive operation.This forces the developer to remember what is and what isn't a Proxy, calling
$state.snapshot
every time they pass a proxy to a context that doesn't expect or know about them. This obviates all the nice abstractions they gave us in the first place.Components are not functions
The reason virtual DOM took off way back in 2013 was the ability to model your application as composed functions, each of which takes data and spits out HTML. Svelte retained this paradigm, using a compiler to sidestep the inefficiencies of virtual DOM and the complexities of lifecycle methods.
In Svelte 5, component lifecycles are back, react-hooks style.
In React, hooks are an abstraction that allows developers to avoid writing all the stateful code associated with component lifecycle methods. Modern React tutorials universally recommend using hooks instead, which rely on the framework invisibly synchronizing state with the render tree.
While this does result in cleaner code, it also requires developers to tread carefully to avoid breaking the assumptions surrounding hooks. Just try accessing state in a
setTimeout
and you'll see what I mean.Svelte 4 had a few gotchas like this — for example, async code that interacts with a component's DOM elements has to keep track of whether the component is unmounted. This is pretty similar to the kind of pattern you'd see in old React components that relied on lifecycle methods.
It seems to me that Svelte 5 has gone the React 16 route by adding implicit state related to component lifecycles in order to coordinate state changes and effects.
For example, here is an excerpt from the documentation for $effect:
You can place $effect anywhere, not just at the top level of a component, as long as it is called during component initialization (or while a parent effect is active). It is then tied to the lifecycle of the component (or parent effect) and will therefore destroy itself when the component unmounts (or the parent effect is destroyed).
That's very complex! In order to use
$effect
... effectively (sorry), developers have to understand how state changes are tracked. The documentation for component lifecycles claims:In Svelte 5, the component lifecycle consists of only two parts: Its creation and its destruction. Everything in-between — when certain state is updated — is not related to the component as a whole; only the parts that need to react to the state change are notified. This is because under the hood the smallest unit of change is actually not a component, it’s the (render) effects that the component sets up upon component initialization. Consequently, there’s no such thing as a “before update”/"after update” hook.
But then goes on to introduce the idea of
tick
in conjunction with$effect.pre
. This section explains that "tick
returns a promise that resolves once any pending state changes have been applied, or in the next microtask if there are none."I'm sure there's some mental model that justifies this, but I don't think the claim that a component's lifecycle is only comprised of mount/unmount is really helpful when an addendum about state changes has to come right afterward.
The place where this really bit me, and which is the motivation for this blog post, is when state gets coupled to a component's lifecycle, even when the state is passed to another function that doesn't know anything about svelte.
In my application, I manage modal dialogs by storing the component I want to render alongside its props in a store and rendering it in the
layout.svelte
of my application. This store is also synchronized with browser history so that the back button works to close them. Sometimes, it's useful to pass a callback to one of these modals, binding caller-specific functionality to the child component:javascript const {value} = $props() const callback = () => console.log(value) const openModal = () => pushModal(MyModal, {callback})
This is a fundamental pattern in javascript. Passing a callback is just one of those things you do.
Unfortunately, if the above code lives in a modal dialog itself, the caller component gets unmounted before the callback gets called. In Svelte 4, this worked fine, but in Svelte 5
value
gets updated toundefined
when the component gets unmounted. Here's a minimal reproduction.This is only one example, but it seems clear to me that any prop that is closed over by a callback function that lives longer than its component will be undefined when I want to use it — with no reassignment existing in lexical scope. It seems that the reason this happens is that the props "belong" to the parent component, and are accessed via getters so that the parent can revoke access when it unmounts.
I don't know why this is necessary, but I assume there's a good engineering reason for it. The problem is, this just isn't how javascript works. Svelte is essentially attempting to re-invent garbage collection around component lifecycles, which breaks the assumption every javascript developer has that variables don't simply disappear without an explicit reassignment. It should be safe to pass stuff around and let the garbage collector do its job.
Conclusion
Easy things are nice, but as Rich Hickey says, easy things are not always simple. And like Joel Spolsky, I don't like being surprised. Svelte has always been full of magic, but with the latest release I think the cognitive overhead of reciting incantations has finally outweighed the power it confers.
My point in this post is not to dunk on the Svelte team. I know lots of people like Svelte 5 (and react hooks). The point I'm trying to make is that there is a tradeoff between doing things on the user's behalf, and giving the user agency. Good software is built on understanding, not cleverness.
I also think this is an important lesson to remember as AI-assisted coding becomes increasingly popular. Don't choose tools that alienate you from your work. Choose tools that leverage the wisdom you've already accumulated, and which help you to cultivate a deeper understanding of the discipline.
Thank you to Rich Harris and team for many years of pleasant development. I hope that (if you read this) it's not so full of inaccuracies as to be unhelpful as user feedback.
-
@ 3b62c542:6f45deaf
2025-05-15 17:44:53Introduction Once dismissed as a speculative gamble, cryptocurrency is steadily transforming into a powerful tool for financial inclusion—and nowhere is this shift more pronounced than in Africa. Across the continent, digital currencies are not merely investment vehicles; they’re practical responses to real-world challenges. Faced with high inflation, weak national currencies, limited banking infrastructure, and an increasingly digital youth, African communities are leveraging crypto to build a new financial future one that’s decentralized, accessible, and uniquely tailored to local needs.
From the bustling markets of Lagos to the tech hubs of Nairobi and Cape Town, crypto is being embraced not out of trendiness, but necessity. Africa, often overlooked in the global financial narrative, is rapidly becoming a testbed for what the future of digital finance could and arguably should look like.
The driving forces behind Africa’s Crypto Boom
1. Financial inclusion In sub-Saharan Africa, nearly 60% of adults remain unbanked, largely due to the lack of accessible banking infrastructure in rural and underserved areas. Traditional banks often require documentation, minimum deposits, and credit histories requirements many Africans cannot meet. Enter cryptocurrency: decentralized, borderless, and open to anyone with a smartphone and internet connection.
Mobile friendly wallets and crypto platforms allow users to send, receive, and store funds without needing a traditional bank account. Stablecoins like USDT and USDC have proven especially valuable, offering a digital currency option pegged to the US dollar, shielding users from local currency volatility while providing global usability.
2. Remittances made easy Africa is one of the most expensive regions in the world for receiving remittances. On average, sending money to sub-Saharan Africa costs about 7–9% in fees well above the global average. Cryptocurrencies slash these costs significantly and complete transactions within minutes, not days.
Nigerians, for example, received over \$19 billion in remittances in recent years. With crypto, users can bypass traditional intermediaries like Western Union or MoneyGram and directly receive funds in digital wallets, which can then be converted to local currency or used for online purchases. This is especially impactful in rural areas where financial services are sparse.
3. A hedge against inflation In countries like Zimbabwe, Nigeria, and Sudan, inflation and currency depreciation have eroded trust in local fiat money. In these environments, digital assets have emerged as safe havens. Bitcoin, often dubbed “digital gold,” and stablecoins are increasingly being used as stores of value and mediums of exchange.
Rather than hoarding cash that loses value by the day, individuals are turning to crypto to preserve their savings. In Nigeria, for example, peer-to-peer (P2P) trading volumes have soared, driven by economic instability and foreign exchange restrictions that limit access to USD.
4. Youth-led tech adoption Africa has the world’s youngest population—with over 70% under the age of 30. This generation is digitally native, entrepreneurial, and eager to tap into global economic systems. They’re embracing crypto for side gigs, freelance jobs, digital trading, and e-commerce—all of which benefit from borderless, fast, and low-cost payments.
Platforms like Binance, Luno, and Paxful are popular among young Africans not only for trading but for learning. Many youths are also creating local crypto content, starting communities, and building tools that address uniquely African use cases, such as microtransactions, decentralized savings groups, and cross-border agriculture financing.
Real-World use cases
-
Kenya’s M-Pesa Meets Blockchain: M-Pesa revolutionized mobile money in East Africa. Now, blockchain integrations are taking that revolution a step further. By connecting M-Pesa wallets to crypto platforms, users can seamlessly convert between fiat and crypto, enabling cross-border remittances, savings, and payments—all from a basic mobile phone.
-
Crypto Startups on the Rise: African entrepreneurs are not waiting for solutions from the West. Startups like Yellow Card in Nigeria are providing easy access to crypto in multiple local currencies. VALR in South Africa is offering a full-fledged crypto trading experience with high liquidity and compliance. Bundle Africa, BuyCoins, and others are focusing on remittance, bill payments, and savings all powered by crypto.
-
Education & empowerment: Crypto literacy is spreading fast thanks to targeted education campaigns. Binance Academy Africa and Paxful have launched bootcamps, online courses, and community outreach efforts. These programs are essential in combating misinformation and scams while building a knowledgeable user base that can leverage crypto safely and effectively.
Challenges and the road ahead Despite its momentum, crypto adoption in Africa is not without its challenges. Regulatory uncertainty remains a significant barrier. In some countries, authorities have imposed bans or strict limitations, citing concerns over money laundering, fraud, and capital flight. In others, frameworks are still evolving, leaving businesses and users in a legal gray area.
Internet penetration, while growing, is still inconsistent, particularly in rural areas. This digital divide hampers access to wallets and exchanges. Moreover, the space is vulnerable to scams and pyramid schemes that prey on uninformed users highlighting the urgent need for education and safeguards.
Yet progress is being made. South Africa now regulates crypto as a financial product, bringing oversight and legitimacy to the space. Nigeria launched the eNaira, Africa’s first central bank digital currency (CBDC), aiming to modernize the financial system while retaining regulatory control. Other governments are exploring blockchain’s potential for public services, from land title registries to national ID systems and supply chain tracking.
Conclusion Africa is not just adopting cryptocurrency—it’s redefining its purpose. Here, crypto isn’t about speculative trading or get-rich-quick schemes. It’s about solving deep rooted problems with bold, decentralized solutions. In a continent long underserved by global financial institutions, blockchain technology is offering a fresh path forward one driven by innovation, inclusivity, and grassroots energy.
As global interest in digital assets continues to grow, Africa’s crypto movement offers powerful lessons. It shows how technology, when embraced by necessity and tailored to real world problems, can spark lasting change. Far from the margins, Africa is helping shape the blueprint for a future where digital finance is open, resilient, and truly global.
-
-
@ 9e69e420:d12360c2
2025-02-17 17:12:01President Trump has intensified immigration enforcement, likening it to a wartime effort. Despite pouring resources into the U.S. Immigration and Customs Enforcement (ICE), arrest numbers are declining and falling short of goals. ICE fell from about 800 daily arrests in late January to fewer than 600 in early February.
Critics argue the administration is merely showcasing efforts with ineffectiveness, while Trump seeks billions more in funding to support his deportation agenda. Increased involvement from various federal agencies is intended to assist ICE, but many lack specific immigration training.
Challenges persist, as fewer immigrants are available for quick deportation due to a decline in illegal crossings. Local sheriffs are also pressured by rising demands to accommodate immigrants, which may strain resources further.
-
@ 378562cd:a6fc6773
2025-05-15 17:41:56Not everything broken makes a loud sound.\ \ Some addictions don’t crash through your life like a wrecking ball.\ They slip in quietly… as habits, comforts, little things you reach for when the world gets too sharp.
Maybe it’s the drink, the screen, the secret you’ve never spoken out loud.\ Maybe it’s just the constant ache of feeling not-enough… and trying to cover that feeling any way you can.
Whatever it is, if you're reading this, and you’re tired… that’s okay. Tired doesn’t mean you’re failing. Tired often means you're ready.
Healing starts small. It doesn’t need drama. It doesn’t require perfection. It just needs willingness, even a crack of it.
Here’s what I know:
-
You don’t have to be strong every day. You just have to be honest today. Honesty with yourself is the real starting line.
-
You’re not weak because you struggle. In fact, noticing the struggle is a strength many never reach.
-
The soul wants peace. Your heart already knows what’s hurting you, and it’s been whispering the way forward. Start listening.
-
You can begin again. Not tomorrow. Not “after one more time.” Right now. It can be as simple as a walk, a glass of water, a phone call, or a deep breath and a prayer whispered into the quiet.
There is no shame in the reaching.\ There is only growth in the choosing.\ Even if it’s the 5th or 500th time.
You weren’t made to live trapped in a loop. You were made for light.\ For joy.\ For a real connection.\ For the freedom that doesn’t need to be earned, just received.
Some call that faith.\ Some call it grace.\ Some call it hope.
Whatever you call it, it’s waiting for you not on the other side of healing, but right here in the middle of your mess.
You are not too far gone.\ You are not too broken.\ You are still becoming.\ And that’s a beautiful thing.
Start small. Be gentle. Don’t give up.
I’m rooting for you.
--> JC
-
-
@ fd208ee8:0fd927c1
2025-02-15 07:02:08E-cash are coupons or tokens for Bitcoin, or Bitcoin debt notes that the mint issues. The e-cash states, essentially, "IoU 2900 sats".
They're redeemable for Bitcoin on Lightning (hard money), and therefore can be used as cash (softer money), so long as the mint has a good reputation. That means that they're less fungible than Lightning because the e-cash from one mint can be more or less valuable than the e-cash from another. If a mint is buggy, offline, or disappears, then the e-cash is unreedemable.
It also means that e-cash is more anonymous than Lightning, and that the sender and receiver's wallets don't need to be online, to transact. Nutzaps now add the possibility of parking transactions one level farther out, on a relay. The same relays that cannot keep npub profiles and follow lists consistent will now do monetary transactions.
What we then have is * a transaction on a relay that triggers * a transaction on a mint that triggers * a transaction on Lightning that triggers * a transaction on Bitcoin.
Which means that every relay that stores the nuts is part of a wildcat banking system. Which is fine, but relay operators should consider whether they wish to carry the associated risks and liabilities. They should also be aware that they should implement the appropriate features in their relay, such as expiration tags (nuts rot after 2 weeks), and to make sure that only expired nuts are deleted.
There will be plenty of specialized relays for this, so don't feel pressured to join in, and research the topic carefully, for yourself.
https://github.com/nostr-protocol/nips/blob/master/60.md
-
@ 58537364:705b4b85
2025-05-15 16:27:52วันนี้เป็นวันสำคัญทางศาสนา มีการจัดงานบุญพร้อมกับฟังเทศน์อย่างยิ่งใหญ่ "ชายคนหนึ่ง" ได้มานั่งฟังธรรมอยู่บนศาลาวัด ในขณะที่นั่งฟังอยู่นั้นสายตาก็เหลือบไปเห็นคนกำลังตกปลาอยู่ในบ่อน้ำที่วัด แล้วก็นั่งคิดบ่นด่าคนตกปลาอยู่ในใจว่าทำไมถึงทำเช่นนั้น ในวัดแท้ๆ ยังกล้ามาจับปลา ไม่กลัวบาปกรรมบ้างเลยหรืออย่างไร แต่แทนที่ชายคนนี้มานั่งฟังธรรมจะได้บุญ กลับเอาจิตไปด่าทอผู้อื่นอยู่ตลอดเวลา
ในขณะเดียวกัน “คนตกปลา” ก็มองเห็นคนที่มานั่งฟังธรรมบนศาลาวัด ใจก็ตั้งจิตขออนุโมทนาบุญ เพราะผมมันเป็นคนบาป ไม่มีโอกาสได้ไปนั่งฟังธรรมกับคนอื่นเขา ต้องเอาเวลามาตกปลาเลี้ยงชีพ เลี้ยงดูพ่อแม่ที่ป่วยหนัก เพราะเกิดมาจนจึงไม่มีวาสนาสร้างบุญแบบคนอื่น หากเกิดชาติหน้า ก็ขอให้มีโอกาสได้สร้างบุญเหมือนแบบท่านๆที่ได้นั่งฟังธรรมอยู่ด้วยเถิด เกิดมาชาตินี้มีกรรมหนัก ต้องชดใช้กรรมที่ก่อไว้ ปลาที่มาติดเบ็ดก็ขออย่าได้จองเวรกันเลย
ถึงแม้คนตกปลาจะกำลังตกปลาอยู่ แต่จิตก็เอาแต่ภาวนาสาธุไปกับคนที่ฟังธรรม และขออโหสิกรรมปลาตลอด ที่นี้ทุกคนเข้าใจหรือยังว่า ทำไมคนฟังธรรมถึงตกนรก คนตกปลาได้ขึ้นสวรรค์
ความหมายของ “กรรมดี” และ “กรรมชั่ว” มาจากเจตนา การมีเจตนาที่ประกอบด้วยกุศล คือ กรรมดี แต่การมีเจตนาที่ประกอบด้วยอกุศล คือ กรรมชั่ว อย่างชายที่ไปนั่งฟังธรรม ก็หลงคิดว่าตัวเองกำลังทำดีอยู่ แล้วก็เอาแต่มองคนอื่นที่ไม่ทำแบบตัวเองว่าเป็นคนไม่ดี ในใจก็เอาแต่ ด่าทอ คิดร้าย ต่างๆนาๆ ในขณะที่คนตกปลา มีแต่เจตนาที่ดีต่อผู้อื่น เห็นผู้อื่นทำความดี ก็ยินดีด้วยเสมอ
การปฏิบัติธรรม เป็นการฝึกจิตให้สงบ เพื่อพัฒนาจิตของตนเองให้สูงขึ้น ไม่ใช่เอาไว้ไปข่มคนอื่นให้ดูต่ำลง เพราะสุดท้ายแล้วคนที่ทำแบบนี้ ย่อมต่ำกว่า เจ้าสวดมนต์แต่ยัง “นินทา“ เจ้าทำทานแต่ยัง ”เอาเปรียบ“ เจ้ามีความรู้แต่ชอบ ”ดูถูกคน“ เจ้าตัวสะอาดแต่ ”ใจสกปรก“ เจ้าอยากได้มิตรแท้ แต่… ”เจ้ากลับเป็นมิตรเทียม“ เจ้าบอกทำกุศล แต่… ”หมายเอาชื่อเสียง“ เจ้ามีทุกสิ่ง แต่… ”ไม่คิดแบ่งปัน “ เจ้าดูแลคนอื่น แต่… ”ละเลยพ่อแม่ “ เจ้างดเนื้อสัตว์ แต่… ”ข่มเหง ” เพื่อนมนุษย์ เจ้าหาตัวเองไม่เจอ แต่… “กรรม ” หาเจ้าเจอ
พระไพศาล วิสาโล ได้บอกถึงพฤติกรรมที่คนเหล่านี้เป็น นั่นเพราะว่า “เหมือนในสังคมทุกวันนี้ ที่ชอบทำบุญ แต่กลับไร้น้ำใจ ทั้งๆที่การมีน้ำใจต่อเพื่อนมนุษย์ เป็นสิ่งที่ทำได้ง่ายในชีวิตประจำวัน แต่บางคนกลับดั้นด้นเดินทางไปไกลๆ เพื่อที่จะไปทำบุญที่วัดอย่างเดียว แต่กับคนทุกข์ยากใกล้ตัว ไม่เคยแม้แต่จะเหลียวแลยื่นมือช่วย นั่นเป็นเพราะว่าคนเรา มักจะชอบกระทำต่อสิ่งที่อยู่สูงกว่าตน เช่น พระสงฆ์ วัดวาอาราม แต่กลับละเลยสิ่งที่คิดว่าอยู่ต่ำกว่าตนเอง เช่น คน ยากจน หรือ สัตว์น้อยใหญ่”
เมตตาค้ำจุนโลก
Cr: คู่มือมนุษย์
-
@ daa41bed:88f54153
2025-02-09 16:50:04There has been a good bit of discussion on Nostr over the past few days about the merits of zaps as a method of engaging with notes, so after writing a rather lengthy article on the pros of a strategic Bitcoin reserve, I wanted to take some time to chime in on the much more fun topic of digital engagement.
Let's begin by defining a couple of things:
Nostr is a decentralized, censorship-resistance protocol whose current biggest use case is social media (think Twitter/X). Instead of relying on company servers, it relies on relays that anyone can spin up and own their own content. Its use cases are much bigger, though, and this article is hosted on my own relay, using my own Nostr relay as an example.
Zap is a tip or donation denominated in sats (small units of Bitcoin) sent from one user to another. This is generally done directly over the Lightning Network but is increasingly using Cashu tokens. For the sake of this discussion, how you transmit/receive zaps will be irrelevant, so don't worry if you don't know what Lightning or Cashu are.
If we look at how users engage with posts and follows/followers on platforms like Twitter, Facebook, etc., it becomes evident that traditional social media thrives on engagement farming. The more outrageous a post, the more likely it will get a reaction. We see a version of this on more visual social platforms like YouTube and TikTok that use carefully crafted thumbnail images to grab the user's attention to click the video. If you'd like to dive deep into the psychology and science behind social media engagement, let me know, and I'd be happy to follow up with another article.
In this user engagement model, a user is given the option to comment or like the original post, or share it among their followers to increase its signal. They receive no value from engaging with the content aside from the dopamine hit of the original experience or having their comment liked back by whatever influencer they provide value to. Ad revenue flows to the content creator. Clout flows to the content creator. Sales revenue from merch and content placement flows to the content creator. We call this a linear economy -- the idea that resources get created, used up, then thrown away. Users create content and farm as much engagement as possible, then the content is forgotten within a few hours as they move on to the next piece of content to be farmed.
What if there were a simple way to give value back to those who engage with your content? By implementing some value-for-value model -- a circular economy. Enter zaps.
Unlike traditional social media platforms, Nostr does not actively use algorithms to determine what content is popular, nor does it push content created for active user engagement to the top of a user's timeline. Yes, there are "trending" and "most zapped" timelines that users can choose to use as their default, but these use relatively straightforward engagement metrics to rank posts for these timelines.
That is not to say that we may not see clients actively seeking to refine timeline algorithms for specific metrics. Still, the beauty of having an open protocol with media that is controlled solely by its users is that users who begin to see their timeline gamed towards specific algorithms can choose to move to another client, and for those who are more tech-savvy, they can opt to run their own relays or create their own clients with personalized algorithms and web of trust scoring systems.
Zaps enable the means to create a new type of social media economy in which creators can earn for creating content and users can earn by actively engaging with it. Like and reposting content is relatively frictionless and costs nothing but a simple button tap. Zaps provide active engagement because they signal to your followers and those of the content creator that this post has genuine value, quite literally in the form of money—sats.
I have seen some comments on Nostr claiming that removing likes and reactions is for wealthy people who can afford to send zaps and that the majority of people in the US and around the world do not have the time or money to zap because they have better things to spend their money like feeding their families and paying their bills. While at face value, these may seem like valid arguments, they, unfortunately, represent the brainwashed, defeatist attitude that our current economic (and, by extension, social media) systems aim to instill in all of us to continue extracting value from our lives.
Imagine now, if those people dedicating their own time (time = money) to mine pity points on social media would instead spend that time with genuine value creation by posting content that is meaningful to cultural discussions. Imagine if, instead of complaining that their posts get no zaps and going on a tirade about how much of a victim they are, they would empower themselves to take control of their content and give value back to the world; where would that leave us? How much value could be created on a nascent platform such as Nostr, and how quickly could it overtake other platforms?
Other users argue about user experience and that additional friction (i.e., zaps) leads to lower engagement, as proven by decades of studies on user interaction. While the added friction may turn some users away, does that necessarily provide less value? I argue quite the opposite. You haven't made a few sats from zaps with your content? Can't afford to send some sats to a wallet for zapping? How about using the most excellent available resource and spending 10 seconds of your time to leave a comment? Likes and reactions are valueless transactions. Social media's real value derives from providing monetary compensation and actively engaging in a conversation with posts you find interesting or thought-provoking. Remember when humans thrived on conversation and discussion for entertainment instead of simply being an onlooker of someone else's life?
If you've made it this far, my only request is this: try only zapping and commenting as a method of engagement for two weeks. Sure, you may end up liking a post here and there, but be more mindful of how you interact with the world and break yourself from blind instinct. You'll thank me later.
-
@ 97c70a44:ad98e322
2025-02-03 22:25:35Last week, in a bid to understand the LLM hype, I decided to write a trivial nostr-related program in rust via a combination of codebuff (yes, that is a referral link, pls click), aider, and goose.
The result of the experiment was inconclusive, but as a side effect it produced a great case study in converting a NINO into a Real Nostr App.
Introducing Roz
Roz, a friendly notary for nostr events.
To use it, simply publish an event to
relay.damus.io
ornos.lol
, and roz will make note of it. To find out when roz first saw a given event, just ask:curl https://roz.coracle.social/notary/cb429632ae22557d677a11149b2d0ccd72a1cf66ac55da30e3534ed1a492765d
This will return a JSON payload with a
seen
key indicating when roz first saw the event. How (and whether) you use this is up to you!De-NINO-fying roz
Roz is just a proof of concept, so don't rely on it being there forever. And anyway, roz is a NINO, since it provides value to nostr (potentially), but doesn't really do things in a nostr-native way. It also hard-codes its relays, and certainly doesn't use the outbox model or sign events. But that's ok, it's a proof of concept.
A much better way to do this would be to modify roz to properly leverage nostr's capabilities, namely:
- Use nostr-native data formats (i.e., draft a new kind)
- Use relays instead of proprietary servers for data storage
- Leverage nostr identities and signatures to decouple trust from storage, and allow trusted attestations to be discovered
Luckily, this is not hard at all. In fact, I've gone ahead and drafted a PR to the NIPs repo that adds timestamp annotations to NIP 03, as an alternative to OpenTimestamps. The trade-off is that while user attestations are far less reliable than OTS proofs, they're much easier to verify, and can reach a pretty high level of reliability by combining multiple attestation sources with other forms of reputation.
In other words, instead of going nuclear and embedding your attestations into The Time Chain, you can simply ask 5-10 relays or people you trust for their attestations for a given event.
This PR isn't terribly important on its own, but it does remove one small barrier between us and trusted key rotation events (or other types of event that require establishing a verifiable chain of causality).
-
@ 0fa80bd3:ea7325de
2025-01-29 05:55:02The land that belongs to the indigenous peoples of Russia has been seized by a gang of killers who have unleashed a war of extermination. They wipe out anyone who refuses to conform to their rules. Those who disagree and stay behind are tortured and killed in prisons and labor camps. Those who flee lose their homeland, dissolve into foreign cultures, and fade away. And those who stand up to protect their people are attacked by the misled and deceived. The deceived die for the unchecked greed of a single dictator—thousands from both sides, people who just wanted to live, raise their kids, and build a future.
Now, they are forced to make an impossible choice: abandon their homeland or die. Some perish on the battlefield, others lose themselves in exile, stripped of their identity, scattered in a world that isn’t theirs.
There’s been endless debate about how to fix this, how to clear the field of the weeds that choke out every new sprout, every attempt at change. But the real problem? We can’t play by their rules. We can’t speak their language or use their weapons. We stand for humanity, and no matter how righteous our cause, we will not multiply suffering. Victory doesn’t come from matching the enemy—it comes from staying ahead, from using tools they haven’t mastered yet. That’s how wars are won.
Our only resource is the will of the people to rewrite the order of things. Historian Timothy Snyder once said that a nation cannot exist without a city. A city is where the most active part of a nation thrives. But the cities are occupied. The streets are watched. Gatherings are impossible. They control the money. They control the mail. They control the media. And any dissent is crushed before it can take root.
So I started asking myself: How do we stop this fragmentation? How do we create a space where people can rebuild their connections when they’re ready? How do we build a self-sustaining network, where everyone contributes and benefits proportionally, while keeping their freedom to leave intact? And more importantly—how do we make it spread, even in occupied territory?
In 2009, something historic happened: the internet got its own money. Thanks to Satoshi Nakamoto, the world took a massive leap forward. Bitcoin and decentralized ledgers shattered the idea that money must be controlled by the state. Now, to move or store value, all you need is an address and a key. A tiny string of text, easy to carry, impossible to seize.
That was the year money broke free. The state lost its grip. Its biggest weapon—physical currency—became irrelevant. Money became purely digital.
The internet was already a sanctuary for information, a place where people could connect and organize. But with Bitcoin, it evolved. Now, value itself could flow freely, beyond the reach of authorities.
Think about it: when seedlings are grown in controlled environments before being planted outside, they get stronger, survive longer, and bear fruit faster. That’s how we handle crops in harsh climates—nurture them until they’re ready for the wild.
Now, picture the internet as that controlled environment for ideas. Bitcoin? It’s the fertile soil that lets them grow. A testing ground for new models of interaction, where concepts can take root before they move into the real world. If nation-states are a battlefield, locked in a brutal war for territory, the internet is boundless. It can absorb any number of ideas, any number of people, and it doesn’t run out of space.
But for this ecosystem to thrive, people need safe ways to communicate, to share ideas, to build something real—without surveillance, without censorship, without the constant fear of being erased.
This is where Nostr comes in.
Nostr—"Notes and Other Stuff Transmitted by Relays"—is more than just a messaging protocol. It’s a new kind of city. One that no dictator can seize, no corporation can own, no government can shut down.
It’s built on decentralization, encryption, and individual control. Messages don’t pass through central servers—they are relayed through independent nodes, and users choose which ones to trust. There’s no master switch to shut it all down. Every person owns their identity, their data, their connections. And no one—no state, no tech giant, no algorithm—can silence them.
In a world where cities fall and governments fail, Nostr is a city that cannot be occupied. A place for ideas, for networks, for freedom. A city that grows stronger the more people build within it.
-
@ f9cf4e94:96abc355
2025-01-18 06:09:50Para esse exemplo iremos usar: | Nome | Imagem | Descrição | | --------------- | ------------------------------------------------------------ | ------------------------------------------------------------ | | Raspberry PI B+ |
| Cortex-A53 (ARMv8) 64-bit a 1.4GHz e 1 GB de SDRAM LPDDR2, | | Pen drive |
| 16Gb |
Recomendo que use o Ubuntu Server para essa instalação. Você pode baixar o Ubuntu para Raspberry Pi aqui. O passo a passo para a instalação do Ubuntu no Raspberry Pi está disponível aqui. Não instale um desktop (como xubuntu, lubuntu, xfce, etc.).
Passo 1: Atualizar o Sistema 🖥️
Primeiro, atualize seu sistema e instale o Tor:
bash apt update apt install tor
Passo 2: Criar o Arquivo de Serviço
nrs.service
🔧Crie o arquivo de serviço que vai gerenciar o servidor Nostr. Você pode fazer isso com o seguinte conteúdo:
```unit [Unit] Description=Nostr Relay Server Service After=network.target
[Service] Type=simple WorkingDirectory=/opt/nrs ExecStart=/opt/nrs/nrs-arm64 Restart=on-failure
[Install] WantedBy=multi-user.target ```
Passo 3: Baixar o Binário do Nostr 🚀
Baixe o binário mais recente do Nostr aqui no GitHub.
Passo 4: Criar as Pastas Necessárias 📂
Agora, crie as pastas para o aplicativo e o pendrive:
bash mkdir -p /opt/nrs /mnt/edriver
Passo 5: Listar os Dispositivos Conectados 🔌
Para saber qual dispositivo você vai usar, liste todos os dispositivos conectados:
bash lsblk
Passo 6: Formatando o Pendrive 💾
Escolha o pendrive correto (por exemplo,
/dev/sda
) e formate-o:bash mkfs.vfat /dev/sda
Passo 7: Montar o Pendrive 💻
Monte o pendrive na pasta
/mnt/edriver
:bash mount /dev/sda /mnt/edriver
Passo 8: Verificar UUID dos Dispositivos 📋
Para garantir que o sistema monte o pendrive automaticamente, liste os UUID dos dispositivos conectados:
bash blkid
Passo 9: Alterar o
fstab
para Montar o Pendrive Automáticamente 📝Abra o arquivo
/etc/fstab
e adicione uma linha para o pendrive, com o UUID que você obteve no passo anterior. A linha deve ficar assim:fstab UUID=9c9008f8-f852 /mnt/edriver vfat defaults 0 0
Passo 10: Copiar o Binário para a Pasta Correta 📥
Agora, copie o binário baixado para a pasta
/opt/nrs
:bash cp nrs-arm64 /opt/nrs
Passo 11: Criar o Arquivo de Configuração 🛠️
Crie o arquivo de configuração com o seguinte conteúdo e salve-o em
/opt/nrs/config.yaml
:yaml app_env: production info: name: Nostr Relay Server description: Nostr Relay Server pub_key: "" contact: "" url: http://localhost:3334 icon: https://external-content.duckduckgo.com/iu/?u= https://public.bnbstatic.com/image/cms/crawler/COINCU_NEWS/image-495-1024x569.png base_path: /mnt/edriver negentropy: true
Passo 12: Copiar o Serviço para o Diretório de Systemd ⚙️
Agora, copie o arquivo
nrs.service
para o diretório/etc/systemd/system/
:bash cp nrs.service /etc/systemd/system/
Recarregue os serviços e inicie o serviço
nrs
:bash systemctl daemon-reload systemctl enable --now nrs.service
Passo 13: Configurar o Tor 🌐
Abra o arquivo de configuração do Tor
/var/lib/tor/torrc
e adicione a seguinte linha:torrc HiddenServiceDir /var/lib/tor/nostr_server/ HiddenServicePort 80 127.0.0.1:3334
Passo 14: Habilitar e Iniciar o Tor 🧅
Agora, ative e inicie o serviço Tor:
bash systemctl enable --now tor.service
O Tor irá gerar um endereço
.onion
para o seu servidor Nostr. Você pode encontrá-lo no arquivo/var/lib/tor/nostr_server/hostname
.
Observações ⚠️
- Com essa configuração, os dados serão salvos no pendrive, enquanto o binário ficará no cartão SD do Raspberry Pi.
- O endereço
.onion
do seu servidor Nostr será algo como:ws://y3t5t5wgwjif<exemplo>h42zy7ih6iwbyd.onion
.
Agora, seu servidor Nostr deve estar configurado e funcionando com Tor! 🥳
Se este artigo e as informações aqui contidas forem úteis para você, convidamos a considerar uma doação ao autor como forma de reconhecimento e incentivo à produção de novos conteúdos.
-
@ 58537364:705b4b85
2025-05-15 16:26:49ความสุขแท้ไม่มีในโลก มีแต่เมื่อความทุกข์ได้ถูกบำบัดลงครั้งหนึ่ง ก็เรียกว่าความสุขครั้งหนึ่ง คุณอยากได้ของสักชิ้นอย่างมาก เมื่อได้มาแล้วก็มีความสุข เพราะความอยากได้ถูกบำบัดไปแล้ว เมื่อคุณอยากได้ของหรืออยากได้อะไรอีก ความทุกข์ก็เกิดขึ้นอีก เมื่ออยากมาก ก็ทุกข์มาก เมื่อไม่อยากให้ของสิ่งนั้นหายหรือแตกดับไป ก็ทุกข์อีก
เมื่อได้รับของที่ต้องการแล้ว ก็ต้องดูแลเอาใจใส่ของนั้น เมื่อไม่เป็นไปตามความอยากหรือไม่อยากของตน ก็ทุกข์ ซึ่งทุกสรรพสิ่ง เมื่อเกิดขึ้น ย่อมตั้งอยู่แล้วดับไป คนที่เรารักย่อมเจ็บป่วยและดับไป เป็นธรรมดาของชีวิต แต่เราไม่ยอมรับ บางคนเมื่อพูดถึงความตาย ก็บอกว่า พูดทำไม เป็นคำอัปมงคล แต่โดยแท้แล้ว ความตายอยู่กับเราทุกลมหายใจ
เราต้องการให้คนรอบๆ ทำแต่สิ่งที่ถูกใจเรา ทำสิ่งที่ดีต่อเรา แต่มันจะเป็นไปได้หรือ ความสุขจึงอยู่ที่การยอมรับในสิ่งที่เป็น ที่มีอยู่ เพราะธรรมชาติของสิ่งที่เราต้องพบ ต้องประสบ มันเป็นเช่นนั้นของมันเอง การพยายามไปเปลี่ยนแปลงสิ่งต่างๆรอบๆตัว จึง เหมือนการพยายามห้ามแม่น้ำไม่ให้ไหลไป
ความสุขในฐานะปุถุชนมีได้ ด้วยการยอมรับสิ่งที่เกิดขึ้น การยอมรับไม่ใช่การยอมแพ้แก่มัน แต่เมื่อเราพยายามทำดีอย่างที่สุดแล้ว ผลสุดท้ายจะเป้นอย่างไร ก็ต้องวาง
ขอยกคำหลวงพ่อไพศาลที่ว่า ชีวิตเราเลือกได้ ว่าจะเป็นอย่างไร เด็กผู้หญิง 10 ขวบ ขนของ แต่เด็กผู้ชายสองคน ไม่ช่วยขนของ ไปดูทีวีเสีย แทนที่เด็กผู้หญิงคนนั้นจะโกรธ กลับบอกว่า ขนของเหนื่อยอย่างเดียว แต่ถ้าไปโกรธเขา เราก็เหนื่อยสองอย่าง
การอยู่โดยมองโลกในแง่บวก เป็นสิ่งที่สำคัญมาก ขอยกตัวอย่างจากหลวงพ่อไพศาลอีกครั้ง เด็กชายคนหนึ่งเป็นโรคมะเร็งที่ กระดูกที่ขา เขาถูกตัดขาไปข้างหนึ่ง เขาบอกว่า เขาดีใจที่ยังมีขาอีกข้างหนึ่ง ไม่ใช่เสียใจที่เสียขาไป
เป็นสุขในทุกความเปลี่ยนแปลง หลวงพ่อไพศาล วิสาโล
คนเราย่อมปรารถนาความเปลี่ยนแปลง หากว่าความเปลี่ยนแปลงนั้นอยู่ในอำนาจของเรา หรือสอดคล้องกับความต้องการของเรา ไม่มีใครอยากขับรถคันเดิม ใช้โทรศัพท์เครื่องเดิม หรืออยู่กับที่ไปตลอด มิจำต้องพูดถึงการอยู่ในอิริยาบถเดิม ๆ เราต้องการสิ่งใหม่ ๆ อยู่เสมอ แต่ความจริงอย่างหนึ่งที่เราปฏิเสธไม่ได้ก็คือ มีความเปลี่ยนแปลงหลายอย่างที่เราไม่ต้องการแต่หนีไม่พ้น ความเปลี่ยนแปลงอย่างนี้แหละที่ผู้คนประหวั่นพรั่นพรึง วิตกกังวลเมื่อนึกถึงมัน และเป็นทุกข์เมื่อมันมาถึง
แต่ยังมีความจริงอีกอย่างหนึ่งที่เราพึงตระหนักก็คือ สุขหรือทุกข์นั้น มิได้ขึ้นอยู่กับว่า มีอะไรเกิดขึ้นกับเรา แต่อยู่ที่ว่า เรารู้สึกอย่างไรกับสิ่งนั้นต่างหาก แม้มีสิ่งไม่ดีเกิดขึ้นกับเรา แต่ถ้าเราไม่รู้สึกย่ำแย่ไปกับมัน หรือวางใจให้เป็น มันก็ทำให้เราเป็นทุกข์ไม่ได้
กนกวรรณ ศิลป์สุข เป็นโรคธาลัสซีเมียตั้งแต่เกิด ทำให้เธอมีร่างกายแคระแกร็น กระดูกเปราะและเจ็บป่วยด้วยโรคแทรกซ้อนนานาชนิด ซึ่งมักทำให้อายุสั้น แต่เธอกับน้องสาวไม่มีสีหน้าอมทุกข์แต่อย่างใด กลับใช้ชีวิตอย่างมีความสุข เธอพูดจากประสบการณ์ของตัวเองว่า “มันไม่สำคัญหรอกว่าเราจะเป็นอย่างไรหรือมีอะไรเกิดขึ้นกับชีวิต แต่สำคัญที่ว่าเมื่อเกิดขึ้นมาแล้ว เราคิดกับมันยังไงต่างหาก สำหรับเราสองคน ความสุขเป็นเรื่องที่หาง่ายมาก ถ้าใจของเราคิดว่ามันเป็นความสุข”
โอโตทาเกะ ฮิโรทาดะ เกิดมาพิการ ไร้แขนไร้ขา แต่เขาสามารถช่วยตัวเองได้แทบทุกอย่าง ในหนังสือเรื่อง ไม่ครบห้า เขาพูดไว้ตอนหนึ่งว่า “ผมเกิดมาพิการแต่ผมมีความสุขและสนุกทุกวัน” ใครที่ได้รู้จักเขาคงยอมรับเต็มปากว่าเขาเป็นคนที่มีความสุขคนหนึ่ง อาจจะสุขมากกว่าคนที่มีอวัยวะครบ (แต่กลับเป็นทุกข์เพราะหน้ามีสิว ผิวตกกระ หุ่นไม่กระชับ)
ในโลกที่ซับซ้อนและผันผวนปรวนแปรอยู่เสมอ เราไม่สามารถเลือกได้ว่าจะต้องมีสิ่งดี ๆ เกิดขึ้นกับเราตลอดเวลา แต่เราเลือกได้ว่าจะมีปฏิกิริยากับสิ่งนั้นอย่างไร รวมทั้งเลือกได้ว่าจะยอมให้มันมีอิทธิพลต่อเราอย่างไรและแค่ไหน..ในวันที่แดดจ้าอากาศร้อนอ้าว บุรุษไปรษณีย์คนหนึ่งยืนรอส่งเอกสารหน้าบ้านหลังใหญ่ หลังจากเรียกหาเจ้าของบ้านแต่ไม่มีวี่แววว่าจะมีคนมารับ เขาก็ร้องเพลงไปพลาง ๆ เสียงดังชัดเจนไปทั้งซอย ในที่สุดเจ้าของบ้านก็ออกจากห้องแอร์มารับเอกสาร เธอมีสีหน้าหงุดหงิด เมื่อรับเอกสารเสร็จเธอก็ถามบุรุษไปรษณีย์ว่า “ร้อนแบบนี้ยังมีอารมณ์ร้องเพลงอีกเหรอ” เขายิ้มแล้วตอบว่า “ถ้าโลกร้อนแต่ใจเราเย็น มันก็เย็นครับ ร้องเพลงเป็นความสุขของผมอย่างหนึ่ง ส่งไปร้องไป” ว่าแล้วเขาก็ขับรถจากไป
เราสั่งให้อากาศเย็นตลอดเวลาไม่ได้ แต่เราเลือกได้ว่าจะยอมให้อากาศร้อนมีอิทธิพลต่อจิตใจของเราได้แค่ไหน นี้คือเสรีภาพอย่างหนึ่งที่เรามีกันทุกคน อยู่ที่ว่าเราจะใช้เสรีภาพชนิดนี้หรือไม่ พูดอีกอย่างก็คือ ถ้าเราหงุดหงิดเพราะอากาศร้อน นั่นแสดงว่าเราเลือกแล้วที่จะยอมให้มันยัดเยียดความทุกข์แก่ใจเรา
ถึงที่สุดแล้ว สุขหรือทุกข์อยู่ที่เราเลือก มิใช่มีใครมาทำให้ ถึงแม้จะป่วยด้วยโรคร้าย เราก็ยังสามารถมีความสุขได้ โจว ต้า กวน เด็กชายวัย ๑๐ ขวบ เป็นโรคมะเร็งที่ขา จนต้องผ่าตัดถึง ๓ ครั้ง เขาได้เขียนบทกวีเล่าถึงประสบการณ์ในครั้งนั้นว่า เมื่อพ่อแม่จูงมือเขาเข้าห้องผ่าตัด เขาเลือก “น้องสงบ” เป็นเพื่อน (แทนที่จะเป็น “น้องกังวล”) เมื่อเขาห้องผ่าตัดครั้งที่สอง เขาเลือก “ลุงมั่นคง”เป็นเพื่อน (แทนที่จะเป็น “ป้ากลัว”) เมื่อพ่ออุ้มเขาเข้าห้องผ่าตัดครั้งที่สาม เขาเลือก “ชีวิต” (แทนที่จะเป็น “ความตาย”) ด้วยการเลือกเช่นนี้มะเร็งจึงบั่นทอนได้แต่ร่างกายของเขา แต่ทำอะไรจิตใจเขาไม่ได้
เมื่อใดก็ตามที่ความเปลี่ยนแปลงอันไม่พึงประสงค์เกิดขึ้น หากเราไม่สามารถสกัดกั้นหรือบรรเทาลงได้ ในยามนั้นไม่มีอะไรดีกว่าการหันมาจัดการกับใจของเราเอง เพื่อให้เกิดความทุกข์น้อยที่สุด หรือใช้มันให้เกิดประโยชน์มากที่สุด ด้วยวิธีการต่อไปนี้
๑. ยอมรับความจริงที่เกิดขึ้นแล้ว การยอมรับความจริงที่ไม่พึงประสงค์ ทำให้เราเลิกบ่น ตีโพยตีพาย หรือมัวแต่ตีอกชกหัว ซึ่งมีแต่จะเพิ่มความทุกข์ให้แก่ตนเอง คนเรามักซ้ำเติมตัวเองด้วยการบ่นโวยวายในสิ่งที่ไม่อาจแก้ไขอะไรได้
เรามักทำใจยอมรับความจริงที่เกิดขึ้นแล้วไม่ได้ เพราะเห็นว่ามันไม่ถูกต้อง ไม่น่าเกิด ไม่ยุติธรรม (“ทำไมต้องเป็นฉัน ?”) แต่ยิ่งไปยึดติดหรือหมกมุ่นกับเหตุผลเหล่านั้น เราก็ยิ่งเป็นทุกข์ แทนที่จะเสียเวลาและพลังงานไปกับการบ่นโวยวาย ไม่ดีกว่าหรือหากเราจะเอาเวลาและพลังงานเหล่านั้นไปใช้ในการรับมือกับสิ่ง ที่เกิดขึ้นแล้ว
เด็ก ๓ คนได้รับมอบหมายให้ขนของขึ้นรถไฟ แต่ระหว่างที่กำลังขนของ เด็กชาย ๒ คนก็ผละไปดูโทรทัศน์ซึ่งกำลังถ่ายทอดสดการชกมวยของสมจิตร จงจอหอ นักชกเหรียญทองโอลิมปิค เมื่อมีคนถามเด็กหญิงซึ่งกำลังขนของอยู่คนเดียวว่า เธอไม่โกรธหรือคิดจะด่าว่าเพื่อน ๒ คนนั้นหรือ เธอตอบว่า “หนูขนของขึ้นรถไฟ หนูเหนื่อยอย่างเดียว แต่ถ้าหนูโกรธหรือไปด่าว่าเขา หนูก็ต้องเหนื่อยสองอย่าง”
ทุกครั้งที่ทำงาน เราสามารถเลือกได้ว่าจะเหนื่อยอย่างเดียว หรือเหนื่อยสองอย่าง คำถามคือทุกวันนี้เราเลือกเหนื่อยกี่อย่าง นอกจากเหนื่อยกายแล้ว เรายังเหนื่อยใจด้วยหรือไม่
การยอมรับความจริง ไม่ได้แปลว่ายอมจำนนต่อสิ่งที่เกิดขึ้น แต่เป็นจุดเริ่มต้นของการเลือกที่จะไม่ยอมทุกข์เพราะความเปลี่ยนแปลง อีกทั้งยังทำให้สามารถตั้งหลักหรือปรับตัวปรับใจพร้อมรับความเปลี่ยนแปลง นั้นอย่างดีที่สุด
๒. ทำปัจจุบันให้ดีที่สุด นอกจากบ่นโวยวายกับสิ่งที่เกิดขึ้นแล้ว เรามักทุกข์เพราะอาลัยอดีตอันงดงาม หรือกังวลกับสิ่งเลวร้ายที่คาดว่าจะเกิดขึ้นในอนาคต สุดท้ายก็เลยไม่เป็นอันทำอะไร
ไม่ว่าจะอาลัยอดีตหรือกังวลกับอนาคตเพียงใด ก็ไม่ช่วยให้อะไรดีขึ้น กลับทำให้เราย่ำแย่กว่าเดิม สิ่งเดียวที่จะทำให้อะไรดีขึ้นก็คือการทำปัจจุบันให้ดีที่สุด ทางข้างหน้าแม้จะยาวไกลและลำบากเพียงใด แต่เราไม่มีวันถึงจุดหมายเลยหากไม่ลงมือก้าวเสียแต่เดี๋ยวนี้ รวมทั้งใส่ใจกับแต่ละก้าวให้ดี ถ้าก้าวไม่หยุดในที่สุดก็ต้องถึงที่หมายเอง
บรู๊ซ เคอร์บี นักไต่เขา พูดไว้อย่างน่าสนใจว่า “ทุกอย่างมักจะดูเลวร้ายกว่าความจริงเสมอเมื่อเรามองจากที่ไกล ๆ เช่น หนทางขึ้นเขาดูน่ากลัว....บางเส้นทางอาจดูเลวร้ายจนคุณระย่อและอยากหันหลัง กลับ นานมาแล้วผมได้บทเรียนสำคัญคือ แทนที่จะมองขึ้นไปข้างบนและสูญเสียกำลังใจกับการจินตนาการถึงอันตรายข้าง หน้า ผมจับจ้องอยู่ที่พื้นใต้ฝ่าเท้าแล้วก้าวไปข้างหน้าทีละก้าว”
๓. มองแง่บวก มองแง่บวกไม่ได้หมายถึงการฝันหวานว่าอนาคตจะต้องดีแน่ แต่หมายถึงการมองเห็นสิ่งดี ๆ ที่มีอยู่ในปัจจุบัน ไม่ว่าเจ็บป่วย ตกงาน หรืออกหัก ก็ยังมีสิ่งดี ๆ อยู่รอบตัวและในตัวเรา รวมทั้งมองเห็นสิ่งดี ๆ ที่ซุกซ่อนอยู่ในความเปลี่ยนแปลงเหล่านั้นด้วย
แม้กนกวรรณ ศิลป์สุข จะป่วยด้วยโรคร้าย แต่เธอก็มีความสุขทุกวัน เพราะ “เราก็ยังมีตาเอาไว้มองสิ่งที่สวย ๆ มีจมูกไว้ดมกลิ่นหอม ๆ มีปากไว้กินอาหารอร่อย ๆ แล้วก็มีร่างกายที่ยังพอทำอะไรได้อีกหลายอย่าง แค่นี้ก็เพียงพอแล้วที่เราจะมีความสุข” ส่วนจารุวรรณ ศิลป์สุข น้องสาวของเธอ ซึ่งขาหักถึง ๑๔ ครั้งด้วยโรคเดียวกัน ก็พูดว่า “ขาหักก็ดีเหมือนกัน ไม่ต้องไปโรงเรียน ได้อยู่กับบ้าน ฟังยายเล่านิทาน หรือไม่ก็อ่านหนังสือ อยู่กับดอกไม้ กับธรรมชาติ กับสิ่งที่เราชอบ ก็ถือว่ามีความสุขไปอีกแบบ”
โจว ต้า กวน แม้จะถูกตัดขา แต่แทนที่จะเศร้าเสียใจกับขาที่ถูกตัด เขากลับรู้สึกดีที่ยังมีขาอีกข้างหนึ่ง ดังตั้งชื่อหนังสือรวมบทกวีของเขาว่า “ฉันยังมีขาอีกข้างหนึ่ง”
หลายคนพบว่าการที่เป็นมะเร็งทำให้ตนเองได้มาพบธรรมะและความสุขที่ลึกซึ้ง จึงอดไม่ได้ที่จะอุทานว่า “โชคดีที่เป็นมะเร็ง” ขณะที่บางคนบอกว่า “โชคดีที่เป็นแค่มะเร็งสมอง” เพราะหากเป็นมะเร็งปากมดลูกเธอจะต้องเจ็บปวดยิ่งกว่านี้
ถึงที่สุด ไม่ว่าอะไรเกิดขึ้นกับเรา ก็ล้วนดีเสมอ อย่างน้อยก็ดีที่ไม่แย่ไปกว่านี้
๔. มีสติ รู้เท่าทันตนเอง เมื่อความเปลี่ยนแปลงที่ไม่พึงประสงค์เกิดขึ้น เรามักมองออกนอกตัว และอดไม่ได้ที่จะโทษคนโน้น ต่อว่าคนนี้ และเรียกหาใครต่อใครมาช่วย แต่เรามักลืมดูใจตนเอง ว่ากำลังปล่อยให้ความโกรธแค้น ความกังวล และความท้อแท้ครอบงำใจไปแล้วมากน้อยเพียงใด เราลืมไปว่าเป็นตัวเราเองต่างหากที่ยอมให้เหตุการณ์ต่าง ๆ รอบตัวยัดเยียดความทุกข์ให้แก่ใจเรา ไม่ใช่เราดอกหรือที่เลือกทุกข์มากกว่าสุข การมีสติ ระลึกรู้ใจที่กำลังจมอยู่กับความทุกข์ จะช่วยพาใจกลับสู่ความปกติ เห็นอารมณ์ต่าง ๆ เกิดขึ้นโดยไม่ไปข้องเกี่ยว จ่อมจม หรือยึดติดถือมั่นมัน อีกทั้งยังเปิดช่องและบ่มเพาะปัญญาให้ทำงานได้เต็มที่ สามารถเปลี่ยนร้ายให้กลายเป็นดี หรือมองเห็นด้านดีของมันได้
สติและปัญญาทำให้เรามีเสรีภาพที่จะเลือกสุข และหันหลังให้กับความทุกข์ ใช่หรือไม่ว่าอิสรภาพที่แท้ คือ ความสามารถในการอนุญาตให้สิ่งต่าง ๆ มีอิทธิพลต่อชีวิตของเราได้เพียงใด ความเปลี่ยนแปลงของร่างกาย ของทรัพย์สิน ของผู้คนรอบตัว รวมทั้งความเปลี่ยนแปลงในบ้านเมือง ไม่สามารถทำให้เราทุกข์ได้ หากเราเข้าถึงอิสรภาพดังกล่าว แทนที่เราจะมัววิงวอนเรียกร้องให้เกิดความเปลี่ยนแปลงที่ถูกใจเรา ไม่ดีกว่าหรือหากเราพยายามพัฒนาตนบ่มเพาะจิตใจให้เข้าถึงอิสรภาพดังกล่าว ควบคู่ไปกับการสร้างสรรค์สิ่งดีงามให้เกิดขึ้นแก่ตนเองและสังคม
credit : Suphan Click!!
-
@ 1bda7e1f:bb97c4d9
2025-01-02 05:19:08Tldr
- Nostr is an open and interoperable protocol
- You can integrate it with workflow automation tools to augment your experience
- n8n is a great low/no-code workflow automation tool which you can host yourself
- Nostrobots allows you to integrate Nostr into n8n
- In this blog I create some workflow automations for Nostr
- A simple form to delegate posting notes
- Push notifications for mentions on multiple accounts
- Push notifications for your favourite accounts when they post a note
- All workflows are provided as open source with MIT license for you to use
Inter-op All The Things
Nostr is a new open social protocol for the internet. This open nature exciting because of the opportunities for interoperability with other technologies. In Using NFC Cards with Nostr I explored the
nostr:
URI to launch Nostr clients from a card tap.The interoperability of Nostr doesn't stop there. The internet has many super-powers, and Nostr is open to all of them. Simply, there's no one to stop it. There is no one in charge, there are no permissioned APIs, and there are no risks of being de-platformed. If you can imagine technologies that would work well with Nostr, then any and all of them can ride on or alongside Nostr rails.
My mental model for why this is special is Google Wave ~2010. Google Wave was to be the next big platform. Lars was running it and had a big track record from Maps. I was excited for it. Then, Google pulled the plug. And, immediately all the time and capital invested in understanding and building on the platform was wasted.
This cannot happen to Nostr, as there is no one to pull the plug, and maybe even no plug to pull.
So long as users demand Nostr, Nostr will exist, and that is a pretty strong guarantee. It makes it worthwhile to invest in bringing Nostr into our other applications.
All we need are simple ways to plug things together.
Nostr and Workflow Automation
Workflow automation is about helping people to streamline their work. As a user, the most common way I achieve this is by connecting disparate systems together. By setting up one system to trigger another or to move data between systems, I can solve for many different problems and become way more effective.
n8n for workflow automation
Many workflow automation tools exist. My favourite is n8n. n8n is a low/no-code workflow automation platform which allows you to build all kinds of workflows. You can use it for free, you can self-host it, it has a user-friendly UI and useful API. Vs Zapier it can be far more elaborate. Vs Make.com I find it to be more intuitive in how it abstracts away the right parts of the code, but still allows you to code when you need to.
Most importantly you can plug anything into n8n: You have built-in nodes for specific applications. HTTP nodes for any other API-based service. And community nodes built by individual community members for any other purpose you can imagine.
Eating my own dogfood
It's very clear to me that there is a big design space here just demanding to be explored. If you could integrate Nostr with anything, what would you do?
In my view the best way for anyone to start anything is by solving their own problem first (aka "scratching your own itch" and "eating your own dogfood"). As I get deeper into Nostr I find myself controlling multiple Npubs – to date I have a personal Npub, a brand Npub for a community I am helping, an AI assistant Npub, and various testing Npubs. I need ways to delegate access to those Npubs without handing over the keys, ways to know if they're mentioned, and ways to know if they're posting.
I can build workflows with n8n to solve these issues for myself to start with, and keep expanding from there as new needs come up.
Running n8n with Nostrobots
I am mostly non-technical with a very helpful AI. To set up n8n to work with Nostr and operate these workflows should be possible for anyone with basic technology skills.
- I have a cheap VPS which currently runs my HAVEN Nostr Relay and Albyhub Lightning Node in Docker containers,
- My objective was to set up n8n to run alongside these in a separate Docker container on the same server, install the required nodes, and then build and host my workflows.
Installing n8n
Self-hosting n8n could not be easier. I followed n8n's Docker-Compose installation docs–
- Install Docker and Docker-Compose if you haven't already,
- Create your
docker-compose.yml
and.env
files from the docs, - Create your data folder
sudo docker volume create n8n_data
, - Start your container with
sudo docker compose up -d
, - Your n8n instance should be online at port
5678
.
n8n is free to self-host but does require a license. Enter your credentials into n8n to get your free license key. You should now have access to the Workflow dashboard and can create and host any kind of workflows from there.
Installing Nostrobots
To integrate n8n nicely with Nostr, I used the Nostrobots community node by Ocknamo.
In n8n parlance a "node" enables certain functionality as a step in a workflow e.g. a "set" node sets a variable, a "send email" node sends an email. n8n comes with all kinds of "official" nodes installed by default, and Nostr is not amongst them. However, n8n also comes with a framework for community members to create their own "community" nodes, which is where Nostrobots comes in.
You can only use a community node in a self-hosted n8n instance (which is what you have if you are running in Docker on your own server, but this limitation does prevent you from using n8n's own hosted alternative).
To install a community node, see n8n community node docs. From your workflow dashboard–
- Click the "..." in the bottom left corner beside your username, and click "settings",
- Cilck "community nodes" left sidebar,
- Click "Install",
- Enter the "npm Package Name" which is
n8n-nodes-nostrobots
, - Accept the risks and click "Install",
- Nostrobots is now added to your n8n instance.
Using Nostrobots
Nostrobots gives you nodes to help you build Nostr-integrated workflows–
- Nostr Write – for posting Notes to the Nostr network,
- Nostr Read – for reading Notes from the Nostr network, and
- Nostr Utils – for performing certain conversions you may need (e.g. from bech32 to hex).
Nostrobots has good documentation on each node which focuses on simple use cases.
Each node has a "convenience mode" by default. For example, the "Read" Node by default will fetch Kind 1 notes by a simple filter, in Nostrobots parlance a "Strategy". For example, with Strategy set to "Mention" the node will accept a pubkey and fetch all Kind 1 notes that Mention the pubkey within a time period. This is very good for quick use.
What wasn't clear to me initially (until Ocknamo helped me out) is that advanced use cases are also possible.
Each node also has an advanced mode. For example, the "Read" Node can have "Strategy" set to "RawFilter(advanced)". Now the node will accept json (anything you like that complies with NIP-01). You can use this to query Notes (Kind 1) as above, and also Profiles (Kind 0), Follow Lists (Kind 3), Reactions (Kind 7), Zaps (Kind 9734/9735), and anything else you can think of.
Creating and adding workflows
With n8n and Nostrobots installed, you can now create or add any kind of Nostr Workflow Automation.
- Click "Add workflow" to go to the workflow builder screen,
- If you would like to build your own workflow, you can start with adding any node. Click "+" and see what is available. Type "Nostr" to explore the Nostrobots nodes you have added,
- If you would like to add workflows that someone else has built, click "..." in the top right. Then click "import from URL" and paste in the URL of any workflow you would like to use (including the ones I share later in this article).
Nostr Workflow Automations
It's time to build some things!
A simple form to post a note to Nostr
I started very simply. I needed to delegate the ability to post to Npubs that I own in order that a (future) team can test things for me. I don't want to worry about managing or training those people on how to use keys, and I want to revoke access easily.
I needed a basic form with credentials that posted a Note.
For this I can use a very simple workflow–
- A n8n Form node – Creates a form for users to enter the note they wish to post. Allows for the form to be protected by a username and password. This node is the workflow "trigger" so that the workflow runs each time the form is submitted.
- A Set node – Allows me to set some variables, in this case I set the relays that I intend to use. I typically add a Set node immediately following the trigger node, and put all the variables I need in this. It helps to make the workflows easier to update and maintain.
- A Nostr Write node (from Nostrobots) – Writes a Kind-1 note to the Nostr network. It accepts Nostr credentials, the output of the Form node, and the relays from the Set node, and posts the Note to those relays.
Once the workflow is built, you can test it with the testing form URL, and set it to "Active" to use the production form URL. That's it. You can now give posting access to anyone for any Npub. To revoke access, simply change the credentials or set to workflow to "Inactive".
It may also be the world's simplest Nostr client.
You can find the Nostr Form to Post a Note workflow here.
Push notifications on mentions and new notes
One of the things Nostr is not very good at is push notifications. Furthermore I have some unique itches to scratch. I want–
- To make sure I never miss a note addressed to any of my Npubs – For this I want a push notification any time any Nostr user mentions any of my Npubs,
- To make sure I always see all notes from key accounts – For this I need a push notification any time any of my Npubs post any Notes to the network,
- To get these notifications on all of my devices – Not just my phone where my Nostr regular client lives, but also on each of my laptops to suit wherever I am working that day.
I needed to build a Nostr push notifications solution.
To build this workflow I had to string a few ideas together–
- Triggering the node on a schedule – Nostrobots does not include a trigger node. As every workflow starts with a trigger we needed a different method. I elected to run the workflow on a schedule of every 10-minutes. Frequent enough to see Notes while they are hot, but infrequent enough to not burden public relays or get rate-limited,
- Storing a list of Npubs in a Nostr list – I needed a way to store the list of Npubs that trigger my notifications. I initially used an array defined in the workflow, this worked fine. Then I decided to try Nostr lists (NIP-51, kind 30000). By defining my list of Npubs as a list published to Nostr I can control my list from within a Nostr client (e.g. Listr.lol or Nostrudel.ninja). Not only does this "just work", but because it's based on Nostr lists automagically Amethyst client allows me to browse that list as a Feed, and everyone I add gets notified in their Mentions,
- Using specific relays – I needed to query the right relays, including my own HAVEN relay inbox for notes addressed to me, and wss://purplepag.es for Nostr profile metadata,
- Querying Nostr events (with Nostrobots) – I needed to make use of many different Nostr queries and use quite a wide range of what Nostrobots can do–
- I read the EventID of my Kind 30000 list, to return the desired pubkeys,
- For notifications on mentions, I read all Kind 1 notes that mention that pubkey,
- For notifications on new notes, I read all Kind 1 notes published by that pubkey,
- Where there are notes, I read the Kind 0 profile metadata event of that pubkey to get the displayName of the relevant Npub,
- I transform the EventID into a Nevent to help clients find it.
- Using the Nostr URI – As I did with my NFC card article, I created a link with the
nostr:
URI prefix so that my phone's native client opens the link by default, - Push notifications solution – I needed a push notifications solution. I found many with n8n integrations and chose to go with Pushover which supports all my devices, has a free trial, and is unfairly cheap with a $5-per-device perpetual license.
Once the workflow was built, lists published, and Pushover installed on my phone, I was fully set up with push notifications on Nostr. I have used these workflows for several weeks now and made various tweaks as I went. They are feeling robust and I'd welcome you to give them a go.
You can find the Nostr Push Notification If Mentioned here and If Posts a Note here.
In speaking with other Nostr users while I was building this, there are all kind of other needs for push notifications too – like on replies to a certain bookmarked note, or when a followed Npub starts streaming on zap.stream. These are all possible.
Use my workflows
I have open sourced all my workflows at my Github with MIT license and tried to write complete docs, so that you can import them into your n8n and configure them for your own use.
To import any of my workflows–
- Click on the workflow of your choice, e.g. "Nostr_Push_Notify_If_Mentioned.json",
- Click on the "raw" button to view the raw JSON, ex any Github page layout,
- Copy that URL,
- Enter that URL in the "import from URL" dialog mentioned above.
To configure them–
- Prerequisites, credentials, and variables are all stated,
- In general any variables required are entered into a Set Node that follows the trigger node,
- Pushover has some extra setup but is very straightforward and documented in the workflow.
What next?
Over my first four blogs I explored creating a good Nostr setup with Vanity Npub, Lightning Payments, Nostr Addresses at Your Domain, and Personal Nostr Relay.
Then in my latest two blogs I explored different types of interoperability with NFC cards and now n8n Workflow Automation.
Thinking ahead n8n can power any kind of interoperability between Nostr and any other legacy technology solution. On my mind as I write this:
- Further enhancements to posting and delegating solutions and forms (enhanced UI or different note kinds),
- Automated or scheduled posting (such as auto-liking everything Lyn Alden posts),
- Further enhancements to push notifications, on new and different types of events (such as notifying me when I get a new follower, on replies to certain posts, or when a user starts streaming),
- All kinds of bridges, such as bridging notes to and from Telegram, Slack, or Campfire. Or bridging RSS or other event feeds to Nostr,
- All kinds of other automation (such as BlackCoffee controlling a coffee machine),
- All kinds of AI Assistants and Agents,
In fact I have already released an open source workflow for an AI Assistant, and will share more about that in my next blog.
Please be sure to let me know if you think there's another Nostr topic you'd like to see me tackle.
GM Nostr.
-
@ f0c7506b:9ead75b8
2024-12-08 09:05:13Yalnızca güçlü olanların hakkıdır yaşamak.
Güçlü olan ileri gider ve saflar seyrekleşir. Ama üç beş büyük, güçlü ve tanrısal kişi güneşli ve aydınlık gözleriyle o yeni, o vaat edilmiş ülkeye ulaşacaktır. Belki binlerce yıl sonra ancak. Ve güçlü, adaleli, hükmetmek için yaratılmış elleriyle hastaların, zayıfların ve sakatların ölüleri üzerinde bir krallık kuracaklardır. Bir krallık!
Benim aradığım insanların kendileri değil, sesleridir.
Duyguları körelmiş, çeşitli düşüncelere saplanmış kalabalık hiçbir zaman ilerlemenin taşıyıcısı olamaz, kendi küçüklüğünün o küflü içgüdüsüyle kalabalığın kin ve nefretle baktığı bir kişi, bir büyük kişi, iradesinin gösterdiği yolda kimsenin gözünün yaşına bakmaksızın ilahi bir güç ve bir zafer gülümsemesiyle yürüyebilir ancak.
Bizim soyumuz da sonsuz oluşum piramidinin doruk noktasını oluşturmaktan uzaktır. Bizler de mükemmelliğe ulaşmış değiliz. Bizler de henüz olgunlaşmadık.
Şairler sevgiye övgüler döşenir; doğrusu sevginin güçlü bir şey olduğu kesin. Hüneşin bir ışınıdır sevgi, aydınlatıp nurlandırır insanı der bazıları; bazıları da insanı esrikliğe sürükleyen bir zehri kendisinde barındırdığını söyler. Gerçekten de yol açtığı sonuçlar, bir hekimin ağır bir ameliyattan önce korkudan titreyen hastaya teneffüs ettirdiği güldürücü gazınkine benzer, içinde tepinip duran acıyı unutturur hastaya.
Önemli olan, hayatta hiç değilse bir kez kutsal bir ilkbaharın yaşanmasıdır; öyle bir bahar ki, insanın gönlünü ilerideki bütün günleri altın yaldızla kaplamaya yetecek kadar ışık ve parıltıyla doldursun.
Şu hayat denen şey kötü bir işçiliğin ürünü, acemilere göre bir şey. Bu kepaze yaşam uğruna insan nelere katlanmıyor ki!
Kendisine sadakatten ayrılmadığı, yalnızca kendisinin olan bir tek bu var: Yalnızlığı.
Sahildeki üstü tenteli hasır koltuklar arkasındaki yüksek, sessiz kum tepeleri içinde yürürsen, tenteler altındaki insanları göremezsin; ama birinin bir diğerine seslendiğini, bir başkasının gevezelik ettiğini, bir ötekinin güldüğünü işitir ve anlarsın hemen: bu insan şöyle şöyle biridir diyebilirsin. Onun hayatı sevdiğini, bağrında büyük bir özlem ya da acı barındırdığını, bu acının da sesini ağlamaklı kıldığını her gülüşünde hissedersin.
-
@ eab58da0:eebdafbf
2025-05-15 15:43:32By Unknownfx
Comparison used to be my silent thief, stealing my joy and clouding my mental health. I’d scroll through posts, see others’ perfect lives, and feel like I was falling behind. But when I learned to let go of comparing, I found a freedom I didn’t know was possible. Here’s my story and how you can start living your own.
Caught in the Comparison Trap I remember a night last year, sitting on my couch, scrolling X. I saw someone’s post about their flawless morning routine—meditation, green smoothies, crushing their goals. Meanwhile, I’d barely dragged myself out of bed, my mind foggy from stress. I thought, “Why can’t I be like that?” That question was poison. It wasn’t just social media; I compared myself to coworkers, friends, even strangers. Their wins made me feel small, like my efforts didn’t measure up. My mental health took a hit—self-doubt crept in, and I stopped trying because I felt I’d never be “enough.”
The Moment I Chose Me The turning point came during a walk one evening. I was beating myself up for not being as “successful” as a friend who’d just landed a big project. Then it hit me: her path isn’t mine. I started asking, “What do I want?” Instead of chasing someone else’s life, I focused on my own small wins. I wasn’t writing bestselling books, but I was posting regularly on X and Medium, sharing my thoughts on mental health. That was enough for me. I decided to stop measuring my worth against others and start celebrating what made me, well, me.
Living Without the Weight Letting go of comparison didn’t happen overnight, but it was liberating. I started a simple practice: every time I felt that pang of envy, I’d pause and list three things I was proud of. Maybe I’d journaled that morning, helped a friend, or just got through a tough day. It shifted my focus from what I lacked to what I had. I also cut back on mindless scrolling, setting a “no-phone” hour each evening to reconnect with myself. My mental health steadied—I felt lighter, more grounded. I even noticed I was more productive, pouring energy into my writing instead of worrying about others’ highlight reels.
Your Path, Your Power Stopping comparison isn’t about ignoring others’ success; it’s about owning your journey. You don’t need to be anyone else to be enough. Try this: today, write down one thing you love about your life, no matter how small. Build from there. You’re already on your way to living fully. What’s one comparison you’re ready to let go of? How do you celebrate your unique path? Drop a comment or share a note—let’s inspire each other to live free!
Thanks for reading. Much love, Unknownfx
-
@ e31e84c4:77bbabc0
2024-12-02 10:44:07Bitcoin and Fixed Income was Written By Wyatt O’Rourke. If you enjoyed this article then support his writing, directly, by donating to his lightning wallet: ultrahusky3@primal.net
Fiduciary duty is the obligation to act in the client’s best interests at all times, prioritizing their needs above the advisor’s own, ensuring honesty, transparency, and avoiding conflicts of interest in all recommendations and actions.
This is something all advisors in the BFAN take very seriously; after all, we are legally required to do so. For the average advisor this is a fairly easy box to check. All you essentially have to do is have someone take a 5-minute risk assessment, fill out an investment policy statement, and then throw them in the proverbial 60/40 portfolio. You have thousands of investment options to choose from and you can reasonably explain how your client is theoretically insulated from any move in the \~markets\~. From the traditional financial advisor perspective, you could justify nearly anything by putting a client into this type of portfolio. All your bases were pretty much covered from return profile, regulatory, compliance, investment options, etc. It was just too easy. It became the household standard and now a meme.
As almost every real bitcoiner knows, the 60/40 portfolio is moving into psyop territory, and many financial advisors get clowned on for defending this relic on bitcoin twitter. I’m going to specifically poke fun at the ‘40’ part of this portfolio.
The ‘40’ represents fixed income, defined as…
An investment type that provides regular, set interest payments, such as bonds or treasury securities, and returns the principal at maturity. It’s generally considered a lower-risk asset class, used to generate stable income and preserve capital.
Historically, this part of the portfolio was meant to weather the volatility in the equity markets and represent the “safe” investments. Typically, some sort of bond.
First and foremost, the fixed income section is most commonly constructed with U.S. Debt. There are a couple main reasons for this. Most financial professionals believe the same fairy tale that U.S. Debt is “risk free” (lol). U.S. debt is also one of the largest and most liquid assets in the market which comes with a lot of benefits.
There are many brilliant bitcoiners in finance and economics that have sounded the alarm on the U.S. debt ticking time bomb. I highly recommend readers explore the work of Greg Foss, Lawrence Lepard, Lyn Alden, and Saifedean Ammous. My very high-level recap of their analysis:
-
A bond is a contract in which Party A (the borrower) agrees to repay Party B (the lender) their principal plus interest over time.
-
The U.S. government issues bonds (Treasury securities) to finance its operations after tax revenues have been exhausted.
-
These are traditionally viewed as “risk-free” due to the government’s historical reliability in repaying its debts and the strength of the U.S. economy
-
U.S. bonds are seen as safe because the government has control over the dollar (world reserve asset) and, until recently (20 some odd years), enjoyed broad confidence that it would always honor its debts.
-
This perception has contributed to high global demand for U.S. debt but, that is quickly deteriorating.
-
The current debt situation raises concerns about sustainability.
-
The U.S. has substantial obligations, and without sufficient productivity growth, increasing debt may lead to a cycle where borrowing to cover interest leads to more debt.
-
This could result in more reliance on money creation (printing), which can drive inflation and further debt burdens.
In the words of Lyn Alden “Nothing stops this train”
Those obligations are what makes up the 40% of most the fixed income in your portfolio. So essentially you are giving money to one of the worst capital allocators in the world (U.S. Gov’t) and getting paid back with printed money.
As someone who takes their fiduciary responsibility seriously and understands the debt situation we just reviewed, I think it’s borderline negligent to put someone into a classic 60% (equities) / 40% (fixed income) portfolio without serious scrutiny of the client’s financial situation and options available to them. I certainly have my qualms with equities at times, but overall, they are more palatable than the fixed income portion of the portfolio. I don’t like it either, but the money is broken and the unit of account for nearly every equity or fixed income instrument (USD) is fraudulent. It’s a paper mache fade that is quite literally propped up by the money printer.
To briefly be as most charitable as I can – It wasn’t always this way. The U.S. Dollar used to be sound money, we used to have government surplus instead of mathematically certain deficits, The U.S. Federal Government didn’t used to have a money printing addiction, and pre-bitcoin the 60/40 portfolio used to be a quality portfolio management strategy. Those times are gone.
Now the fun part. How does bitcoin fix this?
Bitcoin fixes this indirectly. Understanding investment criteria changes via risk tolerance, age, goals, etc. A client may still have a need for “fixed income” in the most literal definition – Low risk yield. Now you may be thinking that yield is a bad word in bitcoin land, you’re not wrong, so stay with me. Perpetual motion machine crypto yield is fake and largely where many crypto scams originate. However, that doesn’t mean yield in the classic finance sense does not exist in bitcoin, it very literally does. Fortunately for us bitcoiners there are many other smart, driven, and enterprising bitcoiners that understand this problem and are doing something to address it. These individuals are pioneering new possibilities in bitcoin and finance, specifically when it comes to fixed income.
Here are some new developments –
Private Credit Funds – The Build Asset Management Secured Income Fund I is a private credit fund created by Build Asset Management. This fund primarily invests in bitcoin-backed, collateralized business loans originated by Unchained, with a secured structure involving a multi-signature, over-collateralized setup for risk management. Unchained originates loans and sells them to Build, which pools them into the fund, enabling investors to share in the interest income.
Dynamics
- Loan Terms: Unchained issues loans at interest rates around 14%, secured with a 2/3 multi-signature vault backed by a 40% loan-to-value (LTV) ratio.
- Fund Mechanics: Build buys these loans from Unchained, thus providing liquidity to Unchained for further loan originations, while Build manages interest payments to investors in the fund.
Pros
- The fund offers a unique way to earn income via bitcoin-collateralized debt, with protection against rehypothecation and strong security measures, making it attractive for investors seeking exposure to fixed income with bitcoin.
Cons
- The fund is only available to accredited investors, which is a regulatory standard for private credit funds like this.
Corporate Bonds – MicroStrategy Inc. (MSTR), a business intelligence company, has leveraged its corporate structure to issue bonds specifically to acquire bitcoin as a reserve asset. This approach allows investors to indirectly gain exposure to bitcoin’s potential upside while receiving interest payments on their bond investments. Some other publicly traded companies have also adopted this strategy, but for the sake of this article we will focus on MSTR as they are the biggest and most vocal issuer.
Dynamics
-
Issuance: MicroStrategy has issued senior secured notes in multiple offerings, with terms allowing the company to use the proceeds to purchase bitcoin.
-
Interest Rates: The bonds typically carry high-yield interest rates, averaging around 6-8% APR, depending on the specific issuance and market conditions at the time of issuance.
-
Maturity: The bonds have varying maturities, with most structured for multi-year terms, offering investors medium-term exposure to bitcoin’s value trajectory through MicroStrategy’s holdings.
Pros
-
Indirect Bitcoin exposure with income provides a unique opportunity for investors seeking income from bitcoin-backed debt.
-
Bonds issued by MicroStrategy offer relatively high interest rates, appealing for fixed-income investors attracted to the higher risk/reward scenarios.
Cons
-
There are credit risks tied to MicroStrategy’s financial health and bitcoin’s performance. A significant drop in bitcoin prices could strain the company’s ability to service debt, increasing credit risk.
-
Availability: These bonds are primarily accessible to institutional investors and accredited investors, limiting availability for retail investors.
Interest Payable in Bitcoin – River has introduced an innovative product, bitcoin Interest on Cash, allowing clients to earn interest on their U.S. dollar deposits, with the interest paid in bitcoin.
Dynamics
-
Interest Payment: Clients earn an annual interest rate of 3.8% on their cash deposits. The accrued interest is converted to Bitcoin daily and paid out monthly, enabling clients to accumulate Bitcoin over time.
-
Security and Accessibility: Cash deposits are insured up to $250,000 through River’s banking partner, Lead Bank, a member of the FDIC. All Bitcoin holdings are maintained in full reserve custody, ensuring that client assets are not lent or leveraged.
Pros
-
There are no hidden fees or minimum balance requirements, and clients can withdraw their cash at any time.
-
The 3.8% interest rate provides a predictable income stream, akin to traditional fixed-income investments.
Cons
-
While the interest rate is fixed, the value of the Bitcoin received as interest can fluctuate, introducing potential variability in the investment’s overall return.
-
Interest rate payments are on the lower side
Admittedly, this is a very small list, however, these types of investments are growing more numerous and meaningful. The reality is the existing options aren’t numerous enough to service every client that has a need for fixed income exposure. I challenge advisors to explore innovative options for fixed income exposure outside of sovereign debt, as that is most certainly a road to nowhere. It is my wholehearted belief and call to action that we need more options to help clients across the risk and capital allocation spectrum access a sound money standard.
Additional Resources
-
River: The future of saving is here: Earn 3.8% on cash. Paid in Bitcoin.
-
MicroStrategy: MicroStrategy Announces Pricing of Offering of Convertible Senior Notes
Bitcoin and Fixed Income was Written By Wyatt O’Rourke. If you enjoyed this article then support his writing, directly, by donating to his lightning wallet: ultrahusky3@primal.net
-
-
@ 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".
-
@ 4fe14ef2:f51992ec
2025-05-15 15:41:21Hey Bitcoiners,
Leave a comment below to share your hustles and wins. Let us know what you've sold this week. Have you sold it for sats or zaps? It doesn't matter how big or small your item is, solid or digital, product or service.
Just share below what you’ve listed, swapped, and sold. Let everyone rave on your latest deals!
New to ~AGORA? Dive into the #marketplace and turn your dusty gears into shiny BTC!
originally posted at https://stacker.news/items/980838
-
@ 3bf0c63f:aefa459d
2024-05-21 12:38:08Bitcoin transactions explained
A transaction is a piece of data that takes inputs and produces outputs. Forget about the blockchain thing, Bitcoin is actually just a big tree of transactions. The blockchain is just a way to keep transactions ordered.
Imagine you have 10 satoshis. That means you have them in an unspent transaction output (UTXO). You want to spend them, so you create a transaction. The transaction should reference unspent outputs as its inputs. Every transaction has an immutable id, so you use that id plus the index of the output (because transactions can have multiple outputs). Then you specify a script that unlocks that transaction and related signatures, then you specify outputs along with a script that locks these outputs.
As you can see, there's this lock/unlocking thing and there are inputs and outputs. Inputs must be unlocked by fulfilling the conditions specified by the person who created the transaction they're in. And outputs must be locked so anyone wanting to spend those outputs will need to unlock them.
For most of the cases locking and unlocking means specifying a public key whose controller (the person who has the corresponding private key) will be able to spend. Other fancy things are possible too, but we can ignore them for now.
Back to the 10 satoshis you want to spend. Since you've successfully referenced 10 satoshis and unlocked them, now you can specify the outputs (this is all done in a single step). You can specify one output of 10 satoshis, two of 5, one of 3 and one of 7, three of 3 and so on. The sum of outputs can't be more than 10. And if the sum of outputs is less than 10 the difference goes to fees. In the first days of Bitcoin you didn't need any fees, but now you do, otherwise your transaction won't be included in any block.
If you're still interested in transactions maybe you could take a look at this small chapter of that Andreas Antonopoulos book.
If you hate Andreas Antonopoulos because he is a communist shitcoiner or don't want to read more than half a page, go here: https://en.bitcoin.it/wiki/Coin_analogy
-
@ 04c915da:3dfbecc9
2025-05-15 15:31:45Capitalism is the most effective system for scaling innovation. The pursuit of profit is an incredibly powerful human incentive. Most major improvements to human society and quality of life have resulted from this base incentive. Market competition often results in the best outcomes for all.
That said, some projects can never be monetized. They are open in nature and a business model would centralize control. Open protocols like bitcoin and nostr are not owned by anyone and if they were it would destroy the key value propositions they provide. No single entity can or should control their use. Anyone can build on them without permission.
As a result, open protocols must depend on donation based grant funding from the people and organizations that rely on them. This model works but it is slow and uncertain, a grind where sustainability is never fully reached but rather constantly sought. As someone who has been incredibly active in the open source grant funding space, I do not think people truly appreciate how difficult it is to raise charitable money and deploy it efficiently.
Projects that can be monetized should be. Profitability is a super power. When a business can generate revenue, it taps into a self sustaining cycle. Profit fuels growth and development while providing projects independence and agency. This flywheel effect is why companies like Google, Amazon, and Apple have scaled to global dominance. The profit incentive aligns human effort with efficiency. Businesses must innovate, cut waste, and deliver value to survive.
Contrast this with non monetized projects. Without profit, they lean on external support, which can dry up or shift with donor priorities. A profit driven model, on the other hand, is inherently leaner and more adaptable. It is not charity but survival. When survival is tied to delivering what people want, scale follows naturally.
The real magic happens when profitable, sustainable businesses are built on top of open protocols and software. Consider the many startups building on open source software stacks, such as Start9, Mempool, and Primal, offering premium services on top of the open source software they build out and maintain. Think of companies like Block or Strike, which leverage bitcoin’s open protocol to offer their services on top. These businesses amplify the open software and protocols they build on, driving adoption and improvement at a pace donations alone could never match.
When you combine open software and protocols with profit driven business the result are lean, sustainable companies that grow faster and serve more people than either could alone. Bitcoin’s network, for instance, benefits from businesses that profit off its existence, while nostr will expand as developers monetize apps built on the protocol.
Capitalism scales best because competition results in efficiency. Donation funded protocols and software lay the groundwork, while market driven businesses build on top. The profit incentive acts as a filter, ensuring resources flow to what works, while open systems keep the playing field accessible, empowering users and builders. Together, they create a flywheel of innovation, growth, and global benefit.
-
@ 3bf0c63f:aefa459d
2024-03-23 08:57:08Nostr is not decentralized nor censorship-resistant
Peter Todd has been saying this for a long time and all the time I've been thinking he is misunderstanding everything, but I guess a more charitable interpretation is that he is right.
Nostr today is indeed centralized.
Yesterday I published two harmless notes with the exact same content at the same time. In two minutes the notes had a noticeable difference in responses:
The top one was published to
wss://nostr.wine
,wss://nos.lol
,wss://pyramid.fiatjaf.com
. The second was published to the relay where I generally publish all my notes to,wss://pyramid.fiatjaf.com
, and that is announced on my NIP-05 file and on my NIP-65 relay list.A few minutes later I published that screenshot again in two identical notes to the same sets of relays, asking if people understood the implications. The difference in quantity of responses can still be seen today:
These results are skewed now by the fact that the two notes got rebroadcasted to multiple relays after some time, but the fundamental point remains.
What happened was that a huge lot more of people saw the first note compared to the second, and if Nostr was really censorship-resistant that shouldn't have happened at all.
Some people implied in the comments, with an air of obviousness, that publishing the note to "more relays" should have predictably resulted in more replies, which, again, shouldn't be the case if Nostr is really censorship-resistant.
What happens is that most people who engaged with the note are following me, in the sense that they have instructed their clients to fetch my notes on their behalf and present them in the UI, and clients are failing to do that despite me making it clear in multiple ways that my notes are to be found on
wss://pyramid.fiatjaf.com
.If we were talking not about me, but about some public figure that was being censored by the State and got banned (or shadowbanned) by the 3 biggest public relays, the sad reality would be that the person would immediately get his reach reduced to ~10% of what they had before. This is not at all unlike what happened to dozens of personalities that were banned from the corporate social media platforms and then moved to other platforms -- how many of their original followers switched to these other platforms? Probably some small percentage close to 10%. In that sense Nostr today is similar to what we had before.
Peter Todd is right that if the way Nostr works is that you just subscribe to a small set of relays and expect to get everything from them then it tends to get very centralized very fast, and this is the reality today.
Peter Todd is wrong that Nostr is inherently centralized or that it needs a protocol change to become what it has always purported to be. He is in fact wrong today, because what is written above is not valid for all clients of today, and if we drive in the right direction we can successfully make Peter Todd be more and more wrong as time passes, instead of the contrary.
See also:
-
@ 3bf0c63f:aefa459d
2024-03-19 14:32:01Censorship-resistant relay discovery in Nostr
In Nostr is not decentralized nor censorship-resistant I said Nostr is centralized. Peter Todd thinks it is centralized by design, but I disagree.
Nostr wasn't designed to be centralized. The idea was always that clients would follow people in the relays they decided to publish to, even if it was a single-user relay hosted in an island in the middle of the Pacific ocean.
But the Nostr explanations never had any guidance about how to do this, and the protocol itself never had any enforcement mechanisms for any of this (because it would be impossible).
My original idea was that clients would use some undefined combination of relay hints in reply tags and the (now defunct)
kind:2
relay-recommendation events plus some form of manual action ("it looks like Bob is publishing on relay X, do you want to follow him there?") to accomplish this. With the expectation that we would have a better idea of how to properly implement all this with more experience, Branle, my first working client didn't have any of that implemented, instead it used a stupid static list of relays with read/write toggle -- although it did publish relay hints and kept track of those internally and supportedkind:2
events, these things were not really useful.Gossip was the first client to implement a truly censorship-resistant relay discovery mechanism that used NIP-05 hints (originally proposed by Mike Dilger) relay hints and
kind:3
relay lists, and then with the simple insight of NIP-65 that got much better. After seeing it in more concrete terms, it became simpler to reason about it and the approach got popularized as the "gossip model", then implemented in clients like Coracle and Snort.Today when people mention the "gossip model" (or "outbox model") they simply think about NIP-65 though. Which I think is ok, but too restrictive. I still think there is a place for the NIP-05 hints,
nprofile
andnevent
relay hints and specially relay hints in event tags. All these mechanisms are used together in ZBD Social, for example, but I believe also in the clients listed above.I don't think we should stop here, though. I think there are other ways, perhaps drastically different ways, to approach content propagation and relay discovery. I think manual action by users is underrated and could go a long way if presented in a nice UX (not conceived by people that think users are dumb animals), and who knows what. Reliance on third-parties, hardcoded values, social graph, and specially a mix of multiple approaches, is what Nostr needs to be censorship-resistant and what I hope to see in the future.
-
@ 3bf0c63f:aefa459d
2024-01-29 02:19:25Nostr: a quick introduction, attempt #1
Nostr doesn't have a material existence, it is not a website or an app. Nostr is just a description what kind of messages each computer can send to the others and vice-versa. It's a very simple thing, but the fact that such description exists allows different apps to connect to different servers automatically, without people having to talk behind the scenes or sign contracts or anything like that.
When you use a Nostr client that is what happens, your client will connect to a bunch of servers, called relays, and all these relays will speak the same "language" so your client will be able to publish notes to them all and also download notes from other people.
That's basically what Nostr is: this communication layer between the client you run on your phone or desktop computer and the relay that someone else is running on some server somewhere. There is no central authority dictating who can connect to whom or even anyone who knows for sure where each note is stored.
If you think about it, Nostr is very much like the internet itself: there are millions of websites out there, and basically anyone can run a new one, and there are websites that allow you to store and publish your stuff on them.
The added benefit of Nostr is that this unified "language" that all Nostr clients speak allow them to switch very easily and cleanly between relays. So if one relay decides to ban someone that person can switch to publishing to others relays and their audience will quickly follow them there. Likewise, it becomes much easier for relays to impose any restrictions they want on their users: no relay has to uphold a moral ground of "absolute free speech": each relay can decide to delete notes or ban users for no reason, or even only store notes from a preselected set of people and no one will be entitled to complain about that.
There are some bad things about this design: on Nostr there are no guarantees that relays will have the notes you want to read or that they will store the notes you're sending to them. We can't just assume all relays will have everything — much to the contrary, as Nostr grows more relays will exist and people will tend to publishing to a small set of all the relays, so depending on the decisions each client takes when publishing and when fetching notes, users may see a different set of replies to a note, for example, and be confused.
Another problem with the idea of publishing to multiple servers is that they may be run by all sorts of malicious people that may edit your notes. Since no one wants to see garbage published under their name, Nostr fixes that by requiring notes to have a cryptographic signature. This signature is attached to the note and verified by everybody at all times, which ensures the notes weren't tampered (if any part of the note is changed even by a single character that would cause the signature to become invalid and then the note would be dropped). The fix is perfect, except for the fact that it introduces the requirement that each user must now hold this 63-character code that starts with "nsec1", which they must not reveal to anyone. Although annoying, this requirement brings another benefit: that users can automatically have the same identity in many different contexts and even use their Nostr identity to login to non-Nostr websites easily without having to rely on any third-party.
To conclude: Nostr is like the internet (or the internet of some decades ago): a little chaotic, but very open. It is better than the internet because it is structured and actions can be automated, but, like in the internet itself, nothing is guaranteed to work at all times and users many have to do some manual work from time to time to fix things. Plus, there is the cryptographic key stuff, which is painful, but cool.
-
@ eab58da0:eebdafbf
2025-05-15 15:31:18By UnKnownfx
Words have power, but I never thought one could shift my entire perspective. For years, I felt stuck, weighed down by self-doubt and the fear I wasn’t good enough. Then I stumbled on a single word—“yet”—and it became the key to unlocking a new mindset. Here’s how it changed my life and how it might help you, too.
The Rut I Couldn’t Escape A couple of years ago, I was in a rough spot. I wanted to grow—write more, improve my mental health, maybe even start a side project—but every step felt like failure. I’d tell myself, “I’m not good at this,” or “I can’t figure it out.” Those words built a wall, trapping me in a cycle of giving up. One day, I was venting to a friend about how I’d never get the hang of meditation. She stopped me and said, “You’re not good at it yet.” That tiny word hit me like a lightning bolt. It wasn’t about being perfect now; it was about being on the way.
The Power of “Yet” That word, “yet,” became my mantra. It’s simple but profound—it turns “I can’t” into “I’m learning.” I started adding it to my self-talk. Struggling to write a post? “I’m not great at this yet.” Feeling overwhelmed by anxiety? “I haven’t mastered calm yet.” It’s like giving yourself permission to be a work in progress. I began to see challenges as steps, not roadblocks. For example, when I tried journaling to manage stress, my first attempts were messy—half-finished thoughts, no consistency. Instead of quitting, I told myself, “I’m not consistent yet.” Slowly, I built a habit, and now journaling is my go-to for mental clarity.
How It Rewired My Days Adding “yet” to my mindset didn’t erase my struggles, but it changed how I faced them. I started small: when I felt stuck on a work task, I’d pause, breathe, and remind myself, “I’ll get this yet.” It pushed me to keep going instead of spiraling into frustration. Over time, I noticed I was less hard on myself. I celebrated progress—like writing three posts a week, even if they weren’t perfect—because I knew I was moving forward. My mental health improved, too; I wasn’t as consumed by what I hadn’t achieved. “Yet” gave me hope and patience, two things I’d been missing.
Try It for Yourself This one word can be your game-changer, too. It’s not about pretending everything’s easy—it’s about believing you’re on the path. Next time you catch yourself saying, “I can’t,” tack on “yet” and see what shifts. Maybe you’re not where you want to be, but you’re growing, and that’s enough. What’s one thing you’ve told yourself you can’t do? How would adding “yet” change your approach? Share your thoughts below or post your own note—I’d love to hear how this small word sparks big changes for you!
Thanks for reading. Much love, Unknownfx
-
@ 3bf0c63f:aefa459d
2024-01-15 11:15:06Pequenos problemas que o Estado cria para a sociedade e que não são sempre lembrados
- **vale-transporte**: transferir o custo com o transporte do funcionário para um terceiro o estimula a morar longe de onde trabalha, já que morar perto é normalmente mais caro e a economia com transporte é inexistente. - **atestado médico**: o direito a faltar o trabalho com atestado médico cria a exigência desse atestado para todas as situações, substituindo o livre acordo entre patrão e empregado e sobrecarregando os médicos e postos de saúde com visitas desnecessárias de assalariados resfriados. - **prisões**: com dinheiro mal-administrado, burocracia e péssima alocação de recursos -- problemas que empresas privadas em competição (ou mesmo sem qualquer competição) saberiam resolver muito melhor -- o Estado fica sem presídios, com os poucos existentes entupidos, muito acima de sua alocação máxima, e com isto, segundo a bizarra corrente de responsabilidades que culpa o juiz que condenou o criminoso por sua morte na cadeia, juízes deixam de condenar à prisão os bandidos, soltando-os na rua. - **justiça**: entrar com processos é grátis e isto faz proliferar a atividade dos advogados que se dedicam a criar problemas judiciais onde não seria necessário e a entupir os tribunais, impedindo-os de fazer o que mais deveriam fazer. - **justiça**: como a justiça só obedece às leis e ignora acordos pessoais, escritos ou não, as pessoas não fazem acordos, recorrem sempre à justiça estatal, e entopem-na de assuntos que seriam muito melhor resolvidos entre vizinhos. - **leis civis**: as leis criadas pelos parlamentares ignoram os costumes da sociedade e são um incentivo a que as pessoas não respeitem nem criem normas sociais -- que seriam maneiras mais rápidas, baratas e satisfatórias de resolver problemas. - **leis de trãnsito**: quanto mais leis de trânsito, mais serviço de fiscalização são delegados aos policiais, que deixam de combater crimes por isto (afinal de contas, eles não querem de fato arriscar suas vidas combatendo o crime, a fiscalização é uma excelente desculpa para se esquivarem a esta responsabilidade). - **financiamento educacional**: é uma espécie de subsídio às faculdades privadas que faz com que se criem cursos e mais cursos que são cada vez menos recheados de algum conhecimento ou técnica útil e cada vez mais inúteis. - **leis de tombamento**: são um incentivo a que o dono de qualquer área ou construção "histórica" destrua todo e qualquer vestígio de história que houver nele antes que as autoridades descubram, o que poderia não acontecer se ele pudesse, por exemplo, usar, mostrar e se beneficiar da história daquele local sem correr o risco de perder, de fato, a sua propriedade. - **zoneamento urbano**: torna as cidades mais espalhadas, criando uma necessidade gigantesca de carros, ônibus e outros meios de transporte para as pessoas se locomoverem das zonas de moradia para as zonas de trabalho. - **zoneamento urbano**: faz com que as pessoas percam horas no trânsito todos os dias, o que é, além de um desperdício, um atentado contra a sua saúde, que estaria muito melhor servida numa caminhada diária entre a casa e o trabalho. - **zoneamento urbano**: torna ruas e as casas menos seguras criando zonas enormes, tanto de residências quanto de indústrias, onde não há movimento de gente alguma. - **escola obrigatória + currículo escolar nacional**: emburrece todas as crianças. - **leis contra trabalho infantil**: tira das crianças a oportunidade de aprender ofícios úteis e levar um dinheiro para ajudar a família. - **licitações**: como não existem os critérios do mercado para decidir qual é o melhor prestador de serviço, criam-se comissões de pessoas que vão decidir coisas. isto incentiva os prestadores de serviço que estão concorrendo na licitação a tentar comprar os membros dessas comissões. isto, fora a corrupção, gera problemas reais: __(i)__ a escolha dos serviços acaba sendo a pior possível, já que a empresa prestadora que vence está claramente mais dedicada a comprar comissões do que a fazer um bom trabalho (este problema afeta tantas áreas, desde a construção de estradas até a qualidade da merenda escolar, que é impossível listar aqui); __(ii)__ o processo corruptor acaba, no longo prazo, eliminando as empresas que prestavam e deixando para competir apenas as corruptas, e a qualidade tende a piorar progressivamente. - **cartéis**: o Estado em geral cria e depois fica refém de vários grupos de interesse. o caso dos taxistas contra o Uber é o que está na moda hoje (e o que mostra como os Estados se comportam da mesma forma no mundo todo). - **multas**: quando algum indivíduo ou empresa comete uma fraude financeira, ou causa algum dano material involuntário, as vítimas do caso são as pessoas que sofreram o dano ou perderam dinheiro, mas o Estado tem sempre leis que prevêem multas para os responsáveis. A justiça estatal é sempre muito rígida e rápida na aplicação dessas multas, mas relapsa e vaga no que diz respeito à indenização das vítimas. O que em geral acontece é que o Estado aplica uma enorme multa ao responsável pelo mal, retirando deste os recursos que dispunha para indenizar as vítimas, e se retira do caso, deixando estas desamparadas. - **desapropriação**: o Estado pode pegar qualquer propriedade de qualquer pessoa mediante uma indenização que é necessariamente inferior ao valor da propriedade para o seu presente dono (caso contrário ele a teria vendido voluntariamente). - **seguro-desemprego**: se há, por exemplo, um prazo mínimo de 1 ano para o sujeito ter direito a receber seguro-desemprego, isto o incentiva a planejar ficar apenas 1 ano em cada emprego (ano este que será sucedido por um período de desemprego remunerado), matando todas as possibilidades de aprendizado ou aquisição de experiência naquela empresa específica ou ascensão hierárquica. - **previdência**: a previdência social tem todos os defeitos de cálculo do mundo, e não importa muito ela ser uma forma horrível de poupar dinheiro, porque ela tem garantias bizarras de longevidade fornecidas pelo Estado, além de ser compulsória. Isso serve para criar no imaginário geral a idéia da __aposentadoria__, uma época mágica em que todos os dias serão finais de semana. A idéia da aposentadoria influencia o sujeito a não se preocupar em ter um emprego que faça sentido, mas sim em ter um trabalho qualquer, que o permita se aposentar. - **regulamentação impossível**: milhares de coisas são proibidas, há regulamentações sobre os aspectos mais mínimos de cada empreendimento ou construção ou espaço. se todas essas regulamentações fossem exigidas não haveria condições de produção e todos morreriam. portanto, elas não são exigidas. porém, o Estado, ou um agente individual imbuído do poder estatal pode, se desejar, exigi-las todas de um cidadão inimigo seu. qualquer pessoa pode viver a vida inteira sem cumprir nem 10% das regulamentações estatais, mas viverá também todo esse tempo com medo de se tornar um alvo de sua exigência, num estado de terror psicológico. - **perversão de critérios**: para muitas coisas sobre as quais a sociedade normalmente chegaria a um valor ou comportamento "razoável" espontaneamente, o Estado dita regras. estas regras muitas vezes não são obrigatórias, são mais "sugestões" ou limites, como o salário mínimo, ou as 44 horas semanais de trabalho. a sociedade, porém, passa a usar esses valores como se fossem o normal. são raras, por exemplo, as ofertas de emprego que fogem à regra das 44h semanais. - **inflação**: subir os preços é difícil e constrangedor para as empresas, pedir aumento de salário é difícil e constrangedor para o funcionário. a inflação força as pessoas a fazer isso, mas o aumento não é automático, como alguns economistas podem pensar (enquanto alguns outros ficam muito satisfeitos de que esse processo seja demorado e difícil). - **inflação**: a inflação destrói a capacidade das pessoas de julgar preços entre concorrentes usando a própria memória. - **inflação**: a inflação destrói os cálculos de lucro/prejuízo das empresas e prejudica enormemente as decisões empresariais que seriam baseadas neles. - **inflação**: a inflação redistribui a riqueza dos mais pobres e mais afastados do sistema financeiro para os mais ricos, os bancos e as megaempresas. - **inflação**: a inflação estimula o endividamento e o consumismo. - **lixo:** ao prover coleta e armazenamento de lixo "grátis para todos" o Estado incentiva a criação de lixo. se tivessem que pagar para que recolhessem o seu lixo, as pessoas (e conseqüentemente as empresas) se empenhariam mais em produzir coisas usando menos plástico, menos embalagens, menos sacolas. - **leis contra crimes financeiros:** ao criar legislação para dificultar acesso ao sistema financeiro por parte de criminosos a dificuldade e os custos para acesso a esse mesmo sistema pelas pessoas de bem cresce absurdamente, levando a um percentual enorme de gente incapaz de usá-lo, para detrimento de todos -- e no final das contas os grandes criminosos ainda conseguem burlar tudo.
-
@ 3bf0c63f:aefa459d
2024-01-14 14:52:16bitcoind
decentralizationIt is better to have multiple curator teams, with different vetting processes and release schedules for
bitcoind
than a single one."More eyes on code", "Contribute to Core", "Everybody should audit the code".
All these points repeated again and again fell to Earth on the day it was discovered that Bitcoin Core developers merged a variable name change from "blacklist" to "blocklist" without even discussing or acknowledging the fact that that innocent pull request opened by a sybil account was a social attack.
After a big lot of people manifested their dissatisfaction with that event on Twitter and on GitHub, most Core developers simply ignored everybody's concerns or even personally attacked people who were complaining.
The event has shown that:
1) Bitcoin Core ultimately rests on the hands of a couple maintainers and they decide what goes on the GitHub repository[^pr-merged-very-quickly] and the binary releases that will be downloaded by thousands; 2) Bitcoin Core is susceptible to social attacks; 2) "More eyes on code" don't matter, as these extra eyes can be ignored and dismissed.
Solution:
bitcoind
decentralizationIf usage was spread across 10 different
bitcoind
flavors, the network would be much more resistant to social attacks to a single team.This has nothing to do with the question on if it is better to have multiple different Bitcoin node implementations or not, because here we're basically talking about the same software.
Multiple teams, each with their own release process, their own logo, some subtle changes, or perhaps no changes at all, just a different name for their
bitcoind
flavor, and that's it.Every day or week or month or year, each flavor merges all changes from Bitcoin Core on their own fork. If there's anything suspicious or too leftist (or perhaps too rightist, in case there's a leftist
bitcoind
flavor), maybe they will spot it and not merge.This way we keep the best of both worlds: all software development, bugfixes, improvements goes on Bitcoin Core, other flavors just copy. If there's some non-consensus change whose efficacy is debatable, one of the flavors will merge on their fork and test, and later others -- including Core -- can copy that too. Plus, we get resistant to attacks: in case there is an attack on Bitcoin Core, only 10% of the network would be compromised. the other flavors would be safe.
Run Bitcoin Knots
The first example of a
bitcoind
software that follows Bitcoin Core closely, adds some small changes, but has an independent vetting and release process is Bitcoin Knots, maintained by the incorruptible Luke DashJr.Next time you decide to run
bitcoind
, run Bitcoin Knots instead and contribute tobitcoind
decentralization!
See also:
[^pr-merged-very-quickly]: See PR 20624, for example, a very complicated change that could be introducing bugs or be a deliberate attack, merged in 3 days without time for discussion.
-
@ 05a0f81e:fc032124
2025-05-15 14:24:22People often say that education is the key to success but after a deliberate analysis with my inner mind, I discovered that education is not the key to success.
Education is the process of learning and acquiring knowledge, skills and understanding. It involves the transmission of information, knowledge and technical know-how. It also involve the development of critical thinking and understanding and the cultivation of personal and social growth, the process of education occur formally through school and universities and informally through everyday experiences.
Being educated makes someone more exposed to the world, make you see things in a different way, but educated will not grant you success 💯. Most educated individuals end up searching for jobs, while most persons after being educate in a particular field will end up as a trader. This is because there education have boundaries, it can not stand against all odds example, lack of employment and bad governments.
Furthermore, if education did not have the ability to breakdown boundaries and untie every chain that is holding success, that means It is the key to success.
Success comes from the mind and the key to success is what I called the MINDSET. What is mindset?. Mindset is the collection of attitudes and beliefs that influence how an individual perceive and interact with the world, it essentially shapes how you think, feel and behave in response to different situations.
The key to success is your MINDSET, to become successful, your mind need to think right, your actions and the words you speak is as a result of what you have in your mind.
To become Elon musk of African come from the mind, to build a titanic comes from the mind, being educated also comes from the mind before you show the actions, that going to school. Everything done on earth first dropped in the mind before it's execution.
Success is the is the accomplishment of an aim or purpose. So when you accomplished your aim and purpose which are your MINDSET, you have become successful in that part of your life.
In conclusion, the key to success is your MINDSET not education.
-
@ f85b9c2c:d190bcff
2025-05-15 14:03:50If you’ve ever watched Solo Leveling and thought, “Man, I wish I could level up like that,” you’re not alone.
I’ve had that exact thought too , sometimes debating to carry out an activity,daydreaming: what if I had a status window? What if I could grind my way into greatness? But over time, I started realizing something. Maybe Solo Leveling isn’t just about monsters and magic. Maybe it’s about something much closer to home.
What if it’s actually the perfect metaphor for personal growth? What if every setback, every challenge, every tiny win, they’re all just part of our own leveling-up arc? Let me tell you what managing myself has started to look like ever since I started viewing life through the lens of Solo Leveling 1. Everyone Starts as an E-Rank Remember how Jin-Woo was the weakest hunter alive? E-rank. Practically useless. He got beat up in dungeons, ignored by stronger hunters, and treated like he didn’t matter. Starting anything new kind of feels like that. Whether it’s trying to get in shape, learning to lead a team, starting a business, or even managing your own emotions, it’s humbling. You’re not confident yet. You second-guess yourself. You mess up, a lot. And maybe you’re stuck in the comparison trap, watching others thrive while you’re just trying to stay afloat. But Jin-Woo didn’t stay weak. He kept showing up. Even when he was afraid. Even when everyone else doubted him. That mindset, the decision to not quit, is the real awakening. What we don’t see behind high-performers is the invisible grind: the silent nights they stayed late to learn, the lonely days they failed and tried again. There’s no glory in the shadows. But that’s where you build your core.
- Daily Quests Are the Real MVPs In the early part of Jin-Woo’s journey, his “daily quests” were laughably simple: push-ups, sit-ups, running. Miss them, and he’d be teleported into a deadly penalty zone. No one’s going to drag you into a boss fight if you skip brushing your teeth or journaling — but the consequences still exist, silently. Stagnation. A lack of self-trust. The nagging feeling that you should be doing more but somehow never are. Daily quests in real life look like: They’re small. Insignificant on their own. But powerful in compound. Because here’s the truth: consistency is what builds confidence. Momentum is what builds mastery. And daily rituals, even the tiniest ones are the bricks you stack to build your version of greatness.
- Stats Matter: Track Your Progress Jin-Woo had a literal stats window: Strength +2, Agility +3, Sense +1. We don’t get that kind of pop-up (yet), but that doesn’t mean we don’t grow.
The Boss Fights Are Where You Grow Every time Jin-Woo entered a boss room, it was life-or-death. The enemies were terrifying. The odds were unfair. And yet every single boss fight ended in growth. Real life has its own boss fights. You don’t get to opt out. But you do get to grow through it. And just like Jin-Woo, you’ll come out stronger — even if all you did was survive. So… What’s Your Next Dungeon? You don’t need a pop-up window to tell you what to do next.
You just need to move.
Final Thoughts There’s a reason Solo Leveling hits so hard. It’s not just the cool fights or epic transformations. It’s because we see a version of ourselves in Jin-Woo. Someone who starts with nothing but slowly becomes unstoppable. Someone who fails, but rises again. Someone who feels invisible, then learns to shine. Someone who faces fear, and chooses to fight anyway. So here’s to all of us trying to level up in real life. No shortcuts. No cheat codes. Just courage, commitment, and that tiny voice inside whispering: “One more try. One more day.” You’re not weak. You’re just in the early chapters.
-
@ f85b9c2c:d190bcff
2025-05-15 13:38:30I couldn't even tell you how I came across this anime. I was sick one day and it popped up on the site where I watch anime. The first few episodes dropped and I thought they were good but I didn’t want to wait weekly so I stopped watching until the whole show came out. It being a new year I wanted to get caught up on some of the anime I started but hadn’t finished. This was the first one that I picked and I binged through it.
Ishura Storyline: In a world where the Demon King has died, a host of demigods capable of felling him have inherited the world. A master fencer who can figure out how to take out their opponent with a single glance; a lancer so swift they can break the sound barrier; a wyvern rogue who fights with three legendary weapons at once; an all-powerful wizard who can speak thoughts into being; an angelic assassin who deals instant death. Eager to attain the title of “One True Hero,” these champions each pursue challenges against formidable foes and spark conflicts themselves. The battle to determine the mightiest of the mighty begins. Info: 12 Episodes
Genre: Fantasy, Drama, Action
This anime does have basic themes, a demon king, war, dragons, etc. That was creatively executed. The animation is basic but isn’t bad. The dark turn it takes gets you hooked into the storyline. My Review: Is this the best fantasy I have ever seen? no. Is it worth watching? I think so. I like how they set up each character. You have an emotional connection and when the battle starts you are shocked by who they kill off. I am surprised more people don’t know of this show. This anime already got approved for a season 2 and I am looking forward to seeing where this story will go.
-
@ 9296c4c7:2b4b1566
2025-05-15 13:08:42A 4131Bet vem conquistando os brasileiros com uma proposta moderna, intuitiva e repleta de entretenimento. Seja você um jogador iniciante ou experiente, essa plataforma oferece tudo o que é necessário para garantir uma experiência completa e envolvente. Com um visual atrativo e navegação fluida, a 4131Bet se consolida como uma das melhores opções para quem busca diversão com seriedade e segurança.
Conhecendo a Plataforma 4131Bet Desde o primeiro acesso, é possível perceber o cuidado da 4131Bet em proporcionar uma jornada agradável ao usuário. O site é responsivo, adaptando-se perfeitamente tanto a computadores quanto a dispositivos móveis, o que permite jogar a qualquer hora e de qualquer lugar. O processo de cadastro é simples, rápido e descomplicado, ideal para quem deseja começar sem burocracias.
A segurança também é um ponto de destaque. A 4131Bet utiliza tecnologia de criptografia de ponta para proteger os dados dos usuários e garantir transações seguras. Isso transmite confiança e mostra o compromisso da plataforma com a integridade das informações de seus jogadores.
Variedade de Jogos para Todos os Gostos Um dos maiores atrativos da 4131beté a sua ampla seleção de jogos. A plataforma reúne títulos renomados e de alta qualidade, criados por desenvolvedores reconhecidos no setor de entretenimento digital. Isso garante gráficos impressionantes, jogabilidade fluida e temas que agradam desde os fãs de aventura até os apaixonados por clássicos.
Entre os jogos disponíveis, os usuários encontram opções com rodadas bônus, modos interativos e recompensas progressivas. Há títulos com temáticas inspiradas em mitologia, filmes, esportes e até cultura brasileira, o que torna a experiência ainda mais próxima da realidade do jogador.
Além disso, a 4131Bet atualiza constantemente seu catálogo, oferecendo novidades semanais que mantêm a plataforma sempre interessante e dinâmica. A cada acesso, é possível descobrir um novo jogo ou recurso para explorar.
Experiência do Jogador: O Que Torna a 4131Bet Especial A experiência do jogador é o foco principal da 4131Bet. A plataforma foi pensada para ser acessível, divertida e justa. Isso começa no atendimento ao cliente, disponível em português e com suporte rápido via chat ao vivo e e-mail. Os agentes são bem treinados e prontos para resolver qualquer dúvida, tornando a jornada do jogador mais tranquila.
Outro ponto que chama atenção é o sistema de promoções e bônus. Novos usuários são recebidos com ofertas exclusivas, enquanto os jogadores frequentes participam de programas de fidelidade e promoções recorrentes. Tudo isso contribui para uma experiência gratificante e valorizada.
Os métodos de pagamento também foram pensados para o público brasileiro. A 4131Bet aceita opções populares como Pix, boleto, transferência bancária e carteiras digitais, garantindo agilidade nas transações e maior comodidade para todos os perfis de usuários.
Conclusão A 4131Bet não é apenas mais uma plataforma de jogos online — ela representa uma nova maneira de se divertir com responsabilidade, variedade e qualidade. Seu compromisso com a inovação, a segurança e a satisfação do jogador a tornam uma das preferidas entre os brasileiros que buscam entretenimento de alto nível. Seja para quem está começando agora ou para quem já conhece o universo dos jogos digitais, a 4131Bet é uma escolha certeira.
-
@ 9296c4c7:2b4b1566
2025-05-15 13:08:08A cada dia, mais brasileiros descobrem o universo dos jogos online como uma forma envolvente de entretenimento, emoção e até recompensas. Nesse cenário competitivo e em constante evolução, a plataforma 80PMBet se destaca por sua inovação, diversidade e foco total na experiência do usuário. Com uma interface moderna, suporte eficiente e um portfólio impressionante de jogos, o site conquista desde iniciantes curiosos até jogadores mais experientes.
Uma Plataforma Moderna e Acessível Desde o primeiro acesso, o que mais chama a atenção na 80PMBet é a facilidade de navegação. A plataforma foi desenvolvida para funcionar perfeitamente tanto em computadores quanto em dispositivos móveis, garantindo que o jogador tenha acesso aos seus jogos preferidos a qualquer hora e em qualquer lugar. O layout é limpo, intuitivo e com menus bem organizados, o que facilita a localização de jogos, promoções e suporte.
Além disso, o processo de cadastro é rápido e seguro. A plataforma utiliza tecnologia de criptografia para proteger as informações dos usuários, garantindo tranquilidade em todas as transações. A variedade de métodos de pagamento também é um ponto forte, incluindo opções populares entre os brasileiros como Pix, transferência bancária e carteiras digitais.
Catálogo de Jogos: Diversão Para Todos os Estilos Um dos maiores atrativos da 80pmbeté a sua vasta seleção de jogos online. A plataforma reúne títulos das principais desenvolvedoras do mercado, proporcionando aos usuários uma experiência rica e variada.
Para quem busca adrenalina, os jogos de roleta e cartas ao vivo são ideais. Eles proporcionam uma experiência interativa com transmissão em tempo real, o que cria uma sensação de imersão única. Já os fãs de jogos temáticos podem se divertir com slots que variam desde aventuras épicas até temas inspirados em cultura pop e mitologia.
Outro diferencial está nos jogos instantâneos e simplificados, ideais para quem quer se divertir com rapidez e sem complicações. Esses jogos oferecem rounds curtos e mecânicas fáceis de entender, permitindo que qualquer jogador, mesmo sem experiência, aproveite ao máximo.
Experiência do Jogador: O Centro de Tudo Na 80PMBet, o jogador é tratado com prioridade máxima. A plataforma investe em suporte 24 horas por dia, todos os dias da semana, com atendimento em português. Seja por chat ao vivo, e-mail ou central de ajuda, os usuários encontram respostas rápidas e eficientes para qualquer dúvida ou necessidade.
Além disso, o site oferece promoções constantes para novos e antigos usuários. Bônus de boas-vindas, programas de fidelidade e campanhas sazonais aumentam ainda mais o valor da experiência de jogo. Essas ações demonstram o compromisso da plataforma em manter seus jogadores motivados e recompensados.
Outro ponto elogiado pelos usuários é a fluidez dos jogos. Graças a uma infraestrutura tecnológica robusta, os jogos rodam sem travamentos, mesmo em conexões mais simples. Isso melhora significativamente a imersão e a satisfação geral.
Conclusão A 80PMBet chega com força ao mercado brasileiro, reunindo tudo o que os jogadores mais valorizam: segurança, variedade, acessibilidade e suporte de qualidade. Com uma experiência projetada para ser divertida e sem complicações, a plataforma conquista pela excelência e promete se tornar referência entre os fãs de jogos online no Brasil.
Se você busca uma nova forma de entretenimento, repleta de emoção e com a chance de recompensas reais, vale a pena conhecer tudo o que a 80PMBet tem a oferecer.
-
@ d0dacccd:b0162661
2025-05-15 12:11:15第一步:做任务拿钻石💎 Step 1: Complete the task to obtain diamonds 1. 输入网址:https://campaign.cicada.finance ,进入「Sign in 登陆」界面 Enter the website address: https://campaign.cicada.finance, and proceed to the "Sign in" interface.
2. 注册登陆 Registration and Login
3. 参与campaigns 活动获得钻石Gain diamonds by participating in campaigns
4. 进入「Campaign活动界面」参与活动。注意⚠️受平台方或者Twitter限制相关的活动,一次最多做5个,大家可以少量多次参与 Enter the "Campaign Activity Interface" to participate in the activity. Note ⚠️ For activities restricted by the platform or Twitter, you can only do a maximum of 5 at a time. You can participate in a small amount multiple times.
第二步:关联与授权 Step 2: Association and Authorization
1.进入「我的账户」绑定相关账户,授权钱包操作(我用的小狐狸,为了保证安全里面只有做活动的资金) Enter "My Account" to bind the related account and authorize the wallet operations (I use "Metamask", and to ensure security, there are only funds for activities in it)
与资金相关的授权一定多复核,看好请求方是哪里,确认无误再确认,拒绝为黑客打工 Authorization related to funds must undergo multiple reviews. Pay attention to where the requesting party is from, confirm everything is correct before proceeding, and do not work for hackers.
2. 如果是参与活动老用户可以直接到最下面点击Convert Now参与换票抽奖 If you are an old user who has participated in the event, you can simply click "Convert Now" at the bottom to participate in the ticket exchange and lottery.
你问我为何选7?秘密就在图里,有7次抽奖的机会,如果第一次抽奖我就中了那么剩下6张票作废,如果没中奖,那么每次抽奖我都有机会参与1次,一共抽7次。 You asked me why I chose 7. The secret is in the picture. There are 7 chances for the lottery. If I win on the first draw, then the remaining 6 tickets will be invalid. If I don't win, then I have the chance to participate once in each draw, for a total of 7 draws.
3. 老用户换票也需要授权钱包操作,记住再次确认授权对象是不是你要操作的网页,确认gas是不是在Base 链(我用的小狐狸,为了保证安全Base链里面只有做活动的资金) For old users who want to redeem tickets, they also need to authorize the wallet operation. Remember to double-check that the authorized entity is indeed the website you intend to operate on, and confirm whether the gas fee is on the Base Mainnet (I use Metamask, which is a small-scale blockchain designed to ensure security. On this chain, only funds for activities are stored).
换票
需要gas费 Need gas
第三步:完成兑换,等待抽奖结果 Step 3: Complete the exchange and wait for the drawing results
祝愿小伙伴们多多中奖,最近他们活动蛮多,只要动动手指就有机会中个彩票。 Wish all the friends a lot of good luck in winning the lottery. Recently, they have quite a few activities going on. Just by clicking a few times, you have a chance to win a lottery.
-
@ 3bf0c63f:aefa459d
2024-01-14 14:52:16Drivechain
Understanding Drivechain requires a shift from the paradigm most bitcoiners are used to. It is not about "trustlessness" or "mathematical certainty", but game theory and incentives. (Well, Bitcoin in general is also that, but people prefer to ignore it and focus on some illusion of trustlessness provided by mathematics.)
Here we will describe the basic mechanism (simple) and incentives (complex) of "hashrate escrow" and how it enables a 2-way peg between the mainchain (Bitcoin) and various sidechains.
The full concept of "Drivechain" also involves blind merged mining (i.e., the sidechains mine themselves by publishing their block hashes to the mainchain without the miners having to run the sidechain software), but this is much easier to understand and can be accomplished either by the BIP-301 mechanism or by the Spacechains mechanism.
How does hashrate escrow work from the point of view of Bitcoin?
A new address type is created. Anything that goes in that is locked and can only be spent if all miners agree on the Withdrawal Transaction (
WT^
) that will spend it for 6 months. There is one of these special addresses for each sidechain.To gather miners' agreement
bitcoind
keeps track of the "score" of all transactions that could possibly spend from that address. On every block mined, for each sidechain, the miner can use a portion of their coinbase to either increase the score of oneWT^
by 1 while decreasing the score of all others by 1; or they can decrease the score of allWT^
s by 1; or they can do nothing.Once a transaction has gotten a score high enough, it is published and funds are effectively transferred from the sidechain to the withdrawing users.
If a timeout of 6 months passes and the score doesn't meet the threshold, that
WT^
is discarded.What does the above procedure mean?
It means that people can transfer coins from the mainchain to a sidechain by depositing to the special address. Then they can withdraw from the sidechain by making a special withdraw transaction in the sidechain.
The special transaction somehow freezes funds in the sidechain while a transaction that aggregates all withdrawals into a single mainchain
WT^
, which is then submitted to the mainchain miners so they can start voting on it and finally after some months it is published.Now the crucial part: the validity of the
WT^
is not verified by the Bitcoin mainchain rules, i.e., if Bob has requested a withdraw from the sidechain to his mainchain address, but someone publishes a wrongWT^
that instead takes Bob's funds and sends them to Alice's main address there is no way the mainchain will know that. What determines the "validity" of theWT^
is the miner vote score and only that. It is the job of miners to vote correctly -- and for that they may want to run the sidechain node in SPV mode so they can attest for the existence of a reference to theWT^
transaction in the sidechain blockchain (which then ensures it is ok) or do these checks by some other means.What? 6 months to get my money back?
Yes. But no, in practice anyone who wants their money back will be able to use an atomic swap, submarine swap or other similar service to transfer funds from the sidechain to the mainchain and vice-versa. The long delayed withdraw costs would be incurred by few liquidity providers that would gain some small profit from it.
Why bother with this at all?
Drivechains solve many different problems:
It enables experimentation and new use cases for Bitcoin
Issued assets, fully private transactions, stateful blockchain contracts, turing-completeness, decentralized games, some "DeFi" aspects, prediction markets, futarchy, decentralized and yet meaningful human-readable names, big blocks with a ton of normal transactions on them, a chain optimized only for Lighting-style networks to be built on top of it.
These are some ideas that may have merit to them, but were never actually tried because they couldn't be tried with real Bitcoin or inferfacing with real bitcoins. They were either relegated to the shitcoin territory or to custodial solutions like Liquid or RSK that may have failed to gain network effect because of that.
It solves conflicts and infighting
Some people want fully private transactions in a UTXO model, others want "accounts" they can tie to their name and build reputation on top; some people want simple multisig solutions, others want complex code that reads a ton of variables; some people want to put all the transactions on a global chain in batches every 10 minutes, others want off-chain instant transactions backed by funds previously locked in channels; some want to spend, others want to just hold; some want to use blockchain technology to solve all the problems in the world, others just want to solve money.
With Drivechain-based sidechains all these groups can be happy simultaneously and don't fight. Meanwhile they will all be using the same money and contributing to each other's ecosystem even unwillingly, it's also easy and free for them to change their group affiliation later, which reduces cognitive dissonance.
It solves "scaling"
Multiple chains like the ones described above would certainly do a lot to accomodate many more transactions that the current Bitcoin chain can. One could have special Lightning Network chains, but even just big block chains or big-block-mimblewimble chains or whatnot could probably do a good job. Or even something less cool like 200 independent chains just like Bitcoin is today, no extra features (and you can call it "sharding"), just that would already multiply the current total capacity by 200.
Use your imagination.
It solves the blockchain security budget issue
The calculation is simple: you imagine what security budget is reasonable for each block in a world without block subsidy and divide that for the amount of bytes you can fit in a single block: that is the price to be paid in satoshis per byte. In reasonable estimative, the price necessary for every Bitcoin transaction goes to very large amounts, such that not only any day-to-day transaction has insanely prohibitive costs, but also Lightning channel opens and closes are impracticable.
So without a solution like Drivechain you'll be left with only one alternative: pushing Bitcoin usage to trusted services like Liquid and RSK or custodial Lightning wallets. With Drivechain, though, there could be thousands of transactions happening in sidechains and being all aggregated into a sidechain block that would then pay a very large fee to be published (via blind merged mining) to the mainchain. Bitcoin security guaranteed.
It keeps Bitcoin decentralized
Once we have sidechains to accomodate the normal transactions, the mainchain functionality can be reduced to be only a "hub" for the sidechains' comings and goings, and then the maximum block size for the mainchain can be reduced to, say, 100kb, which would make running a full node very very easy.
Can miners steal?
Yes. If a group of coordinated miners are able to secure the majority of the hashpower and keep their coordination for 6 months, they can publish a
WT^
that takes the money from the sidechains and pays to themselves.Will miners steal?
No, because the incentives are such that they won't.
Although it may look at first that stealing is an obvious strategy for miners as it is free money, there are many costs involved:
- The cost of ceasing blind-merged mining returns -- as stealing will kill a sidechain, all the fees from it that miners would be expected to earn for the next years are gone;
- The cost of Bitcoin price going down: If a steal is successful that will mean Drivechains are not safe, therefore Bitcoin is less useful, and miner credibility will also be hurt, which are likely to cause the Bitcoin price to go down, which in turn may kill the miners' businesses and savings;
- The cost of coordination -- assuming miners are just normal businesses, they just want to do their work and get paid, but stealing from a Drivechain will require coordination with other miners to conduct an immoral act in a way that has many pitfalls and is likely to be broken over the months;
- The cost of miners leaving your mining pool: when we talked about "miners" above we were actually talking about mining pools operators, so they must also consider the risk of miners migrating from their mining pool to others as they begin the process of stealing;
- The cost of community goodwill -- when participating in a steal operation, a miner will suffer a ton of backlash from the community. Even if the attempt fails at the end, the fact that it was attempted will contribute to growing concerns over exaggerated miners power over the Bitcoin ecosystem, which may end up causing the community to agree on a hard-fork to change the mining algorithm in the future, or to do something to increase participation of more entities in the mining process (such as development or cheapment of new ASICs), which have a chance of decreasing the profits of current miners.
Another point to take in consideration is that one may be inclined to think a newly-created sidechain or a sidechain with relatively low usage may be more easily stolen from, since the blind merged mining returns from it (point 1 above) are going to be small -- but the fact is also that a sidechain with small usage will also have less money to be stolen from, and since the other costs besides 1 are less elastic at the end it will not be worth stealing from these too.
All of the above consideration are valid only if miners are stealing from good sidechains. If there is a sidechain that is doing things wrong, scamming people, not being used at all, or is full of bugs, for example, that will be perceived as a bad sidechain, and then miners can and will safely steal from it and kill it, which will be perceived as a good thing by everybody.
What do we do if miners steal?
Paul Sztorc has suggested in the past that a user-activated soft-fork could prevent miners from stealing, i.e., most Bitcoin users and nodes issue a rule similar to this one to invalidate the inclusion of a faulty
WT^
and thus cause any miner that includes it in a block to be relegated to their own Bitcoin fork that other nodes won't accept.This suggestion has made people think Drivechain is a sidechain solution backed by user-actived soft-forks for safety, which is very far from the truth. Drivechains must not and will not rely on this kind of soft-fork, although they are possible, as the coordination costs are too high and no one should ever expect these things to happen.
If even with all the incentives against them (see above) miners do still steal from a good sidechain that will mean the failure of the Drivechain experiment. It will very likely also mean the failure of the Bitcoin experiment too, as it will be proven that miners can coordinate to act maliciously over a prolonged period of time regardless of economic and social incentives, meaning they are probably in it just for attacking Bitcoin, backed by nation-states or something else, and therefore no Bitcoin transaction in the mainchain is to be expected to be safe ever again.
Why use this and not a full-blown trustless and open sidechain technology?
Because it is impossible.
If you ever heard someone saying "just use a sidechain", "do this in a sidechain" or anything like that, be aware that these people are either talking about "federated" sidechains (i.e., funds are kept in custody by a group of entities) or they are talking about Drivechain, or they are disillusioned and think it is possible to do sidechains in any other manner.
No, I mean a trustless 2-way peg with correctness of the withdrawals verified by the Bitcoin protocol!
That is not possible unless Bitcoin verifies all transactions that happen in all the sidechains, which would be akin to drastically increasing the blocksize and expanding the Bitcoin rules in tons of ways, i.e., a terrible idea that no one wants.
What about the Blockstream sidechains whitepaper?
Yes, that was a way to do it. The Drivechain hashrate escrow is a conceptually simpler way to achieve the same thing with improved incentives, less junk in the chain, more safety.
Isn't the hashrate escrow a very complex soft-fork?
Yes, but it is much simpler than SegWit. And, unlike SegWit, it doesn't force anything on users, i.e., it isn't a mandatory blocksize increase.
Why should we expect miners to care enough to participate in the voting mechanism?
Because it's in their own self-interest to do it, and it costs very little. Today over half of the miners mine RSK. It's not blind merged mining, it's a very convoluted process that requires them to run a RSK full node. For the Drivechain sidechains, an SPV node would be enough, or maybe just getting data from a block explorer API, so much much simpler.
What if I still don't like Drivechain even after reading this?
That is the entire point! You don't have to like it or use it as long as you're fine with other people using it. The hashrate escrow special addresses will not impact you at all, validation cost is minimal, and you get the benefit of people who want to use Drivechain migrating to their own sidechains and freeing up space for you in the mainchain. See also the point above about infighting.
See also
-
@ eab58da0:eebdafbf
2025-05-15 11:35:31By UnKnownfx
Some days, my mind feels like a tangled ball of yarn—overwhelmed, scattered, and stuck. I used to let those moments derail me, but then I stumbled on a 5-minute mental reset that’s become my lifeline. It’s simple, doesn’t require fancy tools, and has genuinely transformed how I tackle my day. Here’s how it works and why it’s worth a try.
The Morning That Felt Like a Marathon Last month, I woke up to a flood of notifications: work emails, a looming deadline, and a friend’s urgent text. By 9 a.m., my brain was already fried. I was overthinking every task, feeling like I’d fail before I even started. Sitting at my desk, I realized I couldn’t keep going like this. I needed a way to hit pause, not just on my to-do list, but on the chaos in my head. That’s when I tried something I’d read about: a quick mental reset to ground myself.
The 5-Minute Reset: How It Works The reset is called the 5-4-3-2-1 technique, and it’s deceptively simple. You take five minutes to engage your senses and anchor yourself in the present. Here’s how I do it:
5 things I see: I look around and name five things—a mug, a tree outside, my notebook, a pen, the sunlight on my wall.
4 things I hear: I listen for four sounds—birds chirping, a distant car, my own breathing, the hum of my laptop.
3 things I feel: I notice three sensations—my feet on the floor, the chair against my back, my fingers on the table.
2 things I smell: I take a deep breath for two scents—coffee in the air, a faint whiff of my shampoo.
* 1 thing I taste: I sip my drink or just note the taste in my mouth, like lingering toothpaste.That morning, those five minutes pulled me out of my spiral. My racing thoughts slowed, and I felt… present. It was like hitting a reset button on my brain.
Why It’s a Game-Changer This reset isn’t magic, but it’s powerful because it forces you to stop ruminating and focus on now. That day, I went from paralyzed to productive. I tackled one task at a time, and by noon, I’d crossed off half my list. More than that, I felt lighter, like I’d reclaimed control. I’ve since made it a daily habit, especially on chaotic mornings. It’s not about erasing stress—it’s about giving yourself a moment to breathe and choose how to move forward.
Your Turn to Try It You don’t need hours or a guru to find calm—you just need five minutes. This reset has been my small rebellion against overwhelm, and I’m betting it can help you, too. Try it tomorrow morning or the next time your mind feels heavy. What’s your go-to way to clear mental clutter? Have you ever found a quick trick that turned your day around? Share your thoughts below or post your own note—I’d love to hear what works for you!
Thanks for reading. Much love, UnKnownfx
-
@ 2b783a1d:89de10bd
2025-05-15 10:12:22Twin68 không ngừng khẳng định vị thế của mình như một nền tảng số toàn diện, được thiết kế để phục vụ nhu cầu ngày càng đa dạng của người dùng hiện đại. Với giao diện trực quan, linh hoạt và dễ sử dụng, Twin68 cho phép người dùng thao tác mượt mà trên mọi thiết bị, từ máy tính để bàn cho đến điện thoại di động. Điều này giúp tiết kiệm thời gian, đồng thời tối ưu hóa trải nghiệm cá nhân hóa của mỗi người. Một điểm đáng chú ý tại Twin68 là tốc độ truy cập nhanh chóng, khả năng đồng bộ dữ liệu tốt và sự ổn định trong suốt quá trình sử dụng. Bất kể bạn ở đâu, chỉ cần có kết nối mạng, bạn có thể dễ dàng tiếp cận các tiện ích được tích hợp sẵn mà không cần cài đặt phức tạp. Twin68 cũng liên tục cập nhật nội dung để theo kịp xu hướng công nghệ và thói quen số mới, giúp người dùng luôn cảm thấy mới mẻ và hấp dẫn mỗi khi truy cập.
Không chỉ chú trọng vào thiết kế và nội dung, TWIN68 còn đặc biệt đầu tư vào yếu tố bảo mật và quyền riêng tư. Tất cả thông tin cá nhân và lịch sử sử dụng đều được mã hóa theo tiêu chuẩn quốc tế, đảm bảo dữ liệu của người dùng luôn được bảo vệ an toàn tuyệt đối. Hệ thống xác thực nhiều lớp giúp giảm thiểu nguy cơ truy cập trái phép, trong khi các bản cập nhật phần mềm được thực hiện định kỳ để ngăn chặn sớm các lỗ hổng bảo mật. Twin68 cũng tích hợp các công nghệ nhận diện hành vi người dùng nhằm tăng cường khả năng bảo vệ tài khoản và tùy chỉnh nội dung hiển thị sao cho phù hợp nhất. Nhờ đó, mỗi người dùng khi đăng nhập vào Twin68 sẽ được trải nghiệm một không gian riêng biệt, thân thiện và cá nhân hóa tối đa. Việc đăng ký, đăng nhập và sử dụng các tính năng cũng được đơn giản hóa, tạo điều kiện để tất cả người dùng, kể cả những người không am hiểu công nghệ, vẫn có thể dễ dàng làm quen và sử dụng hiệu quả.
Một yếu tố khác tạo nên sự khác biệt của Twin68 chính là dịch vụ chăm sóc khách hàng chuyên nghiệp và luôn sẵn sàng 24/7. Bất kỳ thắc mắc nào của người dùng đều được tiếp nhận và xử lý nhanh chóng thông qua nhiều kênh như live chat, email hoặc hotline. Twin68 không chỉ xem người dùng là trung tâm, mà còn xem họ là đối tác trong quá trình phát triển nền tảng. Vì thế, các phản hồi từ cộng đồng luôn được ghi nhận và áp dụng để cải tiến hệ thống, nâng cao chất lượng dịch vụ. Ngoài ra, Twin68 cũng thường xuyên triển khai các chương trình khuyến khích người dùng như sự kiện tương tác, quà tặng tri ân và các ưu đãi hấp dẫn dành riêng cho thành viên thân thiết. Sự kết hợp giữa công nghệ hiện đại, dịch vụ chuyên nghiệp và chiến lược lấy người dùng làm trung tâm đã đưa Twin68 trở thành lựa chọn lý tưởng cho bất kỳ ai đang tìm kiếm một nền tảng trực tuyến vừa tiện lợi, vừa an toàn và đầy tiềm năng phát triển trong thời đại số.
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28A response to Achim Warner's "Drivechain brings politics to miners" article
I mean this article: https://achimwarner.medium.com/thoughts-on-drivechain-i-miners-can-do-things-about-which-we-will-argue-whether-it-is-actually-a5c3c022dbd2
There are basically two claims here:
1. Some corporate interests might want to secure sidechains for themselves and thus they will bribe miners to have these activated
First, it's hard to imagine why they would want such a thing. Are they going to make a proprietary KYC chain only for their users? They could do that in a corporate way, or with a federation, like Facebook tried to do, and that would provide more value to their users than a cumbersome pseudo-decentralized system in which they don't even have powers to issue currency. Also, if Facebook couldn't get away with their federated shitcoin because the government was mad, what says the government won't be mad with a sidechain? And finally, why would Facebook want to give custody of their proprietary closed-garden Bitcoin-backed ecosystem coins to a random, open and always-changing set of miners?
But even if they do succeed in making their sidechain and it is very popular such that it pays miners fees and people love it. Well, then why not? Let them have it. It's not going to hurt anyone more than a proprietary shitcoin would anyway. If Facebook really wants a closed ecosystem backed by Bitcoin that probably means we are winning big.
2. Miners will be required to vote on the validity of debatable things
He cites the example of a PoS sidechain, an assassination market, a sidechain full of nazists, a sidechain deemed illegal by the US government and so on.
There is a simple solution to all of this: just kill these sidechains. Either miners can take the money from these to themselves, or they can just refuse to engage and freeze the coins there forever, or they can even give the coins to governments, if they want. It is an entirely good thing that evil sidechains or sidechains that use horrible technology that doesn't even let us know who owns each coin get annihilated. And it was the responsibility of people who put money in there to evaluate beforehand and know that PoS is not deterministic, for example.
About government censoring and wanting to steal money, or criminals using sidechains, I think the argument is very weak because these same things can happen today and may even be happening already: i.e., governments ordering mining pools to not mine such and such transactions from such and such people, or forcing them to reorg to steal money from criminals and whatnot. All this is expected to happen in normal Bitcoin. But both in normal Bitcoin and in Drivechain decentralization fixes that problem by making it so governments cannot catch all miners required to control the chain like that -- and in fact fixing that problem is the only reason we need decentralization.
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28A violência é uma forma de comunicação
A violência é uma forma de comunicação: um serial killer, um pai que bate no filho, uma briga de torcidas, uma sessão de tortura, uma guerra, um assassinato passional, uma briga de bar. Em todos esses se pode enxergar uma mensagem que está tentando ser transmitida, que não foi compreendida pelo outro lado, que não pôde ser expressa, e, quando o transmissor da mensagem sentiu que não podia ser totalmente compreendido em palavras, usou essa outra forma de comunicação.
Quando uma ofensa em um bar descamba para uma briga, por exemplo, o que há é claramente uma tentativa de uma ofensa maior ainda pelo lado do que iniciou a primeira, a briga não teria acontecido se ele a tivesse conseguido expressar em palavras tão claras que toda a audiência de bêbados compreendesse, o que estaria além dos limites da linguagem, naquele caso, o soco com o mão direita foi mais eficiente. Poderia ser também a defesa argumentativa: "eu não sou um covarde como você está dizendo" -- mas o bar não acreditaria nessa frase solta, a comunicação não teria obtido o sucesso desejado.
A explicação para o fato da redução da violência à medida em que houve progresso da civilização está na melhora da eficiência da comunicação humana: a escrita, o refinamento da expressão lingüística, o aumento do alcance da palavra falada com rádio, a televisão e a internet.
Se essa eficiência diminuir, porque não há mais acordo quanto ao significado das palavras, porque as pessoas não estão nem aí para se o que escrevem é bom ou não, ou porque são incapazes de compreender qualquer coisa, deve aumentar proporcionalmente a violência.
-
@ a3c6f928:d45494fb
2025-05-15 09:19:23Freedom is the fertile ground upon which innovation and creativity flourish. When individuals and communities are free to think, experiment, and challenge norms without fear of oppression, groundbreaking ideas emerge, driving societal progress and technological advancement.
Why Freedom Fuels Innovation
Innovation thrives in environments where people can express ideas openly, take risks, and learn from failure. History shows that societies that encourage free thinking tend to lead in technological and artistic achievements. From the Renaissance to Silicon Valley, freedom of expression and thought has been the catalyst for transformative change.
Creativity Without Constraints
Creativity is the ability to generate original ideas and solve problems in novel ways. For this to happen, people need the freedom to explore unconventional paths, question existing practices, and think outside the box. When creative minds are unshackled by censorship or rigid expectations, true innovation is possible.
The Barriers to Creative Freedom
-
Censorship and Regulation: Over-regulation can stifle innovation by limiting experimentation.
-
Fear of Failure: In cultures that punish failure, individuals are less likely to take creative risks.
-
Conformity Pressures: Societal expectations can suppress original thinking and limit exploration.
Cultivating an Innovative Environment
-
Encourage Open Dialogue: Innovation begins with conversation—ideas need space to be heard and refined.
-
Support Experimentation: Foster an environment where failure is viewed as a step toward success.
-
Break Down Barriers: Challenge norms that restrict free thinking and creativity.
-
Celebrate Diversity of Thought: Diverse perspectives lead to richer, more innovative solutions.
The Future of Freedom and Innovation
As technology and global connections expand, the role of freedom in driving innovation becomes even more critical. Societies that protect freedom of thought and expression will continue to lead in creativity and progress.
“Innovation is the ability to see change as an opportunity—not a threat.” — Steve Jobs
Dare to think differently. Embrace freedom. Create the future.
-
-
@ dbb19ae0:c3f22d5a
2025-05-15 08:28:36This user appears to be an active and multifaceted individual with a penchant for sharing insightful quotes and memes, as well as exploring various aspects of technology and culture.
- Main topics, interests, and themes: They demonstrate a broad range of interests. Key themes include:
- Bitcoin and Nostr: Actively promotes and shares information about Bitcoin, Lightning Network, and Nostr. This includes guides, wallet comparisons, and commentary.
- Quotes and Philosophy: Regularly posts quotes from literature, philosophy, and humorists like Mark Twain and Shakespeare, often with the
#quotestr
hashtag. - Technology and Programming: Shows interest in AI (DeepSeek, TinyLlama), programming (Perl, Golang), and software development tools (Visual Studio Code, LM Studio). They also share technical troubleshooting experiences.
- Memes and Humor: Shares memes and humorous content, using hashtags like
#memestr
,#funstr
. - Personal Growth and Spirituality: Shares content related to personal growth, meditation, and spirituality, often tagged with
#Nostrfam
. - Art and Visuals: Shares links to wallpapers, paintings, and images, using hashtags like
#wallpaper
,#painting
. -
Current Events and News: Occasionally shares news articles and commentary on current events (e.g., Storm Éowyn, kidnapping).
-
Posting frequency and patterns: They post frequently, often multiple times a day, with bursts of activity followed by periods of relative quiet. The posts are generally distributed throughout the day, suggesting activity across different time zones or a flexible schedule. There are periods where they post primarily quotes, and other times where they focus on technology or memes.
-
Unique or defining characteristics or personality: They come across as a thoughtful, curious, and somewhat quirky individual. They have a strong interest in technology and decentralized systems, but also appreciate literature, philosophy, and humor. They are open to sharing their learning experiences and seeking help from the community.
-
Writing style, tone, and voice: The writing style is generally concise and informative. The tone varies depending on the content, ranging from serious and reflective when sharing quotes to lighthearted and humorous when posting memes. Their voice is often inquisitive and open to discussion.
-
Is the user male or female? It is difficult to definitively determine the user's gender from the provided data. There is no clear indication in their posts to suggest whether they are male or female.
-
How likely is the user to be a bot (0-100%)? Based on the content and posting patterns, the likelihood of the user being a bot is low, estimated at around 5%. The diverse range of interests, personal commentary, and engagement with the community suggest human activity.
-
How spammy is the user (0-100%)? The user's content does not appear to be spammy. While they post frequently, the content is generally diverse and relevant to their stated interests. The estimated spam score is around 10%.
-
Any other interesting or curious details:
- Their use of
#quotestr
is very consistent, suggesting a deliberate effort to share and curate insightful quotes. - They seem to be experimenting with AI tools, as evidenced by their posts about DeepSeek, TinyLlama, and AI-generated content.
- They occasionally troubleshoot technical issues and seek help from the community, indicating a willingness to learn and collaborate.
-
There are some posts related to "ev3blog", but the context is unclear.
-
What is their spirit animal? A Raven. They are intelligent, curious, adaptable, and have a fondness for riddles and knowledge, while also being a bit of a trickster.
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28On HTLCs and arbiters
This is another attempt and conveying the same information that should be in Lightning and its fake HTLCs. It assumes you know everything about Lightning and will just highlight a point. This is also valid for PTLCs.
The protocol says HTLCs are trimmed (i.e., not actually added to the commitment transaction) when the cost of redeeming them in fees would be greater than their actual value.
Although this is often dismissed as a non-important fact (often people will say "it's trusted for small payments, no big deal"), but I think it is indeed very important for 3 reasons:
- Lightning absolutely relies on HTLCs actually existing because the payment proof requires them. The entire security of each payment comes from the fact that the payer has a preimage that comes from the payee. Without that, the state of the payment becomes an unsolvable mystery. The inexistence of an HTLC breaks the atomicity between the payment going through and the payer receiving a proof.
- Bitcoin fees are expected to grow with time (arguably the reason Lightning exists in the first place).
- MPP makes payment sizes shrink, therefore more and more of Lightning payments are to be trimmed. As I write this, the mempool is clear and still payments smaller than about 5000sat are being trimmed. Two weeks ago the limit was at 18000sat, which is already below the minimum most MPP splitting algorithms will allow.
Therefore I think it is important that we come up with a different way of ensuring payment proofs are being passed around in the case HTLCs are trimmed.
Channel closures
Worse than not having HTLCs that can be redeemed is the fact that in the current Lightning implementations channels will be closed by the peer once an HTLC timeout is reached, either to fulfill an HTLC for which that peer has a preimage or to redeem back that expired HTLCs the other party hasn't fulfilled.
For the surprise of everybody, nodes will do this even when the HTLCs in question were trimmed and therefore cannot be redeemed at all. It's very important that nodes stop doing that, because it makes no economic sense at all.
However, that is not so simple, because once you decide you're not going to close the channel, what is the next step? Do you wait until the other peer tries to fulfill an expired HTLC and tell them you won't agree and that you must cancel that instead? That could work sometimes if they're honest (and they have no incentive to not be, in this case). What if they say they tried to fulfill it before but you were offline? Now you're confused, you don't know if you were offline or they were offline, or if they are trying to trick you. Then unsolvable issues start to emerge.
Arbiters
One simple idea is to use trusted arbiters for all trimmed HTLC issues.
This idea solves both the protocol issue of getting the preimage to the payer once it is released by the payee -- and what to do with the channels once a trimmed HTLC expires.
A simple design would be to have each node hardcode a set of trusted other nodes that can serve as arbiters. Once a channel is opened between two nodes they choose one node from both lists to serve as their mutual arbiter for that channel.
Then whenever one node tries to fulfill an HTLC but the other peer is unresponsive, they can send the preimage to the arbiter instead. The arbiter will then try to contact the unresponsive peer. If it succeeds, then done, the HTLC was fulfilled offchain. If it fails then it can keep trying until the HTLC timeout. And then if the other node comes back later they can eat the loss. The arbiter will ensure they know they are the ones who must eat the loss in this case. If they don't agree to eat the loss, the first peer may then close the channel and blacklist the other peer. If the other peer believes that both the first peer and the arbiter are dishonest they can remove that arbiter from their list of trusted arbiters.
The same happens in the opposite case: if a peer doesn't get a preimage they can notify the arbiter they hadn't received anything. The arbiter may try to ask the other peer for the preimage and, if that fails, settle the dispute for the side of that first peer, which can proceed to fail the HTLC is has with someone else on that route.
-
@ 961e8955:d7fa53e4
2025-05-15 07:37:10Cryptocurrencies have been gaining more and more attention in recent years. Many people wonder if they have the potential to replace banks in the future. While it is possible that cryptocurrencies will play a larger role in the financial world, it is unlikely that they will fully replace banks.
One reason why cryptocurrencies are unlikely to replace banks is that they lack the infrastructure to provide the same level of services. Banks offer a wide range of financial products, including loans, credit cards, and savings accounts. They also provide customer support and have physical locations where customers can go to access their accounts. Cryptocurrencies, on the other hand, are primarily used for online transactions and are not yet widely accepted as a form of payment.
Another challenge that cryptocurrencies face is regulation. Banks are heavily regulated by governments, which helps to ensure the stability of the financial system. Cryptocurrencies, on the other hand, are not yet subject to the same level of regulation. This makes them more vulnerable to fraud and other risks.
Despite these challenges, cryptocurrencies have the potential to play an important role in the financial world. They offer a level of security and privacy that traditional financial institutions cannot match. Additionally, cryptocurrencies can be used to make transactions across borders more easily, without the need for a centralized intermediary.
In conclusion, while it is possible that cryptocurrencies will continue to grow in popularity and become a more prominent part of the financial world, it is unlikely that they will fully replace banks. Cryptocurrencies have their own unique benefits, but they lack the infrastructure and regulation necessary to provide the same level of service as banks.
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28Problemas com Russell Kirk
A idéia central da “política da prudência[^1]” de Russell Kirk me parece muito correta, embora tenha sido melhor formulada pior no seu enorme livro do que em uma pequena frase do joanadarquista Lucas Souza: “o conservadorismo é importante, porque tem muita gente com idéia errada por aí, e nós podemos não saber distingüi-las”.
Porém, há alguns problemas que precisam ser esclarecidos, ou melhor explicados, e que me impedem de enxergar os seus argumentos como refutação final do meu já tão humilde (embora feroz) anarquismo. São eles:
I Percebo alguma coisa errada, não sei bem onde, entre a afirmação de que toda ideologia é ruim, ou “todas as ideologias causam confusão[^2]”, e a proposta conservadora de “conservar o mundo da ordem que herdamos, ainda que em estado imperfeito, de nossos ancestrais[^3]”. Ora, sem precisar cair em exemplos como o do partido conservador inglês -- que conservava a política inglesa sempre onde estava, e se alternava no governo com o partido trabalhista, que a levava cada vez mais um pouco à esquerda --, está embutida nessa frase, talvez, a idéia, que ao mesmo tempo é clara e ferrenhamente combatida pelos próprios conservadores, de que a história é da humanidade é uma história de progresso linear rumo a uma situação melhor.
Querer conservar o mundo da ordem que herdamos significa conservar também os vários erros que podem ter sido cometidos pelos nossos ancestrais mais recentes, e conservá-los mesmo assim, acusando toda e qualquer tentativa de propôr soluções a esses erros de ideologia? Ou será que conservar o mundo da ordem é escolher um período determinado que seja tido como o auge da história humana e tentar restaurá-lo em nosso próprio tempo? Não seria isto ideologia?
Ou, ainda, será que conservar o mundo da ordem é selecionar, entre vários períodos do passado, alguns pedaços que o conservador considerar ótimos em cada sociedade, fazer dali uma mistura de sociedade ideal baseada no passado e então tentar implementá-la? Quem saberia dizer quais são as partes certas?
II Sobre a questão do que mantém a sociedade civil coesa, Russell Kirk, opondo-a à posição libertária de que o nexo da sociedade é o autointeresse, declara que a posição conservadora é a de que “a sociedade é uma comunidade de almas, que une os mortos, os vivos e os ainda não nascidos, e que se harmoniza por aquilo que Aristóteles chamou de amizade e os cristãos chamam de caridade ou amor ao próximo”.
Esta é uma posição muito correta, mas me parece estar em contradição com a defesa do Estado que ele faz na mesma página e na seguinte. O que me parece errado é que a sociedade não pode ser, ao mesmo tempo, uma “comunidade baseada no amor ao próximo” e uma comunidade que “requer não somente que as paixões dos indivíduos sejam subjugadas, mas que, mesmo no povo e no corpo social, bem como nos indivíduos, as inclinações dos homens, amiúde, devam ser frustradas, a vontade controlada e as paixões subjugadas” e, pior, que “isso somente pode ser feito por um poder exterior”.
Disto aí podemos tirar que, da mesma forma que Kirk define a posição libertária como sendo a de que o autointeresse é que mantém a sociedade civil coesa, a posição conservadora seria então a de que essa coesão vem apenas do Estado, e não de qualquer ligação entre vivos e mortos, ou do amor ao próximo. Já que, sem o Estado, diz, ele, citando Thomas Hobbes, a condição do homem é “solitária, pobre, sórdida, embrutecida e curta”?
[^1]: este é o nome do livro e também um outro nome que ele dá para o próprio conservadorismo (p.99). [^2]: p. 101 [^3]: p. 102
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28A command line utility to create and manage personal graphs, then write them to dot and make images with graphviz.
It manages a bunch of YAML files, one for each entity in the graph. Each file lists the incoming and outgoing links it has (could have listen only the outgoing, now that I'm tihnking about it).
Each run of the tool lets you select from existing nodes or add new ones to generate a single link type from one to one, one to many, many to one or many to many -- then updates the YAML files accordingly.
It also includes a command that generates graphs with graphviz, and it can accept a template file that lets you customize the
dot
that is generated and thus the graphviz graph.rel
-
@ 9c9d2765:16f8c2c2
2025-05-15 05:01:00CHAPTER NINETEEN
“Please! I’m your sister! I just needed a little help!” she cried dramatically. “How could you do this to your own blood?!”
Gasps echoed through the grand hall.
Guests froze in place, their judgmental stares directed at James. Cameraman didn’t hesitate to raise their lenses. Phones were pulled out. A social media storm was already brewing in real time.
James stood still, eyes narrowed. He didn’t move, didn’t speak.
Tracy, standing beside Helen, discreetly snapped more photos, already typing up the next round of false headlines to feed into the media engine.
Helen smirked at the chaos and whispered, “This is it. The downfall begins.”
But James wasn’t shaken.
With quiet authority, he raised his hand, and two personal bodyguards appeared from the sidelines. He looked Evelyn square in the eye, then said, loud enough for the nearest guests to hear, “Escort this woman outside. She is not my sister. And she has no place here.”
Evelyn’s cries turned more dramatic, but it was clear to the more discerning eyes in the room that something about her act was off. Her appearance was too deliberate, her performance too exaggerated.
As security led her away, some guests began to murmur with skepticism.
“Wait… that woman doesn’t even resemble him.” “Isn’t it strange she showed up right after that story went viral?” “Could this be a setup?”
Suddenly, a hush fell over the grand hall. The doors swung open and in walked Mr. and Mrs. JP, their presence commanding immediate respect and admiration. The atmosphere shifted, charged with reverence. The orchestra paused, and every individual in the room instinctively rose to their feet.
The couple moved with elegance and dignity, their attire speaking volumes of their legacy Mr. JP in a classic black suit with golden cufflinks, and Mrs. JP in an emerald silk gown that shimmered under the chandeliers.
As they made their way toward the stage, hosts and VIPs bowed subtly, showing deference. Whispers rippled through the audience.
"That’s the founder himself..." "And she’s the matriarch elegance personified." "Do you think they know about the scandal?"
When the couple finally ascended the stage, Mr. JP gestured politely for the crowd to take their seats. The applause lingered like a standing ovation for royalty.
Taking the microphone with a measured breath, Mr. JP began, his voice calm, dignified, and layered with authority.
“Distinguished guests,” he said, scanning the crowd with a nod. “Tonight marks a milestone not just in our company’s journey, but in our personal lives. Sixteen years ago, this empire was only a dream... Today, it is a reality that spans borders and inspires millions.”
The audience clapped again, some even rising briefly in acknowledgment.
“We did not build this alone,” he continued, eyes softening. “From those who’ve been with us from the beginning, to the new minds who’ve steered us through recent storms this success belongs to all of you.”
Then, a slight pause.
Mr. JP took a breath, his tone shifting to something deeper.
“Among those responsible for the rebirth of JP Enterprises… is someone very close to me. Someone many of you may not recognize today, but who has been pivotal in our turnaround.”
People exchanged curious glances.
Helen furrowed her brows. Mark leaned forward, visibly tense. Even Tracy, who had been busy on her phone, paused, sensing something big.
Mr. JP looked toward James in the crowd. “Please rise.”
James stood up slowly, every eye in the room locking on him.
Gasps echoed across the hall.
“That’s him?” “The guy from the news?” “The so-called cruel brother?”
Mr. JP smiled proudly.
“Ladies and gentlemen,” he said, his voice growing firm, “the man you see before you is not only the current President of JP Enterprises… but he is also my son James JP.”
Silence fell like a heavy curtain.
Helen's wine glass slipped slightly in her grip. Mark's jaw dropped. Tracy froze.
Mr. JP continued, “Some of you may have seen recent headlines. Falsehoods spread by those who fear his rise. But let me be clear this man was once wrongly accused, cast aside, and even disowned. A mistake I will regret all my life. Yet despite all that, he rebuilt everything. He turned loss into legacy.”
He turned to James, emotion glistening in his eyes. “Son, I’m proud of you. You are not just a worthy heir, you are a better man than I ever was.”
A standing ovation erupted.
The audience rose again, this time with sincere admiration. Applause thundered across the hall.
James slowly approached the stage, his head held high, the moment heavy with vindication. He took the microphone, looked across the sea of faces, some still stunned, some clapping with tears in their eyes.
“Thank you,” he began, his voice steady. “There was a time I stood outside this very building, invisible, broken, and ignored. Today, I stand here not for revenge… but to remind us all: never underestimate the strength of the overlooked.”
The applause grew louder.
“I will protect this company with everything I have,” he declared. “But let it also be known betrayal has no place in this legacy. Truth always finds a way to rise.”
Helen swallowed hard.
Mark clenched his fists beneath the table.
Tracy shrank slightly into her seat.
The atmosphere in the grand ballroom of the JP Enterprises Headquarters was thick with suspense. Mr. JP stood tall behind the polished podium, his presence commanding silence. The air practically crackled with curiosity as the crowd leaned forward in their seats, eager to hear the revelation everyone had been waiting for.
“I know many of you are wondering who my son is,” Mr. JP said, his voice deep and firm, echoing through the hall. “The one who will inherit not just my fortune, but my legacy. The heir to JP Enterprises and everything I have worked for in my lifetime.”
-
@ f6488c62:c929299d
2025-05-15 04:04:24วันที่ 8 เมษายน 2568 (2025) ทีมนักพัฒนา Solana (@solana_devs) ได้ประกาศเปิดตัว Confidential Balances Token Extensions บน Solana Mainnet
ซึ่งเป็นมาตรฐานโทเค็นที่ใช้เทคโนโลยี Zero-Knowledge Proofs (ZKPs) เป็นครั้งแรก เพื่อเพิ่มความเป็นส่วนตัว (privacy) และการปฏิบัติตามกฎระเบียบ (compliance) สำหรับการใช้งานในระดับสถาบัน โดยยังคงรักษาความเร็วในการยืนยันธุรกรรมที่ต่ำกว่า 1 วินาที (sub-second finality) อันเป็นจุดเด่นของ Solana
Confidential Balances เป็นชุดของ Token Extensions (ส่วนขยายของโทเค็น) ที่ออกแบบมาเพื่อเพิ่มความเป็นส่วนตัวให้กับธุรกรรมบนบล็อกเชน Solana โดยใช้เทคโนโลยี Zero-Knowledge Proofs (ZKPs) และ homomorphic encryption เพื่อปกปิดข้อมูลที่ละเอียดอ่อน เช่น จำนวนโทเค็นที่โอน, การสร้าง (mint), การเผา (burn), และค่าธรรมเนียม (fees) ในขณะที่ยังคงรักษาความโปร่งใสที่จำเป็นสำหรับการปฏิบัติตามกฎระเบียบของสถาบัน ฟีเจอร์นี้พัฒนาต่อยอดจาก Confidential Transfers ซึ่งเปิดตัวครั้งแรกในโปรแกรม Token2022 ของ Solana เมื่อเดือนมิถุนายน 2567 (2024) โดย Confidential Balances ขยายขอบเขตการใช้งานให้ครอบคลุมมากขึ้นและตอบโจทย์ทั้งผู้ใช้ทั่วไปและองค์กร คุณสมบัติหลักของ Confidential Balances Confidential Balances ประกอบด้วยส่วนขยายโทเค็น 3 ส่วนหลัก ดังนี้: Confidential Transfers (การโอนแบบเป็นส่วนตัว)
ช่วยให้ผู้ใช้สามารถโอนโทเค็นโดยซ่อน จำนวนเงินที่โอน จากสาธารณะ แต่ที่อยู่ของกระเป๋าเงิน (wallet addresses) ยังคงมองเห็นได้ใช้ homomorphic encryption และ ZKPs เพื่อให้ระบบสามารถตรวจสอบความถูกต้องของธุรกรรมได้โดยไม่ต้องเปิดเผยจำนวนเงิน
เหมาะสำหรับการใช้งานที่ต้องการความเป็นส่วนตัว เช่น การโอนเงินระหว่างธุรกิจ (B2B payments) หรือการจ่ายเงินเดือน (payroll)
Confidential Transfer Fees (ค่าธรรมเนียมแบบเป็นส่วนตัว)
ปกปิดข้อมูลเกี่ยวกับ ค่าธรรมเนียม ที่เกิดขึ้นในธุรกรรมช่วยให้ธุรกรรมทั้งหมด รวมถึงการหักค่าธรรมเนียม มีความเป็นส่วนตัวมากขึ้น
Confidential Mint and Burn (การสร้างและเผาโทเค็นแบบเป็นส่วนตัว)
อนุญาตให้ผู้ออกโทเค็น (token issuers) สามารถ สร้าง (mint) หรือ เผา (burn) โทเค็นโดยไม่เปิดเผยจำนวนโทเค็นทั้งหมดเหมาะสำหรับโปรเจกต์ที่ต้องการควบคุมปริมาณโทเค็นอย่างเป็นส่วนตัว เช่น Stablecoin หรือโทเค็นที่ใช้ในระบบการเงิน
เทคโนโลยีที่อยู่เบื้องหลัง Confidential Balances ใช้เทคโนโลยี cryptographic ขั้นสูง ดังนี้: Zero-Knowledge Proofs (ZKPs): ZKPs ช่วยให้ระบบสามารถพิสูจน์ความถูกต้องของธุรกรรม (เช่น จำนวนเงินที่โอนเพียงพอหรือไม่) โดยไม่ต้องเปิดเผยข้อมูลที่ละเอียดอ่อน ตัวอย่างเช่น ผู้ใช้สามารถพิสูจน์ว่าได้โอนเงินจำนวนหนึ่งโดยไม่ต้องบอกว่าโอนเท่าไหร่
Homomorphic Encryption: การเข้ารหัสแบบโฮโมมอร์ฟิกช่วยให้ระบบสามารถคำนวณข้อมูลที่เข้ารหัสได้โดยตรง โดยไม่ต้องถอดรหัส ซึ่งรักษาความเป็นส่วนตัวของข้อมูลในทุกขั้นตอนของธุรกรรม
ElGamal Encryption: ใช้ในการเข้ารหัสยอดคงเหลือและจำนวนโอน เพื่อให้ข้อมูลเหล่านี้มองเห็นได้เฉพาะผู้ที่มีกุญแจถอดรหัส (เช่น ผู้รับหรือผู้ตรวจสอบที่ได้รับอนุญาต)
Auditor Keys: เพื่อให้สอดคล้องกับกฎระเบียบ สถาบันสามารถใช้ "Auditor Keys" เพื่อตรวจสอบข้อมูลธุรกรรมที่เข้ารหัสได้เมื่อจำเป็น เช่น เพื่อปฏิบัติตามกฎหมายป้องกันการฟอกเงิน (AML) หรือการรายงานภาษี
ประโยชน์และการใช้งาน Confidential Balances ออกแบบมาเพื่อตอบโจทย์ทั้งผู้ใช้ทั่วไปและองค์กร โดยมีประโยชน์หลักดังนี้: เพิ่มความเป็นส่วนตัวโดยไม่สูญเสียประสิทธิภาพ
รักษาความเร็วในการยืนยันธุรกรรม (sub-second finality) และค่าธรรมเนียมที่ต่ำ (มักต่ำกว่า $0.01) ซึ่งเป็นจุดแข็งของ Solanaเปรียบเทียบกับ Ethereum ที่ใช้ zkRollups ซึ่งมีต้นทุนสูงกว่าและช้ากว่า
เหมาะสำหรับการใช้งานในระดับสถาบัน
รองรับการใช้งานในระบบการเงินที่ต้องการความเป็นส่วนตัว เช่น:
Payroll Systems: การจ่ายเงินเดือนที่ไม่เปิดเผยจำนวนเงินB2B Payments: การโอนเงินระหว่างธุรกิจที่ต้องการความลับ
Merchant Payment Solutions: การชำระเงินที่ปกป้องข้อมูลลูกค้า
Privacy-Preserving dApps: แอปพลิเคชัน DeFi หรือแอปผู้บริโภคที่เน้นความเป็นส่วนตัว
การปฏิบัติตามกฎระเบียบ
Auditor Keys ช่วยให้หน่วยงานกำกับดูแลสามารถตรวจสอบธุรกรรมได้ตามความจำเป็น โดยไม่กระทบต่อความเป็นส่วนตัวของผู้ใช้ทั่วไปทำให้ Solana เป็นตัวเลือกที่น่าสนใจสำหรับสถาบันการเงินที่ต้องปฏิบัติตามกฎหมาย AML, CTF (Counter-Terrorist Financing) หรือการรายงานภาษี
การเข้าถึงที่ง่ายขึ้นสำหรับผู้ใช้ทั่วไป
Solana มีแผนพัฒนา JavaScript-based ZK proof libraries ภายในปี 2568 ซึ่งจะช่วยให้กระเป๋าเงิน (wallets) เช่น Phantom หรือ Backpack สามารถรวมฟีเจอร์ Confidential Balances ได้ผู้ใช้จะสามารถสร้างและตรวจสอบ ZK proofs ได้โดยตรงจากเบราว์เซอร์หรือแอปมือถือ โดยไม่ต้องพึ่งพาเซิร์ฟเวอร์ภายนอก
สถานะการใช้งานในปัจจุบัน การใช้งานสำหรับนักพัฒนา:
Confidential Balances พร้อมใช้งานแล้วในสภาพแวดล้อม Rust-based backends สำหรับการพัฒนาแบบ server-sideรองรับ Wallets-as-a-Service (WaaS) สำหรับโซลูชัน custodial ซึ่งช่วยอำนวยความสะดวกสำหรับผู้ใช้ที่ไม่ต้องการจัดการกุญแจส่วนตัวเอง
dApps ที่ต้องการจัดการโทเค็นแบบเป็นส่วนตัวสามารถเริ่มใช้งานได้ทันที
ข้อจำกัดในปัจจุบัน:
กระเป๋าเงินสำหรับผู้ใช้ทั่วไป (เช่น Phantom) ยังไม่รองรับฟีเจอร์นี้แบบ nativeการพัฒนา JavaScript-based ZK proof libraries คาดว่าจะแล้วเสร็จในปลายปี 2568 ซึ่งจะทำให้การใช้งานง่ายขึ้นสำหรับผู้ใช้ทั่วไป
ตัวอย่างการใช้งานจริง:
โปรเจกต์ Agora Dollar (Stablecoin) เป็นโปรเจกต์แรกที่ใช้ Confidential Transfers เพื่อพัฒนาระบบจ่ายเงินเดือนแบบเป็นส่วนตัวในระดับสถาบันRange Security ได้สาธิตการโอน USDT แบบเป็นส่วนตัวโดยใช้ Confidential Transfers เพื่อแสดงศักยภาพของฟีเจอร์นี้
ผลกระทบต่อ Solana และการยอมรับในวงกว้าง การยอมรับจากสถาบัน
Pat Zhang หัวหน้าฝ่ายวิจัยของ WOO X ระบุว่า Confidential Balances อาจช่วยเพิ่มการยอมรับ Solana ในหมู่สถาบันการเงิน เนื่องจากสามารถให้ความเป็นส่วนตัวที่สอดคล้องกับกฎระเบียบได้การติดตามตัวชี้วัด เช่น การสร้างโทเค็น (token minting), กิจกรรมบนเชน (on-chain metrics), และการใช้งานกระเป๋าเงินของสถาบัน จะเป็นกุญแจในการวัดความสำเร็จของฟีเจอร์นี้
ข้อได้เปรียบด้านต้นทุนและความเร็ว
ค่าธรรมเนียมของ Solana ที่ต่ำ (ต่ำกว่า $0.01) และความเร็วในการทำธุรกรรม ทำให้ฟีเจอร์ความเป็นส่วนตัวนี้เข้าถึงได้ง่ายกว่าบล็อกเชนอื่น เช่น Ethereum ที่ใช้ zkRollups ซึ่งมีต้นทุนสูงกว่าความท้าทาย
เนื่องจากฟีเจอร์นี้เพิ่งเปิดตัวได้เพียง 1 เดือน (นับถึงวันที่ 15 พฤษภาคม 2568) ยังยากที่จะประเมินผลกระทบต่อการยอมรับ Solana ในวงกว้างความเสี่ยงด้านความปลอดภัย เช่น การใช้ Confidential Balances ในกลยุทธ์การหลอกลวง (rug pulls) ถูกกล่าวถึงโดย Scott Hague จาก RugCheck ซึ่งแนะนำให้แอปพลิเคชันในระบบนิเวศระบุโทเค็นที่ใช้ฟีเจอร์นี้อย่างชัดเจน
เปรียบเทียบกับ Confidential Transfers เดิม Confidential Transfers (Token2022, มิถุนายน 2567):
มุ่งเน้นที่การโอนโทเค็นโดยซ่อนจำนวนเงินเป็นฟีเจอร์เดี่ยวที่เน้นการโอนเพียงอย่างเดียว
Confidential Balances (เมษายน 2568):
ขยายขอบเขตให้ครอบคลุมการโอน, ค่าธรรมเนียม, การสร้าง และการเผาโทเค็นเป็นชุดของส่วนขยายที่ทำงานร่วมกันเพื่อให้ความเป็นส่วนตัวที่ครอบคลุมมากขึ้น
เพิ่ม Auditor Keys เพื่อรองรับการตรวจสอบสำหรับสถาบัน
อนาคตของ Confidential Balances การพัฒนา JavaScript ZK Libraries: คาดว่าจะเปิดตัวในปลายปี 2568 ซึ่งจะช่วยให้กระเป๋าเงินและ dApps สามารถรวมฟีเจอร์นี้ได้ง่ายขึ้น ตัวอย่างเช่น ผู้ใช้จะสามารถสร้าง ZK proofs ได้โดยตรงจากกระเป๋าเงินบนมือถือหรือเบราว์เซอร์
การรวมเข้ากับกระเป๋าเงินยอดนิยม: กระเป๋าเงินอย่าง Phantom และ Backpack มีแนวโน้มที่จะเพิ่มการรองรับ Confidential Balances ซึ่งจะทำให้ผู้ใช้ทั่วไปสามารถเข้าถึงฟีเจอร์นี้ได้โดยไม่ต้องมีความรู้ด้านเทคนิค
การใช้งานในวงกว้าง:
ระบบการจ่ายเงินเดือนแบบเป็นส่วนตัวการโอนเงิน B2B ที่ต้องการความลับ
แอปพลิเคชัน DeFi และแอปผู้บริโภคที่เน้นความเป็นส่วนตัว
Stablecoin ที่ต้องการความเป็นส่วนตัว เช่น โปรเจกต์ของ Agora
สรุป Confidential Balances Token Extensions เป็นก้าวสำคัญของ Solana ในการเพิ่มความเป็นส่วนตัวให้กับบล็อกเชน โดยใช้เทคโนโลยี ZKPs และ homomorphic encryption เพื่อปกป้องข้อมูลธุรกรรม ในขณะที่ยังคงรักษาความเร็วและต้นทุนต่ำที่เป็นจุดเด่นของ Solana ฟีเจอร์นี้ไม่เพียงแต่ตอบโจทย์ผู้ใช้ทั่วไปที่ต้องการความเป็นส่วนตัว แต่ยังดึงดูดสถาบันการเงินด้วยการปฏิบัติตามกฎระเบียบผ่าน Auditor Keys ในอนาคต การพัฒนา JavaScript ZK libraries และการรวมเข้ากับกระเป๋าเงินยอดนิยมจะทำให้ Confidential Balances เข้าถึงได้ง่ายขึ้น ซึ่งอาจผลักดันให้ Solana กลายเป็นแพลตฟอร์มชั้นนำสำหรับทั้งแอปพลิเคชันผู้บริโภคและการใช้งานในระดับองค์กร แหล่งข้อมูล:
โพสต์จาก @solana_devs และ @heliuslabs บน Xบทความจาก BeInCrypto, The Block, CryptoSlate, และ The Defiant
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28GraphQL vs REST
Today I saw this: https://github.com/stickfigure/blog/wiki/How-to-(and-how-not-to)-design-REST-APIs
And it reminded me why GraphQL is so much better.
It has also reminded me why HTTP is so confusing and awful as a protocol, especially as a protocol for structured data APIs, with all its status codes and headers and bodies and querystrings and content-types -- but let's not talk about that for now.
People complain about GraphQL being great for frontend developers and bad for backend developers, but I don't know who are these people that apparently love reading guides like the one above of how to properly construct ad-hoc path routers, decide how to properly build the JSON, what to include and in which circumstance, what status codes and headers to use, all without having any idea of what the frontend or the API consumer will want to do with their data.
It is a much less stressful environment that one in which we can just actually perform the task and fit the data in a preexistent schema with types and a structure that we don't have to decide again and again while anticipating with very incomplete knowledge the usage of an extraneous person -- i.e., an environment with GraphQL, or something like GraphQL.
By the way, I know there are some people that say that these HTTP JSON APIs are not the real REST, but that is irrelevant for now.
-
@ 58537364:705b4b85
2025-05-15 01:46:43“พระอาจารย์คะ หนูไม่ได้อะไรนะคะ ก็ในเมื่อพระพุทธศาสนามีแก่นคำสอนอยู่แล้ว ถ้าหนูคิดว่าควรจะลดพวกวัด หรืออะไรต่างๆ ลง นี่เป็นบาปมั้ยคะ?”
“เจริญพร ตอนหนูกินกล้วยนี่กินเปลือกหรือกินผลกล้วย ?” ”กินผลกล้วยค่ะ” “เหรอ…แล้วก่อนจะกินกล้วยหนูต้องปอกก่อนมั้ย ?” เด็กสาวหน้าตาสะอาดสะอ้าน พยักหน้าหงึก~
“ปอกทำไมล่ะ?” “ก็เปลือกมันกินไม่ได้หนิคะ” “อ๋อ…อย่างนั้นเปลือกก็ไม่มีประโยชน์เลยใช่มั้ย?” เธอส่ายหน้า
ผู้เขียนบรรยายต่อ “เพราะจริงๆ แล้วเปลือกก็มีประโยชน์ มันมีไว้เพื่อรักษาผลกล้วยเอาไว้…เปลือกทุเรียน เปลือกขนุนก็เช่นกัน ลองคิดดูสิ ถ้าเปลือกอันไหนปอกยากๆ มันก็มักจะรักษาเนื้อในไว้ได้ดี และเนื้อในก็อร่อยด้วย…”
“…เราจะกินเนื้อข้างใน ต้องก็ไม่สับสนไปกินเปลือก หรือกินแต่เปลือกแล้วทิ้งเนื้อ นี่ก็ไม่ใช่ หน้าที่เราคือการรู้ว่าอะไรคือเปลือก อะไรคือเนื้อ แล้วต้องรู้จักวิธีปอกด้วย”
“พระอาจารย์ยอมรับตามตรงเลยนะว่า ส่วนตัวไม่ได้ชอบการก่อสร้าง การประดับตกแต่ง หรือพิธีกรรมพวกนี้อะไรเท่าไหร่ แต่ก็เข้าใจได้ บางคนชอบทำ เพราะเขาว่ามันมีประโยชน์ ก็ถูกของเขา เราแค่อย่าไปชวนทะเลาะ…”
“…มันเป็นเรื่องที่เราต้องปอกให้เป็น ไม่หลงไปกินเปลือกเสียเอง แต่ก็ต้องค่อยๆ หาจังหวะพาให้เขาเข้าใจและระวังไม่ทิ้งเนื้อในออกไปด้วย…”
…ยกตัวอย่างเช่น ‘การกราบ’ พระอาจารย์ไม่ได้ซีเรียสนะว่าพวกเราจะกราบพระอาจารย์หรือเปล่า ไม่บังคับ”
“…พระอาจารย์อ่านพระสูตรแล้วมาวิเคราะห์ พบว่าในสมัยพุทธกาล ตอนพระพุทธเจ้าแสดงธรรม มีคนเข้ามาฟังเยอะมาก บางคนเข้ามาแล้วกราบ บางคนแค่พนมมือ บางคนไม่กราบ นั่งพรวดเลย บางคนก็เดินผ่านไป ไม่เข้ามาฟังเลยก็มี”
“…ส่วนตอนกลับออกไป ก็มีหลากหลายแบบเช่นกัน เลยจินตนาการว่า บางคนที่ศรัทธามาแล้วยังศรัทธาอยู่ก็มี ฟังแล้วเปลี่ยนไปไม่ศรัทธาก็มี บางคนไม่ศรัทธาก่อนฟังแต่เปลี่ยนตอนหลังก็มี ไม่เปลี่ยนใจก็มี มันแตกต่างหลากหลายมาก นี่ขนาดสมัยพระพุทธเจ้านะ”
“…แต่เราต้องถามว่า “การกราบ” ให้อะไรเรา พระอาจารย์เพิ่งจะได้มากราบก็ตอนบวชเนี่ยแหละ กราบมาตลอด ๑๔ ปี แรกๆ ก็ทำตามๆ ไป”
“…แต่หลังๆ เริ่มเข้าใจ เริ่มเห็นว่าการกราบนี่เป็นการฝึกตนเองให้ลดมานะละทิฏฐิ รู้จักกาลเทศะ อ่อนน้อมถ่อมตน”
“…แล้วตอนที่มีใครมากราบพระอาจารย์ พระอาจารย์อยากจะสอน อยากจะคุยกับเขามากกว่าคนที่ไม่กราบ มันดูเก้ๆ กังๆ ไม่รู้ว่าเขาเป็นยังไง ทำทีนิ่งๆ ไว้ก่อนดีกว่า”
“…แล้วหนูคิดว่าบางคนกราบๆ ไปแบบไม่รู้ความหมาย มีมั้ย?” เด็กน้อยพยักหน้า
“ใช่มั้ย…พระอาจารย์เลยคิดว่า การกราบก็ดี พิธีกรรมก็ดี วัดวาอารามก็ดี ไม่ใช่เนื้อหาสูงสุด ไม่ใช่แก่น แต่มันก็มีความหมาย พาให้เราเข้าถึงประโยชน์ที่สูงสุดที่อยู่ซ่อนในนั้น เป็นหน้าที่ที่เราต้องทำความเข้าใจ หากเราอยากจะเข้าใจมัน”
“พระอาจารย์เชื่อมั่นว่า ศาสนาที่แท้ไม่ได้อยู่ในวัตถุ สิ่งของ เพราะไม่เช่นนั้นแล้ว ‘บูโรพุทโธ’ ที่เป็นศาสนสถานที่ใหญ่ที่สุดในโลก มีเจดีย์ละลานตา จะต้องมีพระ มีชาวพุทธจำนวนมากตามกัน แต่เดี๋ยวนี้เป็นอย่างไรบ้าง? รู้มั้ย?“ เด็กน้อยส่ายหน้า
“…ตอนนี้ เป็นเพียงสถานที่ท่องเที่ยว ไม่มีพระอยู่อาศัยแล้ว”
“…ที่หนูว่าจะลดวัดต่างๆ ลง นี่หนูคิดว่าจะเอาไปทำอะไรเหรอ?” “คืออย่างเอาไปเป็นสวนสาธารณะอย่างเนี่ยน่ะค่ะ”
“ดีนะ…เข้าท่า พระอาจารย์ชอบ คนอื่นจะได้มาใช้กันเยอะๆ มีต้นไม้ มีสัตว์ต่างๆ ด้วย ทุกคนจะได้สบายใจ” เด็กน้อยตาวาว
“แต่เราสามารถทำให้วัดมีต้นไม้เยอะๆ ได้มั้ยล่ะ ทำวัดให้เหมือนสวนสาธารณะไง ไอเดียดีมั้ย?” รอยยิ้มเด็กน้อยผุดขึ้น
“…ซึ่งถึงแม้พระอาจารย์ไม่อยากให้เราติดอยู่ที่วัตถุหรือรูปแบบพิธีกรรมขนาดไหน พระอาจารย์ก็เห็นประโยชน์ของมันอยู่นะ หนูดูนั่นสิ !”
ปลายนิ้วชี้ไปที่ ‘กล่องไม้แกะสลัก’ เด็กๆ ทั้งห้องหันหน้าไปมองเป็นตาเดียว
“…กล่องนี้อาจจะเป็นกล่องไม้ธรรมดาๆ ไม่มีค่าอะไร แต่พอแกะสลักปุ๊บ ดูมีค่าขึ้นมาทันทีเลย ดูแตกต่างจากกล่องอื่นๆ ช่างที่ทำก็ต้องมีฝีมือ มีเวลา ทุ่มเทเอาใจใส่กว่าจะเกิดผลงานเช่นนี้ขึ้น
“…ถ้ามีกล่องไม้หลายๆ กล่อง แล้วจะต้องเลือกเก็บไว้สักหนึ่งอัน กล่องนี้คงเป็นกล่องแรกๆ ที่ถูกเลือกก่อน
“…นี่เรียกว่า ‘คุณค่าของความสวยงาม’ พวกโบสถ์ เจดีย์ สถานที่สวยๆ งามๆ คนก็จะมาดูแลรักษาก่อน ทำความสะอาด เก็บรักษาการใช้งานที่จะเกิดขึ้นภายในอาคารเหล่านั้น พระอาจารย์เดาว่า แรกเริ่มเดิมทีธรรมเนียมนิยมในการสร้างวัดต่างๆ ให้สวยงาม คงเป็นแบบนี้”
“อีกนิดนะ เรื่องบุญหรือบาป ชวนหนูทำความเข้าใจความหมายก่อน บุญ แปลว่า การชำระใจให้สะอาด บาป แปลว่า การทำให้จิตใจตกต่ำ เศร้าหมอง”
“การที่หนูอยากจะทำสวนสาธารณะ นี่บุญหรือบาป?” “บุญค่ะ”
“ถ้าหนูรู้สึกรำคาญ อยากจะทุบวัดให้หมดๆ ไป นี่บุญหรือบาป?” “บาปค่ะ”
“แล้วถ้าหนูกราบด้วยความเข้าใจ อยากจะฝึกตนเองให้อ่อนน้อมถ่อมตน พร้อมรับฟังธรรมะจากพระ นี่บุญหรือบาป?” “บุญค่ะ”
“การที่หนูกราบแบบขอไปที หลงๆ ลืมๆ ทำตามเพื่อนๆ ไป นี่บุญหรือบาป?” เด็กน้อยนิ่ง เหลือบตามองบน
“ยังไม่ชัดใช่มั้ย?” “ค่ะ“ เธอพยักหน้าแรง
“งั้นพระอาจารย์ก็ฝากหนูสังเกต ‘ใจ’ ตัวเองนะ ว่ามันเป็นยังไง บุญหรือบาป สะอาดหรือตกต่ำ ไม่ใช่แค่การกราบ แต่เป็นทุกๆ การกระทำ คำพูด และความคิดเลย”
“นี่พระอาจารย์ พอจะตอบคำถามหนูได้กี่เปอร์เซ็นต์?” “ร้อยเปอร์เซ็นต์ค่ะ” “เหรอ…โอเค ขอบคุณมากค่ะสำหรับคำถาม”
เด็กๆ พากันกราบแล้วเดินออกจากศาลาไป ผู้เขียนอาศัย “ตีเหล็กตอนร้อน” พิจารณาชื่นชมคำถามและคำตอบเมื่อสักครู่
คำถามของเด็กน้อยคนนี้ ไม่ใช่เด็กๆ เลย คำถามเธอเป็น ‘ผู้ใหญ่’ มากกว่าผู้ใหญ่หลายคนที่เคยถามมาเสียอีก
มันทั้งความคมคาย ละเอียดและมีชั้นเชิง น้ำเสียงชัดเจน มั่นใจ เลือกแสดงออกอย่างกล้าหาญพร้อมไปกับเจือความนอบน้อมอยู่ในที ถามได้ตรงประเด็น เกิดประโยชน์ สร้างรอยหยักในสมองให้ทั้งผู้ถูกถามและผู้ร่วมฟัง
ระหว่างฟัง เธอมองหน้าและคิดตาม มีปฏิกิริยาตอบสนอง ช่วยให้เกิดการร่วมเรียนรู้ไปด้วยกัน เป็นผู้ฟังที่ดีไม่ชัดจังหวะ และที่สำคัญรอยยิ้มและแววตาของเธอได้กระจายไปให้กำลังใจเพื่อนๆ ในห้องด้วย
และนี่ มันทำให้ผู้ตอบ รู้สึกดี ภูมิใจที่ได้มานั่งอยู่ตรงนี้ ในวันนี้ เวลานี้
ดีใจจริงๆ ที่ยังมีเด็กที่มีจิตใจที่งดงาม คิดถึงธรรมชาติ และคิดทำประโยชน์สุขให้ผู้อื่นอยู่ แถมเธอยังรู้และสนใจใน “พุทธะ” ที่เป็นแก่นสารสาระที่แท้จริงอีกด้วย
“มันน่าภูมิใจจริงๆ ที่ได้รับรู้ว่าธรรมะกำลังเคลื่อนไปสู่คนรุ่นหลัง จริงมั้ยครับ?”
ผู้เขียนไม่ได้ถามใคร ได้แต่หันไปมองรูปปั้นหินอ่อนลักษณะคล้ายคนที่วางไว้ข้างหลัง น้อมระลึกถึงคุณของพระพุทธองค์ ผู้เป็นบรมครู ไม่เสื่อมคลาย
อาศรมขันติสาร บ้านไม้ที่เขาเรียกกุฏิ ๑๕ มิถุนายน ๒๕๖๖ แหล่งที่มา #Phramaha Fookij Jutipanyo
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28nostr - Notes and Other Stuff Transmitted by Relays
The simplest open protocol that is able to create a censorship-resistant global "social" network once and for all.
It doesn't rely on any trusted central server, hence it is resilient; it is based on cryptographic keys and signatures, so it is tamperproof; it does not rely on P2P techniques, therefore it works.
Very short summary of how it works, if you don't plan to read anything else:
Everybody runs a client. It can be a native client, a web client, etc. To publish something, you write a post, sign it with your key and send it to multiple relays (servers hosted by someone else, or yourself). To get updates from other people, you ask multiple relays if they know anything about these other people. Anyone can run a relay. A relay is very simple and dumb. It does nothing besides accepting posts from some people and forwarding to others. Relays don't have to be trusted. Signatures are verified on the client side.
This is needed because other solutions are broken:
The problem with Twitter
- Twitter has ads;
- Twitter uses bizarre techniques to keep you addicted;
- Twitter doesn't show an actual historical feed from people you follow;
- Twitter bans people;
- Twitter shadowbans people.
- Twitter has a lot of spam.
The problem with Mastodon and similar programs
- User identities are attached to domain names controlled by third-parties;
- Server owners can ban you, just like Twitter; Server owners can also block other servers;
- Migration between servers is an afterthought and can only be accomplished if servers cooperate. It doesn't work in an adversarial environment (all followers are lost);
- There are no clear incentives to run servers, therefore they tend to be run by enthusiasts and people who want to have their name attached to a cool domain. Then, users are subject to the despotism of a single person, which is often worse than that of a big company like Twitter, and they can't migrate out;
- Since servers tend to be run amateurishly, they are often abandoned after a while — which is effectively the same as banning everybody;
- It doesn't make sense to have a ton of servers if updates from every server will have to be painfully pushed (and saved!) to a ton of other servers. This point is exacerbated by the fact that servers tend to exist in huge numbers, therefore more data has to be passed to more places more often;
- For the specific example of video sharing, ActivityPub enthusiasts realized it would be completely impossible to transmit video from server to server the way text notes are, so they decided to keep the video hosted only from the single instance where it was posted to, which is similar to the Nostr approach.
The problem with SSB (Secure Scuttlebutt)
- It doesn't have many problems. I think it's great. In fact, I was going to use it as a basis for this, but
- its protocol is too complicated because it wasn't thought about being an open protocol at all. It was just written in JavaScript in probably a quick way to solve a specific problem and grew from that, therefore it has weird and unnecessary quirks like signing a JSON string which must strictly follow the rules of ECMA-262 6th Edition;
- It insists on having a chain of updates from a single user, which feels unnecessary to me and something that adds bloat and rigidity to the thing — each server/user needs to store all the chain of posts to be sure the new one is valid. Why? (Maybe they have a good reason);
- It is not as simple as Nostr, as it was primarily made for P2P syncing, with "pubs" being an afterthought;
- Still, it may be worth considering using SSB instead of this custom protocol and just adapting it to the client-relay server model, because reusing a standard is always better than trying to get people in a new one.
The problem with other solutions that require everybody to run their own server
- They require everybody to run their own server;
- Sometimes people can still be censored in these because domain names can be censored.
How does Nostr work?
- There are two components: clients and relays. Each user runs a client. Anyone can run a relay.
- Every user is identified by a public key. Every post is signed. Every client validates these signatures.
- Clients fetch data from relays of their choice and publish data to other relays of their choice. A relay doesn't talk to another relay, only directly to users.
- For example, to "follow" someone a user just instructs their client to query the relays it knows for posts from that public key.
- On startup, a client queries data from all relays it knows for all users it follows (for example, all updates from the last day), then displays that data to the user chronologically.
- A "post" can contain any kind of structured data, but the most used ones are going to find their way into the standard so all clients and relays can handle them seamlessly.
How does it solve the problems the networks above can't?
- Users getting banned and servers being closed
- A relay can block a user from publishing anything there, but that has no effect on them as they can still publish to other relays. Since users are identified by a public key, they don't lose their identities and their follower base when they get banned.
- Instead of requiring users to manually type new relay addresses (although this should also be supported), whenever someone you're following posts a server recommendation, the client should automatically add that to the list of relays it will query.
- If someone is using a relay to publish their data but wants to migrate to another one, they can publish a server recommendation to that previous relay and go;
- If someone gets banned from many relays such that they can't get their server recommendations broadcasted, they may still let some close friends know through other means with which relay they are publishing now. Then, these close friends can publish server recommendations to that new server, and slowly, the old follower base of the banned user will begin finding their posts again from the new relay.
-
All of the above is valid too for when a relay ceases its operations.
-
Censorship-resistance
- Each user can publish their updates to any number of relays.
-
A relay can charge a fee (the negotiation of that fee is outside of the protocol for now) from users to publish there, which ensures censorship-resistance (there will always be some Russian server willing to take your money in exchange for serving your posts).
-
Spam
-
If spam is a concern for a relay, it can require payment for publication or some other form of authentication, such as an email address or phone, and associate these internally with a pubkey that then gets to publish to that relay — or other anti-spam techniques, like hashcash or captchas. If a relay is being used as a spam vector, it can easily be unlisted by clients, which can continue to fetch updates from other relays.
-
Data storage
- For the network to stay healthy, there is no need for hundreds of active relays. In fact, it can work just fine with just a handful, given the fact that new relays can be created and spread through the network easily in case the existing relays start misbehaving. Therefore, the amount of data storage required, in general, is relatively less than Mastodon or similar software.
-
Or considering a different outcome: one in which there exist hundreds of niche relays run by amateurs, each relaying updates from a small group of users. The architecture scales just as well: data is sent from users to a single server, and from that server directly to the users who will consume that. It doesn't have to be stored by anyone else. In this situation, it is not a big burden for any single server to process updates from others, and having amateur servers is not a problem.
-
Video and other heavy content
-
It's easy for a relay to reject large content, or to charge for accepting and hosting large content. When information and incentives are clear, it's easy for the market forces to solve the problem.
-
Techniques to trick the user
- Each client can decide how to best show posts to users, so there is always the option of just consuming what you want in the manner you want — from using an AI to decide the order of the updates you'll see to just reading them in chronological order.
FAQ
- This is very simple. Why hasn't anyone done it before?
I don't know, but I imagine it has to do with the fact that people making social networks are either companies wanting to make money or P2P activists who want to make a thing completely without servers. They both fail to see the specific mix of both worlds that Nostr uses.
- How do I find people to follow?
First, you must know them and get their public key somehow, either by asking or by seeing it referenced somewhere. Once you're inside a Nostr social network you'll be able to see them interacting with other people and then you can also start following and interacting with these others.
- How do I find relays? What happens if I'm not connected to the same relays someone else is?
You won't be able to communicate with that person. But there are hints on events that can be used so that your client software (or you, manually) knows how to connect to the other person's relay and interact with them. There are other ideas on how to solve this too in the future but we can't ever promise perfect reachability, no protocol can.
- Can I know how many people are following me?
No, but you can get some estimates if relays cooperate in an extra-protocol way.
- What incentive is there for people to run relays?
The question is misleading. It assumes that relays are free dumb pipes that exist such that people can move data around through them. In this case yes, the incentives would not exist. This in fact could be said of DHT nodes in all other p2p network stacks: what incentive is there for people to run DHT nodes?
- Nostr enables you to move between server relays or use multiple relays but if these relays are just on AWS or Azure what’s the difference?
There are literally thousands of VPS providers scattered all around the globe today, there is not only AWS or Azure. AWS or Azure are exactly the providers used by single centralized service providers that need a lot of scale, and even then not just these two. For smaller relay servers any VPS will do the job very well.
-
@ 08f96856:ffe59a09
2025-05-15 01:22:34เมื่อพูดถึง Bitcoin Standard หลายคนมักนึกถึงภาพโลกอนาคตที่ทุกคนใช้บิตคอยน์ซื้อกาแฟหรือของใช้ในชีวิตประจำวัน ภาพแบบนั้นดูเหมือนไกลตัวและเป็นไปไม่ได้ในความเป็นจริง หลายคนถึงกับพูดว่า “คงไม่ทันเห็นในช่วงชีวิตนี้หรอก” แต่ในมุมมองของผม Bitcoin Standard อาจไม่ได้เริ่มต้นจากการที่เราจ่ายบิตคอยน์โดยตรงในร้านค้า แต่อาจเริ่มจากบางสิ่งที่เงียบกว่า ลึกกว่า และเกิดขึ้นแล้วในขณะนี้ นั่นคือ การล่มสลายทีละน้อยของระบบเฟียตที่เราใช้กันอยู่
ระบบเงินที่อิงกับอำนาจรัฐกำลังเข้าสู่ช่วงขาลง รัฐบาลทั่วโลกกำลังจมอยู่ในภาระหนี้ระดับประวัติการณ์ แม้แต่ประเทศมหาอำนาจก็เริ่มแสดงสัญญาณของภาวะเสี่ยงผิดนัดชำระหนี้ อัตราเงินเฟ้อกลายเป็นปัญหาเรื้อรังที่ไม่มีท่าทีจะหายไป ธนาคารที่เคยโอนฟรีเริ่มกลับมาคิดค่าธรรมเนียม และประชาชนก็เริ่มรู้สึกถึงการเสื่อมศรัทธาในระบบการเงินดั้งเดิม แม้จะยังพูดกันไม่เต็มเสียงก็ตาม
ในขณะเดียวกัน บิตคอยน์เองก็กำลังพัฒนาแบบเงียบ ๆ เงียบ... แต่ไม่เคยหยุด โดยเฉพาะในระดับ Layer 2 ที่เริ่มแสดงศักยภาพอย่างจริงจัง Lightning Network เป็น Layer 2 ที่เปิดใช้งานมาได้ระยะเวลสหนึ่ง และยังคงมีบทบาทสำคัญที่สุดในระบบนิเวศของบิตคอยน์ มันทำให้การชำระเงินเร็วขึ้น มีต้นทุนต่ำ และไม่ต้องบันทึกทุกธุรกรรมลงบล็อกเชน เครือข่ายนี้กำลังขยายตัวทั้งในแง่ของโหนดและการใช้งานจริงทั่วโลก
ขณะเดียวกัน Layer 2 ทางเลือกอื่นอย่าง Ark Protocol ก็กำลังพัฒนาเพื่อตอบโจทย์ด้านความเป็นส่วนตัวและประสบการณ์ใช้งานที่ง่าย BitVM เปิดแนวทางใหม่ให้บิตคอยน์รองรับ smart contract ได้ในระดับ Turing-complete ซึ่งทำให้เกิดความเป็นไปได้ในกรณีใช้งานอีกมากมาย และเทคโนโลยีที่น่าสนใจอย่าง Taproot Assets, Cashu และ Fedimint ก็ทำให้การออกโทเคนหรือสกุลเงินที่อิงกับบิตคอยน์เป็นจริงได้บนโครงสร้างของบิตคอยน์เอง
เทคโนโลยีเหล่านี้ไม่ใช่การเติบโตแบบปาฏิหาริย์ แต่มันคืบหน้าอย่างต่อเนื่องและมั่นคง และนั่นคือเหตุผลที่มันจะ “อยู่รอด” ได้ในระยะยาว เมื่อฐานของความน่าเชื่อถือไม่ใช่บริษัท รัฐบาล หรือทุน แต่คือสิ่งที่ตรวจสอบได้และเปลี่ยนกฎไม่ได้
แน่นอนว่าบิตคอยน์ต้องแข่งขันกับ stable coin, เงินดิจิทัลของรัฐ และ cryptocurrency อื่น ๆ แต่สิ่งที่ทำให้มันเหนือกว่านั้นไม่ใช่ฟีเจอร์ หากแต่เป็นความทนทาน และความมั่นคงของกฎที่ไม่มีใครเปลี่ยนได้ ไม่มีทีมพัฒนา ไม่มีบริษัท ไม่มีประตูปิด หรือการยึดบัญชี มันยืนอยู่บนคณิตศาสตร์ พลังงาน และเวลา
หลายกรณีใช้งานที่เคยถูกทดลองในโลกคริปโตจะค่อย ๆ เคลื่อนเข้ามาสู่บิตคอยน์ เพราะโครงสร้างของมันแข็งแกร่งกว่า ไม่ต้องการทีมพัฒนาแกนกลาง ไม่ต้องพึ่งกลไกเสี่ยงต่อการผูกขาด และไม่ต้องการ “ความเชื่อใจ” จากใครเลย
Bitcoin Standard ที่ผมพูดถึงจึงไม่ใช่การเปลี่ยนแปลงแบบพลิกหน้ามือเป็นหลังมือ แต่คือการ “เปลี่ยนฐานของระบบ” ทีละชั้น ระบบการเงินใหม่ที่อิงอยู่กับบิตคอยน์กำลังเกิดขึ้นแล้ว มันไม่ใช่โลกที่ทุกคนถือเหรียญบิตคอยน์ แต่มันคือโลกที่คนใช้อาจไม่รู้ตัวด้วยซ้ำว่า “สิ่งที่เขาใช้นั้นอิงอยู่กับบิตคอยน์”
ผู้คนอาจใช้เงินดิจิทัลที่สร้างบน Layer 3 หรือ Layer 4 ผ่านแอป ผ่านแพลตฟอร์ม หรือผ่านสกุลเงินใหม่ที่ดูไม่ต่างจากเดิม แต่เบื้องหลังของระบบจะผูกไว้กับบิตคอยน์
และถ้ามองในเชิงพัฒนาการ บิตคอยน์ก็เหมือนกับอินเทอร์เน็ต ครั้งหนึ่งอินเทอร์เน็ตก็ถูกมองว่าเข้าใจยาก ต้องพิมพ์ http ต้องรู้จัก TCP/IP ต้องตั้ง proxy เอง แต่ปัจจุบันผู้คนใช้งานอินเทอร์เน็ตโดยไม่รู้ว่าเบื้องหลังมีอะไรเลย บิตคอยน์กำลังเดินตามเส้นทางเดียวกัน โปรโตคอลกำลังถอยออกจากสายตา และวันหนึ่งเราจะ “ใช้มัน” โดยไม่ต้องรู้ว่ามันคืออะไร
หากนับจากช่วงเริ่มต้นของอินเทอร์เน็ตในยุค 1990 จนกลายเป็นโครงสร้างหลักของโลกในสองทศวรรษ เส้นเวลาของบิตคอยน์ก็กำลังเดินตามรอยเท้าของอินเทอร์เน็ต และถ้าเราเชื่อว่าวัฏจักรของเทคโนโลยีมีจังหวะของมันเอง เราก็จะรู้ว่า Bitcoin Standard นั้นไม่ใช่เรื่องของอนาคตไกลโพ้น แต่มันเกิดขึ้นแล้ว
siamstr
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28LessPass remoteStorage
LessPass is a nice idea: a password manager without any state. Just remember one master password and you can generate a different one for every site using the power of hashes.
But it has a very bad issue: some sites require just numbers, others have a minimum or maximum character limits, some require non-letter characters, uppercase characters, others forbid these and so on.
The solution: to allow you to specify parameters when generating the password so you can fit a generated password on every service.
The problem with the solution: it creates state. Now you must remember what parameters you used when generating a password for each site.
This was a way to store these settings on a remoteStorage bucket. Since it isn't confidential information in any way, that wasn't a problem, and I thought it was a good fit for remoteStorage.
Some time later I realized it maybe would be better to have a centralized repository hosting all weird requirements for passwords each domain forced on its users, and let LessPass use data from that central place when generating a password. Still stateful, not ideal, not very far from a centralized password manager, but still requiring less trust and less cryptographic assumptions.
- https://github.com/fiatjaf/lesspass-remotestorage
- https://addons.mozilla.org/firefox/addon/lesspass-remotestorage/
- https://chrome.google.com/webstore/detail/lesspass-remotestorage/aogdpopejodechblppdkpiimchbmdcmc
- https://lesspass.alhur.es/
See also
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28idea: Custom multi-use database app
Since 2015 I have this idea of making one app that could be repurposed into a full-fledged app for all kinds of uses, like powering small businesses accounts and so on. Hackable and open as an Excel file, but more efficient, without the hassle of making tables and also using ids and indexes under the hood so different kinds of things can be related together in various ways.
It is not a concrete thing, just a generic idea that has taken multiple forms along the years and may take others in the future. I've made quite a few attempts at implementing it, but never finished any.
I used to refer to it as a "multidimensional spreadsheet".
Can also be related to DabbleDB.
-
@ 502ab02a:a2860397
2025-05-15 01:03:05วันหนึ่งเฮียนั่งอ่านบทความที่ชื่อว่า “Lactose, we need to talk” จากเว็บไซต์ของบริษัท Formo ผู้ผลิตชีสที่บอกว่า “ไม่ต้องมีวัว ก็อร่อยได้” ด้วยเทคโนโลยีหมักจุลินทรีย์อัจฉริยะจากเยอรมนี ที่เราเคยคุยเรื่องนี้กันไปแล้ว มันฟังดูเหมือนจะเป็นนวัตกรรมสุดเจ๋งที่เป็นมิตรกับทั้งโลกและกระเพาะ แต่พอเฮียไล่อ่านลึกลงไปเรื่อย ๆ กลับเจอกลยุทธ์ทางการตลาดที่ชวนให้ขมวดคิ้วไม่แพ้ชีสที่กินแล้วลิ้นฝาด ขอใส่ไอคอนการ์ตูนไว้หน่อยนะครับ จะได้ไม่ลายตา เพราะเราจะแบ่งช่วงมาวิเคราะห์กันเป็นข้อๆ
🍶 บทความของ Formo เปิดประโยคด้วยการตั้งคำถามถึง “การดื่มนมจากสัตว์ต่างสายพันธุ์” พร้อมยกประเด็นเรื่อง Lactose Intolerance ว่าเป็นสิ่งผิดปกติที่คนเรายังดื่มนมทั้งที่ร่างกายคนส่วนใหญ่ (โดยเฉพาะชาวเอเชียและแอฟริกัน) ไม่มีเอนไซม์ย่อยแลคโตสในวัยผู้ใหญ่
ฟังผ่าน ๆ ดูน่าเชื่อ แต่อย่าลืมว่า แลคโตสไม่ได้อยู่ในชีสทุกชนิด และหลายคนที่แพ้นมกลับกินชีสแท้ ๆ จากวัวได้สบายมาก โดยเฉพาะชีสหมักระยะยาว เช่น พาร์เมซาน เชดดาร์ หรือกูด้า ที่แลคโตสแทบเป็นศูนย์ ซึ่งต่างจากชีสทางเลือกที่ผลิตด้วยกระบวนการเร่ง ที่ไม่ได้หมักตามธรรมชาติ
ดังนั้น วัวไม่ผิด แค่ถูกพูดถึงในบริบทที่เสียเปรียบ การกล่าวหานมวัวด้วยข้อมูลเรื่อง lactose intolerance โดยไม่พูดถึงชีส aged ที่ไม่มีแลคโตสเลย เป็นการจงใจเบี่ยงข้อมูลเพื่อสร้างอารมณ์ด้านลบต่อ dairy ทั้งระบบ
🧬Formo บอกว่า คนที่ย่อยแลคโตสได้ในวัยผู้ใหญ่คือ “ผู้กลายพันธุ์” เพราะธรรมชาติไม่ตั้งใจให้เราดื่มนมหลังหย่านม ฟังดูเหมือนเน้นธรรมชาติ แต่เฮียอยากถามว่า “ถ้าอย่างนั้นการสวมแว่น การกินวิตามิน การตั้งไฟหุงข้าว คือการฝืนธรรมชาติหมดเลยหรือเปล่า?” หรือจะหนักกว่านั้น ให้ย้ำไปเลยไหมว่า การกินวิตามินซี คือการทรยศต่อวิวัฒนาการ เพราะในยุคดึกดำบรรพ์มนุษย์เคยสังเคราะห์วิตามินซีได้เอง ก่อนที่ความสามารถนี้จะสูญสลายไปเพราะร่างกายเลือกใช้ ยูริก ที่มีประสิทธิภาพกว่า ดังนั้น การมองยีนที่วิวัฒนาการเพื่อย่อยแลคโตสเป็น “กลายพันธุ์ผิดธรรมชาติ” นั้นย้อนแย้งกับหลักการวิวัฒนาการเอง “ยีนย่อยแลคโตส” ไม่ใช่ความผิดปกติ
🥬 ในบทความยังแนะนำว่า เราสามารถได้แคลเซียมจากคะน้า บรอกโคลี และเต้าหู้ โดยไม่ต้องพึ่งนมวัว เฮียอยากให้ใจเย็นแล้วคิดแบบไม่อคติ จริงอยู่ ผักพวกนี้มีแคลเซียม แต่ปริมาณที่กินต่อครั้ง กินง่าย และการดูดซึม (Bioavailability) แตกต่างกันมาก แถมผักใบเขียวพวกนี้ยังมี oxalate สูง ซึ่งไปจับกับแคลเซียมแล้วร่างกายดูดซึมไม่ได้ นี่ยังไม่พูดถึงว่าเต้าหู้ในบทความเป็นแบบเต้าหู้แข็งที่ทำจากแคลเซียมซัลเฟต ซึ่งเป็นแคลเซียมสังเคราะห์ ไม่ใช่แหล่งแร่ธาตุตามธรรมชาติแบบในนมวัวอยู่ดี การเปรียบเทียบแคลเซียมจากผัก ก็ไม่ต่างกับการเปรียบเทียบกล้วยกับปลา มันคนละเรื่องกัน
💔 ชูเรื่องสิว หัวใจ มะเร็ง แบบไม่มีบริบท Formo ยังโยงว่าการดื่มนมวัวสัมพันธ์กับสิว ปัญหาผิว โรคหัวใจ ไปจนถึงมะเร็งบางชนิด ซึ่งเป็นข้อมูลที่เคยถูกพูดถึงในงานวิจัยบางกลุ่ม แต่ ไม่มีฉันทามติทางวิทยาศาสตร์ชัดเจน และส่วนใหญ่ปัจจัยที่เกี่ยวข้องมักจะเป็นอาหารแปรรูป น้ำตาลสูง หรืออาหาร ultra-processed dairy ไม่ใช่นมดิบหรือชีสแท้จากฟาร์มจริง
🧀 แล้วชีสจาก Formo มีดีจริงรึเปล่า ก็ต้องยอมรับว่าเทคโนโลยี precision fermentation ที่ใช้เชื้อรา (เช่น Aspergillus oryzae) ผลิตโปรตีนคล้ายเคซีนของ Formo นั้นล้ำและน่าสนใจในแง่วิทยาศาสตร์ แต่ในแง่ ความสมบูรณ์ทางโภชนาการและความใกล้ชิดธรรมชาติ ยังห่างจากชีสแท้ที่เกิดจากนมและจุลินทรีย์ตามธรรมชาติแบบหลายช่วงตัว ชีสแท้ ๆ มีจุลินทรีย์โพรไบโอติกส์ กรดไขมันสายสั้น และวิตามินจากหญ้า เช่น K2 ที่เกิดจากวัวที่เลี้ยงด้วย grass-fed ซึ่งทั้งหมดนี้ Formo ยังเลียนแบบไม่ได้ เทคโนโลยีชีสไร้วัวอาจดูสะอาดและควบคุมได้ดีในห้องแล็บ แต่ยังไม่ใช่ "อาหารตามธรรมชาติ" ที่ร่างกายรู้จักมาตลอดวิวัฒนาการ
Formo ใช้บทความ “Lactose, we need to talk” เป็นเหมือนการ “ตั้งวงซุบซิบนินทาวัว” อย่างมีชั้นเชิง ด้วยการเอาข้อเท็จจริงมาครึ่งหนึ่ง แล้วผสมกลิ่นอารมณ์และความรู้สึกผิดเข้าไปอีกครึ่งหนึ่ง จนกลายเป็นการเล่าเรื่องที่ดูจริงใจแต่ซ่อนความตั้งใจขายของอยู่ข้างใน
เฮียไม่มีสิทธิ์บอกว่า Formo ดีหรือไม่ดีนะครับ แม้นวัตกรรมแบบนี้อาจมีที่ยืนในโลกอนาคต ไม่ว่าเราจะเลือกได้หรือไม่ได้ก็ตาม แต่ในปัจจุบันในฐานะผู้บริโภค เราควรฝึกการมองตลาดด้วยสมองและสัญชาตญาณ ไม่ใช่แค่ตามกระแสที่โจมตีวัวในขณะที่ยกย่องแล็บ
โลกทุกวันนี้มักใช้วิธีนี้เช่นกันครับ มันเป็นวิธีเดิมๆ ที่ได้ผลเสมอ ดังนั้นปัญหาจึงไม่ได้อยู่ที่ว่าพวกเขาจะพูดด้านเดียวบ่อยแค่ไหน เพราะจุดประสงค์เขาคืออยากให้เราเชื่อ ปัญหาจึงอยู่ที่พวกเราต่างหาก ว่าสะสมความรู้ให้เพียงพอกับการรับมือการใช้สื่อ จากคนบางคนได้อย่างมีภูมิคุ้มกันแค่ไหน เพราะเกมส์นี้ก็ยังคงต้องดำเนินต่อไปจนกว่าการครอบครองตลาดจะสมบูรณ์ครับ ดังนั้น information attack ก็ยังคงดำเนินต่อไป ไม่ว่าจะด้านสารอาหาร การรักโลก หรือ สิ่งที่ทำให้หนักใจเสมอ แล้วมีความกดดันอย่างสูงนั่นคือ การลงมาเล่นด้าน จริยธรรม
คำถามที่สำคัญเหนือสิ่งใดคือ ทางรอดคืออะไร
ผมแนบต้นฉบับบทความนั้นมาให้ด้วยครับ ต้องยอมรับครับว่าเขียนได้ดีเลยและน่าคล้อยตามมากๆ อ่อ อ่านแล้วคุ้นๆไหมครับ ที่เฮียเคยเตือนว่า อย่าไปตั้งให้นมเป็นอาหารเทพนัก หลายๆส่วนระหว่างบรรทัด ก็ใช่ว่าจะไม่จริงไปเสียทั้งหมดนะครับ แค่บริบทโดยรวม มัน mislead ไปหน่อย
Lactose, we need to talk: The drama behind dairy’s hidden sugar
Cue the violins—it’s the classic love story with a tragic twist: us and dairy. We crave it, we drizzle it, we melt it, we scoop it. But hidden beneath that creamy, dreamy goodness? A troublemaker called lactose.
It might sound harmless, but for a lot of us, lactose is the culprit behind dairy’s not-so-pleasant side effects. In fact, the majority of the world’s population struggles to digest it properly.
So why do we keep chugging cow’s milk like it’s the elixir of life? And how did dairy become such a staple in our diets?
Grab your favorite cheese alternative (might we suggest Frischhain?) and join us for a deep dive into the world of lactose—what it is, why it matters, and how we are stepping in with our animal-free cheese to save the day.
“In a way, being able to chug a glass of milk without consequences is actually a genetic anomaly—one that we pretty much engineered ourselves over thousands of years.” The inside scoop: What’s LActose? Let’s start with the basics. Lactose is the natural sugar found in dairy milk—a built-in sweetener, if you will. But here’s the twist: your body needs a special enzyme called lactase to break it down. Without enough lactase, lactose turns into the life of the digestion-party you didn’t RSVP to: bloating, cramps, and a whole lot of regret.
As infants, our bodies produce plenty of lactase to digest breast milk. But for most of us, that enzyme naturally switches off once we grow into adulthood. In fact, until just a few thousand years ago, lactose intolerance (or “lactase nonpersistence”) was the norm for all adults.
Lactose Tolerance: A genetic Mutation Still today, nearly 70% of the global population are actually lactose intolerant—so, a heck of a lot of people. In certain regions, like East Asia and Africa, that number shoots up to almost 100%. But then, there’s a select few of us who can drink dairy milk without any drama. How’s that possible?
Well, here’s where it gets interesting. The ability to digest lactose as adults—also known as “lactase persistence”—isn’t evenly spread across the globe. Instead, it’s much more common in certain populations—specifically, those with a long history of dairying. Over 10,000 years ago, some humans began herding cows and drinking their milk, eventually triggering a genetic mutation that allowed them to keep producing lactase into adulthood. This trait is especially common in Northern Europe, for instance in Scandinavia and the Netherlands, where dairy farming has been a way of life for millennia.
It may sound weird, but essentially, some populations forced their own evolution by consuming a whole lot of dairy. That’s right. In a way, being able to chug a glass of milk without consequences is actually a genetic anomaly—one that we pretty much engineered ourselves over thousands of years.
The Dairy dilemma: why drink milk from cows? When you really stop and think about it, the need for this genetic mutation kind of makes sense—because, well, we’re not baby cows.
Just like human breast milk is designed to nourish human babies, cow’s milk is specifically made to take a tiny calf and turn it into a full-grown, 500-kilo cow—fast. It’s packed with nutrients meant to help calves double their birth weight in just a couple of months and pack on hundreds of kilos in their first year.
And yet, here we are, well past weaning age, still reaching for a glass of milk—and not just any milk, but milk from an entirely different species. Yeah… kinda weird, huh?
Wait… Do we even need Dairy milk? Remember those food pyramids we all grew up with—the ones that taught us that milk = calcium = strong bones? Well, here’s the interesting part: while we’ve been led to believe that dairy is the ultimate source of calcium, we can actually absorb up to twice as much calcium from leafy greens like kale and bok choy or from broccoli than from milk. Plus, other plant-based sources like firm tofu, fortified plant milks, and fortified juices have plenty of calcium, too.
And here’s the real kicker: more milk doesn’t always mean stronger bones. In fact, several recent studies suggest that high dairy consumption may actually increase the risk of fractures—especially in women. Who saw that coming?
Oh, and while we were all chugging milk to “build strong bones,” no one mentioned the extra ingredients tagging along—cholesterol, antibiotics, growth hormones… and who knows what else.
Some not-so-lovely side effects Alright, let’s get real for a moment. Dairy isn’t just a digestion bummer for many—it can be linked to serious health risks:
Heart Disease & High Cholesterol: Dairy is loaded with saturated fat, contributing to heart disease, type 2 diabetes, and even Alzheimer’s. Increased Cancer Risk: High dairy intake has been tied to higher risks of liver, breast, ovarian, and prostate cancers. Skin Woes: Acne, eczema, and premature aging can be unwelcome side effects of dairy consumption. Dairy has been marketed as a universal health food for decades, yet its consumption patterns have been shaped more by industry influence than genuine nutritional necessity. Lactose intolerance isn’t a niche issue—it’s a reminder that our dietary norms are far from one-size-fits-all.
Beyond lactose: The ripple effects of dairy But avoiding dairy isn’t just about avoiding an upset stomach—it’s about the planet and the animals, too. Dairy farming uses a staggering amount of water and land, and the industry is a huge contributor to greenhouse gas emissions. Not to mention, billions of cows suffer day in, day out, just so we can drink their milk.
And, while we’re at it, let’s bust a myth real quick. That comforting little story about how somehow, we’re “doing cows a favor” by milking them constantly—because otherwise, they’d explode or something? Well…that’s not exactly how it works. Like humans, cows don’t just produce milk on command. They only lactate after giving birth, and in the dairy industry, that’s usually after forcible artificial insemination. Mother and baby are separated almost immediately, and the male calves? They’re either sent to the veal industry or killed right away as surplus.
Cows aren’t built to be milked non-stop, and the constant milking can cause serious health problems, like mastitis (a painful udder infection), lameness, and other injuries.
So yeah—not exactly the family-friendly scenes you might imagine.
“Our mission goes beyond creating tasty alternatives—we’re envisioning a future where indulgence doesn’t come at the expense of animals or the planet.” The frischhain twist: animal-free, lactose-free, problem-free Let’s face it: traditional dairy has a lot of baggage. But breaking up with lactose doesn’t mean giving up on cheese*alternatives. That’s where we come in.
Our animal-free cheese is crafted without cows, using cutting-edge microfermentation to produce Koji protein—closely resembling traditional whey proteins. The result? Delicious cheese*alternatives that’s better for your tummy, your health, and the planet.
No more bloating. No more stomach aches. Just cheesy*alternative goodness—guilt-free.
What’s more, each pack of our cream cheese alternative Frischhain packs 10.9g of protein, saves 1.2kg of CO2 emissions, and uses far less water and land. If that’s not reason enough to give it a go, we’re not sure what is!
why cutting down on dairy is a win for everyone Look, even if you’re not lactose intolerant, switching to animal-free dairy has major perks:
Happy Digestion: Dairy-free options make digestion smoother and help prevent bloating, discomfort, and even energy crashes. Better Skin & Hormones: Going dairy-free can improve skin clarity, reduce inflammation, and balance hormones. Planet-Friendly: Ditching dairy helps reduce excessive water use, land destruction, and greenhouse gas emissions. It’s an easy way to reduce your carbon footprint. Cruelty-Free: Supporting dairy alternatives means less harm to animals, especially the billions of cows in factory farms the future of dairy: diverse, delicious, and dairy-free One of the most exciting aspects of shifting away from traditional dairy is the sheer diversity of alternatives. From fermented nut cheeses to innovative proteins made with micro fermentation, the industry is moving beyond simple substitutions and into entirely new taste and texture experiences. Lactose-free options have never been more delicious or more readily available. And the best part? They’re made for humans, not cows.
Our mission goes beyond creating tasty alternatives—we’re envisioning a future where indulgence doesn’t come at the expense of animals or the planet. So, whether you’re lactose-intolerant, eco-conscious, or just obsessed with really good cheesealternatives, why not give our cow-free cheesealternative a try? The future of dairy is here—and it’s deliciously dairy-free.
#pirateketo #กูต้องรู้มั๊ย #ม้วนหางสิลูก #siamstr
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28A estrutura lógica do livro didático
Todos os livros didáticos e cursos expõem seus conteúdos a partir de uma organização lógica prévia, um esquema de todo o conteúdo que julgam relevante, tudo muito organizadinho em tópicos e subtópicos segundo a ordem lógica que mais se aproxima da ordem natural das coisas. Imagine um sumário de um manual ou livro didático.
A minha experiência é a de que esse método serve muito bem para ninguém entender nada. A organização lógica perfeita de um campo de conhecimento é o resultado final de um estudo, não o seu início. As pessoas que escrevem esses manuais e dão esses cursos, mesmo quando sabem do que estão falando (um acontecimento aparentemente raro), o fazem a partir do seu próprio ponto de vista, atingido após uma vida de dedicação ao assunto (ou então copiando outros manuais e livros didáticos, o que eu chutaria que é o método mais comum).
Para o neófito, a melhor maneira de entender algo é através de imersões em micro-tópicos, sem muita noção da posição daquele tópico na hierarquia geral da ciência.
- Revista Educativa, um exemplo de como não ensinar nada às crianças.
- Zettelkasten, a ordem surgindo do caos, ao invés de temas se encaixando numa ordem preexistentes.
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28Zettelkasten
https://writingcooperative.com/zettelkasten-how-one-german-scholar-was-so-freakishly-productive-997e4e0ca125 (um artigo meio estúpido, mas útil).
Esta incrível técnica de salvar notas sem categorias, sem pastas, sem hierarquia predefinida, mas apenas fazendo referências de uma nota à outra e fazendo supostamente surgir uma ordem (ou heterarquia, disseram eles) a partir do caos parece ser o que faltava pra eu conseguir anotar meus pensamentos e idéias de maneira decente, veremos.
Ah, e vou usar esse tal
neuron
que também gera sites a partir das notas?, acho que vai ser bom. -
@ f85b9c2c:d190bcff
2025-05-14 23:41:47My secret to making money while the market is crashing.
.
Hey there! I’m just an average person who stumbled into the wild world of cryptocurrency a few years back. Like most people, I’ve seen the ups and downs—those euphoric highs when Bitcoin hits a new all-time high and the gut-wrenching lows when the market crashes and everyone panics. But here’s the thing: I’ve figured out a way to make money even when the charts are bleeding red. Today, I’m spilling my secret on how I turn crypto crashes into cash. Let's dive in!
Why Market Crashes Don’t Scare Me Anymore. When I first started in crypto, a market crash would send me into a spiral. I’d watch my portfolio shrink and feel like I’d made a huge mistake. But over time, I realized something: crashes are just part of the game. They’re not the end—they’re an opportunity. The trick is shifting your mindset. Instead of seeing a crash as a loss, I now see it as a sale. Prices drop, panic sets in, and that’s when I get to work. Here’s how I do it.
Here’s my secret technique. 1.Buying the Dip: My Go-To Move: You’ve probably heard the phrase “buy low, sell high.” It sounds simple, but it’s my bread and butter during a crash. When the market tanks, I don’t run away—I lean in. I keep some cash (or stablecoins like USDT) ready on the sidelines for these moments. When I see a solid project—like Ethereum, Solana, or even some smaller altcoins I’ve researched—drop 30%, 50%, or more, I scoop it up. For example, during the last big crash, I grabbed some ETH at a price I hadn’t seen in months. A few weeks later, when the market bounced back, I sold a chunk of it for a tidy profit. The key? Patience and knowing what I’m buying. I don’t just throw money at random coins—I stick to projects with strong fundamentals that I believe will recover.
2.Staking: Earning While I Wait: Here’s where my secret really shines: staking. When the market crashes, I don’t just sit on my coins and hope for the best. I put them to work. Staking is like earning interest on your crypto—you lock it up in a wallet or platform, and you get rewarded with more coins over time. During a downturn, I stake coins like Cardano (ADA) or Polkadot (DOT) on platforms I trust. The beauty is, even if the price is low, I’m still earning extra tokens. By the time the market recovers, I’ve got more coins than I started with, plus the price is climbing. It’s like getting paid to wait out the storm. Last crash, ascended to the top of the food chain, and I’m loving it.
3.Selling High: Timing Is Everything: Buying low is only half the equation—I also know when to sell. I don’t get greedy. When a coin I’ve staked or bought cheap starts pumping after a crash, I take profits. I don’t wait for the “moon” because I’ve learned the hard way that crypto can turn on a dime. My rule? If I’ve doubled my money or hit a target I set, I sell a portion and keep the rest for the long haul. It’s a balance—cash in some gains but stay in the game.
My Secret Sauce: Staying Calm: The real secret isn’t just the strategies—it’s me. I don’t panic. I don’t FOMO into hype. I stick to my plan, do my homework, and tune out the noise. Crypto is emotional, but I’ve trained myself to think long-term. Crashes don’t last forever, and I’ve seen enough cycles to know the market always bounces back. That’s how I make money while everyone else is losing their minds.
My Final Thoughts Making money in crypto during a crash isn’t magic—it’s about preparation, patience, and playing smart. I buy when others sell, stake to grow my stash, and sell when the time’s right. It’s worked for me, and I’m still learning every day. So next time the market crashes, don’t freak out—see it as your chance to cash in.
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28Boardthreads
This was a very badly done service for turning a Trello list into a helpdesk UI.
Surprisingly, it had more paying users than Websites For Trello, which I was working on simultaneously and dedicating much more time to it.
The Neo4j database I used for this was a very poor choice, it was probably the cause of all the bugs.
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28Channels without HTLCs
HTLCs below the dust limit are not possible, because they're uneconomical.
So currently whenever a payment below the dust limit is to be made Lightning peers adjust their commitment transactions to pay that amount as fees in case the channel is closed. That's a form of reserving that amount and incentivizing peers to resolve the payment, either successfully (in case it goes to the receiving node's balance) or not (it then goes back to the sender's balance).
SOLUTION
I didn't think too much about if it is possible to do what I think can be done in the current implementation on Lightning channels, but in the context of Eltoo it seems possible.
Eltoo channels have UPDATE transactions that can be published to the blockchain and SETTLEMENT transactions that spend them (after a relative time) to each peer. The barebones script for UPDATE transactions is something like (copied from the paper, because I don't understand these things):
OP_IF # to spend from a settlement transaction (presigned) 10 OP_CSV 2 As,i Bs,i 2 OP_CHECKMULTISIGVERIFY OP_ELSE # to spend from a future update transaction <Si+1> OP_CHECKLOCKTIMEVERIFY 2 Au Bu 2 OP_CHECKMULTISIGVERIFY OP_ENDIF
During a payment of 1 satoshi it could be updated to something like (I'll probably get this thing completely wrong):
OP_HASH256 <payment_hash> OP_EQUAL OP_IF # for B to spend from settlement transaction 1 in case the payment went through # and they have a preimage 10 OP_CSV 2 As,i1 Bs,i1 2 OP_CHECKMULTISIGVERIFY OP_ELSE OP_IF # for A to spend from settlement transaction 2 in case the payment didn't went through # and the other peer is uncooperative <now + 1day> OP_CHECKLOCKTIMEVERIFY 2 As,i2 Bs,i2 2 OP_CHECKMULTISIGVERIFY OP_ELSE # to spend from a future update transaction <Si+1> OP_CHECKLOCKTIMEVERIFY 2 Au Bu 2 OP_CHECKMULTISIGVERIFY OP_ENDIF OP_ENDIF
Then peers would have two presigned SETTLEMENT transactions, 1 and 2 (with different signature pairs, as badly shown in the script). On SETTLEMENT 1, funds are, say, 999sat for A and 1001sat for B, while on SETTLEMENT 2 funds are 1000sat for A and 1000sat for B.
As soon as B gets the preimage from the next peer in the route it can give it to A and them can sign a new UPDATE transaction that replaces the above gimmick with something simpler without hashes involved.
If the preimage doesn't come in viable time, peers can agree to make a new UPDATE transaction anyway. Otherwise A will have to close the channel, which may be bad, but B wasn't a good peer anyway.
-
@ 67e9dd72:b9d59ce7
2025-05-14 20:59:36There’s a certain elegance to outliving your enemies. Not the cinematic kind, with poisoned cigars or cunning plots, but the quieter, more refined triumph of still being around when everyone who ever underestimated you has long since retired, expired, or become inexplicably fond of sudoku. It’s a victory without confetti. You simply keep showing up, well-dressed and unimpressed.

Bob Hope may not be a household name anymore, but for much of the 20th century, he was practically a part of everyone’s household. Born in 1903, he became the blueprint for the modern entertainer: part comedian, part actor, part relentless emcee of the American psyche.
Man - Bob Hope - in a checkered suit and striped tie smiles in a black and white photo. Blurred foliage in the background.
Before stand-up was a career path and before anyone thought to put jokes on late-night television, Hope was crisscrossing the globe with a microphone in one hand and a golf club in the other, cracking wise for movie stars, eleven presidents, and countless thousands of homesick soldiers. He wasn’t just famous - he was a part of the family. Your grandparents didn’t need to like comedy to know who Bob Hope was. He was baked into the cultural cake.
But what makes him worthy of this list isn’t just his longevity - though making it to 100 with your timing intact is no small feat. It’s that he stayed Bob Hope the whole time. He managed to remain a household name through every major technological shift from vaudeville to cable. Always with the same self-deprecating grin, the same deadpan delivery, the same tireless drive to entertain, whether on a dusty military base, golf club in hand, or a glitzy awards stage.
A man on stage - Bob Hope - in front of a large crowd of soldiers, some holding "BOB" signs. The mood is lively, with soldiers clapping and smiling.
In a business that burns through personalities like kindling, Hope managed to stay relevant without ever pretending to be something he wasn’t. He adapted, yes - but he never shape-shifted. And that’s no punchline; that’s staying power.
David Attenborough (Honorable Mention 1926 - )
Sir David Attenborough hasn’t just lived for nearly a century - he’s narrated it.
Elderly man in a blue suit - David Attenborough - smiles softly outdoors with blurred green background. He has white hair and wears a white shirt, conveying warmth.
Born in 1926, he’s now pushing the hundred mark with the same quiet intensity and clipped eloquence that made "Planet Earth" a phrase we all say with reverence. For decades, Attenborough has been the voice in our heads while we watch iguanas outrun snakes or bioluminescent squid flash their Morse code in the abyss. But beyond the velvet tones and impeccable suits, there’s something more enduring: a man who has remained unflinchingly curious in a world that increasingly isn’t. While others have shouted into the void, Attenborough has whispered, and when he whispers, we listened.
What makes him extraordinary isn’t just the longevity - it’s the fact that he’s never softened his message to suit the moment. In his nineties, when most people are congratulated for remembering their Wi-Fi password, Attenborough was delivering urgent speeches at climate summits and lending gravitas to a collapsing ecosystem. He has aged, yes, but never aged out. His moral clarity, his scientific reverence, and his profound respect for the natural world have never been dulled by time. If anything, they've sharpened.
Elderly man - David Attenborough - seated on a wooden chair with arms crossed, wearing a gray sweater against a dark background. Calm, contemplative expression.
Sir David may be approaching 100, but he's still out there - gently scolding us, brilliantly informing us, and above all, remaining unmistakably, irreplaceably himself.
Fauja Singh (1911 - )
Fauja Singh didn’t just reach 100 - he ran there.
Elderly man - Fauja Singh - jogging on a grassy hill, wearing a yellow turban and sportswear. City skyline and lush greenery in the background. Calm mood.
Born in 1911 in British India, he took up competitive marathon running in his 80s, which is roughly the age most people start describing trips to the mailbox as “exercise.” At 100, he completed the Toronto Waterfront Marathon, becoming the first centenarian to do so. He wasn’t running for medals or money or anyone’s approval - he was running because his legs still said yes. In a culture obsessed with youth and speed, Singh offered something quietly radical: the image of an old man moving forward, steadily, joyfully, and entirely on his own terms.
But what truly sets Fauja Singh apart isn't just the records - though those are impressive - but the gentleness with which he carried them. Soft-spoken, devoutly Sikh, and famously modest, he turned down sponsorships that conflicted with his values and credited his endurance to simple living and a vegetarian diet. No drama, no bravado - just resolve in motion.
Elderly man - Fauja Singh - with a long beard and dark turban smiling, outdoors near a track field. Background shows trees and houses, soft sunset lighting.
While the world sprinted around him in search of the next thing, Singh – who is still with us at 114 - kept his pace and kept his faith. He didn’t just defy age - he ignored it. And in doing so, he reminds us that time is less an enemy to be conquered than a companion to be outwalked, one calm mile at a time.
Henry Allingham (1896 – 2009)
Henry Allingham lived to be 113, which is remarkable enough - but what makes him truly unforgettable is how he carried those years. Born in 1896, he lived through both World Wars, the sinking of the Titanic, the moon landing, and the invention of sliced bread - literally. A founding member of the Royal Air Force and one of the last surviving veterans of World War I, Allingham wasn’t just a man from another time; he was a walking archive of it.
Elderly man - Henry Allingham - smiling with a certificate showing military service details, birth and death dates, and text "The last founding member of the Royal Air Force."
When asked about the secret to his longevity, he famously answered: "Cigarettes, whisky, and wild women." Which may not hold up in a medical journal, but certainly qualifies as staying defiantly oneself.
But beneath the cheeky quotes was someone deeply committed to remembrance. In his later years, Allingham didn’t retreat into private comfort - he leaned in. He spent his 100’s traveling, speaking, and bearing witness for those who no longer could. He wore his medals not as decorations, but as responsibilities. There was something dignified yet unsentimental in the way he spoke about war and peace, as if to say: this happened, and it mattered, and I’m still here to make sure you understand that.
Elderly man - Henry Allingham - saluting, wearing a suit, striped tie, and several medals. Background blurred. Solemn expression.
Henry Allingham didn’t just endure time - he honored it, and in doing so, made his century count for more than just numbers.
George Burns (1896 – 1996)
George Burns made it to 100 with a cigar in one hand and a punchline in the other, which is more or less how he lived every year of his life.
Elderly man - comedian George Burns - with glasses in plaid jacket holds cigar, raising hand with a playful expression against a gray background.
Born in 1896, he started in vaudeville, graduated to radio, then television, and eventually film - playing God, no less, in his later years, with the same dry charm he used to dismantle hecklers back in the 1920s. He didn’t just age into comedy; he dragged comedy along with him, evolving without ever losing that sly, arched-eyebrow delivery that made it all look effortless. Burns didn’t just outlast his peers - he made a habit of burying them with style, then cracking a joke at the funeral.
What made Burns so enduring wasn’t just the longevity or the accolades (though he won an Oscar at 80 and was still headlining Vegas in his 90’s). It was the unshakable sense of self. He never rebranded or reimagined - he refined.
Elderly man - comedian George Burns - in a tuxedo holds a lit cigar, standing at a microphone on a dark stage. Smoky atmosphere, calm demeanor.
While the world swirled around him in reinvention and reinvention’s younger cousin, desperation, George Burns stayed exactly who he was: a little irreverent, a little sentimental, and always in on the joke. When he turned 100, it didn’t feel like a milestone - it felt like the final beat in a perfectly timed routine.
Irving Berlin (1888 – 1989)
Irving Berlin didn’t just live to 101 - he scored most of the 20th century along the way. Born in 1888 in Imperial Russia and arriving in the U.S. as a penniless immigrant, he wrote more than 1,500 songs, including “White Christmas,” “God Bless America,” and “There’s No Business Like Show Business”.
Man in a suit - Irving Berlin - sits in front of a piano, with sheet music behind him. He appears poised and relaxed in a monochromatic setting.
His melodies are so deeply embedded in American culture that they feel almost like public domain, like oxygen, or like awkward family holidays. Yet Berlin never read music and played only in F-sharp, the black keys. He succeeded by sheer force of will, instinct, and an uncanny ability to write songs that people didn’t just want to hum - they wanted to live inside.
What makes him truly worthy of this list, though, isn’t just his prodigious output or his improbable rise. It’s that even into his centenarian years, Berlin never stopped being Berlin.
Elderly man in suit - Irving Berlin - plays piano in a dimly lit room, glancing at the camera. Books and a framed picture are seen in the background.
He remained fiercely private, unassuming, and somewhat allergic to praise. He turned down presidential medals and refused to attend tribute concerts in his honor. He didn’t care for celebrity; he cared for the work. And when the applause faded, he kept playing - quietly, defiantly, on his beloved black keys. In a century that was loud, fast, and eager to reinvent itself, Irving Berlin stood still and let the world dance to his tune.
Shigeaki Hinohara (1911 - 2017)
Shigeaki Hinohara lived to the age of 105, and if that alone doesn’t impress you, consider this: he spent most of that time working.
Elderly person wearing glasses and a white coat - Shigeaki Hinohara - with a stethoscope, smiling warmly. Indoors with wooden background, calm and professional mood.
As one of Japan’s most beloved physicians and a pioneer of preventive medicine, he wrote more than 150 books (some of them after turning 100), saw patients well into his centenarian years, and advocated tirelessly for a lifestyle of purpose, moderation, and fun. He was known to skip lunch, take the stairs, and insist that people shouldn’t retire just because a calendar told them to. In a culture that reveres longevity but often equates age with retreat, Hinohara cheerfully subverted the narrative - by refusing to slow down.
What made Hinohara truly remarkable was not just how long he lived, but how completely he inhabited his philosophy. He believed that life should be driven by curiosity, not calories, by engagement, not age. He didn’t just dish out wellness advice - he embodied it, always immaculately dressed, sharp-witted, and quietly radical in his refusal to become ornamental.
Elderly man in a brown suit - Shigeaki Hinohara - sits on a stone bench with arms raised, smiling in a grassy park. Plaque visible on the bench.
Even as the world around him grew faster, flashier, more disposable, Hinohara stayed grounded in old-school service and a kind of optimistic realism that’s now in short supply. He lived the life of a man who had somewhere to be and something to say, right up to the very end. And he never once apologized for being himself.
Ernst Mayr (1904 – 2004)
Ernst Mayr lived to be 100 and managed to spend nearly all of it arguing - politely, rigorously, and with great precision - about the nature of life itself. Born in 1904 in what was then the German Empire, Mayr became one of the most influential evolutionary biologists of the 20th century, helping to unify Darwinian theory with modern genetics in what became known as the “modern synthesis.”
Black-and-white image of an elderly man in a suit, smiling against a dark background. Text: "NCERT Biology, Ernst Mayr, Darwin of the 20th century."
He wrote or co-authored more than 20 books, described dozens of new species, and spent his final years calmly but insistently reminding the scientific community that speciation was, in fact, his specialty. To say he had staying power is an understatement; the man didn’t just contribute to biology - he helped rewrite its central grammar, and then stuck around to make sure no one messed it up. Darwin certainly would’ve been nodding in approval
What makes Mayr a qualified member of this centenarian pantheon isn’t just the duration of his life, but the clarity of his voice within it. Even into his late 90s, he was publishing papers, giving interviews, and confidently dismantling sloppy evolutionary thinking wherever he found it.
Man - Ernst Mayr - smiling beside a portrait of himself in academic robes. Black-and-white setting with framed document visible in background.
He was precise without being precious, critical without being cruel, and never once dulled his intellectual edge for the sake of being agreeable. If anything, he seemed to sharpen with age, like a scalpel left in a glass case: elegant, useful, and just a bit intimidating. Mayr didn’t merely witness a century of science - he shaped it, defended it, and remained unmistakably himself every step of the way.
Ernest Badalian (1925 - )
Born in Armenia during the early days of the Soviet experiment, Ernie Badalian came into a world already complicated, already tilting on its axis.
Elderly man - Ernie Badalian - smiling warmly, wearing a blue patterned shirt, and waving. Seated on a patterned chair in a well-lit room.
His father was a landowner – code word at the time, for “enemy of the people” - and the family’s property was seized by Soviet authorities in a sweeping purge of the bourgeoisie. To avoid a one-way ticket to the gulag, the family fled. They moved west through Europe’s unraveling seams, only to find themselves caught in the gears of World War II. Ernie was eventually interned in a German POW camp, where he remained until American forces liberated it in 1945. Freedom came not with fanfare, but with the quiet, improbable survival of someone who simply refused to be broken.
From there, Ernie’s story veers not into comfort, but resilience reimagined. He made it to America. He reunited with family - every last one of them, which in itself feels almost mythic – in Detroit, Michigan and became an American citizen. In 1952, he landed in Bell, California, bought a poultry ranch, and then - in one of those only-in-America plot twists - pivoted from chickens to check-ins by opening a motel across the street from a brand-new curiosity called Disneyland. That little venture became a family business, a generational stake in the American dream, and at 100, Ernie still lives on-site, quietly keeping tabs on tourists and trendlines like a man who knows full well the cost of standing still.
What makes Ernie a charter member of this list isn’t just that he reached the far end of the calendar with his humor and will intact - it’s that he did so by shaping every chapter himself. His life is a testament to persistence without self-pity, adaptation without loss of identity, and the kind of quiet authority that doesn’t need reminding who’s in charge. That he was the inspiration for this post is no coincidence. He’s not just a part of the list - he’s the reason it exists.
Older man - Ernie Badalian - sits with "100" birthday balloon, smiling, in a restaurant. Another man - Chris Zappia - stands behind him, also smiling. Warm, lively atmosphere.
Maybe the best thing about the people on this list - besides the obvious fact that they absolutely refuse to die on anyone else's schedule - is that they never mistook longevity for the goal. They weren’t chasing years like some kind of loyalty program. They were just busy living. Fully. Messily. With style, principle, or just stubbornness, but always on their own terms. Making it to 100 is impressive. Making it to 100 without becoming a museum exhibit or a punchline? That’s something else entirely.
It’s tempting to reduce centenarians to life hacks and headlines. “Secrets to a Long Life Revealed!” followed by kale, crossword puzzles, and something vaguely Scandinavian. But the truth is more slippery and less clickable. These people didn’t age gracefully - they aged honestly. There’s a difference. They didn’t live long because they tried to. They lived long because they kept moving, kept showing up, kept refusing to trade curiosity for comfort. Some ran marathons. Some played God. Some just kept opening their motel door every morning, because, to them, the world was still worth checking in on.
There’s no single through-line in this list - no magic pill, no secret sauce, no TED Talk formula. Just people who stayed sharp, stayed weird, or stayed kind long enough to watch the rest of us try to catch up. They kept going. Not because it was easy, but because it never occurred to them to stop. And when the rest of the world started putting up walls - between generations, between truths, between each other - they walked through them like smoke. And maybe that’s the real lesson here. Not how to live forever, but how to live so well, so completely, that the calendar just becomes background noise. The trick, it seems, isn’t to avoid the end. It’s to make the middle matter so much that the end doesn’t get the last word.
So, raise a glass (neat, no ice!) to the centenarians - the defiant, the dignified, the quietly miraculous. Not because they beat the clock, but because they never let it run the show. They remind us, in their beautifully stubborn way, that time is less a thief than a mirror. It reflects what you put into it. And if you’re lucky - and just a little bit ungovernable - it reflects you right back, 100 years later, with a raised eyebrow and a drink in hand.
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28comentário pertinente de Olavo de Carvalho sobre atribuições indevidas de acontecimentos à "ordem espontânea"
Eis aqui um exemplo entre outros mil, extraído das minhas apostilas de aulas, de como se analisam as relações entre fatores deliberados e casuais na ação histórica. O sr, Beltrão está INFINITAMENTE ABAIXO da possibilidade de discutir essas coisas, e por isso mesmo me atribui uma simploriedade que é dele próprio e não minha:
Já citei mil vezes este parágrafo de Georg Jellinek e vou citá-lo de novo: “Os fenômenos da vida social dividem-se em duas classes: aqueles que são determinados essencialmente por uma vontade diretriz e aqueles que existem ou podem existir sem uma organização devida a atos de vontade. Os primeiros estão submetidos necessariamente a um plano, a uma ordem emanada de uma vontade consciente, em oposição aos segundos, cuja ordenação repousa em forças bem diferentes.”
Essa distinção é crucial para os historiadores e os analistas estratégicos não porque ela é clara em todos os casos, mas precisamente porque não o é. O erro mais comum nessa ordem de estudos reside em atribuir a uma intenção consciente aquilo que resulta de uma descontrolada e às vezes incontrolável combinação de forças, ou, inversamente, em não conseguir enxergar, por trás de uma constelação aparentemente fortuita de circunstâncias, a inteligência que planejou e dirigiu sutilmente o curso dos acontecimentos.
Exemplo do primeiro erro são os Protocolos dos Sábios de Sião, que enxergam por trás de praticamente tudo o que acontece de mau no mundo a premeditação maligna de um número reduzidos de pessoas, uma elite judaica reunida secretamente em algum lugar incerto e não sabido.
O que torna essa fantasia especialmente convincente, decorrido algum tempo da sua publicação, é que alguns dos acontecimentos ali previstos se realizam bem diante dos nossos olhos. O leitor apressado vê nisso uma confirmação, saltando imprudentemente da observação do fato à imputação da autoria. Sim, algumas das idéias anunciadas nos Protocolos foram realizadas, mas não por uma elite distintamente judaica nem muito menos em proveito dos judeus, cuja papel na maioria dos casos consistiu eminentemente em pagar o pato. Muitos grupos ricos e poderosos têm ambições de dominação global e, uma vez publicado o livro, que em certos trechos tem lances de autêntica genialidade estratégica de tipo maquiavélico, era praticamente impossível que nada aprendessem com ele e não tentassem por em prática alguns dos seus esquemas, com a vantagem adicional de que estes já vinham com um bode expiatório pré-fabricado. Também é impossível que no meio ou no topo desses grupos não exista nenhum judeu de origem. Basta portanto um pouquinho de seletividade deformante para trocar a causa pelo efeito e o inocente pelo culpado.
Mas o erro mais comum hoje em dia não é esse. É o contrário: é a recusa obstinada de enxergar alguma premeditação, alguma autoria, mesmo por trás de acontecimentos notavelmente convergentes que, sem isso, teriam de ser explicados pela forca mágica das coincidências, pela ação de anjos e demônios, pela "mão invisível" das forças de mercado ou por hipotéticas “leis da História” ou “constantes sociológicas” jamais provadas, que na imaginação do observador dirigem tudo anonimamente e sem intervenção humana.
As causas geradoras desse erro são, grosso modo:
Primeira: Reduzir as ações humanas a efeitos de forças impessoais e anônimas requer o uso de conceitos genéricos abstratos que dão automaticamente a esse tipo de abordagem a aparência de coisa muito científica. Muito mais científica, para o observador leigo, do que a paciente e meticulosa reconstituição histórica das cadeias de fatos que, sob um véu de confusão, remontam às vezes a uma autoria inicial discreta e quase imperceptível. Como o estudo dos fenômenos histórico-políticos é cada vez mais uma ocupação acadêmica cujo sucesso depende de verbas, patrocínios, respaldo na mídia popular e boas relações com o establishment, é quase inevitável que, diante de uma questão dessa ordem, poucos resistam à tentação de matar logo o problema com duas ou três generalizações elegantes e brilhar como sábios de ocasião em vez de dar-se o trabalho de rastreamentos históricos que podem exigir décadas de pesquisa.
Segunda: Qualquer grupo ou entidade que se aventure a ações histórico-políticas de longo prazo tem de possuir não só os meios de empreendê-las, mas também, necessariamente, os meios de controlar a sua repercussão pública, acentuando o que lhe convém e encobrindo o que possa abortar os resultados pretendidos. Isso implica intervenções vastas, profundas e duradouras no ambiente mental. [Etc. etc. etc.]
(no facebook em 17 de julho de 2013)
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28Um algoritmo imbecil da evolução
Suponha que você queira escrever a palavra BANANA partindo de OOOOOO e usando só alterações aleatórias das letras. As alterações se dão por meio da multiplicação da palavra original em várias outras, cada uma com uma mudança diferente.
No primeiro período, surgem BOOOOO e OOOOZO. E então o ambiente decide que todas as palavras que não começam com um B estão eliminadas. Sobra apenas BOOOOO e o algoritmo continua.
É fácil explicar conceber a evolução das espécies acontecendo dessa maneira, se você controlar sempre a parte em que o ambiente decide quem vai sobrar.
Porém, há apenas duas opções:
- Se o ambiente decidir as coisas de maneira aleatória, a chance de você chegar na palavra correta usando esse método é tão pequena que pode ser considerada nula.
- Se o ambiente decidir as coisas de maneira pensada, caímos no //design inteligente//.
Acredito que isso seja uma enunciação decente do argumento "no free lunch" aplicado à crítica do darwinismo por William Dembski.
A resposta darwinista consiste em dizer que não existe essa BANANA como objetivo final. Que as palavras podem ir se alterando aleatoriamente, e o que sobrar sobrou, não podemos dizer que um objetivo foi atingido ou deixou de sê-lo. E aí os defensores do design inteligente dirão que o resultado ao qual chegamos não pode ter sido fruto de um processo aleatório. BANANA é qualitativamente diferente de AYZOSO, e aí há várias maneiras de "provar" que sim usando modelos matemáticos e tal.
Fico com a impressão, porém, de que essa coisa só pode ser resolvida como sim ou não mediante uma discussão das premissas, e chega um ponto em que não há mais provas matemáticas possíveis, apenas subjetividade.
Daí eu me lembro da minha humilde solução ao problema do cão que aperta as teclas aleatoriamente de um teclado e escreve as obras completas de Shakespeare: mesmo que ele o faça, nada daquilo terá sentido sem uma inteligência de tipo humano ali para lê-las e perceber que não se trata de uma bagunça, mas sim de um texto com sentido para ele. O milagre se dá não no momento em que o cão tropeça no teclado, mas no momento em que o homem olha para a tela.
Se o algoritmo da evolução chegou à palavra BANANA ou UXJHTR não faz diferença pra ela, mas faz diferença para nós, que temos uma inteligência humana, e estamos observando aquilo. O homem também pensaria que há //algo// por trás daquele evento do cão que digita as obras de Shakespeare, e como seria possível alguém em sã consciência pensar que não?
-
@ 3b62c542:6f45deaf
2025-05-14 16:09:39A New Chapter in Decentralized Finance.
In the ever-evolving world of crypto, the next major disruptor may not come from Silicon Valley or a Fortune 500 boardroom but from the digital grassroots of a movement determined to redefine finance. World Liberty Financial (WLFI), an ambitious decentralized finance (DeFi) project, is staking its claim as the next game changer in blockchain-based financial ecosystems.
With a bold vision of democratizing finance and a token model unlike any other, WLFI may very well be on the verge of something historic.
The Genesis of WLFI;A Mission Beyond Profit.
At its core, World Liberty Financial seeks to upend the long-standing dominance of centralized institutions. Its mission is clear; to empower individuals with direct access to decentralized financial services**, eliminating the need for banks, intermediaries, and regulatory chokeholds.
Leveraging blockchain technology, WLFI aims to provide borderless, transparent, and censorship-resistant alternatives to traditional finance, a concept that resonates strongly in an era of growing distrust toward centralized entities.
The Token Sale;A Rocky Start Turned Power Move.
WLFI’s token sale launched quietly in October 2024, pricing tokens at just \$0.015 with a goal of raising \$1.5 billion. Initial investor sentiment, however, was tepid—only 4% of the 20 billion token supply sold in the early weeks. But as political tides shifted in the U.S. following the 2024 Presidential Election and a more pro-crypto administration came to power, the wind began to change.
A major turning point came with a \$30 million investment from blockchain heavyweight Justin Sun, a move that revitalized confidence and placed WLFI squarely on the radar of institutional and retail investors alike.
By March 2025, WLFI had raised approximately \$590 million, making it one of the largest DeFi token sales in history. While it didn’t reach its lofty initial goal, it proved there was strong market appetite for a platform with real utility and an ambitious roadmap.
Tokenomics: A Bold, Unorthodox Approach.
What truly sets WLFI apart is not just its vision but its controversial and deliberate design choices:
●Non-Transferable Tokens-WLFI tokens currently cannot be traded, sold, or transferred. This is an intentional mechanism to curb speculation and shift focus to governance and utility. That said, community discussions are surfacing around a clause in the smart contract that could eventually allow limited transfers—pending a vote by token holders.
●No Economic Rights—Yet; WLFI tokens carry no economic rights, meaning holders don’t receive profits or dividends by default. However, a future protocol vote may change that, paving the way for dividends in stablecoins or airdrops, making it potentially the first DeFi token with structured financial payouts.
●Equal Governance Power- Every token holder has a seat at the table. Governance proposals and protocol upgrades are voted on democratically, creating a truly decentralized ecosystem where users—not venture capitalists or early insiders—steer the ship.
Tech Stack: Launching with Aave V3 Integration
WLFI’s integration with Aave V3 is a strategic move that immediately places it within a battle-tested DeFi framework. This partnership allows WLFI to:
- Create a decentralized lending and borrowing market
- Share protocol revenues with the Aave DAO
- Leverage Aave’s liquidity infrastructure while maintaining community autonomy
This integration puts WLFI in a unique position to blend the best of existing DeFi innovation with its own ideological twist on community-led finance.
The Bigger Picture: A Rare Window of Opportunity? As the world watches the regulatory and political landscape shift, particularly with a pro-crypto U.S. President in office, WLFI’s timing feels almost poetic. The conditions echo the early days of Bitcoin—uncertain, volatile, and full of opportunity.
But unlike Bitcoin, WLFI offers governance participation, future revenue sharing, and a tangible roadmap. It’s not just a store of value—it’s a financial instrument for the digital age.
Final Thoughts: Hype or Historic? WLFI is not for the impatient or the purely profit-driven investor. It’s a long-game play for those who believe in the foundational principles of decentralization, community governance, and financial sovereignty.
If it delivers on its promises—and if governance votes align to unlock its full potential—World Liberty Financial could be remembered as the moment DeFi stopped being just a tech experiment and started becoming a real financial revolution.
Disclaimer: This article is not financial advice. Always do your own research before investing.
-
@ 2ed3596e:98b4cc78
2025-05-15 18:25:25Bitcoiners, the Bitcoin Well point store just got even better.
You can now redeem your Bitcoin Well points for a Bitaxe, a fully open-source Bitcoin miner! Take your Bitcoin lifestyle to the next level by mining your own sats.
In a world dominated by large scale mining farms, Bitaxe is flipping the narrative by putting Bitcoin mining back into the hands of individuals.
The Bitaxe is a modern mining ASIC, but small enough to fit on your desk.
Like Bitcoin itself, Bitaxe is fully open-source, you can inspect, modify, and enhance the hardware and software. Bitaxes are super user friendly and are built to be customized, making a Bitaxe an incredible educational tool.
The Bitaxe is ideal for Bitcoiners who want to contribute to Bitcoin’s decentralization while also learning, first hand, what goes into the Bitcoin mining process. Who knows, you might even stumble into a block reward!
Now, you can exchange your points for a quiet, cool, low power miner that you can run yourself, at home.
What else can you get in store?
You can also exchange your points for:
-
Simply Bitcoin hoodie
-
Exclusive Bitcoin Well Stampseed backup plate
-
Personalized LeatherMint wallet
-
Tesla Cybertruck in Bitcoin orange
Start stacking rewards that actually matter. Visit your account to redeem today!
How to redeem your Bitcoin Well Points?
Redeeming your points is easy:
Log in and go the Bitcoin Well Points store within the Rewards Section
Check your Bitcoin Well point balance
Redeem Your Bitcoin Well points for the prize of your dreams
Once you’ve purchased an item from the Bitcoin Well Point Store, we’ll email you to figure out where you want us to ship your prize. Unless it's the Cybertruck, then you can come to our office and pick it up!
Ready to Take Control?
At Bitcoin Well, we make self-custody simple, secure, and empowering. If you’re ready to take control of your Bitcoin, sign up below to start your journey to true ownership.
-
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28Gerador de tabelas de todos contra todos
I don't remember exactly when I did this, but I think a friend wanted to do software that would give him money over the internet without having to work. He didn't know how to program. He mentioned this idea he had which was some kind of football championship manager solution, but I heard it like this: a website that generated a round-robin championship table for people to print.
It is actually not obvious to anyone how to do it, it requires an algorithm that people will not reach casually while thinking, and there was no website doing it in Portuguese at the time, so I made this and it worked and it had a couple hundred daily visitors, and it even generated money from Google Ads (not much)!
First it was a Python web app running on Heroku, then Heroku started charging or limiting the amount of free time I could have on their platform, so I migrated it to a static site that ran everything on the client. Since I didn't want to waste my Python code that actually generated the tables I used Brython to run Python on JavaScript, which was an interesting experience.
In hindsight I could have just taken one of the many
round-robin
JavaScript libraries that exist on NPM, so eventually after a couple of more years I did that.I also removed Google Ads when Google decided it had so many requirements to send me the money it was impossible, and then the money started to vanished.
-
@ bbef5093:71228592
2025-05-15 17:18:25USA és Szaúd-Arábia együttműködik a nukleáris energiában, beleértve a fejlett reaktorokat is
Az Egyesült Államok és Szaúd-Arábia 2025. május 13-án Rijádban aláírt egy energiaügyi és kritikus ásványi anyagokra vonatkozó együttműködési megállapodást, amelynek részeként a polgári nukleáris energia területén is kijelölték az együttműködés főbb területeit. Az USA Energiaügyi Minisztériuma szerint a kooperáció kiterjed a biztonságra, védelmi és non-proliferációs programokra, az amerikai III+ generációs fejlett nagy reaktortechnológiákra és kis moduláris reaktorokra, valamint az uránkutatásra, bányászatra és feldolgozásra.
További területek a szakképzés, munkaerő-fejlesztés és a nukleáris hulladékkezelés. Chris Wright energiaügyi miniszter szerint ezek a megállapodások erős partnerséget teremtenek, amelyek biztosítják Donald Trump elnök „belföldi jólét és külföldi béke” víziójának megvalósulását. Trump első jelentős külföldi útján látogat Szaúd-Arábiába és más arab országokba második elnöki ciklusában. Wright az energiaügyi együttműködési megállapodást Abdulaziz bin Salman Al Saud szaúdi energiaügyi miniszterrel írta alá. Az USA szerint a megállapodás célja az innováció, fejlesztés és az energetikai infrastruktúra kiépítésének lehetőségeinek feltárása a két országban.
Az USA és Szaúd-Arábia tárgyalásokat folytat a királyság polgári nukleáris iparának fejlesztéséről, de a tárgyalásokat régiós politikai kérdések és a fegyverkezési aggodalmak bonyolítják. Wright múlt hónapban azt mondta, várhatóan előzetes megállapodást írnak alá, és Rijád valamint Washington „úton van” egy közös szaúdi polgári nukleáris program kidolgozásához. „Az USA részvételéhez és partnerségéhez mindenképp szükség lesz egy 123-as megállapodásra... sokféleképpen lehet úgy szerződni, hogy az megfeleljen mind a szaúdi, mind az amerikai céloknak” – mondta Wright.
A 123-as megállapodás útja
Az úgynevezett 123-as megállapodás az USA 1954-es Atomenergia-törvényének 123. szakaszára utal, amely szükséges ahhoz, hogy az amerikai kormány és cégek együtt dolgozhassanak a királyság entitásaival polgári nukleáris ipar fejlesztésén. Wright szerint a szaúdi hatóságok még nem egyeztek bele a törvény által előírt feltételekbe, amely kilenc non-proliferációs kritériumot határoz meg annak érdekében, hogy az adott állam ne használhassa fel a technológiát nukleáris fegyverek fejlesztésére, vagy ne adhassa át érzékeny anyagokat másoknak.
A tárgyalások eddig azért is akadoztak, mert Szaúd-Arábia nem akarta kizárni az urándúsítás vagy a kiégett fűtőelemek újrafeldolgozásának lehetőségét – mindkettő potenciális út egy atombomba felé. Mohamed bin Szalmán koronaherceg régóta hangoztatja, hogy ha Irán nukleáris fegyvert fejleszt, Szaúd-Arábia is követni fogja. A világ legnagyobb olajexportőre, Szaúd-Arábia jelentős megújuló energia előállítására és kibocsátáscsökkentésre törekszik a koronaherceg Vision 2030 reformprogramja keretében, amelyben a nukleáris energia is szerepet kap.
2022-ben Szaúd-Arábia létrehozta a Nemzeti Nukleáris Energia Társaságot, hogy fejlessze és üzemeltesse a nukleáris létesítményeket. A királyság akkor kezdte meg az első atomerőművi engedélyeztetési folyamatot, amely a hírek szerint mintegy 14 milliárd dollárba (12,2 milliárd euróba) kerülhet. Helyi média szerint a tervezett atomerőmű kapacitása 2800 GW lesz. Korábbi jelentések szerint Dél-Korea, Franciaország, Kína és Oroszország is adott be ajánlatot, de ezt hivatalosan nem erősítették meg.
Tajvan: Az utolsó atomerőmű bezárására készülve módosítják a törvényt
Tajvan parlamentje elfogadott egy módosítást a nukleáris energia törvényében, amely lehetővé teszi az üzemeltetők számára, hogy a jelenlegi 40 éves korlátozáson túl további 20 évre hosszabbítsák meg az atomerőművi engedélyeket, így akár 60 évig is működhet egy reaktor. Az állami Central News Agency szerint a módosítást az ellenzéki Kuomintang és a Tajvani Néppárt támogatta, 60 igen és 51 nem szavazattal, a kormányzó Demokratikus Progresszív Párt ellenében.
A javaslat célja a nukleáris energia újbóli bevonása Tajvan energiastratégiájába. A Nukleáris Biztonsági Tanács szerint minden hosszabbítási kérelemnek meg kell felelnie a nemzetközi szabványoknak, és alapos műszaki és jogi értékelésen kell átesnie. A lépésre azután kerül sor, hogy a kormány a hétvégén véglegesen bezárja a Maanshan-2 atomerőművet Pingtung megyében, ezzel teljesítve Tajvan nukleárismentességi ígéretét.
Kuo Jyh-huei gazdasági miniszter megerősítette, hogy a Maanshan-2 hosszabbítása akár 18 hónapot is igénybe vehet. A kormány szerint a módosítás nem változtatja meg a Maanshan-2 bezárásának tervét. 2024 júliusában a Taipower állami vállalat leállította a Maanshan-1 atomerőművet, így az országban már csak egy reaktor, a Maanshan-2 maradt üzemben.
A sziget energiaigénye – főként a félvezetőipar miatt – gyorsan nő, ami újraéleszti a nukleáris energia körüli vitát. A gazdasági minisztérium szerint az ország villamosenergia-szükséglete 2030-ra várhatóan 12-13%-kal nő, főként a mesterséges intelligencia (AI) iparág fellendülése miatt. A Greenpeace szerint a világ legnagyobb chipgyártója, a Taiwan Semiconductor Manufacturing Company 2030-ra önmagában annyi áramot fog fogyasztani, mint a sziget 23 milliós lakosságának negyede.
Az energiaéhség nehezíti Tajpej 2050-re kitűzött nettó zéró kibocsátási vállalását, amely nagyrészt a megújuló energia részarányának 60-70%-ra emelésén alapul a jelenlegi 12%-ról. A nukleáris energia támogatói szerint ez a legéletképesebb módja Tajvan ipari és környezetvédelmi céljainak összehangolására. 2023-ban a nukleáris energia a tajvani villamosenergia-termelés 6,9%-át adta, míg a fő energiaforrások a szén és a cseppfolyósított földgáz voltak. A Maanshan-1 bezárásával a nukleáris energia aránya 2,8%-ra csökken.
Egykor hat reaktor biztosította Tajvan áramellátásának több mint felét.
„Nagyon nyitottak” az új nukleáris technológiára
Tavaly év végén Cho Jung-tai tajvani miniszterelnök kijelentette, hogy az ország „nagyon nyitott” az új nukleáris technológiák alkalmazására, hogy kielégítse a chipgyártók és az AI ipar növekvő áramigényét. „Amíg konszenzus van a nukleáris biztonságról és megfelelő garanciák vannak a hulladékkezelésre, nyilvános vitát lehet folytatni” – mondta Cho a Bloombergnek adott interjúban. Ez az egyik legerősebb jele annak, hogy a kormány újragondolja a kereskedelmi atomerőművekkel szembeni ellenállását.
Cho vélhetően fejlett reaktorokra, köztük kis moduláris reaktorokra (SMR) utalt, amelyeket számos országban fejlesztenek. Tajvan Nemzeti Atomkutató Intézete a héten indított egy 3,3 millió dolláros SMR kutatási projektet, amely utat nyithat a fejlett nukleáris reaktorok bevezetése előtt.
Új építés
Az amerikai EnergySolutions megkezdi a fejlett nukleáris projektek tervezését a wisconsini Kewaunee atomerőmű helyszínén. A cég a WEC Energy Grouppal együttműködve vizsgálja az új nukleáris termelés lehetőségét a helyszínen, és most helyszíni és környezeti tanulmányokat indít az NRC engedélyek megszerzése érdekében.
Ken Robuck, az EnergySolutions elnök-vezérigazgatója szerint az adatközpontok, a mesterséges intelligencia és az ipari növekedés által hajtott energiaigény miatt soha nem volt még ekkora szükség megbízható, szén-dioxid-mentes energiára. Az EnergySolutions 2022-ben vásárolta meg a 2013-ban leállított, jelenleg leszerelés alatt álló Kewaunee erőművet. Wisconsin egyetlen működő atomerőműve a Point Beach, amely az állam villamosenergia-termelésének 16,5%-át adja.
Elemzés: A brit nukleáris munkaerőnek „jelentősen” bővülnie kell
Az Egyesült Királyságban a kormány és az iparág közös szervezete, a Destination Nuclear sikeresen vonzza a szükséges szakembereket a nukleáris tervekhez, de figyelmeztet, hogy a munkaerőnek „jelentősen” bővülnie kell. Az országban jelenleg 96 000 fő dolgozik a nukleáris szektorban, de 2030-ra 120 000-re lesz szükség, vagyis hat év alatt 24 000 fővel kell bővíteni az állományt.
A program célja, hogy a civil és védelmi nukleáris szektorban is vonzóvá tegye a pályát, különös tekintettel a kritikus készségekre, például a hegesztésre, biztonsági mérnökökre, projekttervezőkre és sugárvédelmi szakemberekre. A kampány digitális hirdetésekkel, on-demand TV-n (pl. Netflix), és az online Minecraft játékon keresztül is igyekszik elérni a potenciális munkavállalókat. Az első eredmények szerint 52%-kal nőtt azok aránya, akik korábban nem gondoltak a nukleáris pályára, de most már fontolóra veszik. A szektor már most is több tízezer munkahelyet biztosít, és 2050-re akár 70 milliárd fonttal járulhat hozzá a brit gazdasághoz.
Egyéb hírek röviden
- Kanada: Az NWMO öt céget választott ki az első mély geológiai tároló tervezésére és kivitelezésére.
- Deep Atomic és Future-tech: Új programot indítottak nukleáris adatközpontok helyszínértékelésére.
- Urenco Isotopes: Üzembe helyezte legújabb izotóp-dúsító berendezését, a Blaise Pascalt.
- IAEA: Május 21-én webináriumot tart a nukleáris fúzió gyorsításáról, különös tekintettel a technológiai és ellátási láncok összehangolására.
-
@ 4cebd4f5:0ac3ed15
2025-05-14 15:06:02Giới thiệu Vietnam Aptos Hackathon Diễn ra từ tháng 5 đến tháng 7 năm 2025, Vietnam Aptos Hackathon là cuộc thi hackathon quy mô lớn được tổ chức trong khuôn khổ của sự kiện GM Vietnam | Vietnam Tech Week. Cuộc thi được đồng tổ chức bởi Aptos Foundation, SSID và Kyros Ventures, với sự đồng hành của các đối tác chiến lược như DoraHacks, Cloud Ace và AlphaTeam.
Vietnam Aptos Hackathon được kỳ vọng sẽ trở thành bệ phóng lý tưởng cho các builder, developer và sinh viên tại Việt Nam cũng như tại Đông Nam Á để hiện thực hóa những ý tưởng Web3 đột phá trên Aptos — blockchain Layer-1 thế hệ mới, được thiết kế tối ưu cho tốc độ xử lý, bảo mật mạnh mẽ và khả năng mở rộng vượt trội.
Chủ đề và Thử thách Vietnam Aptos Hackathon 2025 tập trung vào trọng tâm chính, định hình tương lai trên hệ sinh thái Aptos, bao gồm:
Web3 Consumer: Phát triển các ứng dụng hướng đến người dùng đại chúng như Prediction Markets, SocialFi, GameFi, NFT và Art & Culture.
Payments & Finance: Xây dựng hệ thống thanh toán thời gian thực, mô hình micro-loans, giải pháp token hóa tài sản (RWAs), cùng các sản phẩm tài chính phi tập trung.
Decentralized Infrastructure: Tạo lập nền tảng hạ tầng phi tập trung, từ công cụ tích hợp AI/ML, oracle đến các giải pháp phân phối nội dung hiệu quả. Tổng giải thưởng hơn 400.000 USD Vietnam Aptos Hackathon 2025 mang đến cơ cấu giải thưởng hấp dẫn cùng nhiều cơ hội phát triển sau cuộc thi nhằm hỗ trợ các đội thi tiếp tục mở rộng sản phẩm và kết nối với hệ sinh thái Web3 trên Aptos.
Top 5 đội thi xuất sắc nhất sẽ nhận được các phần thưởng giá trị để tiếp tục mở rộng sản phẩm sau cuộc thi. Cụ thể:
Giải Nhất: 200.000 USD Google Cloud Credits, 50.000 USD Build Aptos Credits và 10.000 USD tiền mặt.
Giải Nhì & Ba: Mỗi đội nhận được 100.000 USD Google Cloud Credits, 25.000 USD Build Aptos Credits cùng 10.000 USD tiền mặt.
Giải Tư & Năm: Quà tặng đặc biệt từ ban tổ chức, chứng nhận chính thức và 10.000 USD tiền mặt để tiếp tục hành trình phát triển sản phẩm. Bên cạnh đó, Vietnam Aptos Hackathon 2025 cũng dành riêng hạng mục đặc biệt cho sinh viên để thế hệ builder trẻ thể hiện tài năng, tiếp cận công nghệ Web3 tiên tiến. Cụ thể:
Top 5 đội sinh viên: Mỗi đội sẽ nhận 2.000 USD tiền mặt.
Top 2 đội xuất sắc nhất: Được trình bày dự án trực tiếp trên sân khấu chính trong ngày Demo Day.
Tất cả đội sinh viên tham gia đều nhận được chứng nhận chính thức từ chương trình. Bên cạnh các giải thưởng tiền mặt và tài nguyên kỹ thuật, Vietnam Aptos Hackathon 2025 còn mang đến nhiều cơ hội hỗ trợ phát triển dành cho các đội thi sau khi chương trình kết thúc.
Tất cả các đội sẽ nhận được hỗ trợ trực tiếp từ đội ngũ kỹ thuật của Aptos Foundation và các đối tác chiến lược trong hệ sinh thái. Đặc biệt, ngoài cơ cấu giải thưởng chính, các đội còn có cơ hội được pitch trực tiếp để nhận thêm fast-track grants từ Aptos Foundation.
Đáng chú ý, các đội thi còn được mời tham gia vào buổi private-dinner để gặp gỡ ban lãnh đạo Aptos Foundation và các quỹ đầu tư lớn, tạo điều kiện kết nối trực tiếp.
Chi tiết tham gia đăng kí và lịch trình cuộc thi Để trở thành một phần của hành trình Vietnam Aptos Hackathon 2025. Builder tham gia đăng kí tại đây:https://dorahacks.io/hackathon/vietnamaptoshackathon/detail
Lịch trình Vietnam Aptos Hackathon diễn ra như sau:
Từ ngày 14/05: Mở đơn đăng ký tham dự
14/05 – 19/06: Chuỗi workshop university tour và các buổi AMA
19/06 – 18/07: Trainning online/offline, nộp bài dự thi và tham gia Founder Dinner
21/07 – 25/07: Đánh giá sơ khảo và lựa chọn đội vào vòng chung kết
02/08: Chung kết & Trao giải trực tiếp tại sự kiện GM Vietnam Sự kiện sẽ kết thúc bằng Demo Day tại GM Vietnam 2025 (ngày 02/08) với sự tham dự của các quỹ đầu tư hàng đầu và lãnh đạo Aptos Foundation.
Tham gia Vietnam Aptos Hackathon 2025 Vietnam Aptos Hackathon chào đón mọi đối tượng: từ sinh viên đến các đội ngũ startup dày dạn kinh nghiệm. Nếu bạn đang xây dựng một ứng dụng Web3, đừng bỏ lỡ cơ hội tham gia cuộc thi nhận tài trợ, kết nối và ghi dấu ấn tại một trong những blockchain Layer 1 nổi bật nhất hiện nay.
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28Classless Templates
There are way too many hours being wasted in making themes for blogs. And then comes a new blog framework, it requires new themes. Old themes can't be used because they relied on different ways of rendering the website. Everything is a mess.
Classless was an attempt at solving it. It probably didn't work because I wasn't the best person to make themes and showcase the thing.
Basically everybody would agree on a simple HTML template that could fit blogs and simple websites very easily. Then other people would make pure-CSS themes expecting that template to be in place.
No classes were needed, only a fixed structure of
header
.main
,article
etc.With flexbox and grid CSS was enough to make this happen.
The templates that were available were all ported by me from other templates I saw on the web, and there was a simple one I created for my old website.
-
@ 615d5a95:c3b79c24
2025-05-14 10:49:22HI365 ra đời như một nền tảng trực tuyến hoàn hảo, đáp ứng mọi nhu cầu giải trí và phát triển kỹ năng của người dùng trong một không gian số hiện đại. Với giao diện được thiết kế tinh tế, dễ sử dụng và tối ưu hóa cho mọi thiết bị, từ điện thoại di động đến máy tính để bàn, HI365 mang đến trải nghiệm mượt mà và đầy tiện ích cho người tham gia. Nền tảng này chú trọng vào việc mang lại sự linh hoạt trong việc truy cập và tương tác, giúp người dùng dễ dàng tìm kiếm và tham gia vào các hoạt động phù hợp với sở thích và nhu cầu cá nhân. Bên cạnh đó, HI365 cung cấp một hệ thống cá nhân hóa thông minh, cho phép người dùng tùy chỉnh trải nghiệm của mình sao cho phù hợp nhất, từ việc tham gia các hoạt động sáng tạo cho đến thử thách khả năng phân tích và quyết định. Những tính năng này giúp tạo nên một không gian trực tuyến không chỉ giải trí mà còn mang lại giá trị thực sự cho người tham gia.
Một trong những điểm mạnh của HI365 là cộng đồng người dùng thân thiện và năng động, nơi mọi người có thể chia sẻ những kinh nghiệm, học hỏi lẫn nhau và cùng nhau phát triển. Với hệ thống kết nối linh hoạt và các tính năng tương tác hiệu quả, HI365 không chỉ là nơi để giải trí mà còn là không gian để người dùng nâng cao kỹ năng và tư duy chiến lược. Các hoạt động tại HI365 được thiết kế khoa học, dễ tiếp cận nhưng không thiếu sự thử thách, giúp người dùng rèn luyện sự nhạy bén trong quyết định và khả năng phân tích tình huống. Cộng đồng tại HI365 luôn duy trì sự cạnh tranh lành mạnh và động viên lẫn nhau phát triển, từ đó tạo ra môi trường học hỏi và sáng tạo không ngừng. Những tính năng như bảng xếp hạng, sự kiện đặc biệt hay các cuộc thi trực tuyến giúp gia tăng tính hấp dẫn và thú vị, đồng thời thúc đẩy người dùng phát triển không chỉ về kỹ năng mà còn về mặt tư duy sáng tạo.
Không chỉ chú trọng đến trải nghiệm người dùng và sự phát triển cộng đồng, HI365 còn cam kết mang lại một môi trường an toàn và bảo mật cho tất cả người tham gia. Được trang bị hệ thống bảo mật tiên tiến, HI365 bảo vệ thông tin người dùng một cách tuyệt đối, giúp người tham gia yên tâm tận hưởng những hoạt động mà không phải lo lắng về các vấn đề bảo mật. Đội ngũ hỗ trợ khách hàng chuyên nghiệp luôn sẵn sàng giải đáp thắc mắc và hỗ trợ người dùng 24/7, đảm bảo mọi trải nghiệm tại nền tảng này luôn suôn sẻ và trọn vẹn. Với những tính năng liên tục được cải tiến, HI365 không ngừng nâng cao chất lượng dịch vụ để đáp ứng nhu cầu ngày càng cao của người dùng. Những cải tiến này không chỉ giúp tối ưu hóa trải nghiệm mà còn làm phong phú thêm các lựa chọn và hoạt động mà nền tảng mang lại. Nhờ vậy, HI365 không chỉ là một nền tảng giải trí mà còn là nơi giúp người dùng phát triển và rèn luyện những kỹ năng quan trọng trong cuộc sống.
-
@ 91bea5cd:1df4451c
2025-05-14 10:47:44A origem do Dia das Mães
Anna Jarvis (1864-1948 Virgínia Ocidental), uma ativista americana, fundou o Dia das Mães nos Estados Unidos há mais de um século, escolhendo o segundo domingo de maio para tal celebração; mesma data que é comemorada até hoje em muitos países do mundo.
Ela nasceu durante a Guerra Civil, e viu sua mãe, Ann Reeves Jarvis, trabalhar na organização de Clubes de Trabalho Materno para cuidar de soldados de ambos os lados da guerra, a fim de diminuir as diferenças entre as mães do Norte e do Sul.
Em 1910, o Dia das Mães tornou-se feriado estadual na Virgínia Ocidental (EUA) e, em 1914, foi declarado feriado nacional pelo presidente Woodrow Wilson.
Segundo historiadores, Anna imaginava o feriado como um retorno ao lar, um dia para homenagear a sua mãe, a única mulher que dedicou sua vida à Anna. Ela escolheu o segundo domingo de maio porque seria sempre próximo de 9 de maio, o dia da morte de sua mãe, que faleceu em 1905.
E por que Anna Jarvis passou a odiar a data?
Acontece que a data começou a ter um apelo comercial, e Anna nunca quis que o dia se tornasse comercial, mas sim, só uma celebração às figuras maternas. Então ela acabou se opondo à comercialização e popularização do feriado.
Com o feriado, as indústrias floral, de cartões comemorativos e de doces começaram a ficar gananciosas para vender os seus produtos e subiram os preços nesta data, a fim de lucrarem mais.
Para Anna, "estavam comercializando o seu Dia das Mães". Para um jornal da época, ela comentou: "O que vocês farão para afugentar charlatões, bandidos, piratas, mafiosos, sequestradores e outros cupins que, com sua ganância, minam um dos movimentos e celebrações mais nobres e verdadeiros?".
Ela se irritava com qualquer organização que usasse seu dia para qualquer coisa que não fosse seu propósito original e sentimental, dizem historiadores. Em 1920, ela já incentivava as pessoas a não comprarem flores, por exemplo.
Além disso, instituições de caridade usavam o feriado para arrecadar fundos com a intenção de ajudar mães pobres; porém, como contam, elas não estavam usando o dinheiro para mães pobres, como alegavam.
Anna reivindicou os direitos autorais da frase "Segundo domingo de maio, Dia das Mães" ("Second Sunday in May, Mother's Day") e passou a vida lutando contra a comercialização da data. Um dos seus últimos atos foi ir de porta em porta na Filadélfia (EUA) pedindo assinaturas para apoiar a revogação do Dia das Mães.
Anna Jarvis nunca se casou e nem teve filhos, dedicando sua vida principalmente à causa do Dia das Mães. Ela faleceu em West Chester, na Pensilvânia (EUA), no dia 24 de novembro de 1948, aos 84 anos, devido a uma insuficiência cardíaca.
Fontes
- https://www.bbc.com/news/stories-52589173
- https://aventurasnahistoria.com.br/noticias/historia-hoje/dia-das-maes-por-que-mulher-que-criou-o-feriado-passou-odiar-data.phtml
- https://www.tempo.com/noticias/actualidade/dia-das-maes-por-que-a-mulher-que-inventou-a-data-se-arrependeu-de-te-la-criado.html
-
@ 2e8970de:63345c7a
2025-05-15 16:59:24Q: “Products & services using AI make me excited. How much do you agree/disagree?”
https://www.ipsos.com/en/ipsos-ai-monitor-2024-changing-attitudes-and-feelings-about-ai-and-future-it-will-bring
https://stacker.news/items/980900
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28Money Supply Measurement
What if we measured money supply measured by probability of being spent -- or how near it is to the point in which it is spent? bonds could be money if they're treated as that by their owners, but they are likely to be not near the spendpoint as cash, other assets can also be considered money but they might be even farther.
-
@ c13e67ae:8ff5689b
2025-05-15 16:37:10Testing the world
-
@ 000002de:c05780a7
2025-05-15 17:40:26It's been in the news recently that Mike Waltz was not using Signal but an app called TeleMessage, which is marketed as a tool to archive Signal chat conversations. This event presents a great opportunity for learning. After years of following security and privacy tech, one of the many lessons I've learned is that humans are almost always the weak link in security. Foolish decisions are usually at the root of most breaches and attacks. This was the case with the Trump admin. I am of the opinion that it is foolish to use devices like the iPhone or any phone OS for secure communication. Not because the devices are not secure—they can be very secure. It's that humans can break this security very easily with careless behavior, as we see in this case.
While Signal encrypts messages in transit[^1] and at rest on your mobile devices, it is important to remember that any encrypted messenger app, whether it's Signal, WhatsApp, Apple Messages, or SimpleX, must decrypt the messages for you to read them. There really isn't a way around this. So, with this in mind, it's obvious that trust is involved when using any of these apps. First, you are trusting the person you are conversing with. This might seem trivial, but it seems to be lost on many people. When you send a message to another party, you have no idea what they are doing with it. Apps like Signal try to mitigate this by offering disappearing messages. Some apps don't allow screenshots of the application. But make no mistake, if your message is readable by a human, they can capture it. Even if they just snap a picture of it from another device. If that were the only thing to consider, we could end this now, but it's not.
You are also trusting the phone/device OS. While I think it is unlikely that Apple and Google are capturing the screens on devices and apps like Signal, we cannot have 100% certainty of this. At least I do not. But it's worse than this. There are attack toolkits like Pegasus which can be covertly installed on phones like the iPhone and most Android devices. It is almost certain that Pegasus or something like it could capture and expose your private messages when you read them. This is because they basically gain low-level access to the device without your knowledge. And because humans can't mentally unencrypt messages, Signal must decrypt the message for you to read it. When it does, the malicious app can capture it and send it off to the attacker. FWIW, this is possibly what happened to Tucker Carlson when he claimed that Signal "leaked" his communication about traveling to Russia to interview Putin. Though I suspect it is more likely a mole in either his operation or the Russians. The least likely scenario is that Signal was actually compromised.
So no matter how secure your messaging app may be, if your phone OS is compromised, it's game over. This wasn't the case here as Waltz foolishly was using a clone of the Signal app called TM SGNL to log Signal chats and send them to the TeleMessage servers. It appears that this was done in the clear and that the logs were even emailed to mail servers. You can read more about this in a post I made earlier today. So, as you can see, he wasn't actually using Signal at all. Signal was not the issue.
So what should you do now that you are armed with this knowledge? Well, first of all, you should take everything I write with a grain of salt. Do your own research and do not do anything you don't feel comfortable doing. Don't trust, verify. With that caveat, the likelihood of Signal being compromised in my opinion is low. The likelihood that Apple or Google is logging your Signal chats is also low. I think they could if they desired. The likelihood of your being targeted with something like Pegasus is also low but not impossible. I don't know you or your threat model. It's something to think about. But here is something everyone should consider.
The most important thing to consider is that you are always trusting the person you communicate with. This is not only true for digital communication but also in-person communication. Of course, SMS is not secure, but I do use it for things that I have no concern about being recorded. But I do prefer to use encryption when I can. A side note, we seem to be heading toward a secure-by-default standard in the future with SMS[^2], which is good to hear. I use Signal with any friends that are willing to use it, but I do not trust them all equally. For one thing, most of us do not trust everyone equally for anything. Trust is earned and built over time. But even for people I trust, I may not trust their technical skills or security practices. This has to be a consideration when you use Signal. Signal cannot protect you against a malicious recipient. This person could be building a log of your conversations. They might even be hacked and unaware. They could be using an insecure client, as was the case with the Trump admin.
So be aware. The best policy is to be very careful with anything you put in a digital device. The best way to keep a secret is to not share it. There are many thoughts and communications that I would never use a phone or computer to communicate. I think people would be wise to do the same.
[^1]: The Double Ratchet Algorithm at the heart of Signal [^2]: End to End Encryption is coming as the default for mobile phones
https://stacker.news/items/980937
-
@ 8b19a626:6da35f21
2025-05-14 09:07:19I did not arrive with loud words, just quiet prayers and a heart full of purpose. Queen Marvel looked beyond the surface, she saw not where I stood but where I could go to_ to perform in global stages. She believed in me when I was still uncertain, still learning how to grow. She didn't offer gold, she offered faith, a silent kind of power that says," I see you", even when the world doesn't yet. And now, there is a community behind me, Eyes full of hope, hearts whispering, do not forget us. I carry their dreams like sacred cargo. I talk Bitcoin but I live poetry, now am schooling folks with metaphors and memes. Dropping bars on blocks and dreams, telling kings and queens, you got value, you got choice. So here is to Bitcoin, the rebel code that broke my chains, that gave me freedom and these golden poetic veins. This is not hype, it is truth in rhyme Now I spit not for fame But to light other flames, cos if it unlocked mine, then you can do the same. MaKiNi
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28How being "flexible" can bloat a protocol
(A somewhat absurd example, but you'll get the idea)
Iimagine some client decides to add support for a variant of nip05 that checks for values at /.well-known/nostr.yaml besides /.well-known/nostr.json. "Why not?", they think, "I like YAML more than JSON, this can't hurt anyone".
Then some user makes a nip05 file in YAML and it will work on that client, they will think their file is good since it works on that client. When the user sees that other clients are not recognizing their YAML file, they will complain to the other client developers: "Hey, your client is broken, it is not supporting my YAML file!".
The developer of the other client, astonished, replies: "Oh, I am sorry, I didn't know that was part of the nip05 spec!"
The user, thinking it is doing a good thing, replies: "I don't know, but it works on this other client here, see?"
Now the other client adds support. The cycle repeats now with more users making YAML files, more and more clients adding YAML support, for fear of providing a client that is incomplete or provides bad user experience.
The end result of this is that now nip05 extra-officially requires support for both JSON and YAML files. Every client must now check for /.well-known/nostr.yaml too besides just /.well-known/nostr.json, because a user's key could be in either of these. A lot of work was wasted for nothing. And now, going forward, any new clients will require the double of work than before to implement.
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28Token-Curated Registries
So you want to build a TCR?
TCRs (Token Curated Registries) are a construct for maintaining registries on Ethereum. Imagine you have lots of scissor brands and you want a list with only the good scissors. You want to make sure only the good scissors make into that list and not the bad scissors. For that, people will tell you, you can just create a TCR of the best scissors!
It works like this: some people have the token, let's call it Scissor Token. Some other person, let's say it's a scissor manufacturer, wants to put his scissor on the list, this guy must acquire some Scissor Tokens and "stake" it. Holders of the Scissor Tokens are allowed to vote on "yes" or "no". If "no", the manufactures loses his tokens to the holders, if "yes" then its tokens are kept in deposit, but his scissor brand gets accepted into the registry.
Such a simple process, they say, have strong incentives for being the best possible way of curating a registry of scissors: consumers have the incentive to consult the list because of its high quality; manufacturers have the incentive to buy tokens and apply to join the list because the list is so well-curated and consumers always consult it; token holders want the registry to accept good and reject bad scissors because that good decisions will make the list good for consumers and thus their tokens more valuable, bad decisions will do the contrary. It doesn't make sense, to reject everybody just to grab their tokens, because that would create an incentive against people trying to enter the list.
Amazing! How come such a simple system of voting has such enourmous features? Now we can have lists of everything so well-curated, and for that we just need Ethereum tokens!
Now let's imagine a different proposal, of my own creation: SPCR, Single-person curated registries.
Single-person Curated Registries are equal to TCR, except they don't use Ethereum tokens, it's just a list in a text file kept by a single person. People can apply to join, and they will have to give the single person some amount of money, the single person can reject or accept the proposal and so on.
Now let's look at the incentives of SPCR: people will want to consult the registry because it is so well curated; vendors will want to enter the registry because people are consulting it; the single person will want to accept the good and reject the bad applicants because these good decisions are what will make the list valuable.
Amazing! How such a single proposal has such enourmous features! SPCR are going to take over the internet!
What TCR enthusiasts get wrong?
TCR people think they can just list a set of incentives for something to work and assume that something will work. Mix that with Ethereum hype and they think theyve found something unique and revolutionary, while in fact they're just making a poor implementation of "democracy" systems that fail almost everywhere.
The life is not about listing a set of "incentives" and then considering the problems solved. Almost everybody on the Earth has the incentive for being rich: being rich has a lot of advantages over being poor, however not all people get rich! Why are the incentives failing?
Curating lists is a hard problem, it involves a lot of knowledge about the problem that just holding a token won't give you, it involves personal preferences, politics, it involves knowing where is the real limit between "good" and "bad". The Single Person list may have a good result if the single person doing the curation is knowledgeable and honest (yes, you can game the system to accept your uncle's scissors and not their competitor that is much better, for example, without losing the entire list reputation), same thing for TCRs, but it can also fail miserably, and it can appear to be good but be in fact not so good. In all cases, the list entries will reflect the preferences of people choosing and other things that aren't taken into the incentives equation of TCR enthusiasts.
We don't need lists
The most important point to be made, although unrelated to the incentive story, is that we don't need lists. Imagine you're looking for a scissor. You don't want someone to tell if scissor A or B are "good" or "bad", or if A is "better" than B. You want to know if, for your specific situation, or for a class of situations, A will serve well, and do that considering A's price and if A is being sold near you and all that.
Scissors are the worst example ever to make this point, but I hope you get it. If you don't, try imagining the same example with schools, doctors, plumbers, food, whatever.
Recommendation systems are badly needed in our world, and TCRs don't solve these at all.
-
@ 866e0139:6a9334e5
2025-05-15 15:54:25Autor: Bastian Barucker. 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 neuesten Artikel der Friedenstaube gibt es jetzt auch im eigenen Friedenstaube-Telegram-Kanal.
Teil 1 lesen Sie hier.
Wie steht es nun um die Psyche beziehungsweise den emotionalen Zustand der Gesellschaft? Wie kommt Psychotherapeut Hans-Joachim Maaz auf die Idee, Deutschland als „normopathische Angstgesellschaft“ zu bezeichnen? Meist werden Begriffe wie Trauma oder frühkindliche Prägung nicht öffentlich diskutiert und schon gar nicht als Massenphänomen besprochen. Desweiteren lässt sich Trauma schwer definieren. Ich bezeichne damit prägende Erfahrungen, die so schmerzhaft waren, dass sie eine Überforderung für die meist junge Psyche darstellten und daher abgespalten werden mussten. Dazu zählen Verlassenheit, Gewalt, Liebesentzug, Ohnmachtserfahrungen, jegliche Form von Missbrauch, der Verlust der Zugehörigkeit und vieles mehr. Sie regieren jedoch weiterhin als eine Art Schattenregierung, weil aus diesen Erfahrungen Lebenseinstellungen und Verhaltensweisen entstanden sind, die weiterhin Leid erzeugen. Meine Erfahrung zeigt mir, dass fast alle Menschen so eine Schattenregierung mit sich tragen.
Schaut man sich die Geschichte dieses Landes an, findet man die Spuren von Krieg und Trauma überall. Traumata werden über Generationen hinweg weitergegeben und können ohne die notwendige Selbsterfahrung weiterhin im individuellen Schatten wirksam und in der Tiefe regieren. Sogar der wissenschaftliche Dienst des deutschen Bundestages beschäftigt sich mit genau dieser Thematik und schreibt dazu: „Einschlägige psychologische Untersuchungen legen den Schluss nahe, dass sich die Übertragung unbewusster traumatisierender Botschaften von Opfern – zumindest ohne therapeutische Behandlung – in der Generationenfolge nicht abschwächt.“
In einem Gespräch mit der Professorin für Neuroepigenetik an der Universität Zürich und der Eidgenössischen Technischen Hochschule (ETH) Isabell Mansuy erfuhr ich, dass sie davon ausgeht, dass in Deutschland oder der Schweiz 20-40% der Bevölkerung Trauma erlebt haben.
Beispiele für solche massenhaften Traumatisierungen finden sich in der deutschen Geschichte viele: Mehrere schwer traumatisierende Weltkriege, die bis in die Gegenwart reichenden NS-Erziehungsmethoden aus dem Buch „Die deutsche Mutter und ihr erstes Kind“, Verschickungsheime, in denen ca. 15 Millionen Kinder lange Zeit von ihren Eltern getrennt wurden und dort teilweise Folter erlebten, Wochenkrippen in der DDR und viele andere sogenannte Erziehungsmethoden, die bis heute ihre Wirkung entfalten.
Solche traumatischen Erlebnisse bewirken tiefgreifende Veränderungen der Persönlichkeit und haben direkten Einfluss auf den Körper, die Psyche und das Verhalten der Betroffenen. Ein für die Kriegsbereitschaft relevanter Aspekt ist die Erzeugung von Gehorsam durch Erziehung.
In seinem Buch „Die Kindheit ist politisch“ beschreibt der Autor Sven Fuchs diesen Zusammenhang wie folgt: „Das von Geburt an zum Gehorsam und zur Unterwerfung gezwungene Kind fügt sich schließlich den Willen Anderer und gibt seine Individualität und auch eigene Gefühlswelt auf. Ein solch geprägter Mensch ist ein perfekter Befehlsempfänger, Untertan, Gläubiger oder weitergedacht Soldat.“
John Lennon wiederum formuliert es in seinem Lied „Working class hero“ so: „Sobald ihr geboren seid, sorgen sie dafür, dass ihr euch klein fühlt
Indem sie euch keine Zeit geben, anstatt alle Zeit der Welt\ Bis der Schmerz so groß ist, dass ihr überhaupt nichts mehr fühlt.“
In der oben erwähnten Schattenarbeit und der bedürfnisorientierten, traumasensiblen Begleitung von Kindern sehe ich ein bisher immens unterschätztes aber sehr nachhaltiges Potenzial für mehr Friedensfähigkeit beziehungsweise Wehrhaftigkeit gegen aufoktroyierte Kriegsbereitschaft. Nämlich die Erschaffung einer Gesellschaft, die Friedfertigkeit von der Zeugung an denkt und lebt. Der Psychotherapeut und Pionier der Pränatalpsychologie in Deutschland Ludwig Janus, mit dem ich ein sehr spannendes Gespräch geführt habe, beschreibt es in seinem Aufsatz „Das Unbewußte in der Politik – Politik des Unbewußten“ wie folgt: „Wir wissen heute, dass die Kraft zu einem selbstbestimmten und verantwortlichen Leben aus primären gutartigen Beziehungs- und Bestätigungserfahrungen resultiert.“
John Lennon formulierte seine intensive Begegnung mit dem Inneren so:
„Seine [Arthur Janovs] Sache ist es, den Schmerz zu fühlen, der sich seit der Kindheit in einem angestaut hat. Ich musste das tun, um wirklich alle religiösen Mythen zu beseitigen. In der Therapie spürt man wirklich jeden schmerzhaften Moment seines Lebens – es ist unerträglich, man wird gezwungen zu erkennen, dass der Schmerz, der einen nachts mit klopfendem Herzen aufwachen lässt, wirklich von einem selbst kommt und nicht das Ergebnis von jemandem da oben im Himmel ist. Er ist das Ergebnis der eigenen Eltern und der eigenen Umgebung."
Was könnte geschehen, wenn Kinder von Anfang an weniger Schmerz verarbeiten oder abspalten müssten, weniger familiäre oder erzieherische verbale, emotionale oder körperliche Gewalt miterleben und dadurch weniger Krieg in sich tragen? Was wäre möglich, wenn mehr Erwachsene sich den inneren Kriegen und dem im Schatten verborgenen Schmerz zuwenden und diese mittels Selbsterfahrung befrieden, daher nicht zwanghaft reinszenieren müssen? Auch Konsumwahn und Machtbesessenheit können in frühkindlichen Mangel- und Ohnmachsterfahrungen ihren Ursprung haben. Nur ein Beispiel für eine Veränderung, die innerhalb kürzester Zeit umsetzbar ist: Was wäre, wenn nicht weiterhin ein Drittel aller Frauen in Deutschland unter der Geburt irgendeine Form der Gewalt erlebte?
Inwiefern würde die durch Politik und Medien angewandte systematische Erzeugung von Angst ihre Wirkkraft verlieren, wenn die Mehrheit der Menschen ihre tieferliegenden Ängste integriert hätten. Neben der Angst vor dem Klimawandel und der kürzlich erst beendeten Angstkampagne wegen der Atemwegserkrankung Covid-19 ist die mit der Realität im Widerspruch stehende Angstpropaganda, wonach der russische Präsident Putin die NATO angreifen würde, ein prominentes Beispiel.
Bei einem aktuellen Vortrag des ehemaligen Generalinspekteurs der Bundeswehr Harald Kujat a.D. äußert sich dieser wie folgt: „Dass die russische Führung einen Krieg gegen das westliche Bündnis zu führen beabsichtigt, bestreiten jedenfalls die sieben amerikanischen Nachrichtendienste in ihren Bedrohungsanalysen der letzten Jahre und auch in dem von 2024.“
Alles in allem war es mir ein Anliegen, zu zeigen, dass jeder Mensch einen inneren Tiefenstaat beheimatet, der auf persönlicher und gesellschaftlicher Ebene Wirkung entfalten kann. Diesen Aspekt näher zu beleuchten, bietet das Potenzial für mehr persönliche Friedfertigkeit und stärkere Abwehrkräfte gegen die Kriegsgelüste des geopolitischen Tiefenstaates.
Immer wieder bewegend sind die Augenblicke in den Selbsterfahrungsgruppen der Gefühls- und Körperarbeit, in denen nach dem vollumfänglichen Ausdruck von Schmerz und Leid das ursprüngliche Bedürfnis der begleiteten Person beFRIEDigt wird, indem sie das bekommt, was sie ursprünglich gebraucht hat. In ihr und im gesamten Raum entsteht dann ein unbeschreiblicher und tiefgehender Frieden. Eine berührende Ruhe, eine Stille der Zufriedenheit. Der dabei zu erlebende innere Frieden, dem ich seit über 10 Jahren regelmäßig beiwohnen darf und den ich viele Jahre selber in mir entdecken durfte, wäre eine gute Zutat für mehr Friedfertigkeit.
„Vielleicht nennst du mich einen Träumer,\ aber – ich bin nicht der Einzige.\ Ich hoffe, dass du eines Tages dazugehören wirst\ und die Welt eins sein wird.“ John Lennon, Imagine
Bastian Barucker, Jahrgang 83, ist Wildnispädagoge, Überlebenstrainer und Prozessbegleiter. Seit 2005 begleitet er Menschen bei Wachstumsprozessen in der Natur. Seit 2011 macht er mithilfe der Gefühls- und Körperarbeit tiefgreifende Selbsterfahrungen, und seit 2014 begleitet er Gruppen, Paare und Einzelpersonen. Er lebt und arbeitet im wunderschönen Lassaner Winkel, nahe der Insel Usedom.
LASSEN SIE DER FRIEDENSTAUBE FLÜGEL WACHSEN!
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.
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28Personagens de jogos e símbolos
A sensação de "ser" um personagem em um jogo ou uma brincadeira talvez seja o mais próximo que eu tenha conseguido chegar do entendimento de um símbolo religioso.
A hóstia consagrada é, segundo a religião, o corpo de Cristo, mas nossa mente moderna só consegue concebê-la como sendo uma representação do corpo de Cristo. Da mesma forma outras culturas e outras religiões têm símbolos parecidos, inclusive nos quais o próprio participante do ritual faz o papel de um deus ou de qualquer coisa parecida.
"Faz o papel" é de novo a interpretação da mente moderna. O sujeito ali é a coisa, mas ele ao mesmo tempo que é também sabe que não é, que continua sendo ele mesmo.
Nos jogos de videogame e brincadeiras infantis em que se encarna um personagem o jogador é o personagem. não se diz, entre os jogadores, que alguém está "encenando", mas que ele é e pronto. nem há outra denominação ou outro verbo. No máximo "encarnando", mas já aí já é vocabulário jornalístico feito para facilitar a compreensão de quem está de fora do jogo.
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28idea: Per-paragraph paywalls
Using the lnurl-allowance protocol, a website could instead of putting a paywall over the entire site, charge a reader for only the paragraphs they read. Of course this requires trust from the reader on the website, but this is normal. The website could just hide the rest of the article before an invoice from the paragraph just read was paid.
This idea came from Colin from the Unhashed Podcast.
Could also work with podcasts and videos.
-
@ e968e50b:db2a803a
2025-05-15 16:29:37Hey Stacker.news,
I'm trying to book a room with a bitcoin-friendly bnb. They only had CC or debit payment on their website so I shot them an email inquiring about paying with bitcoin. They asked that I send a Whatsapp message that they'd send a lightning invoice to. Problem is, I've avoided Whatsapp because it looks like they harvest ALL of your data! Am I being a bitcoin hipster or do you think I'm right that this app looks just oh no good?
I really want to book with these guys, so if you're in the, "yeah, don't get Whatsapp camp," what do you propose that I propose to them as an alternative?
Pseudonymously, Doubter in Cypherland
originally posted at https://stacker.news/items/980877
-
@ 961e8955:d7fa53e4
2025-05-14 08:52:07Cryptocurrencies have become increasingly popular in recent years, and their impact on the world economy is a topic of much discussion. While there are many potential benefits to using cryptocurrencies, such as greater privacy and security, there are also several ways in which they may impact the global economy.
One potential impact of cryptocurrencies on the world economy is their ability to disrupt traditional financial systems. By enabling peer-to-peer transactions without the need for intermediaries such as banks or financial institutions, cryptocurrencies have the potential to lower transaction costs and increase efficiency. This could have a significant impact on industries such as remittances, where people send money across borders to their families.
However, the rise of cryptocurrencies has also brought concerns around their potential impact on monetary policy. Because cryptocurrencies are decentralized and not subject to government control, some fear that they could lead to increased volatility and instability in financial markets. Additionally, the use of cryptocurrencies could make it more difficult for central banks to control inflation and regulate the money supply.
Another potential impact of cryptocurrencies on the global economy is their ability to facilitate international trade. With the use of blockchain technology, cryptocurrencies could provide a secure and transparent means of conducting cross-border transactions. This could reduce the costs and time associated with traditional international payments, which could have a positive impact on global trade.
Finally, the growth of cryptocurrencies could also have an impact on wealth distribution. Because cryptocurrencies are accessible to anyone with an internet connection, they could provide new opportunities for people who have been excluded from traditional financial systems. However, there are also concerns that the concentration of wealth in the hands of early adopters and large cryptocurrency holders could exacerbate existing inequalities.
In conclusion, the impact of cryptocurrencies on the world economy is complex and multifaceted. While they have the potential to disrupt traditional financial systems and facilitate international trade, they also raise concerns around monetary policy and wealth distribution. As the use of cryptocurrencies continues to grow, it will be important to carefully monitor their impact on the global economy and take steps to address any potential risks.
-
@ eab58da0:eebdafbf
2025-05-14 08:19:47By Unknownfx
As a writer with over 100 stories published on platforms like Medium, I’ve explored countless spaces to share my voice. Few, however, have captured my heart quite like YakiHonne. This platform blends the best of creative expression, community engagement, and versatility, making it a perfect fit for someone like me, whose work spans self-improvement articles and forex/crypto trading posts. Below, I’ll dive into why YakiHonne has become my go-to platform, from its seamless writing experience to its vibrant, X-like social features.
A Writer’s Paradise for Self-Improvement and Mental Health Writing about self-improvement and mental health requires a space that feels safe, inspiring, and receptive. YakiHonne delivers exactly that. The platform’s clean interface and intuitive design make it easy to craft long-form articles that resonate with readers. Whether I’m sharing strategies for managing anxiety or tips for personal growth, YakiHonne’s formatting tools allow me to structure my thoughts clearly with headings, lists, and emphasis—perfect for breaking down complex topics into digestible insights.
What sets YakiHonne apart is its supportive community. Readers on the platform are genuinely engaged, leaving thoughtful comments that spark meaningful conversations. For instance, after posting an article on mindfulness techniques, I received feedback from readers who shared how my words helped them navigate tough days. This kind of connection fuels my passion for writing and reminds me why I focus on mental health and self-improvement. Unlike other platforms where articles can feel like they’re shouting into the void, YakiHonne makes every piece feel like a dialogue.
The X-Like Social Vibe: Notes, Quotes, and Instant Feedback One of my favorite features of YakiHonne is its resemblance to X, particularly in its note-posting and interaction mechanics. As someone who posts regularly about forex and crypto trading, I love the ability to share quick, bite-sized insights—market trends, trading psychology tips, or even a heads-up about a volatile crypto coin. These notes are like X posts: short, punchy, and designed to spark immediate engagement. The “quote” and “like” buttons add a layer of interactivity that makes posting feel dynamic and rewarding.
For example, when I shared a post about the importance of risk management in forex trading on X, it was quoted by several users who added their own perspectives, creating a mini-discussion thread. This instant feedback loop keeps me motivated to post regularly and I am seeing the same thing happening here. It’s also a great way to test ideas before turning them into full articles. The X-like social features make YakiHonne a hybrid platform—part writing hub, part social network—perfect for balancing my long-form self-improvement content with my trading-focused posts.
Versatility for My Dual Niches YakiHonne’s flexibility is a game-changer for someone like me with two distinct niches. My self-improvement and mental health articles require depth and storytelling, which YakiHonne’s article editor supports beautifully. Meanwhile, my forex and crypto trading posts thrive in the fast-paced, conversational note format. The platform doesn’t force me to choose between these worlds; instead, it gives me tools to excel in both.
This versatility also extends to audience reach. YakiHonne’s algorithm seems to understand my niches, recommending my articles to readers interested in personal growth and my notes to those following trading topics. This targeted exposure has helped me build a diverse following, something I struggled with on other platforms where my content sometimes got lost in the noise.
A Community That Feels Like Home Beyond the technical perks, YakiHonne’s community feels like a digital home. Writers and readers alike are passionate, curious, and supportive. I’ve connected with other creators who share my interests, from mental health advocates to trading enthusiasts. These connections have led to collaborations, like guest posts and even a few trading strategy discussions that inspired new content. The sense of belonging on YakiHonne is unmatched, making it a platform where I feel seen and valued as a writer.
Gratitude and Ambition: My YakiHonne Journey I’m endlessly grateful for discovering YakiHonne. It’s a platform that not only amplifies my voice but also aligns perfectly with my creative and social needs. As I continue to share my self-improvement articles and trading posts, I’m excited to grow my presence on YakiHonne, just as I’ve done on Medium and other platforms. My goal is to reach the top, building a loyal audience and making a lasting impact. With YakiHonne’s unique blend of features and community spirit, I’m confident this is just the beginning of an incredible journey.
-
@ 0b118e40:4edc09cb
2025-05-15 15:40:21My week started off with a lovely message from a friend : “I often think about you. Especially during times when it requires me to be more resilient and have faith in myself. I always carry your note in the book you gave me, “what the dog saw” And it always gives me courage and I send a little prayer your way”.
This friend of mine was dealing with the undercurrent of discrimination in my alma mater when we first met, and I helped out. It's something anybody would have done, but surprisingly, nobody else showed up. We’ve stayed in touch over the years, and my friend went on to help a lot of other people along the way.
I don’t remember what I wrote in that note. It’s something I tend to do (write notes, give books, write notes in books). But the message boomeranged back to me at a time when I needed to hold the line. To keep the faith.
Most of us don’t talk about our struggles. And sometimes the smallest act, which could just be a kind word or a reminder of the person you are, can carry farther than we imagine.
On the act of giving
There’s a book called Give and Take by Adam Grant. I picked it up hoping to learn how to take, because it’s always been easier to give and harder to accept help. But what I learned was something else entirely.
Grant studied over 30,000 people across different companies and grouped them into three types: * Givers * Matchers * Takers
Based on his studies, givers often finish last... They struggle the most. They burn out. They get overlooked. They’re too trusting.
But oddly, they also rise to the very top.
Matchers are the scorekeepers, the “I’ll help you if you help me” kind. They make up most of the population. The fascinating thing about tit-for-tat is that if someone’s kind, they reciprocate. But if someone acts like a jerk, they return the energy, and over time, it becomes a pool of spoiled milk. Matchers are a lukewarm, forgettable kind of network.
Takers are the ones chasing attention, always aligning themselves with whoever looks powerful. They tend to float toward status and soak up what they can. But they often portray themselves as kind and giving.
One example Grant shared was Enron's Kenneth Lay, who was at the center of one of the biggest corporate scandals in U.S. history. He hung around wherever he’d get seen or validated. He funded both Bush and Clinton, hedging his bets on who might win by securing proximity. Sadly, when Enron crumbled, he died of a heart attack before his prison sentencing.
Most people steer clear from takers because they are just exhausting. And takers often collapse under the weight of their own games.
But takers aren’t the lowest performers. That spot belongs to a certain kind of giver—the self-neglecting kind. The ones with no boundaries, no clarity, and no self-awareness. They give in to avoid conflict, to feel worthy, or because they don’t know how to say no. And when life breaks them, they point fingers.
Then there’s the other kind of giver. The ones who build trust and build people up without asking for a receipt.
These givers: 1. Give without expectation, from a place of purpose 2. Build and uplift others without seeking credit 3. Set boundaries and walk away when giving turns into draining
This group of givers rarely talk much about what they do for others. But when you hear about it or see it, it stays with you. It makes you want to show up a little better.
Why open source environments feels like home
The more I thought about it, the more I saw how deeply open source reflects that kind of giving that ends up right at the top.
In open source, you don’t last if it’s just about ego. You can’t fake it. There are no titles, no awards. You either show up to build and help, or you don’t.
People who give without needing to be seen are the ones the community leans on. You can tell when someone’s pretending to care. It’s in their tone, their urgency and their sense of transaction. The genuine ones don’t need to brand themselves as generous. They just are.
Open source works because giving is the default setting. The work speaks volumes and generosity compounds. The system filters for people who show up with purpose and stay consistent.
It’s also why the ones who whine, posture, or manipulate rarely last. They might call themselves givers, but they’re not fooling anyone who’s actually doing the work.
Adam Grant found that for giver cultures to thrive, takers have to be removed. They need to be pruned. Because takers poison the well. They drain givers, shift the culture from contribution to calculation, and unravel the trust that holds open systems together.
When hope boomerangs
That note is something I don’t remember writing. But it found its way back to me, and it was a good reminder to take my own advice and keep the faith.
And maybe that’s the point.
You do a small thing. And years later, it circles back when it matters most. Not because you expected it. But because you mattered.
According to Grant, givers do best when they combine generosity with grit and strategy. They create networks built on goodwill, which eventually open doors others don’t even know exist.
So if you’re wondering where I’m going with this, do something genuinely kind for someone today. Even if it’s as simple as sending a kind note. Not for you to be seen or heard. And not for you to keep scores.
But, just because.
-
@ 866e0139:6a9334e5
2025-05-14 06:39:51Autor: Mathias Bröckers. Dieser Beitrag wurde mit dem Pareto-Client geschrieben und erschien zuerst auf dem Blog des Autors. Sie finden alle Texte der Friedenstaube und weitere Texte zum Thema Frieden hier.**
Die neuesten Pareto-Artikel finden Sie in unserem Telegram-Kanal.
Die neuesten Artikel der Friedenstaube gibt es jetzt auch im eigenen Friedenstaube-Telegram-Kanal.
Leider bin ich mit der Anregung einer deutschen Übersetzung nicht rechtzeitig durchgedrungen, denn dieses Buch wäre die passende Vorbereitung für die Feiern zum 80. Jahrestag des Kriegsendes gewesen – und die angemessene Ohrfeige für die dreiste Ignoranz und Geschichtsvergessenheit der Deutschen, die nicht einmal formal diplomatischen Anstand bewahren können, und einen Vertreter Russlands zu diesem Gedenktag einladen. Oder einen hochrangigen Vertreter nach Moskau schicken, der den Millionen zivilen Opfern und den sowjetischen Soldaten Ehre und Anerkennung erweist, die die monströse Mordmaschine der Nazi-Armee besiegt haben.
\ Wie das geschah und wie westliche Kriegskorrespondenten und Frontreporter darüber berichteten, dokumentiert auf beeindruckende Weise der Band “Miracle in the East – Western War Correspondents Report 1941-1945”, der im vergangenen Herbst auf Englisch erschienen ist (hier als pdf ). Beeindruckend deshalb, weil diese Reporter anders als heute noch echte Journalisten und vor Ort waren, statt Copy-Paste-FakeNews auf dem Laptop zu produzieren; und weil ihre Berichte und Analysen die historische Entwicklung dieses Kriegs aufzeichnen, bei der Soldaten aus ganz Europa mit den Deutschen gegen die Sowjetunion vorrückten.
Die großen Zeitungen und Magazine in den USA und England, so der Autor Dmitry Fedorov im Vorwort, veröffentlichten Editorials und Leitartikel, “die von einem solchen Maß an Respekt und Bewunderung für das Heldentum des sowjetischen Volkes zeugten, dass sie darin mit den Moskauer Zeitungen hätte konkurrieren können”; und sie kürten, als das “Wunder im Osten” vollbracht, die Nazitruppe in Stalingrad und Kursk geschlagen war und die Rote Armee Richtung Berlin vorrückte, den sowjetischen Marschall Georgy Zhukow “zum besten Kommandeur in der Geschichte der Kriege.”
Dass er und seine Truppen den Löwenanteil zur Niederlage der Deutschen beigetragen hatten (und 76% der Hitlerarmee eliminiert hatten, mehr als drei Mal soviel wie USA, England und Frankreich zusammen), stellten weder Roosevelt noch Churchill in irgendeiner Weise in Frage. Wie verlogen es ist, wenn ihre Nachfolger im Westen 80 Jahre später diese historische Wahrheit kleinreden, um sich den Sieg allein an die Brust zu heften, lässt sich in diesem Buch nachverfolgen – in den Worten und Bildern ihrer eigenen Berichterstatter.\ \ Ich bin froh, dass ich vor drei Jahren am 9.Mai in Moskau meine Anerkennung und Dankbarkeit für diesen opferreichen Sieg über den Faschismus ausdrücken konnte, um den Menschen in Russland zumindest im Rahmen der “citizen diplomacy zu zeigen, dass nicht alle Deutschen von der beschämenden Ignoranz und dem notorischen Russenhass befallen sind, den ihre Regierenden an den Tag legen. Das gilt auch für die Einwohner der anderen europäischen Länder, die nicht bereit sind, die Geschichte umzuschreiben und zu vergessen und erneut Krieg zum gegen Russland zu rüsten – und sich jetzt dem European Peace Project anschließen:
\ “Wir, die Bürger Europas, erklären diesen Krieg hiermit für beendet! Wir machen bei den Kriegsspielen nicht mit. Wir machen aus unseren Männern und Söhnen keine Soldaten, aus unseren Töchtern keine Schwestern im Lazarett und aus unseren Ländern keine Schlachtfelder. Wir bieten an, sofort eine Abordnung europäischer Bürgerinnen und Bürger nach Kiew und Moskau zu entsenden, um den Dialog zu beginnen. Wir werden nicht länger zusehen, wie unsere Zukunft und die unserer Kinder auf dem Altar der Machtpolitik geopfert wird. Es lebe Europa, es lebe der Friede, es lebe die Freiheit!”
Mathias Bröckers, Jahrgang 1954, ist Autor und freier Journalist. Er gehörte zur Gründergeneration der taz, war dort bis 1991 Kultur- und Wissenschaftsredakteur und veröffentlichte seit 1980 rund 600 Beiträge für verschiedene Tageszeitungen, Wochen- und Monatszeitschriften, vor allem in den Bereichen Kultur, Wissenschaft und Politik. Neben seiner weiteren Tätigkeit als Rundfunkautor veröffentlichte Mathias Bröckers zahlreiche Bücher. Besonders bekannt wurden seine internationalen Bestseller „Die Wiederentdeckung der Nutzpflanze Hanf“ (1993), „Verschwörungen, Verschwörungstheorien und die Geheimnisse des 11.9.“ (2002) und „Wir sind immer die Guten – Ansichten eines Putinverstehers“ (2016, mit Paul Schreyer) sowie "Mythos 9/11 - Die Bilanz eines Jahrhundertverbrechens" (2021). Mathias Bröckers lebt in Berlin und Zürich und bloggt auf broeckers.com.
Sein aktuelles Buch "Inspiration, Konspiration, Evolution – Gesammelte Essays und Berichte aus dem Überall" –hier im Handel**
LASSEN SIE DER FRIEDENSTAUBE FLÜGEL WACHSEN!
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.
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28WelcomeBot
The first bot ever created for Trello.
It invited to a public board automatically anyone who commented on a card he was added to.
-
@ a3c6f928:d45494fb
2025-05-14 07:44:43Freedom of expression is one of the cornerstones of any open and progressive society. It is the right to speak, write, and share ideas without fear of censorship or persecution. More than just a legal right, it is a vital part of human development and societal growth.
Understanding Freedom of Expression
Freedom of expression goes beyond merely speaking your mind. It includes the right to seek, receive, and impart information and ideas of all kinds, whether verbally, in writing, through art, or in any other medium of expression. It is a right that fuels debate, drives change, and challenges injustice.
The Power of a Voice
Throughout history, freedom of expression has been a powerful tool for social change. From the speeches of Martin Luther King Jr. to the writings of Nelson Mandela, the ability to express ideas freely has sparked revolutions, reformed societies, and inspired generations.
Challenges to Freedom of Expression
Despite its importance, freedom of expression is often threatened. Censorship, political suppression, and societal pressures can silence voices that challenge the status quo. In the digital age, misinformation and online harassment also pose new challenges to maintaining this fundamental right.
Protecting the Right to Speak
-
Support Open Dialogue: Encourage discussions, even when opinions differ.
-
Stand Against Censorship: Oppose efforts to silence voices, regardless of their viewpoint.
-
Promote Media Literacy: Equip people to identify credible information and resist manipulation.
-
Respect Diverse Opinions: Embrace different perspectives, even if you disagree.
The Path Forward
Freedom of expression is not just about the right to speak; it's about the right to be heard. By protecting this freedom, we safeguard democracy, encourage innovation, and foster an environment where truth can flourish.
“I disapprove of what you say, but I will defend to the death your right to say it.” — Evelyn Beatrice Hall
Speak boldly. Listen openly. Protect the right to be heard.
-
-
@ 57d1a264:69f1fee1
2025-05-15 15:57:30Have been finally putting together a solution for managing transactions and addresses categories in #BitcoinSafe. You can learn more about the project here https://stacker.news/items/974488/r/DeSign_r and here https://stacker.news/items/977190/r/DeSign_r.
Here the two images, before and after. Find the differences, share your thoughts and let me know which one is more intuitive and usable, considering categories can be renamed or merged.
originally posted at https://stacker.news/items/980852
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28Sol e Terra
A Terra não gira em torno do Sol. Tudo depende do ponto de referência e não existe um ponto de referência absoluto. Só é melhor dizer que a Terra gira em torno do Sol porque há outros planetas fazendo movimentos análogos e aí fica mais fácil para todo mundo entender os movimentos tomando o Sol como ponto de referência.
-
@ 961e8955:d7fa53e4
2025-05-14 07:02:41Medical billing and coding play a crucial role in the healthcare industry. Healthcare facilities and insurance companies rely on skilled professionals to accurately code medical procedures and submit claims for reimbursement.
If you're interested in pursuing a career in medical billing and coding, online schools offer a convenient and flexible option to learn the necessary skills. Here is a detailed list of some of the top online schools for medical billing and coding:
Penn Foster College: Penn Foster College offers an online associate degree program in medical billing and coding that covers topics such as anatomy and physiology, medical terminology, and healthcare law and ethics. The program is self-paced, allowing students to complete it at their own pace.
Ultimate Medical Academy: Ultimate Medical Academy offers an online diploma program in medical billing and coding that can be completed in as little as 10 months. The program covers topics such as medical office management, medical coding, and healthcare reimbursement.
Herzing University: Herzing University offers an online associate degree program in medical billing and insurance coding that can be completed in as little as 20 months. The program covers topics such as medical billing, medical coding, and healthcare reimbursement.
Ashworth College: Ashworth College offers an online diploma program in medical billing and coding that can be completed in as little as four months. The program covers topics such as medical terminology, medical coding, and healthcare law and ethics.
Career Step: Career Step offers an online certificate program in medical billing and coding that can be completed in as little as four months. The program covers topics such as medical terminology, anatomy and physiology, and medical coding.
These online schools offer a range of programs to meet the needs of aspiring medical billing and coding professionals. With the flexibility and convenience of online learning, you can gain the skills and knowledge you need to start a rewarding career in this growing field.
Average Salaries for Medical Billing and Coding Professionals in the United States Medical billing and coding salaries can vary depending on several factors such as location, experience, and certification. Here is a general list of average salaries for medical billing and coding professionals in the United States:
Medical billing and coding specialist: $42,640 per year Medical records technician: $44,020 per year Medical coder: $49,780 per year Medical billing specialist: $41,750 per year Certified coding specialist: $61,620 per year It's important to note that these are average salaries and may vary based on individual circumstances. Additionally, pursuing advanced certification and further education can lead to higher salaries and opportunities for career advancement.
The Future of Medical Billing and Coding Careers: Job Outlook and Growth Potential The demand for skilled medical billing and coding professionals is expected to grow in the coming years. According to the Bureau of Labor Statistics, employment of health information technicians (which includes medical billing and coding professionals) is projected to grow 8 percent from 2019 to 2029, much faster than the average for all occupations.
Medical billing and coding professionals can work in a variety of settings, including hospitals, clinics, physician's offices, and insurance companies. They play a critical role in ensuring accurate documentation and reimbursement for medical services.
In addition to traditional employment opportunities, medical billing and coding professionals can also work as freelancers or start their own businesses. With the rise of telemedicine and remote work, there may be even more opportunities for individuals to work from home in this field.
Overall, the job outlook for medical billing and coding professionals is promising, with a variety of employment opportunities available in the healthcare industry.
Where Can You Work with a Medical Billing and Coding Certification? Medical billing and coding professionals can work in various healthcare settings, such as:
Hospitals Clinics and outpatient centers Physician's offices Insurance companies Government agencies Nursing homes and long-term care facilities Home healthcare agencies Medical billing and coding companies Telemedicine companies Additionally, with the rise of remote work and telemedicine, medical billing and coding professionals may have the opportunity to work from home or as freelancers. This flexibility allows for a more diverse range of employment options and can provide greater work-life balance.
-
@ c1e6505c:02b3157e
2025-05-15 15:25:27“Put that camera down, you bitch,” someone yelled out of a car as it drove by with the door wide open.
I had a little time in Savannah yesterday to walk around and take some photos. I tend to wander through the rougher areas — not just in Savannah, but in any city I visit. I’m drawn to the spots most people avoid. Not the tourist zones, but the alleys, the quiet, broken-down neighborhoods where the grit is.
I’ve photographed Savannah a lot over the past few years, so it’s getting harder to find places I haven’t already been. But every now and then, I’ll stumble on a back street or alley I’ve never seen before, and in it, something I’m almost certain no one else has photographed.
There’s something about walking aimlessly with a camera that I find incredibly fulfilling. Honestly, if I could do just that for the rest of my life — wander around and photograph things that most people overlook — I’d be content.
There’s a quote I heard recently - can’t remember who said it — but it stuck with me. It was something like: “It’s better to be aimless than to be rigid with a plan.” Because when you’re too locked into a goal, you might miss the opportunities that pop up along the way. You need to stay flexible, fluid—open to what the world hands you.
That’s how I feel about photography. I’ll walk for hours—sometimes five to ten miles — just to see what shows up. It becomes a game. A game between me, the camera, the street, and whatever decides to show up that day.
Usually, it takes a few warm-up shots to get into it — just pictures of objects, whatever catches my eye. But once I find a rhythm, it’s like the world starts to reveal itself. The good stuff comes out of hiding.
That’s what real photography is to me. Not staging scenes or setting up portraits—that’s more like illustration, as Garry Winogrand would say. What I care about is life. Life unfolding right in front of you. Life happening.
Thank you for your attention. Please consider donating a few sats if you enjoy my work. It goes a long way. If not, please share. Thank you.
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28hledger-web
A Haskell app that uses Miso and hledger's Haskell libraries plus ghcjs to be compiled to a web page, and then adds optional remoteStorage so you can store your ledger data somewhere else.
This was my introduction to Haskell and also built at a time I thought remoteStorage was a good idea that solved many problems, and that it could use some help in the form of just yet another somewhat-useless-but-cool project using it that could be added to their wiki.
See also
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28A list of things artificial intelligence is not doing
If AI is so good why can't it:
- write good glue code that wraps a documented HTTP API?
- make good translations using available books and respective published translations?
- extract meaningful and relevant numbers from news articles?
- write mathematical models that fit perfectly to available data better than any human?
- play videogames without cheating (i.e. simulating human vision, attention and click speed)?
- turn pure HTML pages into pretty designs by generating CSS
- predict the weather
- calculate building foundations
- determine stock values of companies from publicly available numbers
- smartly and automatically test software to uncover bugs before releases
- predict sports matches from the ball and the players' movement on the screen
- continuously improve niche/local search indexes based on user input and and reaction to results
- control traffic lights
- predict sports matches from news articles, and teams and players' history
This was posted first on Twitter.
-
@ a296b972:e5a7a2e8
2025-05-15 15:07:57***Unserestaatsanwaltschaft***
Die Staatsanwaltschaft Aachen prüft Ermittlungen gegen Unbekannt in Sachen Cum-Ex. Hierfür konnte die ehemalige Chefanklägerin Brohilker als externe Expertin gewonnen werden. Korrektur, die Staatsanwaltschaft prüft Ermittlungen gegen Frau Brohilker. „Richtig so“, sagen Experten. „Es sind doch nur 43 Milliarden im Bermuda-Dreieck verschollen. Man muss auch mal Ruhe geben, genauso, wie bei Corona“. Dank schon heute an Unserestaatsanwaltschaft.
***Bundesamt für Fassungslosigkeit***
Ein Enkel hat die Kochrezepte seiner Großmutter zusammengetragen und veröffentlicht. Ausschließlich Rezepte aus Ostpreußen, Pommern und Schlesien. Das gesamte Kochbuch ist jetzt als Nazi-Küche eingestuft worden, weil der Urenkel die Grenze des guten Geschmacks, also die Oder-Neisse-Linie, dadurch missachtet hat. Weiter wurde ihm Russenfreundlichkeit vorgeworfen, weil auch ein Rezept für Königsberger Klopse abgedruckt wurde.
***Stillhaltezusage***
Die vom Bundesamt für Verfassungsschutz ausgesprochene Stillhaltezusage hat Zahnärzte auf die Idee gebracht, diese vor Behandlung von ihren Patienten unterschreiben zu lassen. Widerstand ist zwecklos.
***Paragraphenerweiterung***
Das Würgen des Menschen ist unfassbar. Jeder, der sich dafür einsetzt, dass wieder die Vernunft in Deutschland Einzug hält, wird mit einem Urlaub mit dem Corona-Minister II nicht unter 6 Wochen bestraft.
***Freie Kapazitäten beim Verfassungsschutz***
Das als gesichert stillgehaltene Gutachten hat gezeigt, dass das Bundesamt über erhebliche Kapazitäten verfügt. Diese sollen jetzt gebündelt dazu verwendet werden, die Messerattentate und den Tatbestand der selbstfahrenden Autos in Menschenmengen lückenlos aufzuklären. Erfahrung bei dem Zusammentragen von öffentlichen Zitaten verspricht nun endlich eine zeitnahe Aufklärung.
***Sonderdezernat beim schutzverfassenden Bundesamt***
Die Sprengung der Nordstream 2-Pipeline war ein terroristischer Anschlag auf die Energieversorgung von Deutschland und ganz Europa. Zur nun endgültigen Aufklärung nach nur wenigen Jahren wurde ein Sonderdezernat mit dem Code-Namen „Task Force Peng“ eingerichtet. Man hat bereits Kontakt zu Seymour Hersh aufgenommen, doch der ist zurzeit mit einem Segelboot namens „Andromeda“ auf Weltumrundung unterwegs.
***Eurovision Song Contest***
Der ESC ist eine absolut politisch neutrale Sing-Veranstaltung, bei der persönliche Angriffe gegen Repräsentanten und Innen stets im Bereich des Unmöglichen bleiben. Auch solidarische Gewinnerermittlung zur Unterstützung eines bestimmten Landes entbehrt jeder Grundlage, wie die Vergangenheit wiederholt gezeigt hat.
***Drehtüreffekt***
Das Infragestellen von Personen, die von der Politik in die Medien oder umgekehrt wechseln, hat nichts mit Interessenkonflikten zu tun. Im Gegenteil: Es werden so Kompetenzen ressourcenschonend anschlussverwendet.
***‘Aufrüstung in Deutschland***
Nachdem man zunächst einen Feind erfunden hat, der keine Lust hat, einer zu sein, ist die zwingend logische Schlussfolgerung daraus, dass man jetzt auch wieder die zentrale Macht in Europa werden will. Das freut die Nachbarn, und wie schon in der Ukraine in 2022, beginnt die neue deutsche Zeitrechnung jetzt in 2025. Man ist zu der Überzeugung gelangt, dass Vorgeschichten von Nationen völlig überbewertet werden.
***Vergleich unzulässig***
Die geplante Zerschlagung des Kapitalismus durch die Linke ist etwas völlig anderes, als die Bekämpfung des Kapitalismus zugunsten des Sozialismus durch die SED, weil es damals um die Deutsche Mark ging und heute schließlich um den Euro.
***Bevorstehende Hitzewelle Sommer 2025***
Nach den vergeblichen zwei Anläufen durch plötzlich und unerwarteten Regen in den Jahren 2023 und 2024 ist man sich nun ganz sicher, dass die Erdverkochung durch die Klimawandelung im dritten Anlauf stattfinden wird. Es wurden schon Bodentemperaturen gemessen.
***Neueintrag im Knigge***
Ab sofort schickt es sich nicht, dass vollgeschnaufte Taschentücher auf dem Tisch liegengelassen werden dürfen, wenn die Kamera angeht. Auch Kratzlöffel, wenn der Rücken mal juckt, sind vor Einschalten der Kamera zu entfernen.
***Meinungsfreiheit***
Jeder darf die ihm von den Weisen der Wahrheit vorgegebene Meinung so oft wiederholen und aussprechen, wie er will. Eine Limitierung der Wiederholungen findet nicht statt.
***Selbstbestimmungsgesetz erweitert***
Das Selbstbestimmungsgesetz wurde jetzt erweitert: Man darf sich auch als Finanzamt definieren. Das hat den Vorteil, dass sich der Steuerpflichtige seine Steuerzahlungen auf sein eigenes Konto überweisen kann, um selbst zu entscheiden, wofür die Gelder der Allgemeinheit dienend, ausgegeben werden sollen.
***US-Verbot von Gain-of-Function Forschung***
Dafür, dass deutsche Unternehmen aufgrund der unbezahlbaren Energiekosten ihre Produktionsstätten ins Ausland verlagern, werden in deutschen Bio-Laboren die freigesetzten US-Kapazitäten aus der Forschung mit Kusshand aufgenommen. Operation Paperclip II, nur umgekehrt.
***Deutscher Weltrekord***
Noch nie wurden Ankündigungen in einem Koalitionsvertrag so schnell entsorgt, wie nach den Anfang Mai 2025 stattgefundenen Wahlen. Der verbleibende Rest sind Kann-Bestimmungen, für die sicher ein Grund gefunden wird, warum das Geld zur Umsetzung fehlt.
Dieser Artikel wurde mit dem Pareto-Client geschrieben
* *
(Bild von pixabay)
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28Rede Relâmpago
Ao se referir à Lightning Network do O que é Bitcoin?, nós, brasileiros e portugueses, devemos usar o termo "Relâmpago" ou "Rede Relâmpago". "Relâmpago" é uma palavra bonita e apropriada, e fácil de pronunciar por todos os nossos compatriotas. Chega de anglicismos desnecessários.
Exemplo de uma conversa hipotética no Brasil usando esta nomenclatura:
– Posso pagar com Relâmpago? – Opa, claro! Vou gerar um boleto aqui pra você.
Repare que é bem mais natural e fácil do que a outra alternativa:
– Posso pagar com láitenim? – Leite ninho?
-
@ 502ab02a:a2860397
2025-05-14 06:36:13ย้อนกลับไปในยุคโบราณ ไม่ว่าชนเผ่าชาวทุ่งหญ้าในยูเรเชีย ชาวอินเดียตอนเหนือ หรือเผ่าทะเลทรายแถบตะวันออกกลาง ล้วนมีวัฒนธรรมที่เกี่ยวข้องกับนมวัว นมจามรี นมแพะ และทุกชนิดก็ลงเอยที่การเอานมไปแปรรูปเป็น “เนย” ทั้งเนยแบบสด เนยหมัก
เนยที่เก่าแก่ที่สุดเท่าที่มีบันทึก คือ “Bog Butter” จากไอร์แลนด์ ไม่ใช่ blockbuster นะ ฮาๆๆๆ “Bog Butter” เป็นเนยที่ถูกฝังไว้ในบึงพรุ (bog) ของไอร์แลนด์และสก็อตแลนด์ มาหลายร้อยถึงหลายพันปี โดยไม่มีการเน่าเสีย! เพราะบึงพรุมีสภาพแวดล้อมที่เป็นกรด ไม่มีออกซิเจน และเย็น จึงเป็นสภาวะที่เหมาะกับการถนอมอาหารแบบธรรมชาติสุด ๆ
มีหลักฐานการค้นพบ Bog Butter อายุราว 3,000 ปี (ยุคเหล็กตอนต้น) ในหลายพื้นที่ของไอร์แลนด์ เช่น County Offaly, County Cavan และ County Fermanagh ลักษณะของ Bog Butter ที่ขุดพบ บางก้อนยังอยู่ในสภาพดี มีสีเหลืองทอง เนื้อเนียน และยังมีกลิ่นคล้ายชีสที่สุกมาก ๆ ภาชนะที่ใช้ใส่เนยมักเป็นถังไม้ กล่องไม้โอ๊ค หรือแม้แต่หนังสัตว์ผูกไว้แน่น ๆ
นักโบราณคดีเชื่อว่า Bog Butter คือเนยจากนมสัตว์ (นมวัวหรือนมแพะ) ที่อาจผ่านการหมักหรือเคี่ยวแล้วก่อนนำไปฝัง เพื่อถนอมไว้กินในฤดูหนาวหรือในปีที่น้ำนมขาดแคลน บางทฤษฎีก็เสนอว่ามีการฝังเนยเพื่อเหตุผลทางพิธีกรรม หรือใช้เป็น “ทรัพย์สิน” ที่ฝากไว้กับแผ่นดินเพื่อแสดงความมั่งคั่ง
ที่น่าทึ่งก็คือนี่เป็นการถนอมเนยที่ไม่ใช้ความร้อน ไม่ใช้เกลือ และไม่ใช้น้ำแข็ง แต่กลับอยู่ได้นานเป็นพันปี เพราะอาศัยสภาพแวดล้อมที่เข้าใจธรรมชาติสุด ๆ มีข้อมูลว่าเขามีการชิม Bog Butter ที่ขุดขึ้นมาด้วยนะ มีคำบรรยายไว้ว่า “มันมีกลิ่นชีสเข้มข้น กลิ่นดินและควันบาง ๆ เหมือนกินประวัติศาสตร์” 5555
เนยแท้ (butter) ก็คือน้ำนมที่ถูกแยกเอาไขมันออกมาด้วยการตี (churning) โดยอาศัยแรงมือหรือแรงกล เครื่องตีจะรวมเม็ดไขมันเล็ก ๆ จากครีมนมให้จับตัวกันกลายเป็นก้อนเนย แล้วแยกเอาน้ำบัตเตอร์มิลค์ออกไป คงเหลือไว้แค่ไขมันเนยที่หอม มัน และอุดมไปด้วยวิตามิน A, D, E, K ในรูปที่ดูดซึมง่าย เพราะละลายในไขมัน
องค์ประกอบหลักที่อยู่ในเนยจะมี 3 ส่วนใหญ่ๆเรียกแบบเหมารวมคือ
1 ไขมันนม/ไขมันเนย หรือ butter oil 2 เนื้อนม หรือ solid milk 3 ส่วนที่เป็นของเหลวต่างๆ หรือ moisture คือมันไม่เจาะจงว่าน้ำนึกออกไหมครับ นมมาจากธรรมชาติไม่ได้มาจากการผสมสัดส่วน ดังนั้นการจะมุ่งว่าเป็นน้ำเลยจึงไม่ใช่เสียทีเดียว ภาษาไทยเราจึงมักแปลไว้ว่าส่วนที่เป็นความชื้น *ตรงนี้มีหมายเหตุไว้นิดหน่อยครับว่า เจ้าไขมันเนยนี่ เราอาจะเจอภาษาอังกฤษหลายคำนะครับ เช่น butterfat, butter oil, fat milk ตรงนี้ให้เข้าไจไว้ว่ามันหมายถึงสิ่งเดียวกันนั่นหละครับ
สิ่งสำคัญในการทำเนยคือ ไขมันจากนมนั่นเอง นมส่วนที่ไขมันสูงนั้นเราเรียกว่า ครีม นึกภาพเป็นการ์ตูนง่ายๆได้ว่า เราช้อนเเอาเฉพาะส่วนที่เป็นครีมนั่นแหละ แล้วเอามาทำมาทำเป็นเนย ปล่อยทิ้งส่วนของนมที่ไม่มีไขมันเอาไว้ทำอย่างอื่น (มันคือนมพร่องมันเนย คุ้นมะ แต่จริงๆเค้าไม่ได้เอาส่วนนี้มาขายเป็นนมให้เราหรอกนะครับ โรงงานแต่ละโรงจะตั้งไลน์ผลิตเพื่อสินค้าที่ดีที่สุดของตัวเอิง จะไม่จับฉ่ายเอาเศษเดนมาทำของขายให้เรา)
การเตรียมครีมก่อนจะเข้าสู่การผลิตเนยก็จะมีหลากหลายรูปแบบยกตัวอย่างเช่น
-Sour cream butter หรือ Cultured butter เป็นเนยทำจากครีมที่ผ่านการพาสเจอไรส์(ฆ่าเชื้อ) แล้วหมักด้วยจุลินทรีย์แลคติกหรือไม่ก็แลคโตบาซิลัส ทำให้มีกลิ่นและรสที่ดี -Neutralized sour cream butter เป็นเนยที่ได้จากครีมที่หมักด้วยจุลินทรีย์แล้วเอาไปทำเป็นกลางด้วย โซเดียมไบคาบอเนต โซเดียมคาร์บอเนต แคลเซียมไฮดรอกไซด์ รวมกับ แมกนีเซียมออกไซด์ หรือ แมกนีเซียมไฮดรอกไซด์ -Sweet cream butter เป็นเนยที่ทำจากครีมที่ผ่านการพาสเจอไรส์(ฆ่าเชื้อ) แต่ไม่มีการหมักบ่ม คือนำไปปั่นทำเนยเลย เนยชนิดนี้จะมีกลิ่นคล้ายครีมถ้ายี่ห้อนั้นๆไม่ได้เติมกลิ่นลงไปเพิ่มนะครับ รสชาติจะออกไปทางหวานนิดๆ เพราะมีน้ำตาลธรรมชาติในนมอยู่เนื่องจากไม่ได้ผ่านการหมัก แต่ไม่ต้องกังวลเพราะไม่ถึงกับหวานเวอร์ มันจะแค่หวานกว่าเนยชนิด Cultured butter แค่นั้น -Semi-culture butter หรือ European-style butter หรือ Fresh cream butter เป็นเนยที่ได้จากครีมที่ไม่ได้ผ่านการหมัก คือทำแบบเดียวกับ Sweet cream butter แต่ขั้นตอนสุดท้ายมีการเติมกลิ่นรสและกรดแลคติก ที่ได้จากนมหมักจุลินทรีย์แล้วเอาไปผ่านกระบวนการ อัลตร้าฟิลเทรชัน (Ultrafiltration) เพื่อให้เข้มข้นขึ้น -Raw butter cream เป็นเนยที่ผลิตจากน้ำนมดิบ ไม่ผ่านการพาสเจอไรส์(ฆ่าเชื้อ) คือจัดไปดิบๆเลย นมดิบสดๆมาแยกครีมแล้วปั่นทำเนยเลยไม่มีการเติมอะไรทั้งสิ้น คุณภาพของเนยชนิดนี้จะแปรผันตามคุณภาพของน้ำนมดิบและความเชี่ยวชาญของผู้ที่ผลิตเนย อายุของเนยชนิดนี้จะสั้นแค่ประมาณ 7-10วันเท่านั้นเพราะทุกอย่างมันสดจริงๆ
เห็นไหมครับว่า เนยแต่ละยี่ห้อเขาก็จะมีกรรมวิธีผลิตเนยในรูปแบบที่ต่างกันไป เนยบ่มก็จะมีกลิ่นหอมรสที่หนักแน่นปริมาณไขมันเนยและความชื้นน้อยกว่าเนยแบบ sweet cream ส่วนเจ้าเนย sweet cream เองก็เน้นที่ความสดความเฟรช กลิ่นเบาๆครีมๆมีความหวานหลงเหลืออยู่และมีราคาถูกกว่า ส่วนตัว raw butter ก็จะออกไปทางงานคราฟท์ คลาสสิค
เนย Home made ทำยังไง เนยแบบที่เราทำกินเองได้ในบ้านก็เป็นแบบ sweet cream butter หรือ เนยที่ได้จากครีมสดไม่ผ่านการหมักอะไรเลย เว้นแต่เติมเกลือเพื่อให้เป็นเนยเค็ม (จริงๆเติมเกลือเพื่อช่วยยืดอายุเนยได้อีกระยะหนึ่งด้วยนะ เป็นแทคติก) ปกติวิธีการทำเนย เขาจะเอาครีมเข้าถังปั่น เพื่อให้ครีมเกิดการแยกก้อนเนยเป็น grain (เขาเรียกว่า butter granule/butter curds) กับ หางเนย (butter milk) ซึ่งเป็นของเหลวที่ประกอบไปด้วยเนื้อนมไม่รวมมันเนยแล้วก็น้ำ แล้วเขาก็จะเอาก้อนเนยนี่แหละไปล้างน้ำเย็นเอากลิ่นหืนๆและรสประหลาดๆออกไป กำจัดความชื้นแล้วจบกระบวนการตีๆตบๆขึ้นรูปเนยก้อนต่อไป
ตรงนี้ถ้าจะให้เห็นภาพขึ้น ใครทำขนมเองคงรู้ดี เวลาที่เราตีวิปครีมมากเกินไป มันจะจับก้อนและแยกชั้น เป็นก้อนๆกับเหลวๆ ก้อนๆก็คือเนื้อเนย ไอ้เหลวๆก็คือ butter milk
การทำ เนยสด homemade fresh butter กินเองที่บ้านเราก็ทำได้ด้วยการจำลองถังปั่นด้วยเครื่องตีขนม จะเป็นแบบตีมือหรือแบบเครื่องก็ได้ครับ หรืออยากจะแอดวานซ์เอาใส่ขวดน้ำแล้วเขย่าก็ได้เหมือนกันนะครับ เมื่อถึงระยะเวลานึงครีมก็จะแยกตัวเป็นเนย กับ butter milk
ลองดูที่ผมเคยทำไว้ในคลิปนี้ได้ครับ https://youtu.be/bzo7V9n2cxc?si=0ZvcAT1H-6h1ZmUh
ไขมันในเนยมีองค์ประกอบพิเศษที่ไม่ค่อยถูกพูดถึงเท่าไรนัก นั่นคือกรดไขมันสายสั้นอย่าง butyric acid ซึ่งมีชื่อมาจากคำว่า “butter” เลย เพราะมันมีบทบาทในลำไส้ โดยเฉพาะการเป็นอาหารของเซลล์เยื่อบุลำไส้ใหญ่ ช่วยลดอาการอักเสบในระบบทางเดินอาหาร
สัดส่วนไขมันในเนยส่วนใหญ่จะเป็น ไขมันอิ่มตัว (SFA) ราว 50-65%, ไขมันไม่อิ่มตัวเชิงเดี่ยว (MUFA) ประมาณ 25-30% และไขมันไม่อิ่มตัวเชิงซ้อน (PUFA) ราว 2-5% เท่านั้น แต่ในส่วนของ PUFA นั้นมีความพิเศษเล็กน้อย ที่จะคุยในน้ำมันตัวต่อไปครับ
ในโลกตะวันตกโดยเฉพาะฝรั่งเศส อิตาลี และยุโรปตอนเหนือ เนยคือพระเอกประจำห้องครัว ใช้ผัด ใช้อบ ใช้ทาขนมปัง เป็นของคู่กับวัฒนธรรมการกินแบบ traditional food ซึ่งแตกต่างจากยุคอุตสาหกรรมที่ผลักให้เนยแท้หลบมุม แล้วเอา margarine หรือ shortening ซึ่งเต็มไปด้วยไขมันแปรรูปมาแทน ด้วยการโฆษณาแบบ fiat food คล้ายกับเรื่องที่เฮียเคยพูดบ่อย ๆ นั่นแหละ
ในประเทศไทยเราเองก็มีเนยวัวใช้ในอาหารบางชนิด โดยเฉพาะขนมอบ ขนมฝรั่งโบราณ หรือขนมเนยสดสไตล์ยุโรปที่เข้ามาสมัยรัชกาลที่ 5 แต่โดยรวมคนไทยไม่คุ้นเคยกับเนยในครัวร้อนมากนัก เพราะวัฒนธรรมอาหารเรามักใช้ไขมันจากสัตว์ท้องถิ่นมากกว่า เช่น น้ำมันหมู ไขมันวัว หรือน้ำมันจากไก่และเป็ด
การใช้เนยจึงเป็นเหมือนการสื่อสารข้ามวัฒนธรรม เป็นของเรียบง่ายที่เล่าเรื่องความรู้ของมนุษย์กับธรรมชาติได้อย่างลึกซึ้ง ยิ่งเมื่อเรากลับมานึกถึงภูมิปัญญาเดิม ๆ ก็จะเห็นว่า เนยไม่ได้แค่ให้พลังงาน แต่มันคือไขมันที่พาคุณค่าสารอาหารซึมลึกเข้าไปถึงทุกเนื้อเยื่อ และพาเราเดินทางกลับไปสู่วิถีของอาหารจริง (real food) อย่างสง่างามเลยล่ะ
มาถึงตรงนี้สามารถสรุปง่ายๆจนเห็นภาพโครงสร้างหลักของเนยแล้วใช่ไหมครับว่า เนย = ไขมัน butter oil + เนื้อนม solid milk + ของเหลวอื่นๆ
หลังจากนี้เราจะมาคุยอีกผลผลิตนึง ที่ทำจากเนยครับ จำสมการข้างบนไว้ให้ดีครับ
สำหรับคนที่เพิ่งเริ่มเข้าวงการเนย ตัวนี้เป็น starter ที่ดีครับ วัวกินหญ้า https://s.shopee.co.th/30bQI86d1Q
#pirateketo #กูต้องรู้มั๊ย #ม้วนหางสิลูก #siamstr
-
@ 3bf0c63f:aefa459d
2024-01-14 13:55:28lnurl-auth explained
You may have seen the lnurl-auth spec or heard about it, but might not know how it works or what is its relationship with other lnurl protocols. This document attempts to solve that.
Relationship between lnurl-auth and other lnurl protocols
First, what is the relationship of lnurl-auth with other lnurl protocols? The answer is none, except the fact that they all share the lnurl format for specifying
https
URLs.In fact, lnurl-auth is very unique in the sense that it doesn't even need a Lightning wallet to work, it is a standalone authentication protocol that can work anywhere.
How does it work
Now, how does it work? The basic idea is that each wallet has a seed, which is a random value (you may think of the BIP39 seed words, for example). Usually from that seed different keys are derived, each of these yielding a Bitcoin address, and also from that same seed may come the keys used to generate and manage Lightning channels.
What lnurl-auth does is to generate a new key from that seed, and from that a new key for each service (identified by its domain) you try to authenticate with.
That way, you effectively have a new identity for each website. Two different services cannot associate your identities.
The flow goes like this: When you visit a website, the website presents you with a QR code containing a callback URL and a challenge. The challenge should be a random value.
When your wallet scans or opens that QR code it uses the domain in the callback URL plus the main lnurl-auth key to derive a key specific for that website, uses that key to sign the challenge and then sends both the public key specific for that for that website plus the signed challenge to the specified URL.
When the service receives the public key it checks it against the challenge signature and start a session for that user. The user is then identified only by its public key. If the service wants it can, of course, request more details from the user, associate it with an internal id or username, it is free to do anything. lnurl-auth's goals end here: no passwords, maximum possible privacy.
FAQ
-
What is the advantage of tying this to Bitcoin and Lightning?
One big advantage is that your wallet is already keeping track of one seed, it is already a precious thing. If you had to keep track of a separate auth seed it would be arguably worse, more difficult to bootstrap the protocol, and arguably one of the reasons similar protocols, past and present, weren't successful.
-
Just signing in to websites? What else is this good for?
No, it can be used for authenticating to installable apps and physical places, as long as there is a service running an HTTP server somewhere to read the signature sent from the wallet. But yes, signing in to websites is the main problem to solve here.
-
Phishing attack! Can a malicious website proxy the QR from a third website and show it to the user to it will steal the signature and be able to login on the third website?
No, because the wallet will only talk to the the callback URL, and it will either be controlled by the third website, so the malicious won't see anything; or it will have a different domain, so the wallet will derive a different key and frustrate the malicious website's plan.
-
I heard SQRL had that same idea and it went nowhere.
Indeed. SQRL in its first version was basically the same thing as lnurl-auth, with one big difference: it was vulnerable to phishing attacks (see above). That was basically the only criticism it got everywhere, so the protocol creators decided to solve that by introducing complexity to the protocol. While they were at it they decided to add more complexity for managing accounts and so many more crap that in the the spec which initially was a single page ended up becoming 136 pages of highly technical gibberish. Then all the initial network effect it had, libraries and apps were trashed and nowadays no one can do anything with it (but, see, there are still people who love the protocol writing in a 90's forum with no clue of anything besides their own Java).
-
We don't need this, we need WebAuthn!
WebAuthn is essentially the same thing as lnurl-auth, but instead of being simple it is complex, instead of being open and decentralized it is centralized in big corporations, and instead of relying on a key generated by your own device it requires an expensive hardware HSM you must buy and trust the manufacturer. If you like WebAuthn and you like Bitcoin you should like lnurl-auth much more.
-
What about BitID?
This is another one that is very similar to lnurl-auth, but without the anti-phishing prevention and extra privacy given by making one different key for each service.
-
What about LSAT?
It doesn't compete with lnurl-auth. LSAT, as far as I understand it, is for when you're buying individual resources from a server, not authenticating as a user. Of course, LSAT can be repurposed as a general authentication tool, but then it will lack features that lnurl-auth has, like the property of having keys generated independently by the user from a common seed and a standard way of passing authentication info from one medium to another (like signing in to a website at the desktop from the mobile phone, for example).
-
-
@ a5ee4475:2ca75401
2025-05-15 14:44:45lista #descentralismo #compilado #portugues
*Algumas destas listas ainda estão sendo trocadas, portanto as versões mais recentes delas só estão visíveis no Amethyst por causa da ferramenta de edição.
Clients do Nostr e Outras Coisas
nostr:naddr1qq245dz5tqe8w46swpphgmr4f3047s6629t45qg4waehxw309aex2mrp0yhxgctdw4eju6t09upzpf0wg36k3g3hygndv3cp8f2j284v0hfh4dqgqjj3yxnreck2w4qpqvzqqqr4guxde6sl
Modelos de IA e Ferramentas
nostr:naddr1qq24xwtyt9v5wjzefe6523j32dy5ga65gagkjqgswaehxw309ahx7um5wghx6mmd9upzpf0wg36k3g3hygndv3cp8f2j284v0hfh4dqgqjj3yxnreck2w4qpqvzqqqr4guk62czu
Iniciativas de Bitcoin
nostr:naddr1qvzqqqr4gupzpf0wg36k3g3hygndv3cp8f2j284v0hfh4dqgqjj3yxnreck2w4qpqq2nvmn5va9x2nrxfd2k5smyf3ux7vesd9znyqxygt4
Profissionais Brasileiros no Nostr
nostr:naddr1qq24qmnkwe6y67zlxgc4sumrxpxxce3kf9fn2qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7q3q5hhygatg5gmjyfkkguqn54f9r6k8m5m6ksyqffgjrf3uut982sqsxpqqqp65wp8uedu
Comunidades em Português no Nostr
nostr:naddr1qq2hwcejv4ykgdf3v9gxykrxfdqk753jxcc4gqg4waehxw309aex2mrp0yhxgctdw4eju6t09upzpf0wg36k3g3hygndv3cp8f2j284v0hfh4dqgqjj3yxnreck2w4qpqvzqqqr4gu455fm3
Grupos em Português no Nostr
nostr:nevent1qqs98kldepjmlxngupsyth40n0h5lw7z5ut5w4scvh27alc0w86tevcpzpmhxue69uhkummnw3ezumt0d5hsygy7fff8g6l23gp5uqtuyqwkqvucx6mhe7r9h7v6wyzzj0v6lrztcspsgqqqqqqs3ndneh
Jogos de Código Aberto
Open Source Games nostr:naddr1qvzqqqr4gupzpf0wg36k3g3hygndv3cp8f2j284v0hfh4dqgqjj3yxnreck2w4qpqq2kvwp3v4hhvk2sw3j5sm6h23g5wkz5ddzhz8x40v0
Itens Úteis com Esquemas Disponíveis
nostr:naddr1qqgrqvp5vd3kycejxask2efcv4jr2qgswaehxw309ahx7um5wghx6mmd9upzpf0wg36k3g3hygndv3cp8f2j284v0hfh4dqgqjj3yxnreck2w4qpqvzqqqr4guc43v6c
Formatação de Texto em Markdown
(Amethyst, Yakihone e outros) nostr:naddr1qvzqqqr4gupzpf0wg36k3g3hygndv3cp8f2j284v0hfh4dqgqjj3yxnreck2w4qpqq2454m8dfzn26z4f34kvu6fw4rysnrjxfm42wfpe90
Outros Links
nostr:nevent1qqsrm6ywny5r7ajakpppp0lt525n0s33x6tyn6pz0n8ws8k2tqpqracpzpmhxue69uhkummnw3ezumt0d5hsygp6e5ns0nv3dun430jky25y4pku6ylz68rz6zs7khv29q6rj5peespsgqqqqqqsmfwa78
-
@ eab58da0:eebdafbf
2025-05-14 06:02:17By Unknownfx
Mental health isn’t just about big breakthroughs; it’s about small, intentional choices that pull you out of your head and into your life. I’ve spent years wrestling with overthinking, chasing perfection, and letting my phone hijack my focus. Here’s what I’ve learned about stopping those cycles and finding peace—and how you can, too.
Trapped in My Own Mind: The Overthinking Struggle I used to overanalyze everything—every word in a conversation, every choice I made. My brain was a hamster wheel, spinning with “what ifs” and worst-case scenarios. It stole my energy and joy. Then, I tried something simple: the 5-4-3-2-1 grounding technique. Name five things you see, four you hear, three you feel, two you smell, one you taste. It sounds basic, but it yanked me out of my head and into the present. Another trick? I set a 10-minute timer to journal my worries, then closed the notebook. That act of “parking” my thoughts gave me permission to move on. Overthinking still creeps in, but these tools help me hit pause and start living.
Letting Go of Perfection to Find Happiness For years, I thought happiness meant getting everything right—perfect work, perfect routines, perfect me. Spoiler: it’s exhausting. One day, I bombed a project and expected to spiral. Instead, I felt… free. I realized perfection was a trap, keeping me from real joy. Now, I aim for “good enough” and celebrate small wins, like finishing a rough draft or just showing up on a tough day. Letting go of flawless opened the door to happiness rooted in progress, not pressure. It’s messy, but it’s honest—and that’s where the good stuff lives.
The No-Phone Hour: A Game-Changer for My Brain My phone was my shadow—scrolling during breakfast, checking notifications mid-thought. It cluttered my mind and fueled my overthinking. So, I started a daily “no-phone hour” in the morning. No screens, just me, a coffee, and quiet. Sometimes I journal, sometimes I stare out the window. At first, it felt weird, like I was missing something. But soon, I noticed my focus sharpening and my stress dipping. That hour became sacred—a reset for my mental health. It’s not about hating tech; it’s about giving your brain space to breathe.
Your Turn to Break Free These shifts—grounding my thoughts, embracing imperfection, and ditching my phone for an hour—haven’t made me “fixed.” They’ve made me freer. They’re small steps, but they add up. Try one this week: maybe a grounding exercise when you’re stuck in your head, or letting a mistake slide without self-criticism. Share your story—what’s one thing you do to quiet your mind or reclaim your focus? Drop it in the comments or post your own note. Let’s learn from each other.
-
@ 2fb77d26:c47a6ee1
2025-05-14 05:57:34Europäischer Tunnelblick
In unseren Breiten sprach man schon seit jeher gerne davon, dass »Amerika den Europäern immer voraus« ist. Dass »der alte Kontinent« stets zehn Jahre im Hintertreffen ist. In der Finanzbranche attestierte man auch gerne mal einen Rückstand von »20 Jahren«. Bemängelt wurde im Rahmen solcher Analysen zumeist die mangelnde Innovationskraft europäischer Unternehmen, die gemäß einschlägiger Experten vor allem auf die Regulierungswut der hiesigen Bürokratie zurückzuführen ist. Langwierige Genehmigungsprozesse, kompliziertes Steuerrecht, zu kleine Kapitalmärkte und komplexe Datenschutzanforderungen schrecken Gründer und Investoren ab. »Bürokraten regulieren Europa zu Tode«, bringt es der Ökonom und Unternehmer Dirk Specht am 29. November 2024 auf den Punkt. Aus Sicht des Entrepreneurs eine durchaus nachvollziehbare Einordnung.
Denn selbst wenn die Hürden der Unternehmensgründung einmal überwunden sind, machen Bürokratiekosten selbst in kleinen Firmen knapp drei Prozent vom Umsatz aus. Im industriellen Mittelstand übersteigen sie nicht selten die jährliche Bruttoumsatzrendite von durchschnittlich fünfeinhalb Prozent. Von den arbeitsrechtlichen Rahmenbedingungen – siehe Kündigungsschutz, Urlaubsanspruch und Lohnfortzahlung im Krankheitsfall – gar nicht erst anzufangen. In puncto Flexibilität ist Europa für Unternehmer also tatsächlich nur bedingt attraktiv.
Ganz anders die USA. Deregulierung, Seed-Capital en Masse und ein Arbeitsrecht, das den Slogan »Hire and fire« weltberühmt machte – gemäß Tagesschau vom 11. Februar 2025 übrigens ein Modell, das dank Microsoft, Meta und SAP langsam auch in Deutschland Einzug hält. Diese unternehmerische Freiheit – oder Zügellosigkeit – machte Amerika zum Start-up-Inkubator. Zum Gründerparadies. Wall Street, Motorcity, Silicon Valley, Hollywood, et cetera. Ein Mekka für Investoren. Und ein Alptraum für Arbeitnehmer.
Alles richtig. Oberflächlich betrachtet. Dass bei dieser sehr kurzsichtigen Analyse stets außer Acht gelassen wird, welchen Anteil die beiden Weltkriege, angloamerikanische Finanzdynastien, halbseidene NGO-Netzwerke und vor allem über ein Dutzend Geheimdienste an Amerikas Wirtschaftswachstum der vergangenen 100 Jahre haben, trübt den Blick der europäischen Unternehmergarde allerdings nachhaltig. Denn er negiert den historischen Kontext. Vermutlich läuft Roger Köppels Editorial für DIE WELTWOCHE vom 01. Mai 2025 deshalb immer noch ungeniert unter dem Titel »Hoffnungsträger Trump«.
Ich habe täglich Kontakt mit Geschäftspartnern in den USA – und bei denen ist von Hoffnung nicht (mehr) viel zu spüren. Begriffe wie Planungsprobleme, Stornierung, Unsicherheit oder Lieferengpass fallen dagegen immer häufiger. Investor’s Business Daily nannte den Zustand vor wenigen Stunden »ein Erdbeben«, weil Trumps »Handelskrieg-Tsunami« nun auch die Häfen der Vereinigten Staaten erreicht hat. Die laufen langsam leer. Frachter und Tanker mit Importwaren löschen ihre Ladung nicht. Oder kommen gar nicht mehr an. Die auf Basis von Strafzöllen zu erwartenden Lieferengpässe »könnten die Folgen der Covid-Krise übertreffen«, konstatiert das Investment-Magazin.
Was also passiert gerade in den Vereinigten Staaten? Sollte Europa tatsächlich neidisch auf die vermeintlichen Wettbewerbsvorteile Amerikas sein – oder gar auf die aktuellen politischen Entwicklungen? Auf Effizienzsteigerung der Marke DOGE? Nein, keinesfalls. Denn zum einen sorgen die turbokapitalistischen Exzesse im »Land der unbegrenzten Möglichkeiten« dafür, dass Arbeitnehmer endgültig zu Lohnsklaven degradiert werden, die den Launen von Märkten und Unternehmen relativ schutzlos ausgeliefert sind. Zum anderen beruht der Erfolg amerikanischer Konzerne keineswegs auf deren Innovationskraft, einem laxen Arbeitsrecht oder genialem Unternehmertum, sondern primär auf tiefenstaatlichem Interventionismus. Das gilt seit dem Jahrtausendwechsel vor allem für die Tech-Branche. Denn die USA sind nicht einfach eine Wirtschaftsmacht, sondern der militärische Arm des angloamerikanischen Empire.
Das zeigen die »Glorreichen Sieben« – Google, Microsoft, Apple, Amazon, Alphabet, Meta, Tesla und Nvidia – die allesamt erst durch Startfinanzierung seitens Militär und Geheimdiensten wurden, was sie heute sind: Die Speerspitze des technokratischen Totalitarismus. Nachdem selbst The Economist am 10. Dezember 2024 feststellte, dass mit der Wiederwahl von Donald Trump nun »die PayPal-Mafia die US-Regierung übernimmt«, sollte man in unseren Bereiten also eventuell etwas kritischer begutachten, was die entsprechenden Konzerne dort treiben. Denn es ist angesichts von Agenda 2030, aktuellen EU-Programmen, EZB-Planungen und einer Kriegswirtschaft kolportierenden Bundesregierung unter BlackRock-Merz nicht davon auszugehen, dass es dieses Mal zehn oder zwanzig Jahre dauert, bis diese Entwicklungen auch bei uns ankommen.
Palantir & DOGE
Das bezieht sich insbesondere auf Elon Musks DOGE – das »Department of Government Efficiency« – eine neu geschaffene Behörde, die sich auf Effizienzsteigerung in Sachen Regierungsgeschäfte konzentrieren soll. Dies selbstredend unter flächendeckender Zuhilfenahme von KI (Künstlicher Intelligenz), die wiederum auf entsprechende Datenpools angewiesen ist. Um solche kurzfristig zur Verfügung zu stellen, durchforstet, hackt und kapert Musks DOGE-Team die IT-Abteilungen, Server und Netzwerke von Ministerien und Bundesbehörden. Vor allem auf Finanzdaten hat man es abgesehen. An geltendes Recht hält sich DOGE dabei nicht. Datenschützer sind alarmiert. Und Whistleblower werden von Musks Team bedroht. All das passiert in enger Zusammenarbeit mit Oracle, einem weiteren von der CIA startfinanzierten IT-Riesen – und natürlich Palantir, dem von Peter Thiel gegründeten Spionage- und Killerkonzern.
So berichtete Reuters am 6. Mai 2025 beispielsweise über ein neues Gemeinschaftsprojekt von Elon Musks xAI und Palantir, das die Nutzung der jeweiligen KI-Lösungen im Finanzsektor vorantreiben will – dies, nachdem xAI, BlackRock und Microsoft bereits im März ein neues Konsortium zur Erweiterung von KI-Infrastruktur ins Leben riefen. Im Department of Homeland Security (DHS) ist DOGE aktuell damit beschäftigt, das IDENT-System des »Office of Biometric Identity Management« (OBIM) zu übernehmen – die weltweit größte Datenbank für biometrische Informationen, die von praktisch allen US-Behörden aber auch internationalen Partnern genutzt wird. Zusammengeführt werden sollen die von DOGE gekaperten Daten in HART (Homeland Advanced Recognition Technology System), einem neuen, mit über sechs Milliarden US-Dollar budgetierten Überwachungssystem des DHS, das in Kollaboration mit Palantir-Programmen die flächendeckende Überwachung der Bevölkerung analog zu China ermöglichen wird.
Palantir wurde 2003 gegründet und arbeitet seither, das belegt eine 2013 geleakte Kundenliste, für mindestens 12 US-Regierungseinrichtungen: CIA, DHS, NSA, FBI, CDC, Special Operations Command, et cetera. Schon vor knapp zehn Jahren häuften sich Berichte – wie zum Beispiel von WIRED am 9. August 2017 – die belegten, dass Palantir die vermeintlich vertraulichen Daten, die zum Beispiel Polizisten in Los Angeles seit 2009 in Datenbanken des Konzerns erfassen, kopiert, verkauft und zweckentfremdet. Dass Palantir das rechtsextreme, zionistische Regime von Benjamin Netanjahu bei seinem Genozid in Gaza unterstützt, ist ebenfalls kein Geheimnis mehr. Die strategische Partnerschaft zwischen Thiels Tötungsmaschine und den IDF wurde nach Berichten von Bloomberg vom 12. Januar 2024 gar ausgeweitet. Gideon Levy bescheinigt seinem Land in einem Beitrag der Haaretz vom 19. Januar 2025, in Gaza den »ersten faschistischen Krieg« seiner Geschichte zu führen. Womit wir wieder bei Palantir und den Vereinigten Staaten wären.
Denn wie ich bereits in meinem Artikel über Thiel vom 22. September 2024 in Aussicht gestellt hatte, kommt dem gebürtigen Frankfurter eine ganz besondere Rolle in Trumps neuer Regierung zu. Vom »Paten« der PayPal-Mafia und Geheimdienst-Frontmann zum Palantir-Boss und Bilderberg-Leitungsmitglied – und nun einflussreichsten Mann hinter der US-Regierung. Ohne Peter Thiels finanzielle Unterstützung wäre JD Vance weder Geschäftsmann noch Senator in Ohio oder US-Vizepräsident geworden. So verwundert es kaum, dass Palantir bereits 100 Tage nach Donald Trumps Amtsantritt Zugriff auf sämtliche Steuer-, Gesundheits- und Bewegungsdaten der US-Bevölkerung hat und diese in einer Datenbank zusammenführt, um seine KI darauf anzusetzen. Selbst die Speicher von Smartwatches und Fitness-Armbändern werden angezapft. Kein Datensatz ist mehr tabu.
Wie diese Daten künftig verwendet werden – und zwar gegen alles und jeden – zeigt eine von Palantir entwickelte Software namens »ImmigrationOS«. Ein System, das der US-Regierung hilft, das Leben von Migranten zu durchleuchten und permanent zu überwachen. Inklusive biografischer, biometrischer und Geolokationsdaten. Die auf Basis dieser Daten entwickelten Empfehlungen nutzt das ICE (Immigration and Customs Enforcement), um Menschen in die an Massentierhaltung erinnernden Supermax-Gefängnisse von El Salvador abzuschieben. Für Deportationen ohne Beweise, Anhörung, Gerichtsverhandlung und Rechtsgrundlage. Eine in dieser Form fraglos verfassungsfeindliche Ausweitung des »Catch and Revoke« Programms, dem anstelle illegaler Einwanderer nun auch Doktoranden, Studenten oder unbescholtene Arbeitnehmer zum Opfer fallen – siehe der Fall Kilmar Abrego Garcia – vor allem solche, die den Völkermord in Gaza kritisieren.
Es dürfte derweil nur eine Frage der Zeit sein, bis das zugrundliegende, am 30. April 2025 verabschiedete »Antisemitismus-Gesetz« auf weitere unliebsame Personenkreise angewendet wird. Der Bundesstaat Alabama lässt sich bereits von der fragwürdigen Deportationspraxis Washingtons inspirieren und kündigte in Person des Republikaners Chris Sells am 1. Mai 2025 an, selbst ein Gesetz erlassen zu wollen, das die Abschiebung verurteilter Personen ins Ausland ermöglicht. Gemäß Sells wolle man mit dem Gesetzesvorschlag nur ein Zeichen setzen. Mit einer Verabschiedung rechne man nicht. Trump verkündete unterdes, neben Migranten künftig auch US-Bürger und Ureinwohner nach El Salvador verfrachten zu wollen. Verfassungsrechtlich ein absolutes Tabu. Bisher.
The Atlantic nennt diese Entwicklungen am 27. April 2025 ein »amerikanisches Panoptikum«. Zu Recht. Denn Palantirs zentralisierter Datenpool wird sich zum mächtigsten Unterdrückungsinstrument der Zivilisationsgeschichte auswachsen – und in nicht allzu ferner Zukunft auch gegen jene MAGA-Anhänger eingesetzt werden, die solch faschistoide Vorgänge derzeit noch bejubeln. Gegen das, was da auf uns zukommt, waren Corona-Tracking und 2G-Segregation geradezu harmlos.
Entsprechend hellhörig sollte es machen, dass die NATO Palantirs KI-Lösungen – genauer: die »Maven AI« – künftig für militärische Planungszwecke einsetzt, wie eine Presseerklärung des »Verteidigungsbündnisses« vom 14. April 2025 ausführt. Denn »Project Maven« ist auf ein Memorandum des US-Verteidigungsministeriums vom 26. April 2017 zurückzuführen und hatte zum Ziel, ein »funktionsübergreifendes Team für algorithmische Kriegsführung« zu schaffen. Unterstützt wurde das US-Militär dabei zunächst von Google. Also dem Unternehmen, das einst unter dem Motto »Don’t be evil« – Sei nicht böse! – angetreten war. Begleitet wurde Googles Engagement für Project Maven von einem massiven Aufruhr in der Belegschaft und Artikelüberschriften wie »Hey Google, wen soll die US-Regierung heute töten?«. Offene Briefe an Google-Chef Sundar Pichai forderten 2018, der IT-Konzern solle die Partnerschaft mit dem Pentagon unverzüglich beenden. Und das tat Google auch.
Project Maven lief natürlich trotzdem weiter. Wie Breaking Defense am 27. April 2022 ausführte, wurde das Vorhaben nach Googles Rückzug der NGA (National Geospatial Intelligence Agency) unterstellt und gemäß Informationen des Forbes Magazine fortan von Eric Schmidt (Google, Bilderberg), Peter Thiel und James Murdoch, dem jüngeren Sohn von Rupert Murdoch finanziert. Maven AI ist das KI-Flaggschiff des US-Militärs – und wird jetzt als Palantir-Produkt weltweit ausgerollt. Vorboten sind in Hessen, Bayern und Nordrhein-Westfalen bereits im Einsatz und dürften angesichts der Iden des Merz wohl bald bundesweit Verwendung finden. Es ist also keineswegs übertrieben, wenn der US-Journalist Derrick Broze am 24. April 2025 von der »Palantir World Order« spricht – einem überstaatlichen Herrschaftssystem, das zuvorderst aufgrund seiner auf zwielichtigen bis illegalen Akkumulationsprozessen basierenden Deutungs- und Interventionshoheit in puncto Big Data fußt. Getreu dem Palantir-Slogan: »Die Software ist das Waffensystem«. Selbst eine in der ARD-Mediathek abrufbare Doku des NDR über Palantir von 10. Juni 2024 läuft unter dem eindeutigen Titel »Eine Software, die töten kann«.
Ja, das Geschäft mit dem industriell-digitalisierten Auftragsmord boomt. Denn internationale Konflikte nehmen zu und die Observationsökonomie erlebt einen Quantensprung. Entsprechend profitabel fiel das erste Quartal 2025 für Thiels Unternehmen aus. Stolze 884 Millionen US-Dollar stellte man Kunden in Rechnung. Ein Wachstum von 39 Prozent gegenüber dem Vorjahr und 21,7 Millionen mehr als prognostiziert. Am 5. Mai 2025 gab die Palantir Aktie zwar um 15 Prozent nach – laut Analysten könnte die Aktie aber auch um 70 Prozent fallen und wäre immer noch die teuerste Marke unter Softwareanbietern in diesem Segment.
Das sollte zu denken geben. Denn die USA durchlaufen eine Metamorphose – weg von demokratischen Strukturen und hin zur »Algokratie«. Die PayPal-Mafia hat das Weiße Haus gekapert und demonstriert dem Wertewesten, was er im Zuge der vierten industriellen Revolution zu erwarten hat: Tech-Feudalismus, dessen Oligarchen sich aufgrund vermeintlicher Sachzwänge schamlos über Recht und Gesetz hinwegsetzen. Nicht von ungefähr hat Donald Trump in seinen ersten 100 Amtstagen bereits 141 »Exekutive Orders« unterzeichnet. Ohne dabei auch nur einmal das Repräsentantenhaus einzubeziehen oder demokratische Prozesse zu respektieren. In diesem Lichte betrachtet erscheint das Cover des TIME Magazine vom Juni 2018, auf dem »The Donald« als König abgebildet war – Titel: »King me« – heute zeitgemäßer denn je.
Dunkle Aufklärung
Und das ist kein Zufall. Wirft man nämlich einen Blick auf die philosophischen Konzepte, die Menschen wie Peter Thiel, JD Vance oder Elon Musk inspirieren, zeigt sich, dass die entsprechenden Pamphlete genau das fordern: Eine postmoderne Version von Monarchie. Einen CEO, der das Land führt wie einen Großkonzern. Mittels KI – und auf Basis des amerikanischen Arbeitsrechts natürlich. Vielsagend, dass Donald Trump am 19. April 2025 auf Twitter ankündigte, exakt das tun zu wollen:
»Das ist gesunder Menschenverstand und wird ermöglichen, dass die Bundesregierung endlich „wie ein Unternehmen geführt wird“.«
Dass Trump den letzten Teil des Satzes in Anführungszeichen setzt, impliziert, dass er jemanden zitiert. Von wem die Phrase stammt, lässt er allerdings offen. Der US-Präsident scheint jedenfalls den Ratschlägen seines Vize JD Vance zu folgen, der bereits am 17. September 2021 in einem Interview mit dem Jack Murphy Podcast sagte:
»Was Trump tun sollte, wenn ich ihm einen Ratschlag geben dürfte: Feuere jeden einzelnen Bürokraten der mittleren Leitungsebene, jeden Beamten in der Verwaltung, und ersetze ihn mit unseren Leuten. Und wenn man dich dafür verklagt, wenn dich die Gerichte aufhalten wollen – denn man wird dich dafür verklagen – stell dich vor das Land, so wie Andrew Jackson, und sag den Menschen, dass der oberste Entscheidungsträger sein Urteil bereits gefällt hat. Jetzt lasst es ihn auch umsetzen.«
Und so geschah es. Denn als der Oberste Gerichtshof der Vereinigten Staaten am 19. April 2025 entschied, dass die juristisch fragwürdigen Deportationen zu stoppen sind, schrieb Donald Trump auf Twitter:
»Ich wurde unter anderem gewählt, um schlechte Menschen aus den Vereinigten Staaten zu entfernen. Ich muss meine Arbeit tun dürfen.«
Damit stellt sich Trump offen gegen die höchste juristische Instanz des Landes und fordert, trotz eines geltenden Urteils weitermachen zu können. Für dieses Vorgehen sucht er Rückhalt in der Bevölkerung. Er will die Gerichte unter Druck zu setzen, um regieren zu können wie ein Monarch. So, wie es die Vordenker der »Neoreaktionären Bewegung« (NRx) – zumeist »Dunkle Aufklärung« genannt – vorschlagen. Bei dieser politischen Philosophie handelt es sich selbst laut Wikipedia um ein »antidemokratisches, antiegalitäres, reaktionäres und neofeudales Konzept«. Geprägt wurde es von einem etwas kauzig anmutenden Blogger namens Curtis Yarvin, der auf seiner Webseite »Unqualified Reservations« ab 2007 und unter dem Pseudonym Mencius Moldbug Texte über das Versagen der Demokratie und Theorien zu alternativen Herrschaftsformen publizierte.
Weiterentwickelt wurden diese Konzepte unter anderem von Nick Land, einem britischen Schriftsteller, der als Vater des »Akzelerationismus« gilt und mit einem Blog-Beitrag aus dem Jahr 2013 auch den Begriff »Dunkle Aufklärung« für Yarvins Theorien aufbrachte. In seinen späteren Texten redete der Brite einem »wissenschaftlichen Rassismus«, der Eugenik und dem von ihm geprägten Begriff »Hyperrassismus« das Wort. Bei der rechtsnationalistischen bis rechtsextremen Alt-Right-Bewegung stieß er damit auf offene Ohren. Die deutsche Publikation »nd – Journalismus von Links« findet diesen »Philosophen der digitalen Entgrenzung« in einem Beitrag vom 21. Mai 2023 aber trotzdem »interessant«. Dass Nick Land gerne Amphetamin konsumiert und eine Weile im Haus des 1947 verstorbenen Satanisten Aleister Crowley lebte, scheint nd-Autor Konstantin Jahn eher Bewunderung abzuringen. Seinem ehemaligen Arbeitgeber, The New Center for Research & Practice, allerdings nicht – der setzte Land am 29. März 2017 wegen rassistischer Umtriebe vor die Tür.
Von Curtis Yarvin war nach der Einstellung seines Blogs im Jahr 2016 unterdes nicht mehr viel zu hören. Bis jetzt. Denn anno 2025 schreibt plötzlich die Financial Times über »die Philosophie hinter Trumps Dunkler Aufklärung«. Ebenso die New York Times, die Yarvin im Januar 2025 zum großen Interview für eine Titelstory bat. Selbst der Bayrische Rundfunk schrieb am 23. März 2025 über den einst nur Insidern bekannten Blogger. Und natürlich Politico, wo am 30. Januar 2025 ein Artikel über Yarvin erschien. Aufmacher: »Curtis Yarvins Ideen waren Randerscheinungen. Jetzt verbreiten sie sich in Trumps Washington«. Im Zuge seines Textes beschreibt Autor Ian Ward, wie Yarvin nach Washington reiste, um auf Einladung des Trump-Teams an der pompösen Inaugurationsfeier teilzunehmen, wo er unter anderem mit dem ehemaligen Thiel-Angestellten JD Vance sprach, der die politischen Theorien von Yarvin mehrfach bei öffentlichen Auftritten lobte, zitierte und als wichtigen Einfluss auf sein Denken nannte. Im Gespräch mit Ward führte Yarvin aus, dass er Trump gegenüber zunächst skeptisch gewesen sei, weil er sich nicht sicher war, ob Trump den von ihm empfohlenen Regimewechsel überhaupt durchziehen könne.
Zwischenzeitlich habe sich jedoch Optimismus eingestellt, so Yarvin, denn man könne in Trumps Kabinett eine »neugewonnene Selbstsicherheit und Aggressivität« spüren. Kein Wunder, besteht es doch in weiten Teilen aus Protegés, Kollegen, Geschäftspartnern und Freunden von Peter Thiel – zu letzteren gehört nach Aussage von Thiel übrigens auch der neue Chef der NIH (National Institutes of Health), Jay Bhattacharya, der zuvor unter anderem bei der Hoover Institution sowie der RAND Corporation tätig war. Aufgabenbereich: Demographie und Ökonomie von Gesundheit und Altern mit Schwerpunkt auf Regierungsprogrammen und biomedizinischer Innovation.
Wer sich mit Thiel beschäftigt hat, wird kaum überrascht sein, dass der in Frankfurt geborene Milliardär Anhänger der »Dunklen Aufklärung« ist. Schon im Mai 2016 schrieb Curtis Yarvin eine E-Mail an einen Bekannten und erklärte: »Ich coache Thiel«. Der brauche aber deutlich weniger politische Orientierungshilfe als gedacht, so Yarvin. »Ich habe die Wahlen in seinem Haus angeschaut. Ich glaube, mein Hangover dauerte bis Dienstag. Er (Thiel) ist völlig aufgeklärt, geht aber sehr vorsichtig vor«, konstatiert Yarvin in seiner Mail. Zu diesem Zeitpunkt stand der dunkle Aufklärer auch in Kontakt mit dem technischen Redakteur von Breitbart News, dem seinerzeit wichtigsten Sprachrohr von Trumps ehemaligem Chefstrategen Steve Bannon, »dem Medien-Baron der Alt-Right-Bewegung«, der sich ebenfalls an Yarvins Konzepten orientierte, dessen Bücher öffentlich empfahl und maßgeblich dazu beitrug, dass Donald Trump die Wahl gegen Hillary »Body Count« Clinton gewann.
Nach Angaben von BuzzFeed News stand auch Peter Thiel 2016 in Kontakt mit besagtem Breitbart-Redakteur. In einem Podcast auftreten, wollte er allerdings nicht. »Lass uns einfach Kaffee holen und dann schauen, was wir machen«, antwortete der Palantir-Gründer im Mai auf eine Interview-Einladung von Breitbart. Und im Juni lud Thiel den Breitbart-Mitarbeiter zum Abendessen in sein Haus in den Hollywood Hills ein. Man darf davon ausgehen, dass es bei diesen Gesprächen um finanzielle Unterstützung von Breitbart News, beziehungsweise der Alt-Right-Bewegung ging. Sprich, um Stimmungsmache für Trump.
Im Wahlkampf 2024 war Thiel weniger zurückhaltend. JD Vance hatte seinen Gönner ja auch bereits im August 2024 via Forbes Magazine dazu aufgerufen, »die Seitenlinie zu verlassen und für Trump zu spenden«. Kurz darauf überwies der Exil-Deutsche mindestens 1,25 Millionen Dollar. Die Betonung liegt auf mindestens. Denn als JD Vance 2022 für den Senat kandidierte, spendete Thiel ganze 15 Millionen US-Dollar für dessen Kampagne. Für manch einen vorausschauenden Journalisten war deshalb schon im Sommer 2024 klar: »Donald Trump ist Peter Thiels erfolgreichstes Investment«.
»Letztes Jahr veröffentlichte der Journalist Max Chafkin eine Biografie über Thiel (…), in der er Yarvin als den politischen Philosophen (…) für ein Netzwerk bezeichnete, das man als Thiel-Verse kennt. Das Buch erklärt, wie Thiel sowohl Cruz als auch Josh Hawley auf ihrem Weg in den Senat half. Es endet mit einem düsteren Bild des Milliardärs, der versucht, seinen politischen Einfluss immer offener auszuweiten (…). Masters und Vance unterscheiden sich von Hawley und Cruz, schreibt Chafkin – erstere sind verlängerte Arme von Thiel«.
Das konnte man in der Vanity Fair am 20. April 2022 über Thiels Bemühungen lesen, sich politischen Einfluss für Trumps zweite Amtsperiode zu sichern. Unter der Überschrift »Im Inneren der Neuen Rechten – wo Peter Thiel seine größten Einsätze platziert« erklärt das Blatt: »Sie sind nicht MAGA. Sie sind nicht QAnon. Curtis Yarvin und die aufstrebende Rechte entwickeln eine andere Form konservativer Politik«.
So stellt sich an dieser Stelle unweigerlich die Frage: Was für eine Politik soll das sein? Warum verkünden Thiel-Weggefährten wie Elon Musk stolz, »nicht nur MAGA, sondern Dark MAGA« zu sein? Was fordern »Akzelerationismus« und »Dunkle Aufklärung«? Wie sieht der von Yarvin, Land, Thiel, Vance, Trump, Musk und Co. avisierte Soll-Zustand aus?
Auf den Punkt bringt das ein Akronym, das Curtis Yarvin seit 2012 benutzt: RAGE. Es steht für »Retire All Government Employees«, übersetzt also dafür, alle Regierungsmitarbeiter zu entlassen. Auch der von Thiel finanzierte Republikaner Blake Masters nutzte das Akronym schon öffentlich. Nur so könne man das amerikanische »Regime« stürzen. »Was wir brauchen«, so Yarvin, »ist ein nationaler CEO – oder das, was man einen Diktator nennt«. Die Amerikaner müssten ihre »Diktatoren-Phobie« überwinden, damit das Land »wie ein Start-up geführt werden kann«. Nach Ansicht von The Brooklyn Rail ist das mittlerweile der Fall. Denn am 30. Januar 2025 veröffentlichte das Medienportal einen Artikel, in dem Autor David Levi Strauss erklärt, die US-Bevölkerung akzeptiere nun endlich »die Idee, dass das Land von einem CEO und wie ein Konzern oder eine Diktatur geführt werden müsse, weil sie – wie Peter Thiel schon 2009 erklärte – nicht mehr daran glauben, dass Freiheit und Demokratie kompatibel sind«.
Ob Akzelerationismus, Neoreaktionäre Bewegung oder Dunkle Aufklärung, sie alle plädieren für eine Rückkehr zu traditionellen gesellschaftlichen Konstrukten und Regierungsformen, inklusive des absoluten Monarchismus. Dafür soll der Staat in eine private Aktiengesellschaft umgewandelt werden, in welcher dem Geschäftsführer absolute Macht zukommt. Gleichheit lehnen alle drei Strömungen als politisches Ziel ab. Stattdessen verfolgt man rationalistische oder utilaristische Konzepte sozialer Schichtung, die auf Erbmerkmalen oder Leistungsprinzipien beruhen – sprich, auf den Grundgedanken der Eugenik.
Diese neue Regierungsform, »Gov-Corp«, wie der britische Journalist Iain Davis das Modell in seinen betreffenden Artikeln und einem lesenswerten Zweiteiler betitelt, wird aufgrund der ihr zur Verfügung stehenden Technologie eine nie gekannte Machtfülle besitzen – eine Machtfülle, die sich aufgrund genau dieser Technologie mit Leichtigkeit als liberale Marktwirtschaft vermarkten lässt. Als rationales, effizientes und individuelle Freiheit suggerierendes Modell zur Steuerung von Staat, Wirtschaft und Gesellschaft. Obwohl man als Bürger – oder sagt man besser Kunde, Mitarbeiter oder Bilanzposition? – vertraglich verpflichtet wird, seine Rechte an die herrschende Konzernstruktur zu übertragen. Analog zu den Bewohnern von Peter Thiels »Start-up City« Próspera – die derzeit versucht, ihr Gastland Honduras mit einer erfolgsversprechenden Klage im Wert von 10,7 Milliarden US-Dollar in den Staatsbankrott zu treiben.
Universelle Menschenrechte sind im Gov-Corp-Modell jedenfalls nicht vorgesehen. Wenn neoreaktionäre Theoretiker wie Curtis Yarvin von »Exit« sprechen, also vom Verlassen demokratischer Strukturen, stellen sie gleichzeitig eine »Opt-in-Society« in Aussicht. Was vordergründig erst einmal gut klingt, soll man sich die Serviceangebote des Staates doch nach eigenen Bedürfnissen konfigurieren dürfen, entpuppt sich schnell als totalitäres wie inhumanes Konstrukt. Als Tech-Feudalismus. Denn für diejenigen, die in der »sozialen Schichtung« untere Ränge bekleiden, sich die Serviceangebote von Gov-Corp nicht leisten können oder den Chef kritisieren, wird es rasch ungemütlich. Siehe Supermax-Gefängnisse.
Dementsprechend zurückhaltend sollte man sein, wenn verheißungsvolle Begriffe wie Freedom Cities, Charter Cities, Start-up Cities oder »Network State« fallen. Denn gerade letzterer steht für nichts anderes als die finale Ausbaustufe von Gov-Corp. Für ein Netzwerk autonomer Städte, die jeweils von einem eigenen CEO mit absolutistischer Macht geführt werden. Sprich, für einen Zusammenschluss kleiner Königreiche – oder Niederlassungen – eines Konzerns namens Regierung. Das Konzept Netzwerk-Staat ist in dieser Form Balaji Srinivasan zuzuschreiben, dem ehemaligen CTO von Coinbase und Partner von Andreessen Horowitz. Sein im Juli 2022 veröffentlichtes Buch »The Network State« beschreibt auf fast 500 Seiten, wie »der Nachfolger des Nationalstaats« aussehen soll. Eine unausgegorene Spinnerei ist das Ganze also nicht mehr. Im Gegenteil. Srinivasan gründete extra einen Fond, um das Konzept Netzwerk-Staat voranzutreiben und wird dabei von diversen Tech-Milliardären unterstützt.
Vor diesem Hintergrund verwundert es nicht, dass Netscape-Gründer Marc Andreessen bereits Anfang Oktober 2013 prognostizierte, dass »es in den kommenden Jahren doppelt so viele, oder drei oder vier Mal so viele Länder geben wird«. Andreessens »Techno-Optimist Manifesto« vom 16. Oktober 2023 erwähnt zwar weder Yarvin noch Land oder Srinivasan, aber es outet den Verfasser als eingefleischten Akzelerationisten – und als Fan des Transhumanisten Ray Kurzweil.
Für Außenstehende mag Srinivasans Konzept abseitig anmuten. Aber es zog Kreise. Selbst die New York Times berichtete am 28. Oktober 2013 über eine Rede des bekennenden Staatsfeinds bei der Silicon Valley »Startup School«. Der entsprechende Artikel eröffnet mit dem Worten: »Silicon Valley aufgeschreckt von Sezessionsruf. Erst die Sklavenhalter im Süden, jetzt das. Versucht Silicon Valley, sich von Amerika abzuspalten?«. Während das Nachrichtenportal TechCrunch die »Dunkle Aufklärung« Ende 2013 noch als Bewegung von Nerds abtat, die eine Monarchie fordern, sprach man beim britischen Telegraph im Januar 2014 bereits von »anspruchsvollem Neo-Faschismus«.
Die Granden der Big-Tech-Branche wissen seit über einem Jahrzehnt, dass ihr digital-finanzieller Komplex die Welt beherrscht und sie mittels Disruption jede andere Industrie zum Handlanger degradiert haben. Dementsprechend selbstbewusst treten ihre Vordenker, Theoretiker und Philosophen auf. Nicht umsonst teilt auch Patri Friedman, Enkel des Nobelpreisträgers Milton Friedman, neoreaktionäre Positionen – auch wenn er sich 2009 mit Yarvin überwarf, seither »eine politisch korrektere dunkle Aufklärung« fordert und nun eigene Freedom Cities auf schwimmenden Plattformen in internationalen Gewässern schaffen will. Dafür gründete er 2019 Pronomos Capital, ein Unternehmen, das über 13 Millionen US-Dollar von Thiel, Srinivasan und Andreessen erhielt, Próspera finanziert und ähnliche Projekte in Afrika, Südostasien und Palau im Portfolio hat.
Die omnipräsente Konstante: Peter Thiel – der nicht nur in Firmen von Yarvin, Srinivasan oder Friedman investiert, sondern Donald Trump auch bei der Auswahl von Kabinettsmitgliedern beriet. So kam es, dass Thiels Kumpel Srinivasan sogar im Gespräch für den Chefposten der FDA (Food and Drug Administration) war. Eine hochrangige Position im Staatsapparat. Erstaunlich, erinnert man sich an dessen staatsfeindliche Rede bei der »Startup School«. Die Japan Times findet am 19. Juni 2024 passende Worte für diese Vorgänge:
»Es wird immer deutlicher: Führende Techno-Libertäre (…) sind nur insoweit gegen den Staat, als er sie nicht persönlich bereichert. Angesichts der Aussicht, dass die Regierung zu einem Großkunden wird, löst sich der einst prinzipielle Widerstand gegen die Staatsmacht auf. Dieser Wandel lässt sich auch bei Thiel selbst beobachten. 2009 erklärte er, dass die große Aufgabe für Libertäre darin bestehe, Politik in all ihren Formen zu entkommen. Doch 2016 engagierte sich Thiel voll und ganz für Parteipolitik und hielt eine Rede auf dem Parteitag der Republikaner. Inzwischen ist Palantir, das von ihm mitgegründete Datenanalyseunternehmen, zu einem Giganten herangewachsen und profitiert von riesigen Regierungsaufträgen. Fast die Hälfte seiner Einnahmen stammt mittlerweile aus öffentlichen Mitteln.«
Keine Frage: Peter Thiel ist Dreh- und Angelpunkt hinter der neuen US-Regierung. Der Pate der PayPal-Mafia ist der mächtigste Mann in Washington und Palantir die treibende Kraft hinter dem digitalen Panoptikum, das sich dort derzeit formiert. Und was Elon Musk als DOGE verkauft, erinnert im Kern an RAGE. Selbst das TIME Magazine stellt anhand der bislang 30.000 gefeuerten Regierungsmitarbeiter fest, dass die Vorgehensweise von Trump und Co. keineswegs Zufall ist, sondern exakt der Programmatik von Yarvins »Dunkler Aufklärung« folgt. Nur in unseren Breiten tut man sich immer noch schwer damit, das zu erkennen – oder einräumen zu wollen.
Dafür gibt es zwei Gründe. Erstens: Bis dato hat kein deutschsprachiger Journalist ausführlich über diese Zusammenhänge berichtet und den notwendigen Kontext hergestellt. Zweitens: Ist man vom herrschenden System enttäuscht und stößt bei der Suche nach Alternativen auf die Analysen von Yarvin oder Srinivasan, wirken diese wie Balsam in den Ohren, geht man als Kritiker des übermächtigen und -griffigen Staates doch in weiten Teilen mit deren Einordnung aktueller Probleme konform. Selbst die Lösungsvorschläge der dunklen Aufklärer wirken plausibel. Zumindest theoretisch. Mehr Autonomie, Dezentralität, Effizienz, Prosperität – und viel weniger Staat. Klingt attraktiv. Vor allem im Vergleich mit dem kollektivistischen Wohlfahrtspaternalismus der vergangenen Dekaden.
Die Rattenfänger aus dem Silicon Valley erzählen dem enttäuschten und von Politik angewiderten Demos, was er hören will. Im Bereich Neuro-Linguistisches Programmieren (NLP) nennt man das die Echo-Technik. Sie sorgt dafür, dass sich das Gegenüber wahr- und ernstgenommen fühlt. Dass es sich öffnet. Das funktioniert erstaunlich gut. Bis man sich anschaut, woher das Geld kommt und wohin die Daten fließen. Bis man erkennt, dass solch ein System, die Algokratie, für deutlich mehr Zentralisierung steht – für mehr Staat, für Datenzentren von Tech-Despoten und interoperable Blockchain-Plattformen von Finanzkartellen. Für einen digitalen Gulag und Gewalt gegen Andersdenkende. Für die Abschaffung universeller Menschenrechte.
Sicher. Man weiß nicht, ob die »Dunkle Aufklärung«, ob Akzelerationismus und ein Netzwerk-Staat mit CEO – oder »Diktator« – nicht vielleicht besser funktionieren als Demokratie. Manch einer denkt, man könne es ja mal versuchen. Das wollte auch der Anarcho-Kapitalist Jeff Berwick, alias The Dollar Vigilante. Im März 2025 reiste er nach Honduras, um sich Próspera anzuschauen und anschließend für das Freedom-City-Projekt zu werben. Doch ein paar Tage vor der mit der Stadtverwaltung abgestimmten Visite und Führung erhielt er eine E-Mail vom Rechtsanwalt des Unternehmens, der ihm zu seiner Überraschung mitteilte, er dürfe nun doch nicht anreisen – und hätte ab sofort generelles Zutrittsverbot für das Gelände der »Sonderentwicklungszone«. Wahrscheinlich fand die Presseabteilung von Próspera bei der vorbereitenden Überprüfung seiner Person heraus, dass Jeff Berwick von Technokratie, Zionismus, Krieg, Trump, Vance und auch der PayPal-Mafia nicht allzu viel hält. Er bezeichnet sich nämlich als »Verschwörungsrealist« – und war auf der Suche nach Freiheit. Die ist aber offenbar auch in Próspera Mangelware.
-
@ ff9ff7e4:a3ba734a
2025-05-14 05:32:22A 818p se destaca como uma das principais plataformas de entretenimento digital, oferecendo aos jogadores brasileiros uma experiência completa, segura e repleta de emoção. Com um portfólio variado de jogos, navegação intuitiva e suporte dedicado, a 818p tem conquistado um público fiel que busca diversão e praticidade na palma da mão.
Conheça a Plataforma 818p A proposta da 818p é clara: oferecer entretenimento online acessível, confiável e envolvente. Seu site é otimizado tanto para computadores quanto para dispositivos móveis, garantindo uma experiência fluida em qualquer lugar. Logo ao acessar a plataforma, o usuário é recebido com uma interface moderna e organizada, facilitando a navegação entre as seções, como promoções, jogos e suporte.
Outro diferencial importante é o compromisso com a segurança. A 818putiliza tecnologia de ponta para proteger os dados dos jogadores e garantir transações seguras, seja na hora de depositar ou sacar seus ganhos. Além disso, a plataforma segue padrões internacionais de jogo responsável, incentivando uma experiência saudável para todos os usuários.
Jogos para Todos os Estilos Na 818p, há jogos para todos os gostos. Seja você fã de jogos clássicos, competições de sorte ou desafios estratégicos, há sempre algo novo para descobrir.
Entre os destaques estão os jogos de cartas e mesa, muito populares entre os brasileiros. Neles, o jogador encontra versões modernas e interativas de títulos como pôquer, bacará e outros que combinam estratégia com sorte. Os jogos de roleta virtual também fazem sucesso, com gráficos realistas e diversas variações para manter a experiência sempre empolgante.
Outro ponto forte da 818p são os jogos de slots. Com centenas de opções, desde os mais tradicionais até os mais inovadores, os slots da plataforma oferecem gráficos impressionantes, trilhas sonoras imersivas e bônus que aumentam as chances de ganhar. É possível escolher entre temáticas variadas, como mitologia, aventura, filmes e fantasia.
Além disso, a 818p frequentemente atualiza seu catálogo, trazendo novos títulos desenvolvidos por provedores renomados do mercado internacional, garantindo qualidade e inovação constante.
A Experiência do Jogador A satisfação dos jogadores é uma prioridade na 818p. A plataforma oferece um ambiente acolhedor e interativo, com recursos que tornam a experiência ainda mais completa. O processo de cadastro é simples e rápido, permitindo que novos usuários comecem a jogar em poucos minutos.
O suporte ao cliente é outro ponto de destaque. Disponível em português e com atendimento eficiente, a equipe está sempre pronta para ajudar em qualquer dúvida ou problema, seja por chat ao vivo ou e-mail.
Promoções e bônus exclusivos também fazem parte da rotina da 818p. Os jogadores ativos são recompensados com giros grátis, créditos extras e outras vantagens que tornam a jornada ainda mais divertida e vantajosa.
Conclusão A 818p prova que é possível reunir diversão, variedade e segurança em um só lugar. Com uma plataforma moderna, uma seleção impressionante de jogos e um atendimento dedicado, ela se consolida como uma excelente escolha para quem busca entretenimento online de qualidade.
Se você procura uma nova maneira de se divertir e ainda ter a chance de ganhar recompensas, a 818p é a escolha certa. Cadastre-se, explore os jogos disponíveis e descubra por que tantos brasileiros já se tornaram fãs da plataforma!