-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbitcoin-links-ressourcen.html
More file actions
2324 lines (2023 loc) · 153 KB
/
Copy pathbitcoin-links-ressourcen.html
File metadata and controls
2324 lines (2023 loc) · 153 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
<link rel="shortcut icon" href="assets/images/kompl.-b-day-mode-14x-8-192x151.png" type="image/x-icon">
<meta name="description"
content="Eine umfangreiche Bitcoin Linksammlung. Blockchain News Blogs, Foren, Blockchainexplorer, Youtuber, Bitcoin Bücher etc..">
<title>Links</title>
<link rel="stylesheet" href="assets/font-awesome/css/font-awesome.css">
<link rel="stylesheet" href="assets/icon54-v3/style.css">
<link rel="stylesheet" href="assets/web/assets/mobirise-icons/mobirise-icons.css">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap-grid.min.css">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap-reboot.min.css">
<link rel="stylesheet" href="assets/tether/tether.min.css">
<link rel="stylesheet" href="assets/dropdown/css/style.css">
<link rel="stylesheet" href="assets/formstyler/jquery.formstyler.css">
<link rel="stylesheet" href="assets/formstyler/jquery.formstyler.theme.css">
<link rel="stylesheet" href="assets/datepicker/jquery.datetimepicker.min.css">
<link rel="stylesheet" href="assets/socicon/css/styles.css">
<link rel="stylesheet" href="assets/theme/css/style.css">
<link rel="stylesheet" href="assets/recaptcha.css">
<link rel="preload" as="style" href="assets/mobirise/css/mbr-additional.css">
<link rel="stylesheet" href="assets/mobirise/css/mbr-additional.css" type="text/css">
<script src="assets/web/assets/lazyload/lazyload.js"></script>
<meta name="keywords" content="Bitcoin, ressourcen, Blogs, Bitcoin price, Bitcoin Mining, Bitcoin programming, bitcoin beginner, bitcoin einstieg
">
<meta name="theme-color" content="#000000">
<link rel="manifest" href="manifest.json">
<script src="sw-connect.js"></script>
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="apple-touch-startup-image"
media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)"
href="assets/images/apple-launch-640x1136.png">
<link rel="apple-touch-startup-image"
media="(device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)"
href="assets/images/apple-launch-750x1334.png">
<link rel="apple-touch-startup-image"
media="(device-width: 414px) and (device-height: 736px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)"
href="assets/images/apple-launch-1242x2208.png">
<link rel="apple-touch-startup-image"
media="(device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)"
href="assets/images/apple-launch-1125x2436.png">
<link rel="apple-touch-startup-image"
media="(device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)"
href="assets/images/apple-launch-1536x2048.png">
<link rel="apple-touch-startup-image"
media="(device-width: 834px) and (device-height: 1112px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)"
href="assets/images/apple-launch-1668x2224.png">
<link rel="apple-touch-startup-image"
media="(device-width: 1024px) and (device-height: 1366px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)"
href="assets/images/apple-launch-2048x2732.png">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<meta name="apple-mobile-web-app-title" content="Bitcoin Uni">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
</head>
<body>
<section class="menu cid-s8oUVqphZy" once="menu" id="menu1-2n">
<nav
class="navbar navbar-expand beta-menu navbar-dropdown align-items-center navbar-fixed-top navbar-toggleable-sm">
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse"
data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<div class="hamburger">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</button>
<div class="menu-logo">
<div class="navbar-brand">
<span class="navbar-logo">
<a href="index.html">
<img src="assets/images/kompl.-b-day-mode-14x-8-192x151.png" alt="Bitcoin uni" title=""
style="height: 3.8rem;">
</a>
</span>
<span class="navbar-caption-wrap">
<p class="text-success display-4 fak fa-satoshisymbol-solidtilt"> <a style="color:#F1D600"
href="https://bitcoin-uni.de/satoshi-price-calculator.html" class="display-4"><strong
id="sato-price">
</strong><strong> / €</strong> </a></p>
<script src="app.js"> </script>
</span>
</div>
</div>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav nav-dropdown" data-app-modern-menu="true">
<li class="nav-item"><a class="nav-link link text-success display-4" href="index.html"
aria-expanded="false">Home<font face="mobirise-icons-bold"></font></a></li>
<li class="nav-item"><a class="nav-link link text-success text-primary display-4"
href="beratung.html" aria-expanded="false">Beratung<font face="mobirise-icons-bold"></font>
</a></li>
<li class="nav-item"><a class="nav-link link text-success display-4" href="content.html"
aria-expanded="false">Blog<font face="mobirise-icons-bold"></font></a></li>
<li class="nav-item dropdown"><a class="nav-link link dropdown-toggle text-success display-4"
href="#" aria-expanded="false" data-toggle="dropdown-submenu">Bitcoin kaufen<font
face="mobirise-icons-bold"></font></a>
<div class="dropdown-menu"><a class="dropdown-item text-success display-4"
href="five-ways-to-buy-bitcoin.html" aria-expanded="false">Einführung</a>
<div class="dropdown"><a class="dropdown-item dropdown-toggle text-success display-4"
href="#" aria-expanded="false" data-toggle="dropdown-submenu">Bitcoin Sparplan</a>
<div class="dropdown-menu dropdown-submenu"><a
class="dropdown-item text-success display-4"
href="relai-app-bitcoin-sparplar.html" aria-expanded="false">Relai DCA</a><a
class="dropdown-item text-success display-4"
href="lightning-dca-debit-card.html" aria-expanded="false">Lastbit LN
DCA<br></a></div>
</div><a class="dropdown-item text-success display-4"
href="decentralized-crypto-exchanges.html" aria-expanded="false">DEX - P2P</a><a
class="dropdown-item text-success display-4" href="bitcoin-exchange.html"
aria-expanded="false">Exchanges</a><a class="dropdown-item text-success display-4"
href="crypto-exchange-broker.html" aria-expanded="false">Broker</a><a
class="dropdown-item text-success display-4" href="buy-bitcoin-atm-exchange.html"
aria-expanded="false">ATM</a><a class="dropdown-item text-success display-4"
href="otc-crypto-trading.html" aria-expanded="false">OTC</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link link dropdown-toggle text-success display-4" href="content.html"
data-toggle="dropdown-submenu" aria-expanded="false"><span
class="icon54-v3-graduation-hat mbr-iconfont mbr-iconfont-btn"
style="font-size: 25px;"></span>Wissen</a>
<div class="dropdown-menu"><a class="dropdown-item text-success display-4" href="content.html"
aria-expanded="false">Beginne hier</a><a class="dropdown-item text-success display-4"
href="bitcoin-introduction.html" aria-expanded="false">Einführung</a><a
class="dropdown-item text-success display-4" href="defi-revolution.html"
aria-expanded="false">DeFi</a>
<div class="dropdown"><a class="dropdown-item dropdown-toggle text-success display-4"
href="#" data-toggle="dropdown-submenu" aria-expanded="false">Wallets</a>
<div class="dropdown-menu dropdown-submenu"><a
class="dropdown-item text-success display-4" href="wallet-seed-privatekey.html"
aria-expanded="false">Privatekeys &
Seeds</a> <a class="dropdown-item text-success display-4"
href="bitcoin-transactions.html" aria-expanded="false">Transaktionen</a><a
class="dropdown-item text-success display-4" href="multisignatur-wallet.html"
aria-expanded="false">Multisignatur-Scripte</a><a
class="dropdown-item text-success display-4"
href="best-software-wallet-apps.html" aria-expanded="false">Software
Wallets</a><a class="dropdown-item text-success display-4"
href="hardware-wallet-cold-storage.html" aria-expanded="false">Hardware Wallets
und Cold storage</a>
<div class="dropdown"><a
class="dropdown-item dropdown-toggle text-success display-4" href="#"
aria-expanded="false" data-toggle="dropdown-submenu">Vanity Adressen</a>
<div class="dropdown-menu dropdown-submenu"><a
class="dropdown-item text-success display-4"
href="custom-bitcoin-vanity-address.html"
aria-expanded="false">Einführung</a><a
class="dropdown-item text-success display-4"
href="https://vanity-address.bitcoin-uni.de/sites/vanity-address-guide.html"
aria-expanded="false">Guide</a><a
class="dropdown-item text-success display-4"
href="https://vanity-address.bitcoin-uni.de/sites/faq-vanity-address.html"
aria-expanded="false">FAQ</a></div>
</div><a class="dropdown-item text-success text-primary display-4"
href="wallet-glossar.html" aria-expanded="false">Glossar</a>
</div>
</div>
<a class="dropdown-item text-success display-4" href="blockchain-explorer.html"
aria-expanded="false">Blockchain Explorer</a>
<div class="dropdown"><a class="dropdown-item dropdown-toggle text-success display-4"
href="blockchain-consensus-algorithm.html" aria-expanded="false"
data-toggle="dropdown-submenu">Blockchain Algorithmen</a>
<div class="dropdown-menu dropdown-submenu"><a
class="dropdown-item text-success display-4"
href="blockchain-consensus-algorithm.html" aria-expanded="false">Konsensus A.
Einführung</a><a class="dropdown-item text-success text-primary display-4"
href="blockchain-trilemma.html" aria-expanded="false">Blockchain Trilemma</a><a
class="dropdown-item text-success display-4" href="proof-of-work-pow.html"
aria-expanded="false">Proof of Work</a><a
class="dropdown-item text-success display-4" href="proof-of-stake-pos.html"
aria-expanded="false">Proof of Stake</a><a
class="dropdown-item text-success display-4"
href="proof-of-activity-pow-pos.html" aria-expanded="false">Proof of
Activity</a><a class="dropdown-item text-success display-4"
href="proof-of-burn-consensus.html" aria-expanded="false">Proof of Burn</a><a
class="dropdown-item text-success display-4" href="proof-of-capacity.html"
aria-expanded="false">Proof of capacity</a><a
class="dropdown-item text-success display-4"
href="proof-of-elapsed-time-consensus.html" aria-expanded="false">Proof of
elapsed time</a></div>
</div>
<div class="dropdown"><a class="dropdown-item dropdown-toggle text-success display-4"
href="blockchain-consensus-algorithm.html" aria-expanded="false"
data-toggle="dropdown-submenu">Blockchain Technologien</a>
<div class="dropdown-menu dropdown-submenu"><a
class="dropdown-item text-success display-4"
href="blockain-technology-overview.html" aria-expanded="false">Blockchain
Technologien</a><a class="dropdown-item text-success display-4"
href="atomic-swaps-btc-exchange.html" aria-expanded="false">Atomic & LN
swaps<br></a><a class="dropdown-item text-success display-4"
href="decentrlized-applications-dapps.html" aria-expanded="false">dApps &
DAO</a><a class="dropdown-item text-success text-primary display-4"
href="btc-lightning-network.html" aria-expanded="false">Lightning Network</a><a
class="dropdown-item text-success display-4"
href="liquid-network-bitcoin-sidechain.html" aria-expanded="false">Liquid
Network</a><a class="dropdown-item text-success display-4"
href="smart-contract-blockchain.html" aria-expanded="false">Smart
Contracts<br></a><a class="dropdown-item text-success display-4"
href="segwit-segregated-witness.html" aria-expanded="false">Segregated
Witness</a><a class="dropdown-item text-success display-4"
href="blockchain-sidechains.html" aria-expanded="false">Sidechains</a><a
class="dropdown-item text-success display-4"
href="web-3-next-generation-internet.html" aria-expanded="false">Web 3.0</a>
</div>
</div>
<div class="dropdown"><a class="dropdown-item dropdown-toggle text-success display-4"
href="bitcoin-privacy.html#content5-6z" aria-expanded="false"
data-toggle="dropdown-submenu">Privatsphäre</a>
<div class="dropdown-menu dropdown-submenu">
<a class="dropdown-item text-success display-4" href="comming-soon.html"
aria-expanded="false">Transaktionsmixer</a>
<a class="dropdown-item text-success display-4"
href="schnorr-signatures-blockchain-privacy-protocol.html"
aria-expanded="false">Schnorr Signaturen<br></a><a
class="dropdown-item text-success text-primary display-4"
href="comming-soon.html" aria-expanded="false">Privacy Wallets<br></a>
</div>
</div>
<div class="dropdown"><a class="dropdown-item dropdown-toggle text-success display-4"
href="#" aria-expanded="false" data-toggle="dropdown-submenu">Nodes</a>
<div class="dropdown-menu dropdown-submenu"><a
class="dropdown-item text-success display-4"
href="https://bitcoin.org/en/download" aria-expanded="false"
target="_blank">Bitcoin Core</a><a class="dropdown-item text-success display-4"
href="https://btcpayserver.org/" aria-expanded="false"
target="_blank">BTCPayServer LN</a><a
class="dropdown-item text-success display-4"
href="https://github.com/rootzoll/raspiblitz" aria-expanded="false"
target="_blank">Raspiblitz LN </a><a
class="dropdown-item text-success display-4" href="https://fulmo.org/"
aria-expanded="false" target="_blank">Fulmo LN </a><a
class="dropdown-item text-success display-4"
href="https://samouraiwallet.com/dojo" aria-expanded="false"
target="_blank">Dojo</a></div>
</div>
</div>
</li>
<li class="nav-item dropdown"><a class="nav-link link dropdown-toggle text-success display-4"
href="#" aria-expanded="false" data-toggle="dropdown-submenu">Services<font
face="mobirise-icons-bold">
</font></a>
<div class="dropdown-menu"><a class="dropdown-item text-success display-4" href="beratung.html"
aria-expanded="false">Beratung & Coaching</a><a
class="dropdown-item text-success display-4" href="https://btcpayserver.bitcoin-uni.de/"
aria-expanded="false" target="_blank">BTCPayServer</a><a
class="dropdown-item text-success display-4"
href="https://vanity-address.bitcoin-uni.de/" aria-expanded="false"
target="_blank">Vanity Adressen
Generator</a></div>
</li>
<li class="nav-item dropdown"><a class="nav-link link dropdown-toggle text-success display-4"
href="#" aria-expanded="false" data-toggle="dropdown-submenu">Tools<font
face="mobirise-icons-bold">
</font></a>
<div class="dropdown-menu">
<a class="dropdown-item text-success text-primary display-4"
href="satoshi-price-calculator.html" aria-expanded="false">Satoshi Preis Rechner</a>
<div class="dropdown"><a class="dropdown-item dropdown-toggle text-success display-4"
href="#" aria-expanded="false" data-toggle="dropdown-submenu">Splitkey merging
tool</a>
<div class="dropdown-menu dropdown-submenu"><a
class="dropdown-item text-success display-4"
href="https://github.com/sashmaaan/VanityAddressMerger" aria-expanded="false"
target="_blank">Github Vollversion</a><a
class="dropdown-item text-success display-4"
href="https://bitcoin-uni.de/vanityAddressMerger/" aria-expanded="false"
target="_blank">Chrome PWA App</a><a
class="dropdown-item text-success display-4"
href="https://siasky.net/_ADKOyY3bx9RyMcQCahX7Jbw87Gn5sBG8eRrmX7wkMbkPA/"
aria-expanded="false" target="_blank">Web3.0 App</a><a
class="dropdown-item text-success display-4"
href="https://vanity-address.bitcoin-uni.de/keymerging" aria-expanded="false"
target="_blank">WebApp</a></div>
</div><a class="dropdown-item text-success text-primary display-4"
href="tx-size-calculator.html" aria-expanded="false">Transaction Size Calculator</a><a
class="dropdown-item text-success text-primary display-4"
href="extended-public-key-converter.html" aria-expanded="false">Public Key Converter</a>
</div>
</li>
<li class="nav-item dropdown"><a class="nav-link link dropdown-toggle text-success display-4"
href="#" aria-expanded="false" data-toggle="dropdown-submenu">Glossar<font
face="mobirise-icons-bold"></font></a>
<div class="dropdown-menu"><a class="dropdown-item text-success display-4"
href="bitcoin-blockchain-glossar.html" aria-expanded="false">Bitcoin technisches
Glossar</a><a class="dropdown-item text-success display-4" href="wallet-glossar.html"
aria-expanded="false">Wallet Glossar</a><a class="dropdown-item text-success display-4"
href="comming-soon.html" aria-expanded="false">Blockchain & DLT Glossar</a><a
class="dropdown-item text-success display-4" href="comming-soon.html"
aria-expanded="false">DeFi Glossar</a></div>
</li>
<li class="nav-item"><a class="nav-link link text-success display-4"
href="bitcoin-links-ressourcen.html" aria-expanded="false">Links<font
face="mobirise-icons-bold">
</font></a></li>
<li class="nav-item"><a class="nav-link link text-success display-4" href="about.html"
aria-expanded="false">About<font face="mobirise-icons-bold"></font></a></li>
<li class="nav-item"><a class="nav-link link text-success display-4" href="about.html"
aria-expanded="false">
<font face="mobirise-icons-bold"></font>
</a></li>
<li class="nav-item"><a class="nav-link link text-success display-4" href="about.html"
aria-expanded="false">
<font face="mobirise-icons-bold"></font>
</a></li>
<li class="nav-item"><a class="nav-link link text-success display-4" href="about.html"
aria-expanded="false">
<font face="mobirise-icons-bold"></font>
</a></li>
<li class="nav-item"><a class="nav-link link text-success display-4" href="about.html"
aria-expanded="false">
<font face="mobirise-icons-bold"></font>
</a></li>
</ul>
<div class="navbar-buttons mbr-section-btn"><a class="btn btn-sm btn-success display-4"
href="https://vanity-address.bitcoin-uni.de/" target="_blank"><span
class="fa fa-bitcoin mbr-iconfont mbr-iconfont-btn"></span>
Vanity Adresse</a></div>
</div>
</nav>
</section>
<section class="mbr-section content5 cid-s8oUVruvy3 mbr-parallax-background" id="content5-2o">
<div class="mbr-overlay" style="opacity: 0.7; background-color: rgb(35, 35, 35);">
</div>
<div class="container">
<div class="media-container-row">
<div class="title col-12 col-md-8">
<h2 class="align-center mbr-bold mbr-white pb-3 mbr-fonts-style display-1"><br><span
style="font-weight: normal;">Bitcoin Link Archiv</span></h2>
</div>
</div>
</div>
</section>
<section class="mbr-section content4 cid-spy5HgoknU" id="content4-hq">
<div class="container">
<div class="media-container-row">
<div class="title col-12 col-md-8">
<h2 class="align-center pb-3 mbr-fonts-style display-2">
Einstieg in die Bitcoin Welt</h2>
</div>
</div>
</div>
</section>
<section class="features10 cid-spy65oyU23" id="features10-hr">
<div class="container">
<div class="row justify-content-center">
<div class="card p-3 col-12 col-md-6 col-lg-3">
<div class="media mb-3">
</div>
<div class="card-box">
<p class="mbr-text mbr-fonts-style display-7"><strong>Was ist Bitcoin und wie funktioniert
es?</strong><a href="bitcoin-introduction.html" class="text-success"><br></a><a
href="bitcoin-introduction.html" class="text-success">Bitcoin Einführung</a><a
href="bitcoin-introduction.html" class="text-success"><br></a><a
href="https://aprycot.media/wp-content/uploads/2020/09/one-pager.pdf"
class="text-success" target="_blank">Der Bitcoin One-Pager</a><br><a
href="https://bitcoin-2go.de/was-ist-bitcoin/" class="text-success" target="_blank">Was
ist Bitcoin - Bitcoin2Go</a><a
href="https://aprycot.media/wp-content/uploads/2020/09/one-pager.pdf"
class="text-success" target="_blank"><br></a><a
href="https://aprycot.media/wp-content/uploads/2020/09/one-pager.pdf"
class="text-success"
target="_blank"><br></a><strong>Präsentationen:</strong><strong><br></strong><a
href="https://www.youtube.com/watch?v=LA9A1RyXv9s&list=PLPQwGV1aLnTvCuQXCZ3RBvdlCnqstTirl"
class="text-success" target="_blank">Andreas Antonopoulos - The Internet of Money
playlist - mit Untertitel</a><br><a
href="https://www.youtube.com/watch?v=LA9A1RyXv9s&list=PLPQwGV1aLnTvCuQXCZ3RBvdlCnqstTirl"
class="text-success" target="_blank"><br></a><strong>Häufige Fragen:</strong><a
href="https://aprycot.media/wp-content/uploads/2020/09/one-pager.pdf"
class="text-success" target="_blank"><br></a><a
href="https://en.bitcoin.it/wiki/Help:FAQ" class="text-success" target="_blank">FAQ -
Bitcoin Wiki</a><br><a
href="https://aprycot.media/wp-content/uploads/2020/09/one-pager.pdf"
class="text-success" target="_blank"><br></a><strong>Wallets:<br>Wie funktionieren
Wallets?</strong><br><a href="wallet-seed-privatekey.html" class="text-success">Bitcoin
Wallets private keys und Seeds</a><a href="wallet-seed-privatekey.html"
class="text-success"><br></a><a href="hardware-wallet-cold-storage.html"
class="text-success">Cold Storage & Hardware Wallets</a><br><a
href="wallet-glossar.html" class="text-success">Wallet Glossar
</a><br><br><strong>Welche Bitcoin Wallet Software?<br></strong><a
href="best-software-wallet-apps.html" class="text-success">Bitcoin Software
Wallets</a><a href="best-software-wallet-apps.html" class="text-success"><br></a><a
href="https://walletscrutiny.com/" class="text-success" target="_blank">Wallets
Sicherheit</a><br><br><strong>Bitcoin Kaufen:<br>Wann Bitcoin kaufen?</strong><br><a
href="https://alternative.me/crypto/fear-and-greed-index/" class="text-success"
target="_blank">Fear and Greed Index</a><br><a href="https://mayermultiple.info/"
class="text-success" target="_blank">Mayer Multiple Index</a><br><a
href="https://www.tradingview.com/symbols/BTCUSD/?exchange=BITFINEX"
class="text-success" target="_blank">Ältester Bitcoin Chart von Bitfinex auf
Tradingview</a><a href="https://mayermultiple.info/" class="text-success"
target="_blank"><br></a><a
href="https://www.blockchaincenter.net/bitcoin-rainbow-chart/" class="text-success"
target="_blank">Bitcoin Rainbow Chart</a><br><br><strong>Wie Bitcoin
kaufen? <br></strong><a href="five-ways-to-buy-bitcoin.html"
class="text-success">Bitcoin Kaufen Einführung</a><br>Bitcoin Sparplan <a
href="relai-app-bitcoin-sparplar.html" class="text-success">Relai </a>& <a
href="lightning-dca-debit-card.html" class="text-success">Lastbit </a><br><a
href="bitcoin-exchange.html" class="text-success">Zentralisierte Börsen</a><br><a
href="decentralized-crypto-exchanges.html" class="text-success">Dezentralisierte
Börsen</a><br><br><strong>Beginner Anleitungen:<br></strong><a
href="https://bitcoin.org/de/erste-schritte" class="text-success"
target="_blank">Bitcoin.org</a> - Loslegen mit Bitcoin<br><a
href="https://bitcoinblog.de/2014/04/23/die-bitcoin-infothek/" class="text-success"
target="_blank">BitcoinBlog - Die Bitcoin Infothek</a><br><a
href="https://www.blocktrainer.de/blocktrainer-1x1/" class="text-success"
target="_blank">Blocktrainer 1x1 </a><br><a href="https://bitcoinundco.com/de/lernen/"
class="text-success" target="_blank">Bitcoin 1x1 - Anita Posh</a><br><a
href="https://www.blocktrainer.de/blocktrainer-1x1/" class="text-success"
target="_blank"></a><a
href="https://www.blocktrainer.de/bitcoin-einstieg-leicht-gemacht/" class="text-success"
target="_blank">Bitcoin - Einstieg leicht gemacht</a><br><a
href="https://bitcoinready.de/bitcoin-starter-guide-fuer-einsteiger/"
class="text-success" target="_blank">Bitcoinready </a>- Bitcoin Starter G.<br><a
href="https://www.bitcoin-beginner.de/" class="text-success"
target="_blank">Bitcoin-Beginner</a><a href="https://www.bitcoin-beginner.de/"
class="text-success" target="_blank"><br></a><br><strong>Bücher zum
Einstieg:</strong><br><a href="https://learnbitcoin.link/" class="text-success"
target="_blank">(L)earn Bitcoin - become financially souryn</a><br>
<a href="https://aprycot.media/shop/der-bitcoin-standard/" class="text-success"
target="_blank">Der Bitcoin Standard</a><br>
<a href="https://bitcoinverstehen.info/" class="text-success" target="_blank">Bitcoin
verstehen – Bitcoin für Einsteiger</a><br><a
href="https://aprycot.media/shop/bitcoin-entdecken/" class="text-success"
target="_blank">Bitcoin Entdecken</a><br><a
href="https://aantonop.com/product/das-internet-des-geldes-bundle/" class="text-success"
target="_blank">Das Internet des Geldes</a><br><a href="https://www.bitcoin-buch.org/"
class="text-success" target="_blank">Bitcoin – Die verrückte Geschichte vom Aufstieg
eines neuen Geldes</a><br><a href="https://bitcoinundco.com/de/bitcoin-buch-anfaenger/"
class="text-success" target="_blank">BITCOIN & CO</a><br><a
href="https://aprycot.media/shop/21-lektionen/" class="text-success" target="_blank">21
Lektionen</a><br><a href="https://aprycot.media/shop/bitcoins-verwahren-und-vererben/"
class="text-success" target="_blank">Bitcoin Verwahren und Vererben</a><br>
</p>
</div>
</div>
<div class="card p-3 col-12 col-md-6 col-lg-3">
<div class="media mb-3">
</div>
<div class="card-box">
<p class="mbr-text mbr-fonts-style display-7"><strong>Warum Bitcoin schwierig zu verstehen ist:
</strong><a href="https://www.youtube.com/watch?v=VALBS9OHLGM" class="text-success"
target="_blank"><br></a><a href="https://www.youtube.com/watch?v=VALBS9OHLGM"
class="text-success" target="_blank">Warum Bitcoin so faszinierend ist</a><br><a
href="https://ichi.pro/de/warum-bitcoin-schwer-zu-verstehen-ist-250579696520947"
class="text-success" target="_blank">Warum Bitcoin so schwer zu verstehen
ist</a><br><br><a href="https://www.youtube.com/watch?v=OLYOfZZ2mXY"
class="text-success" target="_blank">Why Bitcoin is so fascinating and mind-blowing
</a><br><a href="https://blog.lopp.net/nobody-understands-bitcoin-and-thats-ok/"
class="text-success" target="_blank">Nobody Understands Bitcoin
</a><br><a href="https://jimmysong.medium.com/why-blockchain-is-hard-60416ea4c5c"
class="text-success" target="_blank">Why Blockchain is Hard </a><br><a
href="https://unchained-capital.com/blog/blockchain-spectrum/" class="text-success"
target="_blank">Why it's Hard to "Get" Bitcoin</a><br><br><strong>Warum Bitcoin wichtig
ist:
</strong><br><br><a href="https://bitcoinblog.de/2015/07/21/warum-bitcoin/"
class="text-success" target="_blank">Warum Bitcoin - BitcoinBlog</a><br><a
href="https://www.youtube.com/watch?v=Ai5z2T4WhWg" class="text-success"
target="_blank">Why Bitcoin Maters & Why You should Care</a><br><a
href="https://hackernoon.com/why-bitcoin-matters-c8bf733b9fad" class="text-success"
target="_blank">Why Bitcoin Matters (Aleksandar Svetski) </a>
<br><a href="https://dealbook.nytimes.com/2014/01/21/why-bitcoin-matters/"
class="text-success" target="_blank">Why Bitcoin Matters (Marc Andreesen)
</a><br><a href="https://jimmysong.medium.com/why-bitcoin-is-different-e17b813fd947"
class="text-success" target="_blank">Why Bitcoin is Different (Jimmy Song)</a><br><a
href="https://www.gwern.net/Bitcoin-is-Worse-is-Better" class="text-success"
target="_blank">Bitcoin is Worse is Better
</a><br><a
href="https://hackernoon.com/alex-gladstein-on-why-bitcoin-matters-for-freedom-63b31e79a40e"
class="text-success" target="_blank">Why Bitcoin Matters for
Freedom</a><br><strong><br>Ist Bitcoin eine Ökologische Katastrophe?</strong><br><a
href="https://netpositive.money/" class="text-success"
target="_blank">netpositive.money</a><br><a
href="https://bitcoinblog.de/tag/stromverbrauch/" class="text-success"
target="_blank">Artikel von BitcoinBlog über Bitcoins Stromverbrauch</a><br><a
href="https://www.watson.ch/wissen/wirtschaft/957154209-bitcoin-und-der-energieverbrauch-13-punkte-die-du-kennen-musst"
class="text-success" target="_blank">Bitcoin und der Energieverbrauch 13 Punkte die du
kennen musst!</a><br><a
href="https://aprycot.media/blog/das-letzte-wort-zu-bitcoins-energieverbrauch/"
class="text-success" target="_blank">Das Letzte Wort zu Bitcoins Energie
Verbrauch</a><br><a href="https://aprycot.media/blog/bitcoin-wird-unsere-erde-retten/"
class="text-success" target="_blank">Bitcoin wird unsere Erde Retten</a><br><a
href="https://www.blocktrainer.de/uebersetzungen/bitcoins-energieverbrauch/"
class="text-success" target="_blank">Bitcoins Energieverbrauch – Ein
Perspektivenwechsel</a><br><a
href="https://dergigi.com/2018/06/10/bitcoin-s-energy-consumption/" class="text-success"
target="_blank">Bitcoins Energy Consumption</a><strong><br></strong><a
href="https://digiconomist.net/bitcoin-energy-consumption" class="text-success"
target="_blank">Bitcoin Energie Verbrauch</a><br><a
href="https://bitcoinmagazine.com/business/introducing-cbei-a-new-way-to-measure-bitcoin-network-electrical-consumption"
class="text-success" target="_blank">Introducing Composite Bitcoin Energy Index
CBEI</a> <br><br><strong>Youtube Videos zum Thema Stromverbrauch:</strong><br><a
href="https://www.youtube.com/watch?v=6BLbEdiP5Io" class="text-success"
target="_blank">CO2 Bilanz Ausgleichen</a><br><a
href="https://www.youtube.com/watch?v=hhQZIZako-Y" class="text-success"
target="_blank">BITCOIN Energieverbrauch schlecht für die Umwelt?</a><br><a
href="https://www.youtube.com/watch?v=8G51nj9QRtM" class="text-success"
target="_blank">How much Energy, What Type of Energy - Is it justifiable?<br></a><br>
</p>
</div>
</div>
<div class="card p-3 col-12 col-md-6 col-lg-3">
<div class="media mb-3">
</div>
<div class="card-box">
<p class="mbr-text mbr-fonts-style display-7"><strong>Ist Bitcoin gerecht?</strong><a
href="https://magicfuturemoney.de/2021/03/28/podcast-7-ist-bitcoin-gerechteres-geld/"
class="text-success" target="_blank"><br></a><a
href="https://magicfuturemoney.de/2021/03/28/podcast-7-ist-bitcoin-gerechteres-geld/"
class="text-success" target="_blank">Ist Bitcoin gerechtes Geld? - Podcast von Magic
Future Money mit Anita Posch</a> <br><a
href="https://bitcoinundco.com/de/andreas-antonopoulos-bitcoin-zukunft-podcast/"
class="text-success" target="_blank">Andreas M. Antonopoulos über Bitcoin, Datenschutz,
Menschenrechte und die Zukunft von Bitcoin</a><br><a
href="https://bitcoinmagazine.com/culture/check-your-financial-privilege"
class="text-success" target="_blank">Check your financial privilege</a><br><a
href="https://reason.com/video/2021/02/05/bitcoin-is-protecting-human-rights-around-the-world/"
class="text-success" target="_blank">Bitcoin Is Protecting Human Rights Around the
World</a><br><br><strong>Whitepaper:<br></strong><a
href="https://bitcoin.org/files/bitcoin-paper/bitcoin_de.pdf"
class="text-success text-primary" target="_blank">Das Bitcoin Whitepaper von Satoshi
Nakamoto - deutsch</a><br><a
href="https://btc-explorer.bitcoin-uni.de/bitcoin-whitepaper"
class="text-success text-primary" target="_blank">The Bitcoin Whitepaper written by
Satoshi Nakamoto</a><br><a href="https://fermatslibrary.com/s/bitcoin"
class="text-success" target="_blank">The Bitcoin Whitepaper with annotations
</a><br><a href="https://www.youtube.com/watch?v=2u2x4T5HfsY" class="text-success"
target="_blank">The Bitcoin Whitepaper read out
loud</a><br><br><strong>Dokumentationsfilme</strong>
<br>
<a href="https://www.youtube.com/channel/UChRnh6JZ0e7LttVrtCBi6jA" class="text-success"
target="_blank">META: Bitcoin Documentaries </a>
<a href="https://www.youtube.com/watch?v=LJ7PrdBsDmg&list=PLz0E7q_viNYFftxYZVermxzo3rCB4otAp"
class="text-success" target="_blank"><br></a>Plott11 - <a
href="https://www.youtube.com/channel/UCdm8Kv2XnGh59HdyQe85Q-g" class="text-success"
target="_blank">deutsch </a>- <a
href="https://www.youtube.com/channel/UC316GY-U17BkwN8D7oKM0iw" class="text-success"
target="_blank">english </a>- <a
href="https://www.youtube.com/channel/UCkcpcQv9rKFqWRO5ocqKZPg" class="text-success"
target="_blank">spanish </a>- <a
href="https://www.youtube.com/channel/UCutaR1-JJy9Ko6MoYcJH9aA" class="text-success"
target="_blank">polish </a><br><a
href="https://www.youtube.com/watch?v=LJ7PrdBsDmg&list=PLz0E7q_viNYFftxYZVermxzo3rCB4otAp"
class="text-success" target="_blank">Bitcoin - Das Ende des Geldes?</a><br><a
href="https://www.youtube.com/watch?v=IAMGccSRzlQ&list=PLz0E7q_viNYFftxYZVermxzo3rCB4otAp&index=2"
class="text-success" target="_blank">Die Entstehung des Bitcoins</a><br><a
href="https://www.youtube.com/watch?v=_xjgOE5eTcs&list=PLz0E7q_viNYFftxYZVermxzo3rCB4otAp&index=3"
class="text-success" target="_blank">Digitaler Goldrausch</a><br><a
href="https://www.youtube.com/watch?v=yQGQXy0RIIo&t=3s" class="text-success"
target="_blank">I am Satoshi
</a><br><a href="https://www.youtube.com/watch?v=ByvbAi924TI" class="text-success"
target="_blank">Banking on Bitcoin
</a><br><a href="https://www.youtube.com/watch?v=qk4gZrBR9CU" class="text-success"
target="_blank">The Rise and Rise of Bitcoin
</a><br><a href="https://www.youtube.com/watch?v=BrRXP1tp6Kw" class="text-success"
target="_blank">Bitcoin in Uganda – Empowering People
</a><br><a href="https://www.youtube.com/watch?v=e__m-w4N7NI" class="text-success"
target="_blank">Bitcoins in Argentina
</a><br><a href="https://www.youtube.com/watch?v=6pWblf8COH4" class="text-success"
target="_blank">The Bitcoin Phenomenon </a><br><a
href="https://www.youtube.com/watch?v=yNjKP5JsGwI" class="text-success"
target="_blank">Colombia and the Cryptocurrency Revolution</a><br>
</p>
</div>
</div>
<div class="card p-3 col-12 col-md-6 col-lg-3">
<div class="media mb-3">
</div>
<div class="card-box">
<p class="mbr-text mbr-fonts-style display-7"><strong>Missverständnisse</strong><br><a
href="https://www.blocktrainer.de/wissen/bitcoin-missverstaendnisse/"
class="text-success" target="_blank">Die 6 häufigsten Bitcoin - Missverständnisse
</a><br><a href="https://bitcoinmythbusters.org/#/de/?id=bitcoin-kritiken-amp-antworten"
class="text-success" target="_blank">BitcoinMythBusters - Bitcoin Kritiken und
Antworten</a>
<br><a
href="https://ichi.pro/de/7-haufige-bedenken-und-missverstandnisse-in-bezug-auf-bitcoin-19025728135021"
class="text-success" target="_blank">7 Häufige Bedenken und Missverständnisse in Bezug
auf Bitcoin</a><br><a
href="https://netzpolitik.org/2018/acht-missverstaendnisse-ueber-blockchain/"
class="text-success" target="_blank">Acht Missverständnisse über Blockchain</a><br><a
href="https://www.youtube.com/watch?v=TssYUTvNRpE" class="text-success"
target="_blank">Sind Quantencomputer eine Gefahr für bitcoin?</a><a
href="https://www.youtube.com/watch?v=TssYUTvNRpE" class="text-primary"
target="_blank"><br></a><br><a href="https://endthefud.org/" class="text-success"
target="_blank">End the FUD - The best links to articles debunking Bitcoin
FUD</a><br><a
href="https://www.fidelitydigitalassets.com/articles/addressing-bitcoin-criticisms"
class="text-success" target="_blank">Addressing Bitcoin Criticisms
</a><br><a href="https://safehodl.github.io/failure/" class="text-success"
target="_blank">Every Reason Bitcoin Will Not Fail
</a><br><a
href="https://www.youtube.com/watch?v=8aLwhLNgrsM&list=PLADkFLG_TN5F_OPqrjTceXNm-q6UsttjZ"
class="text-success" target="_blank">Debunking every Bitcoin "Problem" Ever</a><br><a
href="https://casebitcoin.com/critiques" class="text-success" target="_blank">Rebuttals
to Common Critiques
</a><br><a href="https://unchained-capital.com/blog/bitcoin-cant-be-copied/"
class="text-success" target="_blank">Bitcoin Can't be Copied </a><br><a
href="https://unchained-capital.com/blog/bitcoin-cant-be-copied/" class="text-success"
target="_blank"></a><a href="https://bitcoinmythology.org/" class="text-success"
target="_blank">The square crypto Book of Bitcoin Mythology</a><br><a
href="https://danhedl.medium.com/bitcoins-distribution-was-fair-e2ef7bbbc892"
class="text-success" target="_blank">Bitcoin's Distribution Was Fair
</a><br><a href="https://www.lopp.net/pdf/Bitcoin-Intrinsic-Value.pdf" class="text-success"
target="_blank">Bitcoin Has Intrinsic Value
</a><br><a
href="https://www.swanbitcoin.com/why-bitcoin-is-not-a-ponzi-scheme-point-by-point/"
class="text-success" target="_blank">Bitcoin is Not a Ponzi Scheme </a><br>
<a href="https://www.youtube.com/watch?v=ff5G81W3Skg" class="text-success"
target="_blank">Bitcoin ist NOT a Tulip Bubble</a><br><a
href="https://unchained-capital.com/blog/bitcoin-is-not-too-slow/" class="text-success"
target="_blank">Bitcoin is Not Too Slow
</a><br><a href="https://www.youtube.com/watch?v=jP6UzbyYFrw" class="text-success"
target="_blank">Bitcoin is too risky and too volatile</a><br><a
href="https://cryptofundamental.com/bitcoin-as-a-productive-asset-121d8fed86fc"
class="text-success" target="_blank">Bitcoin is a Productive Asset
</a><br><a
href="https://medium.com/@nic__carter/how-to-scale-bitcoin-without-changing-a-thing-bc4750dd16c7"
class="text-success" target="_blank">Bitcoin is Scalable
</a><br><a href="https://unchained-capital.com/blog/21-million-is-non-negotiable/"
class="text-success" target="_blank">Bitcoin Supply Can't be Changed
</a><br><a href="https://blog.lopp.net/are-chinese-miners-threat-bitcoin/"
class="text-success" target="_blank">China Can't Control Bitcoin
</a><br><a href="https://quillette.com/2021/02/21/can-governments-stop-bitcoin/"
class="text-success" target="_blank">Governments Can't Kill Bitcoin
</a><br><a
href="https://www.coincenter.org/a-human-rights-activists-response-to-bitcoin-critics/"
class="text-success" target="_blank">A Human Rights Activist's Response to Critics
</a><br><a href="https://www.coindesk.com/the-last-word-on-bitcoins-energy-consumption"
class="text-success" target="_blank">The Last Word on Energy Consumption
</a><br><a
href="https://www.forbes.com/sites/rogerhuang/2020/12/21/heres-why-quantum-computing-will-not-break-cryptocurrencies/?sh=5b56cd23167b"
class="text-success" target="_blank">Quantum Computing Won't Break Bitcoin
</a><br><a href="https://danheld.substack.com/p/dont-fear-tether" class="text-success"
target="_blank">Tether Doesn't Control the Bitcoin Price</a><br><a
href="https://www.youtube.com/watch?v=xRPCmG6hx7g" class="text-success"
target="_blank">Quantum computing & Postquantumcryptographie</a><br><a
href="https://unchained-capital.com/blog/bitcoin-is-not-for-criminals/"
class="text-success text-primary" target="_blank">Bitcoin s Not for Criminals</a><br>
</p>
</div>
</div>
</div>
</div>
</section>
<section class="mbr-section content4 cid-sphNsnCuLt" id="content4-hf">
<div class="container">
<div class="media-container-row">
<div class="title col-12 col-md-8">
<h2 class="align-center pb-3 mbr-fonts-style display-2">Community</h2>
</div>
</div>
</div>
</section>
<section class="features10 cid-sx1z4x4ufH" id="features10-na">
<div class="container">
<div class="row justify-content-center">
<div class="card p-3 col-12 col-md-6 col-lg-3">
<div class="media mb-3">
</div>
<div class="card-box">
<p class="mbr-text mbr-fonts-style display-7"><strong>News & Blogs</strong><a
href="https://www.btc-echo.de/" class="text-primary" target="_blank"><br></a><a
href="https://www.btc-echo.de/" class="text-success" target="_blank">BTC-ECHO
</a><br><a href="https://bitcoinblog.de/" class="text-success" target="_blank">BitcoinBlog
</a><br><a href="https://cryptoticker.io/de/" class="text-success"
target="_blank">Cryptoticker
</a><br><a href="https://www.coinkurier.de/" class="text-success" target="_blank">Coinkurier
</a><a href="https://www.coinkurier.de/" class="text-primary" target="_blank"><br></a>
<a href="https://www.blocktrainer.de/" class="text-success"
target="_blank">Blocktrainer </a><br><a href="https://bitcoin-2go.de/"
class="text-success" target="_blank">Bitcoin2Go </a>
<br><a href="https://cryptomonday.de/" class="text-success" target="_blank">Cryptomonday
</a><br><a href="https://coincierge.de/" class="text-success"
target="_blank">Coincierge</a><br><a href="https://www.bitfantastic.com/"
class="text-success" target="_blank">Bitfantastic </a><a
href="https://coincierge.de/" class="text-primary" target="_blank"><br></a><a
href="https://bitcoinmagazine.com/" class="text-primary" target="_blank"><br></a><a
href="https://www.lopp.net/articles.html" class="text-success" target="_blank">Lopp.net
- Articles</a><br><a href="https://bitcoinmagazine.com/" class="text-success"
target="_blank">BitcoinMagazine</a><br><a href="https://www.btctimes.com/"
class="text-success" target="_blank">BTC Times</a><br><a href="https://beincrypto.com/"
class="text-success" target="_blank">BeInCrypto</a><br><a
href="https://coinjournal.net/" class="text-success"
target="_blank">Coinjournal</a><br><a href="https://www.coindesk.com/"
class="text-success" target="_blank">Coindesk</a><br><a
href="https://news.hodlhodl.com/" class="text-success" target="_blank">HodlHodl
News</a><br><br><strong>News Aggregator<br></strong><a href="https://messari.io/"
class="text-success" target="_blank">Messari </a><br><a
href="https://cryptopanic.com/" class="text-success"
target="_blank">CryptoPanic </a><br><br><strong>Newsletter</strong><br><a
href="https://bitcoinops.org/en/newsletters/" class="text-success"
target="_blank">Bitcoin Optech</a><a href="https://cryptopanic.com/"
class="text-primary" target="_blank"><br></a><br>
</p>
</div>
</div>
<div class="card p-3 col-12 col-md-6 col-lg-3">
<div class="media mb-3">
</div>
<div class="card-box">
<p class="mbr-text mbr-fonts-style display-7"><strong>Zertifikate</strong><a
href="https://www.blockchainakademie.de/" class="text-primary"
target="_blank"><br></a><a href="https://www.blockchainakademie.de/"
class="text-success" target="_blank">Blockchain Akademie</a> <br><a
href="https://cryptoconsortium.org/" class="text-success" target="_blank">Crypto
Consortium</a><br>
<strong><br></strong><br><strong>Consulting</strong><br><a
href="https://www.bitcoinerconsulting.com/" class="text-success"
target="_blank">Bitcoiner Consulting </a><br>
<strong><br></strong><br><strong>Community Tools</strong><br><a
href="https://www.blocktrainer.de/quiz/" class="text-success"
target="_blank">Blocktrainer Quiz </a><br><a
href="https://marcsteiner.tech/bitcoin-nachlass-tool" class="text-success"
target="_blank">Nachlass Tool</a><br><br>Vanity Adressen Generator<a
href="https://marcsteiner.tech/bitcoin-nachlass-tool" class="text-primary"
target="_blank" style=""><br></a>Command Line Software:<br><a
href="https://github.com/samr7/vanitygen" class="text-success"
target="_blank">Vanitygen</a><br><a href="https://github.com/JeanLucPons/VanitySearch"
class="text-success" target="_blank">VanitySearch</a><br>Services non-costodial:<br><a
href="https://nicewalletaddress.com/" class="text-success"
target="_blank">Nicewalletaddress</a><br><a href="http://vanity-address.bitcoin-uni.de/"
class="text-success" target="_blank">Bitcoin Uni Vanity Adressen</a>
</p>
</div>
</div>
<div class="card p-3 col-12 col-md-6 col-lg-3">
<div class="media mb-3">
</div>
<div class="card-box">
<p class="mbr-text mbr-fonts-style display-7"><strong>Foren</strong><a
href="https://bitcointalk.org/" class="text-primary" target="_blank"><br></a><a
href="https://bitcointalk.org/" class="text-success"
target="_blank">Bitcointalk</a><br><a href="https://coinforum.de/" class="text-success"
target="_blank">Coinforum </a>
<br><a href="https://forum.blocktrainer.de/" class="text-success"
target="_blank">Blocktrainer Forum
</a><br>
<br><a href="https://www.reddit.com/r/Bitcoin/" class="text-success" target="_blank">Bitcoin
Subreddit
</a><br><a href="https://www.reddit.com/r/BitcoinBeginners/" class="text-success"
target="_blank">Bitcoin Beginners Subreddit
</a><br><br><br><strong>Governance</strong><br><a
href="https://medium.com/@pierre_rochard/bitcoin-governance-37e86299470f"
class="text-success" target="_blank">Bitcoin Governance</a><br><a
href="https://blog.lopp.net/who-controls-bitcoin-core-/" class="text-primary"
target="_blank"></a><a href="https://blog.lopp.net/who-controls-bitcoin-core-/"
class="text-success" target="_blank">Who Controls Bitcoin Core</a><br><a
href="https://www.youtube.com/watch?v=_IMzSCSeM68" class="text-success"
target="_blank">Inverting Bureaucracy with Blockchain</a><br><a
href="https://medium.com/@The1Brand7/the-bitcoin-balance-of-power-poster-91271ab31b86"
class="text-success" target="_blank">The Bitcoin Balance of Power Poster</a><br><a
href="https://medium.com/@The1Brand7/the-bitcoin-balance-of-power-poster-91271ab31b86"
class="text-primary" target="_blank"></a><a
href="https://hackernoon.com/bitcoin-miners-beware-invalid-blocks-need-not-apply-51c293ee278b"
class="text-success" target="_blank">Invalid Blocks Need Not Apply</a><br><a
href="https://medium.com/@The1Brand7/the-bitcoin-balance-of-power-poster-91271ab31b86"
class="text-primary" target="_blank"></a><a
href="https://uncommoncore.co/unpacking-bitcoins-social-contract/" class="text-success"
target="_blank">Unpacking Bitcoin’s Social Contract
</a><br><br>
</p>
</div>
</div>
<div class="card p-3 col-12 col-md-6 col-lg-3">
<div class="media mb-3">
</div>
<div class="card-box">
<p class="mbr-text mbr-fonts-style display-7"><strong>Podcasts</strong><a
href="https://konsens-nonsens.de/" class="text-primary" target="_blank"><br></a><a
href="https://konsens-nonsens.de/" class="text-success" target="_blank">Konsens &
Nonsens
</a><br><a href="https://einundzwanzig.space/" class="text-success"
target="_blank">Einundzwanzig</a><br><a href="https://bitcoinverstehen.info/"
class="text-success" target="_blank">Bitcoin Verstehen Podcast </a>
<br><a href="https://bitcoinundco.com/de/podcast/" class="text-success"
target="_blank">Anita Posh
</a><br><a href="https://coinspondent.de/" class="text-success"
target="_blank">Honigdachs</a><br><a href="https://magicfuturemoney.de/podcast/"
class="text-success" target="_blank">Magic future Money</a><br>
<a href="https://orangerelationship.podigee.io/" class="text-success" target="_blank">Orange
Relationship</a><br>
<br>
<a href="https://www.satosheshow.com/" class="text-success" target="_blank">SatoSHE - Female
Bitcoin Podcast </a>
<br><a
href="https://www.youtube.com/watch?v=4Rb4LkLEse8&list=PLPQwGV1aLnTsI-bj-w_jQQ0k-XPXNdIXd"
class="text-success" target="_blank">Andreas Antonopoulos</a> - Youtube<br><a
href="https://aantonop.com/unscrypted/" class="text-success" target="_blank">Andreas
Antonopoulos Unscrypt</a><br><a href="https://www.buzzsprout.com/1263314"
class="text-success" target="_blank">Orange Pill</a><br><a
href="https://www.whatbitcoindid.com/" class="text-success"
target="_blank">Whatbitcoindid</a><br><a
href="https://www.lopp.net/bitcoin-information/podcasts.html" class="text-success"
target="_blank">Lopp.net podcasts list</a>
<br><a href="https://uncommoncore.co/" class="text-success" target="_blank">uncommoncore</a>
<br><a href="https://www.youtube.com/channel/UCB6Q0S1gUHXMe5-Jjx0_laQ" class="text-success"
target="_blank">Simply Bitcoin</a>
<br><br>
<strong>Youtube:</strong><br>Education:<br><a
href="https://www.youtube.com/channel/UCG6KtMc5WYB-ppxwpaX5CFw" class="text-success"
target="_blank">Blocktrainer</a><br>
<a href="https://www.youtube.com/c/aantonop/playlists" class="text-success"
target="_blank">Andreas Atonopoulos</a>
<br>
<br>Tutorials:<br><a href="https://www.youtube.com/channel/UCxSRxq14XIoMbFDEjMOPU5Q"
class="text-success" target="_blank">Einundzwanzig
</a><br>
<a href="https://www.youtube.com/channel/UCJy9qJLskSRq3d-UCCCyxIg" class="text-success"
target="_blank">TrustBTC
</a><br>
<br>News:<br><a href="https://www.youtube.com/channel/UCfKWBMhbxrwjTuzW1MDf5Og"
class="text-success" target="_blank">Bitcoin2Go
</a><br>
</p>
</div>
</div>
</div>
</div>
</section>
<section class="mbr-section content4 cid-sx5q71zB4u" id="content4-p1">
<div class="container">
<div class="media-container-row">
<div class="title col-12 col-md-8">
<h2 class="align-center pb-3 mbr-fonts-style display-2">
Bitcoin Preis</h2>
</div>
</div>
</div>
</section>
<section class="features10 cid-sx5qgXLawB" id="features10-p2">
<div class="container">
<div class="row justify-content-center">
<div class="card p-3 col-12 col-md-6 col-lg-4">
<div class="media mb-3">
</div>
<div class="card-box">
<p class="mbr-text mbr-fonts-style display-7"><strong>Kryptowährungen und Token
Ranking</strong><br><a href="https://xsats.net/SAT/USD/" class="text-success"
target="_blank">Satoshi-USD converter</a><br>
<a href="https://bitcoin-uni.de/satoshi-price-calculator.html" class="text-success"
target="_blank">Satoshi-EUR/Euro Rechner</a><br>
</p>
<p><a href="https://coincap.io/" class="text-primary" target="_blank"></a><a
href="https://www.blockchaincenter.net/" class="text-success"
target="_blank">Blockchaincenter
</a><br><a href="https://coinmarketcap.com/" class="text-success"
target="_blank">Coinmarketcap </a>
<br><a href="https://www.coingecko.com/de" class="text-success" target="_blank">Coingecko
</a>
<br><a href="https://www.cryptocompare.com/" class="text-success"
target="_blank">Cryptocompare </a>
<br><a href="https://coinranking.com/de" class="text-success" target="_blank">Coinranking
</a>
<br><a href="https://coincap.io/" class="text-success" target="_blank">Coincap</a><br><a
href="https://messari.io/" class="text-success" target="_blank">Messari</a><br><a
href="https://onchainfx.com/" class="text-success" target="_blank">Onchain FX</a><a
href="https://messari.io/" class="text-primary" target="_blank"><br></a>
</p>
</div>
</div>
<div class="card p-3 col-12 col-md-6 col-lg-4">
<div class="media mb-3">
</div>
<div class="card-box">
<p class="mbr-text mbr-fonts-style display-7"><strong>Indikatoren</strong><br><a
href="https://bitcoinition.com/" class="text-success"
target="_blank">Bitcoinintion</a><br><a
href="https://alternative.me/crypto/fear-and-greed-index/" class="text-success"
target="_blank">Fear & Greed Index</a><br><a href="https://mayermultiple.info/"
class="text-success" target="_blank">Meyer Multiple Index</a><br><a
href="https://bitcoindominance.com/" class="text-success" target="_blank">Bitcoin
Dominanz</a><br><a
href="https://trends.google.com/trends/explore?date=today%205-y&q=bitcoin"
class="text-success" target="_blank">Google Trends Bitcoin</a></p>
</div>
</div>
<div class="card p-3 col-12 col-md-6 col-lg-4">
<div class="media mb-3">
</div>