Skip to content

Commit 54290a2

Browse files
committed
wip
1 parent 4d48193 commit 54290a2

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

nix/vibe.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
wget
1616
git
1717
alacritty
18+
python3Minimal
1819
tmux
1920
nix
2021
];

pub/functora-hakyll/bip39/24th-word-calculator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def __init__(self, language):
1010

1111
counter = 0
1212

13-
with open('%s/%s.txt' % (self._get_directory(), language), 'r') as file:
13+
with open('%s.txt' % (self._get_directory(), language), 'r') as file:
1414
for w in file.readlines():
1515
word = w.strip() if sys.version < '3' else w.strip()
1616
self.worddict[word] = counter

pub/functora-hakyll/blog/2025-09-16-secure-bitcoin-seed.markdown renamed to pub/functora-hakyll/blog/2025-09-16-bitcoin-seed-security.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Secure Bitcoin Seed
2+
title: Bitcoin Seed Security
33
---
44

55
Practicing financial sovereignty and Bitcoin self-custody comes with a surprising number of non-trivial challenges, but they can only catch you off guard if you are unaware of them or do not know how to counter them in advance. In this series of articles and tutorials, I will teach you how to use Bitcoin securely. There are many aspects to cover: technical, social, geopolitical, and economic. We will start with the basics and work through each area step by step. The first step is to create and back up a strong, high-entropy, and secure BIP39 Bitcoin seed. A good seed is the foundation of your financial sovereignty. If you do not generate it correctly, doing anything else with Bitcoin does not make much sense. Here is the main principle that applies to everything we will cover in these tutorials:

0 commit comments

Comments
 (0)