-
Notifications
You must be signed in to change notification settings - Fork 0
/
feed.xml
2358 lines (2358 loc) · 222 KB
/
feed.xml
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
<?xml version="1.0" encoding="UTF-8"?><rss xmlns:podcast="https://github.com/Podcastindex-org/podcast-namespace/blob/main/docs/1.0.md" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:anchor="https://anchor.fm/xmlns">
<channel>
<podcast:value type="lightning" method="keysend" suggested="0.00000005000">
<podcast:valueRecipient name="John" type="node" address="02a9cd2bca29dd7e29bdfdf485a8e78b8ccf9327517afa03a59be8f62a58792e1b" split="21"/>
<podcast:valueRecipient name="Gigi" type="node" address="02e12fea95f576a680ec1938b7ed98ef0855eadeced493566877d404e404bfbf52" split="21"/>
<podcast:valueRecipient name="Badders" type="node" address="021ce28b653fcb00d6e2e0aee00dba8cb1e20be90415bec44037f908cd869d9f88" split="21"/>
<podcast:valueRecipient name="Human Rights Foundation" type="node" address="03bbc38579cf51c6a098d1459371e1c99f26ddf330a76e683b7d485999a9ce48c7" split="21"/>
<podcast:valueRecipient name="Lightning Podcast Charity Fund" type="node" address="033868c219bdb51a33560d854d500fe7d3898a1ad9e05dd89d0007e11313588500" customKey="112111100" customValue="wal_SV5Uf4N3n5Xsc4" split="21"/>
<podcast:valueRecipient name="Fountain Onboarding Fund" type="node" address="033868c219bdb51a33560d854d500fe7d3898a1ad9e05dd89d0007e11313588500" customKey="696969" customValue="wal_iPePcPFHmFx0KX" split="21"/>
</podcast:value>
<title><![CDATA[Closing the Loop]]></title>
<description><![CDATA[Closing the Loop is a podcast about Bitcoin. In it, we will be speaking with the entrepreneurs, developers, and thinkers who are contributing to the evolution of this revolutionary technology. The podcast will also be an ongoing experiment of sorts, leveraging the latest developments in the broader ecosystem, highlighting and implementing solutions that foster censorship-resistant communication and new content monetization models. Join us in discovering the many possibilities that Bitcoin brings!]]></description>
<link>https://www.seetee.io/</link>
<image>
<url>https://d3t3ozftmdmh3i.cloudfront.net/production/podcast_uploaded_nologo/16332652/16332652-1642434271703-f674311733ede.jpg</url>
<title>Closing the Loop</title>
<link>https://www.seetee.io/</link>
</image>
<generator>Anchor Podcasts</generator>
<lastBuildDate>Mon, 17 Jan 2022 19:13:47 GMT</lastBuildDate>
<atom:link href="https://anchor.fm/s/61f23cb0/podcast/rss" rel="self" type="application/rss+xml"/>
<author><![CDATA[John Vallis]]></author>
<copyright><![CDATA[John Vallis]]></copyright>
<language><![CDATA[en]]></language>
<atom:link rel="hub" href="https://pubsubhubbub.appspot.com/"/>
<itunes:author>John Vallis</itunes:author>
<itunes:summary>Closing the Loop is a podcast about Bitcoin. In it, we will be speaking with the entrepreneurs, developers, and thinkers who are contributing to the evolution of this revolutionary technology. The podcast will also be an ongoing experiment of sorts, leveraging the latest developments in the broader ecosystem, highlighting and implementing solutions that foster censorship-resistant communication and new content monetization models. Join us in discovering the many possibilities that Bitcoin brings!</itunes:summary>
<itunes:type>episodic</itunes:type>
<itunes:owner>
<itunes:name>John Vallis</itunes:name>
<itunes:email>podcasts60+61f23cb0@anchor.fm</itunes:email>
</itunes:owner>
<itunes:explicit>No</itunes:explicit>
<itunes:category text="Technology"/>
<itunes:image href="https://d3t3ozftmdmh3i.cloudfront.net/production/podcast_uploaded_nologo/16332652/16332652-1642434271703-f674311733ede.jpg"/>
<item>
<title><![CDATA[#36 - Francis Pouliot: Bitcoin is a Life Raft]]></title>
<podcast:value type="lightning" method="keysend" suggested="0.00000005000">
<podcast:valueRecipient name="John (Host)" type="node" address="02a9cd2bca29dd7e29bdfdf485a8e78b8ccf9327517afa03a59be8f62a58792e1b" split="10"/>
<podcast:valueRecipient name="Bitcoin Jungle (Donations)" type="node" address="03797da684da0b6de8a813f9d7ebb0412c5d7504619b3fa5255861b991a7f86960" split="90"/>
</podcast:value>
<description><![CDATA[<p>For our final episode of season three, we were excited to have <a href="https://twitter.com/francispouliot_" target="_blank">Francis Pouliot</a> join us for a discussion.</p>
<p>Francis is the founder and CEO of <a href="https://www.bullbitcoin.com/" target="_blank">Bull Bitcoin</a>, a popular <a href="https://dergigi.com/2022/06/27/the-words-we-use-in-bitcoin/" target="_blank">'non-custodial'</a> bitcoin exchange and payment service in Canada. He has been heavily involved in the bitcoin industry since 2013, helping people understand and use bitcoin from the earliest days of Montreal's Bitcoin Embassy to Costa Rica's <a href="https://www.bitcoinjungle.app/" target="_blank">Bitcoin Jungle</a> today.</p>
<p>In that time, he has accrued a wealth of knowledge and experience, which in addition to his uniquely principled approach to things, has made him a popular and respected voice in the bitcoin space.</p>
<p>Personally, I've always appreciated his reverence for the truth, his dedication to doing what he believes to be right, and the ideas, arguments, and products which have emerged from that approach. Including his company Bull Bitcoin, which, full disclosure, I'm a happy customer of.</p>
<p>Enjoy!</p>
<p>---</p>
<p>Follow Francis and Bull:</p>
<ul>
<li>Twitter (Francis): <a href="https://twitter.com/francispouliot_" target="_blank">@francispouliot_</a></li>
<li>Twitter (Bull Bitcoin): <a href="https://twitter.com/BullBitcoin_" target="_blank">@BullBitcoin_</a></li>
<li>Website: <a href="https://www.bullbitcoin.com/" target="_blank">bullbitcoin.com</a></li>
</ul>
<p>Follow John & Seetee:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/johnkvallis" target="_blank">@johnkvallis</a> & <a href="https://twitter.com/Seetee_io" target="_blank">@Seetee_io</a></li>
<li>Website: <a href="https://www.seetee.io/" target="_blank">seetee.io</a></li>
</ul>
<p>Use Podcasting 2.0:</p>
<ul>
<li><a href="https://breez.technology/" target="_blank">Breez.Technology</a></li>
<li><a href="https://www.fountain.fm/" target="_blank">Fountain.FM</a></li>
<li><a href="http://newpodcastingapps.com/" target="_blank">NewPodcastingApps.com</a></li>
<li><a href="https://value4value.info/" target="_blank">Value4Value.info</a></li>
</ul>
]]></description>
<link>https://anchor.fm/closingtheloop/episodes/36---Francis-Pouliot-Bitcoin-is-a-Life-Raft-e1tv2h7</link>
<guid isPermaLink="false">ea1696af-4996-42a2-a2a9-17107467e7a7</guid>
<dc:creator><![CDATA[John Vallis]]></dc:creator>
<pubDate>Wed, 25 Jan 2023 09:33:09 GMT</pubDate>
<enclosure url="https://anchor.fm/s/61f23cb0/podcast/play/63981543/https%3A%2F%2Fd3ctxlq1ktw2nl.cloudfront.net%2Fstaging%2F2023-0-24%2F002e4ff5-2bb8-61c2-e4e7-0778e02192d1.mp3" length="227393539" type="audio/mpeg"/>
<itunes:summary><p>For our final episode of season three, we were excited to have <a href="https://twitter.com/francispouliot_" target="_blank">Francis Pouliot</a> join us for a discussion.</p>
<p>Francis is the founder and CEO of <a href="https://www.bullbitcoin.com/" target="_blank">Bull Bitcoin</a>, a popular <a href="https://dergigi.com/2022/06/27/the-words-we-use-in-bitcoin/" target="_blank">'non-custodial'</a> bitcoin exchange and payment service in Canada. He has been heavily involved in the bitcoin industry since 2013, helping people understand and use bitcoin from the earliest days of Montreal's Bitcoin Embassy to Costa Rica's <a href="https://www.bitcoinjungle.app/" target="_blank">Bitcoin Jungle</a> today.</p>
<p>In that time, he has accrued a wealth of knowledge and experience, which in addition to his uniquely principled approach to things, has made him a popular and respected voice in the bitcoin space.</p>
<p>Personally, I've always appreciated his reverence for the truth, his dedication to doing what he believes to be right, and the ideas, arguments, and products which have emerged from that approach. Including his company Bull Bitcoin, which, full disclosure, I'm a happy customer of.</p>
<p>Enjoy!</p>
<p>---</p>
<p>Follow Francis and Bull:</p>
<ul>
<li>Twitter (Francis): <a href="https://twitter.com/francispouliot_" target="_blank">@francispouliot_</a></li>
<li>Twitter (Bull Bitcoin): <a href="https://twitter.com/BullBitcoin_" target="_blank">@BullBitcoin_</a></li>
<li>Website: <a href="https://www.bullbitcoin.com/" target="_blank">bullbitcoin.com</a></li>
</ul>
<p>Follow John &amp; Seetee:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/johnkvallis" target="_blank">@johnkvallis</a> &amp; <a href="https://twitter.com/Seetee_io" target="_blank">@Seetee_io</a></li>
<li>Website: <a href="https://www.seetee.io/" target="_blank">seetee.io</a></li>
</ul>
<p>Use Podcasting 2.0:</p>
<ul>
<li><a href="https://breez.technology/" target="_blank">Breez.Technology</a></li>
<li><a href="https://www.fountain.fm/" target="_blank">Fountain.FM</a></li>
<li><a href="http://newpodcastingapps.com/" target="_blank">NewPodcastingApps.com</a></li>
<li><a href="https://value4value.info/" target="_blank">Value4Value.info</a></li>
</ul>
</itunes:summary>
<itunes:explicit>Yes</itunes:explicit>
<itunes:duration>02:37:54</itunes:duration>
<itunes:image href="https://d3t3ozftmdmh3i.cloudfront.net/production/podcast_uploaded_episode400/16332652/16332652-1674592717976-ac685388ce8ad.jpg"/>
<itunes:season>3</itunes:season>
<itunes:episode>12</itunes:episode>
<itunes:episodeType>full</itunes:episodeType>
</item>
<item>
<title><![CDATA[#35 - Ray Youssef: Bitcoin is on the Right Side of History]]></title>
<podcast:value type="lightning" method="keysend" suggested="0.00000005000">
<podcast:valueRecipient name="John (Host)" type="node" address="02a9cd2bca29dd7e29bdfdf485a8e78b8ccf9327517afa03a59be8f62a58792e1b" split="10"/>
<podcast:valueRecipient name="Human Rights Foundation (Donations)" type="node" address="03bbc38579cf51c6a098d1459371e1c99f26ddf330a76e683b7d485999a9ce48c7" split="90"/>
</podcast:value>
<description><![CDATA[<p>In this episode of Closing The Loop, we’re honored to have <a href="https://twitter.com/raypaxful" target="_blank">Ray Youssef</a> join us for a discussion.</p>
<p>Ray is the founder and CEO of <a href="https://paxful.com/" target="_blank">Paxful</a>, a popular peer-to-peer bitcoin exchange, which offers users over 350 different payment methods to choose from.</p>
<p>Paxful has placed a particular focus on what Ray refers to as the ‘Global South,’ where billions of unbanked or underbanked people are effectively cut-off from global markets and subject to numerous forms of financial repression.</p>
<p>In this conversation, Ray and I discuss how bitcoin and Paxful have helped to level the playing field for these people: by giving them greater access to global financial infrastructure and, in doing so, helping them to circumvent authoritarian regulations which seek to confiscate their wealth and limit their financial freedom.</p>
<p>As you’ll hear, Ray is extremely passionate about his work and takes his mission—providing everyone with the financial tools they need to build wealth and unleash their full potential—very seriously.</p>
<p>Enjoy!</p>
<p>---</p>
<p>Follow Ray and Paxful:</p>
<ul>
<li>Twitter (Ray): <a href="https://twitter.com/raypaxful" target="_blank">@raypaxful</a></li>
<li>Twitter (Paxful): <a href="https://twitter.com/paxful" target="_blank">@paxful</a></li>
<li>Website: <a href="https://paxful.com/" target="_blank">paxful.com</a></li>
</ul>
<p>Follow John & Seetee:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/johnkvallis" target="_blank">@johnkvallis</a> & <a href="https://twitter.com/Seetee_io" target="_blank">@Seetee_io</a></li>
<li>Website: <a href="https://www.seetee.io/" target="_blank">seetee.io</a></li>
</ul>
<p>Use Podcasting 2.0:</p>
<ul>
<li><a href="https://breez.technology/" target="_blank">Breez.Technology</a></li>
<li><a href="https://www.fountain.fm/" target="_blank">Fountain.FM</a></li>
<li><a href="http://newpodcastingapps.com/" target="_blank">NewPodcastingApps.com</a></li>
<li><a href="https://value4value.info/" target="_blank">Value4Value.info</a></li>
</ul>
]]></description>
<link>https://anchor.fm/closingtheloop/episodes/35---Ray-Youssef-Bitcoin-is-on-the-Right-Side-of-History-e1t4n27</link>
<guid isPermaLink="false">09b0dcbd-e7b9-428d-b180-c473300fc144</guid>
<dc:creator><![CDATA[John Vallis]]></dc:creator>
<pubDate>Mon, 09 Jan 2023 20:58:36 GMT</pubDate>
<enclosure url="https://anchor.fm/s/61f23cb0/podcast/play/63117831/https%3A%2F%2Fd3ctxlq1ktw2nl.cloudfront.net%2Fstaging%2F2023-0-5%2Fb6e70c37-2d30-f4bc-8dbc-c914ca6cda49.mp3" length="184847803" type="audio/mpeg"/>
<itunes:summary><p>In this episode of Closing The Loop, we’re honored to have <a href="https://twitter.com/raypaxful" target="_blank">Ray Youssef</a> join us for a discussion.</p>
<p>Ray is the founder and CEO of <a href="https://paxful.com/" target="_blank">Paxful</a>, a popular peer-to-peer bitcoin exchange, which offers users over 350 different payment methods to choose from.</p>
<p>Paxful has placed a particular focus on what Ray refers to as the ‘Global South,’ where billions of unbanked or underbanked people are effectively cut-off from global markets and subject to numerous forms of financial repression.</p>
<p>In this conversation, Ray and I discuss how bitcoin and Paxful have helped to level the playing field for these people: by giving them greater access to global financial infrastructure and, in doing so, helping them to circumvent authoritarian regulations which seek to confiscate their wealth and limit their financial freedom.</p>
<p>As you’ll hear, Ray is extremely passionate about his work and takes his mission—providing everyone with the financial tools they need to build wealth and unleash their full potential—very seriously.</p>
<p>Enjoy!</p>
<p>---</p>
<p>Follow Ray and Paxful:</p>
<ul>
<li>Twitter (Ray): <a href="https://twitter.com/raypaxful" target="_blank">@raypaxful</a></li>
<li>Twitter (Paxful): <a href="https://twitter.com/paxful" target="_blank">@paxful</a></li>
<li>Website: <a href="https://paxful.com/" target="_blank">paxful.com</a></li>
</ul>
<p>Follow John &amp; Seetee:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/johnkvallis" target="_blank">@johnkvallis</a> &amp; <a href="https://twitter.com/Seetee_io" target="_blank">@Seetee_io</a></li>
<li>Website: <a href="https://www.seetee.io/" target="_blank">seetee.io</a></li>
</ul>
<p>Use Podcasting 2.0:</p>
<ul>
<li><a href="https://breez.technology/" target="_blank">Breez.Technology</a></li>
<li><a href="https://www.fountain.fm/" target="_blank">Fountain.FM</a></li>
<li><a href="http://newpodcastingapps.com/" target="_blank">NewPodcastingApps.com</a></li>
<li><a href="https://value4value.info/" target="_blank">Value4Value.info</a></li>
</ul>
</itunes:summary>
<itunes:explicit>No</itunes:explicit>
<itunes:duration>01:50:01</itunes:duration>
<itunes:image href="https://d3t3ozftmdmh3i.cloudfront.net/production/podcast_uploaded_episode400/16332652/16332652-1672957983644-de252fbe56a77.jpg"/>
<itunes:season>3</itunes:season>
<itunes:episode>11</itunes:episode>
<itunes:episodeType>full</itunes:episodeType>
</item>
<item>
<title><![CDATA[#34 - Patrick O'Sullivan: 'Bitcoin Makes Baseball Better' w/ The World's First Chief Bitcoin Officer]]></title>
<podcast:value type="lightning" method="keysend" suggested="0.00000005000">
<podcast:valueRecipient name="John (Host)" type="node" address="02a9cd2bca29dd7e29bdfdf485a8e78b8ccf9327517afa03a59be8f62a58792e1b" split="10"/>
<podcast:valueRecipient name="OpenSats for BTCPay Server (Donations)" type="node" address="037c862ec724bc85462aaeb804dd0941cd77dc4521cabd05edf3d0f23ed6b01f09" split="90"/>
</podcast:value>
<description><![CDATA[<p>Our guest today is <a href="https://twitter.com/CBO_21">Patrick O’Sullivan</a>, the world’s first 'Chief Bitcoin Officer', for the Australian Baseball League club, <a href="https://perthheat.com.au">The Perth Heat</a>.</p>
<p>In late 2021, Patrick convinced the organization to shift to a full 'bitcoin standard', and since then, they’ve been experimenting with all the ways in which they can leverage the benefits of bitcoin, to bring a higher-quality and more rewarding experience to players and spectators alike.</p>
<p>Recently, grounded in a firm belief in the merits and possibilities of the bitcoin-enabled '<a href="https://dergigi.com/2021/12/30/the-freedom-of-value/">value-for-value</a>' philosophy, the team has launched what their calling '<a href="https://perthheat.com.au/sats4stats/">sats4stats</a>', where live or online spectators can send bitcoin payments directly to players, for whatever reason, in real-time!</p>
<p>Patrick and the whole crew at the Perth Heat not only believe that their club will reap substantial rewards by being first in pursuing this strategy, but also that their pioneering work will inspire others to do the same, and in time, completely revolutionize the world of spectator sports.</p>
<p>Enjoy!</p>
<p>---</p>
<p>Follow Patrick and The Perth Heat:</p>
<ul>
<li>Twitter (Patrick): <a href="https://twitter.com/CBO_21">@CBO_21</a></li>
<li>Twitter (Perth Heat): <a href="https://twitter.com/PerthHeat">@PerthHeat</a></li>
<li>Website: <a href="https://perthheat.com.au/bitcoin/">perthheat.com.au</a></li>
</ul>
<p>Follow John & Seetee:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/johnkvallis">@johnkvallis</a> & <a href="https://twitter.com/Seetee_io">@Seetee_io</a></li>
<li>Website: <a href="https://www.seetee.io/">seetee.io</a></li>
</ul>
<p>Use Podcasting 2.0:</p>
<ul>
<li><a href="https://breez.technology/">Breez.Technology</a></li>
<li><a href="https://www.fountain.fm/">Fountain.FM</a></li>
<li><a href="http://newpodcastingapps.com/">NewPodcastingApps.com</a></li>
<li><a href="https://value4value.info/">Value4Value.info</a></li>
</ul>
]]></description>
<link>https://anchor.fm/closingtheloop/episodes/34---Patrick-OSullivan-Bitcoin-Makes-Baseball-Better-w-The-Worlds-First-Chief-Bitcoin-Officer-e1rtpl5</link>
<guid isPermaLink="false">5b03cccc-0178-4970-b858-1362011d088a</guid>
<dc:creator><![CDATA[John Vallis]]></dc:creator>
<pubDate>Fri, 16 Dec 2022 14:00:11 GMT</pubDate>
<enclosure url="https://anchor.fm/s/61f23cb0/podcast/play/61842533/https%3A%2F%2Fd3ctxlq1ktw2nl.cloudfront.net%2Fstaging%2F2022-11-7%2Fd4fa5e36-a9c1-bb82-2f2e-f96e4b77d14f.mp3" length="213574559" type="audio/mpeg"/>
<itunes:summary><p>Our guest today is <a href="https://twitter.com/CBO_21">Patrick O’Sullivan</a>, the world’s first 'Chief Bitcoin Officer', for the Australian Baseball League club, <a href="https://perthheat.com.au">The Perth Heat</a>.</p>
<p>In late 2021, Patrick convinced the organization to shift to a full 'bitcoin standard', and since then, they’ve been experimenting with all the ways in which they can leverage the benefits of bitcoin, to bring a higher-quality and more rewarding experience to players and spectators alike.</p>
<p>Recently, grounded in a firm belief in the merits and possibilities of the bitcoin-enabled '<a href="https://dergigi.com/2021/12/30/the-freedom-of-value/">value-for-value</a>' philosophy, the team has launched what their calling '<a href="https://perthheat.com.au/sats4stats/">sats4stats</a>', where live or online spectators can send bitcoin payments directly to players, for whatever reason, in real-time!</p>
<p>Patrick and the whole crew at the Perth Heat not only believe that their club will reap substantial rewards by being first in pursuing this strategy, but also that their pioneering work will inspire others to do the same, and in time, completely revolutionize the world of spectator sports.</p>
<p>Enjoy!</p>
<p>---</p>
<p>Follow Patrick and The Perth Heat:</p>
<ul>
<li>Twitter (Patrick): <a href="https://twitter.com/CBO_21">@CBO_21</a></li>
<li>Twitter (Perth Heat): <a href="https://twitter.com/PerthHeat">@PerthHeat</a></li>
<li>Website: <a href="https://perthheat.com.au/bitcoin/">perthheat.com.au</a></li>
</ul>
<p>Follow John &amp; Seetee:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/johnkvallis">@johnkvallis</a> &amp; <a href="https://twitter.com/Seetee_io">@Seetee_io</a></li>
<li>Website: <a href="https://www.seetee.io/">seetee.io</a></li>
</ul>
<p>Use Podcasting 2.0:</p>
<ul>
<li><a href="https://breez.technology/">Breez.Technology</a></li>
<li><a href="https://www.fountain.fm/">Fountain.FM</a></li>
<li><a href="http://newpodcastingapps.com/">NewPodcastingApps.com</a></li>
<li><a href="https://value4value.info/">Value4Value.info</a></li>
</ul>
</itunes:summary>
<itunes:explicit>No</itunes:explicit>
<itunes:duration>01:51:14</itunes:duration>
<itunes:image href="https://d3t3ozftmdmh3i.cloudfront.net/production/podcast_uploaded_episode/16332652/16332652-1671199824787-241359863047.jpg"/>
<itunes:season>3</itunes:season>
<itunes:episode>10</itunes:episode>
<itunes:episodeType>full</itunes:episodeType>
</item>
<item>
<title><![CDATA[#33 - Matt Hill: The Era of 'Sovereign Computing' is Here]]></title>
<podcast:value type="lightning" method="keysend" suggested="0.00000005000">
<podcast:valueRecipient name="John (Host)" type="node" address="02a9cd2bca29dd7e29bdfdf485a8e78b8ccf9327517afa03a59be8f62a58792e1b" split="10"/>
<podcast:valueRecipient name="OpenSats for BTCPay Server (Donations)" type="node" address="037c862ec724bc85462aaeb804dd0941cd77dc4521cabd05edf3d0f23ed6b01f09" split="90"/>
</podcast:value>
<description><![CDATA[<p>Today's guest is <a href="https://twitter.com/_MattHill_">Matt Hill</a>, co-founder and CEO of <a href="https://start9.com">Start9 Labs</a>, a leading pioneer in what he calls ‘Sovereign Computing.’</p>
<p>In today’s world, many have become accustomed to using third-party platforms to interact online, host their data, and much else, but as the saying goes, ‘the cloud is just someone else’s computer.’</p>
<p>As a result of this, there is no true privacy, anyone can be censored, and data honeypots exist everywhere for dishonest or malicious actors to exploit.</p>
<p>Matt and his team are determined to reverse this concerning trend, by making it easy and affordable to run a personal private server, allowing any individual to take back control of their data, opt-out of corporate and state surveillance, and engage in their digital lives in a manner that is private, secure, and censorship-free.</p>
<p>---</p>
<p>Follow Matt:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/_MattHill_">@_MattHill_</a></li>
<li>Website: <a href="https://start9.com">start9.com</a></li>
</ul>
<p>Follow John & Seetee:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/johnkvallis">@johnkvallis</a> & <a href="https://twitter.com/Seetee_io">@Seetee_io</a></li>
<li>Website: <a href="https://www.seetee.io/">seetee.io</a></li>
</ul>
<p>Use Podcasting 2.0:</p>
<ul>
<li><a href="https://breez.technology/">Breez.Technology</a></li>
<li><a href="https://www.fountain.fm/">Fountain.FM</a></li>
<li><a href="http://newpodcastingapps.com/">NewPodcastingApps.com</a></li>
<li><a href="https://value4value.info/">Value4Value.info</a></li>
</ul>
]]></description>
<link>https://anchor.fm/closingtheloop/episodes/33---Matt-Hill-The-Era-of-Sovereign-Computing-is-Here-e1rb93q</link>
<guid isPermaLink="false">870bcb65-4996-4fbf-bca1-9f1e51a0a063</guid>
<dc:creator><![CDATA[John Vallis]]></dc:creator>
<pubDate>Thu, 01 Dec 2022 16:07:31 GMT</pubDate>
<enclosure url="https://anchor.fm/s/61f23cb0/podcast/play/61235770/https%3A%2F%2Fd3ctxlq1ktw2nl.cloudfront.net%2Fstaging%2F2022-10-26%2Fb150c4a7-1757-d892-fb86-07aab6a3929a.mp3" length="224377130" type="audio/mpeg"/>
<itunes:summary><p>Today's guest is <a href="https://twitter.com/_MattHill_">Matt Hill</a>, co-founder and CEO of <a href="https://start9.com">Start9 Labs</a>, a leading pioneer in what he calls ‘Sovereign Computing.’</p>
<p>In today’s world, many have become accustomed to using third-party platforms to interact online, host their data, and much else, but as the saying goes, ‘the cloud is just someone else’s computer.’</p>
<p>As a result of this, there is no true privacy, anyone can be censored, and data honeypots exist everywhere for dishonest or malicious actors to exploit.</p>
<p>Matt and his team are determined to reverse this concerning trend, by making it easy and affordable to run a personal private server, allowing any individual to take back control of their data, opt-out of corporate and state surveillance, and engage in their digital lives in a manner that is private, secure, and censorship-free.</p>
<p>---</p>
<p>Follow Matt:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/_MattHill_">@_MattHill_</a></li>
<li>Website: <a href="https://start9.com">start9.com</a></li>
</ul>
<p>Follow John &amp; Seetee:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/johnkvallis">@johnkvallis</a> &amp; <a href="https://twitter.com/Seetee_io">@Seetee_io</a></li>
<li>Website: <a href="https://www.seetee.io/">seetee.io</a></li>
</ul>
<p>Use Podcasting 2.0:</p>
<ul>
<li><a href="https://breez.technology/">Breez.Technology</a></li>
<li><a href="https://www.fountain.fm/">Fountain.FM</a></li>
<li><a href="http://newpodcastingapps.com/">NewPodcastingApps.com</a></li>
<li><a href="https://value4value.info/">Value4Value.info</a></li>
</ul>
</itunes:summary>
<itunes:explicit>No</itunes:explicit>
<itunes:duration>02:13:33</itunes:duration>
<itunes:image href="https://d3t3ozftmdmh3i.cloudfront.net/production/podcast_uploaded_episode400/16332652/16332652-1669470510508-423012dd7f262.jpg"/>
<itunes:season>3</itunes:season>
<itunes:episode>9</itunes:episode>
<itunes:episodeType>full</itunes:episodeType>
</item>
<item>
<title><![CDATA[#32 - Jeff Booth: Bitcoin is the Answer to a Broken System]]></title>
<podcast:value type="lightning" method="keysend" suggested="0.00000005000">
<podcast:valueRecipient name="John (Host)" type="node" address="02a9cd2bca29dd7e29bdfdf485a8e78b8ccf9327517afa03a59be8f62a58792e1b" split="10"/>
<podcast:valueRecipient name="Human Rights Foundation (Donations)" type="node" address="03bbc38579cf51c6a098d1459371e1c99f26ddf330a76e683b7d485999a9ce48c7" split="90"/>
</podcast:value>
<description><![CDATA[<p>Today’s guest is <a href="https://twitter.com/JeffBooth">Jeff Booth</a>, a serial technology entrepreneur, advisor and board member to multiple businesses and organizations, and the author of the very popular book, ‘<a href="https://www.amazon.com/Price-Tomorrow-Deflation-Abundant-Future/dp/1999257405/ref=sr_1_2?keywords=the+price+of+tomorrow&qid=1574403883&sr=8-2">The Price of Tomorrow: Why Deflation is the Key to an Abundant Future</a>'.</p>
<p>Jeff is also a prolific speaker and advocate for bitcoin, educating people in all parts of the world, about the nature of the problems we all face, and how bitcoin is an essential tool for resolving them.</p>
<p>Finally, to further enhance his impact, Jeff recently founded <a href="https://egodeath.capital">ego death capital</a>, a venture fund which invests in companies in the bitcoin ecosystem, thereby accelerating the transition to what he likes to call, ‘a world of greater truth, hope and abundance.’</p>
<p>Enjoy!</p>
<p>---</p>
<p>Follow Jeff:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/JeffBooth">@JeffBooth</a></li>
<li>Website: <a href="https://twitter.com/EgoDeathCapital">egodeath.capital</a></li>
</ul>
<p>Follow John & Seetee:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/johnkvallis">@johnkvallis</a> & <a href="https://twitter.com/Seetee_io">@Seetee_io</a></li>
<li>Website: <a href="https://www.seetee.io/">seetee.io</a></li>
</ul>
<p>Use Podcasting 2.0:</p>
<ul>
<li><a href="https://breez.technology/">Breez.Technology</a></li>
<li><a href="https://www.fountain.fm/">Fountain.FM</a></li>
<li><a href="http://newpodcastingapps.com/">NewPodcastingApps.com</a></li>
<li><a href="https://value4value.info/" target="_blank">Value4Value.info</a></li>
</ul>
]]></description>
<link>https://anchor.fm/closingtheloop/episodes/32---Jeff-Booth-Bitcoin-is-the-Answer-to-a-Broken-System-e1qer8k</link>
<guid isPermaLink="false">102128b5-2788-4c03-86c9-8a0cd7bca3a1</guid>
<dc:creator><![CDATA[John Vallis]]></dc:creator>
<pubDate>Wed, 16 Nov 2022 15:53:33 GMT</pubDate>
<enclosure url="https://anchor.fm/s/61f23cb0/podcast/play/60304084/https%3A%2F%2Fd3ctxlq1ktw2nl.cloudfront.net%2Fstaging%2F2022-10-8%2F5693b5fc-ac4f-ff9c-66bb-4b2fce32fcf1.mp3" length="211574204" type="audio/mpeg"/>
<itunes:summary><p>Today’s guest is <a href="https://twitter.com/JeffBooth">Jeff Booth</a>, a serial technology entrepreneur, advisor and board member to multiple businesses and organizations, and the author of the very popular book, ‘<a href="https://www.amazon.com/Price-Tomorrow-Deflation-Abundant-Future/dp/1999257405/ref=sr_1_2?keywords=the+price+of+tomorrow&amp;qid=1574403883&amp;sr=8-2">The Price of Tomorrow: Why Deflation is the Key to an Abundant Future</a>'.</p>
<p>Jeff is also a prolific speaker and advocate for bitcoin, educating people in all parts of the world, about the nature of the problems we all face, and how bitcoin is an essential tool for resolving them.</p>
<p>Finally, to further enhance his impact, Jeff recently founded <a href="https://egodeath.capital">ego death capital</a>, a venture fund which invests in companies in the bitcoin ecosystem, thereby accelerating the transition to what he likes to call, ‘a world of greater truth, hope and abundance.’</p>
<p>Enjoy!</p>
<p>---</p>
<p>Follow Jeff:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/JeffBooth">@JeffBooth</a></li>
<li>Website: <a href="https://twitter.com/EgoDeathCapital">egodeath.capital</a></li>
</ul>
<p>Follow John &amp; Seetee:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/johnkvallis">@johnkvallis</a> &amp; <a href="https://twitter.com/Seetee_io">@Seetee_io</a></li>
<li>Website: <a href="https://www.seetee.io/">seetee.io</a></li>
</ul>
<p>Use Podcasting 2.0:</p>
<ul>
<li><a href="https://breez.technology/">Breez.Technology</a></li>
<li><a href="https://www.fountain.fm/">Fountain.FM</a></li>
<li><a href="http://newpodcastingapps.com/">NewPodcastingApps.com</a></li>
<li><a href="https://value4value.info/" target="_blank">Value4Value.info</a></li>
</ul>
</itunes:summary>
<itunes:explicit>No</itunes:explicit>
<itunes:duration>02:05:56</itunes:duration>
<itunes:image href="https://d3t3ozftmdmh3i.cloudfront.net/production/podcast_uploaded_episode400/16332652/16332652-1667939699034-671a938bec97c.jpg"/>
<itunes:season>3</itunes:season>
<itunes:episode>8</itunes:episode>
<itunes:episodeType>full</itunes:episodeType>
</item>
<item>
<title><![CDATA[#31 - Jason Les: Surviving and Thriving as a Publicly Traded Bitcoin Mining Company]]></title>
<podcast:value type="lightning" method="keysend" suggested="0.00000005000">
<podcast:valueRecipient name="John (Host)" type="node" address="02a9cd2bca29dd7e29bdfdf485a8e78b8ccf9327517afa03a59be8f62a58792e1b" split="10"/>
<podcast:valueRecipient name="Human Rights Foundation (Donations)" type="node" address="03bbc38579cf51c6a098d1459371e1c99f26ddf330a76e683b7d485999a9ce48c7" split="90"/>
</podcast:value>
<description><![CDATA[<p>Our guest today is <a href="https://twitter.com/JasonLes_">Jason Les</a>, CEO of <a href="https://www.riotblockchain.com">Riot Blockchain</a>.</p>
<p>Riot is one of the largest <a href="https://www.marketwatch.com/investing/stock/riot">publicly traded</a> bitcoin miners in the world, with a current hash rate capacity of 4.8EH/s, and an expected self-mining capacity of 12.6EH/s by Q1 2023.</p>
<p>The bitcoin mining industry is notoriously competitive, and that is especially the case right now in the fall of 2022, as a confluence of factors conspire to reveal which among the current operators are capable of weathering the storm.</p>
<p>As such, I thought now would be a perfect time to have Jason on to discuss his story, how he thinks about building successful bitcoin mining operations, as well as the broad and massive implications of this burgeoning new industry.</p>
<p>Enjoy!</p>
<p>---</p>
<p>Follow Jason:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/JasonLes_">@JasonLes_</a></li>
<li>Website: <a href="https://www.riotblockchain.com">riotblockchain.com</a></li>
</ul>
<p>Follow John & Seetee:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/johnkvallis">@johnkvallis</a> & <a href="https://twitter.com/Seetee_io">@Seetee_io</a></li>
<li>Website: <a href="https://www.seetee.io/">seetee.io</a></li>
</ul>
<p>Use Podcasting 2.0:</p>
<ul>
<li><a href="https://breez.technology/">Breez.Technology</a></li>
<li><a href="https://www.fountain.fm/">Fountain.FM</a></li>
<li><a href="http://newpodcastingapps.com/">NewPodcastingApps.com</a></li>
<li><a href="http://value4value.io/">Value4Value.io</a></li>
</ul>
]]></description>
<link>https://anchor.fm/closingtheloop/episodes/31---Jason-Les-Surviving-and-Thriving-as-a-Publicly-Traded-Bitcoin-Mining-Company-e1q2ven</link>
<guid isPermaLink="false">51a42e80-d4d6-49f7-ab14-f67b54ac5097</guid>
<dc:creator><![CDATA[John Vallis]]></dc:creator>
<pubDate>Wed, 02 Nov 2022 17:44:46 GMT</pubDate>
<enclosure url="https://anchor.fm/s/61f23cb0/podcast/play/59915159/https%3A%2F%2Fd3ctxlq1ktw2nl.cloudfront.net%2Fstaging%2F2022-10-1%2Fe4c19cba-538f-e437-c7ce-445e806392a7.mp3" length="193611992" type="audio/mpeg"/>
<itunes:summary><p>Our guest today is <a href="https://twitter.com/JasonLes_">Jason Les</a>, CEO of <a href="https://www.riotblockchain.com">Riot Blockchain</a>.</p>
<p>Riot is one of the largest <a href="https://www.marketwatch.com/investing/stock/riot">publicly traded</a> bitcoin miners in the world, with a current hash rate capacity of 4.8EH/s, and an expected self-mining capacity of 12.6EH/s by Q1 2023.</p>
<p>The bitcoin mining industry is notoriously competitive, and that is especially the case right now in the fall of 2022, as a confluence of factors conspire to reveal which among the current operators are capable of weathering the storm.</p>
<p>As such, I thought now would be a perfect time to have Jason on to discuss his story, how he thinks about building successful bitcoin mining operations, as well as the broad and massive implications of this burgeoning new industry.</p>
<p>Enjoy!</p>
<p>---</p>
<p>Follow Jason:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/JasonLes_">@JasonLes_</a></li>
<li>Website: <a href="https://www.riotblockchain.com">riotblockchain.com</a></li>
</ul>
<p>Follow John &amp; Seetee:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/johnkvallis">@johnkvallis</a> &amp; <a href="https://twitter.com/Seetee_io">@Seetee_io</a></li>
<li>Website: <a href="https://www.seetee.io/">seetee.io</a></li>
</ul>
<p>Use Podcasting 2.0:</p>
<ul>
<li><a href="https://breez.technology/">Breez.Technology</a></li>
<li><a href="https://www.fountain.fm/">Fountain.FM</a></li>
<li><a href="http://newpodcastingapps.com/">NewPodcastingApps.com</a></li>
<li><a href="http://value4value.io/">Value4Value.io</a></li>
</ul>
</itunes:summary>
<itunes:explicit>No</itunes:explicit>
<itunes:duration>01:40:50</itunes:duration>
<itunes:image href="https://d3t3ozftmdmh3i.cloudfront.net/production/podcast_uploaded_episode400/16332652/16332652-1667324888673-a864bf1f4f503.jpg"/>
<itunes:season>3</itunes:season>
<itunes:episode>7</itunes:episode>
<itunes:episodeType>full</itunes:episodeType>
</item>
<item>
<title><![CDATA[#30 - Prince Filip of Serbia: The Merits of Monarchy, The Liberating Power of Bitcoin, and The History of the House of Karađorđević]]></title>
<podcast:value type="lightning" method="keysend" suggested="0.00000005000">
<podcast:valueRecipient name="John (Host)" type="node" address="02a9cd2bca29dd7e29bdfdf485a8e78b8ccf9327517afa03a59be8f62a58792e1b" split="10"/>
<podcast:valueRecipient name="Human Rights Foundation (Donations)" type="node" address="03bbc38579cf51c6a098d1459371e1c99f26ddf330a76e683b7d485999a9ce48c7" split="90"/>
</podcast:value>
<description><![CDATA[<p>Our guest today is <a href="https://twitter.com/PrincFilip1">Prince Filip Karađorđević</a>, Hereditary Prince of Serbia and Yugoslavia, and Chief Strategy Officer of <a href="https://twitter.com/JAN3com">Jan 3</a>, a digital infrastructure company focused on expanding access to bitcoin technology, and accelerating <a href="https://nakamotoinstitute.org/mempool/hyperbitcoinization/">hyperbitcoinization</a>.</p>
<p>We first met Prince Filip at the Miami Bitcoin Conference in 2022, and were struck by both his down-to-earth demeanor, as well as his passion and enthusiasm for bitcoin.</p>
<p>His family history is tremendously interesting, and Filip seems determined to follow in those footsteps, by using bitcoin, in conjunction with his other initiatives, to bring more freedom and prosperity to the people of Serbia, and those living around the world.</p>
<p>---</p>
<p>Follow Prince Filip:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/PrincFilip1">@PrincFilip1</a></li>
<li>Website: <a href="http://www.jan3.com">jan3.com</a></li>
</ul>
<p>Follow John & Seetee:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/johnkvallis">@johnkvallis</a> & <a href="https://twitter.com/Seetee_io">@Seetee_io</a></li>
<li>Website: <a href="https://www.seetee.io/">seetee.io</a></li>
</ul>
<p>Use Podcasting 2.0:</p>
<ul>
<li><a href="https://breez.technology/">Breez.Technology</a></li>
<li><a href="https://www.fountain.fm/">Fountain.FM</a></li>
<li><a href="http://newpodcastingapps.com/">NewPodcastingApps.com</a></li>
<li><a href="http://value4value.io/">Value4Value.io</a></li>
</ul>
]]></description>
<link>https://anchor.fm/closingtheloop/episodes/30---Prince-Filip-of-Serbia-The-Merits-of-Monarchy--The-Liberating-Power-of-Bitcoin--and-The-History-of-the-House-of-Karaorevi-e1pg9u3</link>
<guid isPermaLink="false">c042c999-d6bf-4608-96f1-2540f3525ee7</guid>
<dc:creator><![CDATA[John Vallis]]></dc:creator>
<pubDate>Thu, 20 Oct 2022 15:29:31 GMT</pubDate>
<enclosure url="https://anchor.fm/s/61f23cb0/podcast/play/59303299/https%3A%2F%2Fd3ctxlq1ktw2nl.cloudfront.net%2Fstaging%2F2022-9-19%2F48efae8e-3873-a224-9c1d-00223f47b5d0.mp3" length="216022128" type="audio/mpeg"/>
<itunes:summary><p>Our guest today is <a href="https://twitter.com/PrincFilip1">Prince Filip Karađorđević</a>, Hereditary Prince of Serbia and Yugoslavia, and Chief Strategy Officer of <a href="https://twitter.com/JAN3com">Jan 3</a>, a digital infrastructure company focused on expanding access to bitcoin technology, and accelerating <a href="https://nakamotoinstitute.org/mempool/hyperbitcoinization/">hyperbitcoinization</a>.</p>
<p>We first met Prince Filip at the Miami Bitcoin Conference in 2022, and were struck by both his down-to-earth demeanor, as well as his passion and enthusiasm for bitcoin.</p>
<p>His family history is tremendously interesting, and Filip seems determined to follow in those footsteps, by using bitcoin, in conjunction with his other initiatives, to bring more freedom and prosperity to the people of Serbia, and those living around the world.</p>
<p>---</p>
<p>Follow Prince Filip:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/PrincFilip1">@PrincFilip1</a></li>
<li>Website: <a href="http://www.jan3.com">jan3.com</a></li>
</ul>
<p>Follow John &amp; Seetee:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/johnkvallis">@johnkvallis</a> &amp; <a href="https://twitter.com/Seetee_io">@Seetee_io</a></li>
<li>Website: <a href="https://www.seetee.io/">seetee.io</a></li>
</ul>
<p>Use Podcasting 2.0:</p>
<ul>
<li><a href="https://breez.technology/">Breez.Technology</a></li>
<li><a href="https://www.fountain.fm/">Fountain.FM</a></li>
<li><a href="http://newpodcastingapps.com/">NewPodcastingApps.com</a></li>
<li><a href="http://value4value.io/">Value4Value.io</a></li>
</ul>
</itunes:summary>
<itunes:explicit>No</itunes:explicit>
<itunes:duration>01:52:30</itunes:duration>
<itunes:image href="https://d3t3ozftmdmh3i.cloudfront.net/production/podcast_uploaded_episode400/16332652/16332652-1666206091385-3f5938b784fdc.jpg"/>
<itunes:season>3</itunes:season>
<itunes:episode>6</itunes:episode>
<itunes:episodeType>full</itunes:episodeType>
</item>
<item>
<title><![CDATA[#29 - Abubakar Nur Khalil: Building, Investing, and Training the Next Generation of Bitcoin Developers in Africa]]></title>
<podcast:value type="lightning" method="keysend" suggested="0.00000005000">
<podcast:valueRecipient name="John (Host)" type="node" address="02a9cd2bca29dd7e29bdfdf485a8e78b8ccf9327517afa03a59be8f62a58792e1b" split="10"/>
<podcast:valueRecipient name="OpenSats General Fund (Donations)" type="node" address="037c862ec724bc85462aaeb804dd0941cd77dc4521cabd05edf3d0f23ed6b01f09" split="90"/>
</podcast:value>
<description><![CDATA[<p>This episode's guest is <a href="https://twitter.com/ihate1999" target="_blank">Abubakar Nur Khalil</a>, a contributor to <a href="https://github.com/bitcoin/bitcoin" target="_blank">bitcoin core</a> and co-founder of <a href="https://qala.dev/" target="_blank">Qala</a>, a non-profit focused on training the next generation of bitcoin and lightning developers in Africa.</p>
<p>He is also the CEO of <a href="https://rcrsv.xyz/" target="_blank">Recursive Capital</a>, a venture capital fund focused on funding African bitcoin startups. Finally, Abubakar is a founding member of <a href="https://github.com/btrustteam" target="_blank">B Trust</a>, a non-profit funded by <a href="https://twitter.com/jack" target="_blank">Jack Dorsey</a> and <a href="https://twitter.com/sc" target="_blank">Jay-Z</a>, with the stated purpose of supporting the people and initiatives working to decentralize bitcoin development further.</p>
<p>Though still relatively young, Abubakar's accomplishments in the bitcoin space are substantial. His curiosity, dedication, and humility with which he approaches life shine through in his work and this discussion.</p>
<p>---</p>
<p>Follow Abubakar:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/ihate1999" target="_blank">@ihate1999</a></li>
<li>Website: <a href="https://rcrsv.xyz/" target="_blank">rcrsv.xyz</a></li>
</ul>
<p>Follow John & Seetee:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/johnkvallis" target="_blank">@johnkvallis</a> & <a href="https://twitter.com/Seetee_io" target="_blank">@Seetee_io</a></li>
<li>Website: <a href="https://www.seetee.io/" target="_blank">seetee.io</a></li>
</ul>
<p>Use Podcasting 2.0:</p>
<ul>
<li><a href="https://breez.technology/" target="_blank">Breez.Technology</a></li>
<li><a href="https://www.fountain.fm/" target="_blank">Fountain.FM</a></li>
<li><a href="http://newpodcastingapps.com/" target="_blank">NewPodcastingApps.com</a></li>
<li><a href="http://value4value.io/" target="_blank">Value4Value.io</a></li>
</ul>
]]></description>
<link>https://anchor.fm/closingtheloop/episodes/29---Abubakar-Nur-Khalil-Building--Investing--and-Training-the-Next-Generation-of-Bitcoin-Developers-in-Africa-e1on74g</link>
<guid isPermaLink="false">a441406b-c9b8-4eac-8571-0c7af970925d</guid>
<dc:creator><![CDATA[John Vallis]]></dc:creator>
<pubDate>Tue, 04 Oct 2022 15:37:08 GMT</pubDate>
<enclosure url="https://anchor.fm/s/61f23cb0/podcast/play/58481232/https%3A%2F%2Fd3ctxlq1ktw2nl.cloudfront.net%2Fstaging%2F2022-9-3%2F73c25e97-783e-7d07-0ebe-ab3d720586cf.mp3" length="240423621" type="audio/mpeg"/>
<itunes:summary><p>This episode's guest is <a href="https://twitter.com/ihate1999" target="_blank">Abubakar Nur Khalil</a>, a contributor to <a href="https://github.com/bitcoin/bitcoin" target="_blank">bitcoin core</a> and co-founder of <a href="https://qala.dev/" target="_blank">Qala</a>, a non-profit focused on training the next generation of bitcoin and lightning developers in Africa.</p>
<p>He is also the CEO of <a href="https://rcrsv.xyz/" target="_blank">Recursive Capital</a>, a venture capital fund focused on funding African bitcoin startups. Finally, Abubakar is a founding member of <a href="https://github.com/btrustteam" target="_blank">B Trust</a>, a non-profit funded by <a href="https://twitter.com/jack" target="_blank">Jack Dorsey</a> and <a href="https://twitter.com/sc" target="_blank">Jay-Z</a>, with the stated purpose of supporting the people and initiatives working to decentralize bitcoin development further.</p>
<p>Though still relatively young, Abubakar's accomplishments in the bitcoin space are substantial. His curiosity, dedication, and humility with which he approaches life shine through in his work and this discussion.</p>
<p>---</p>
<p>Follow Abubakar:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/ihate1999" target="_blank">@ihate1999</a></li>
<li>Website: <a href="https://rcrsv.xyz/" target="_blank">rcrsv.xyz</a></li>
</ul>
<p>Follow John &amp; Seetee:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/johnkvallis" target="_blank">@johnkvallis</a> &amp; <a href="https://twitter.com/Seetee_io" target="_blank">@Seetee_io</a></li>
<li>Website: <a href="https://www.seetee.io/" target="_blank">seetee.io</a></li>
</ul>
<p>Use Podcasting 2.0:</p>
<ul>
<li><a href="https://breez.technology/" target="_blank">Breez.Technology</a></li>
<li><a href="https://www.fountain.fm/" target="_blank">Fountain.FM</a></li>
<li><a href="http://newpodcastingapps.com/" target="_blank">NewPodcastingApps.com</a></li>
<li><a href="http://value4value.io/" target="_blank">Value4Value.io</a></li>
</ul>
</itunes:summary>
<itunes:explicit>No</itunes:explicit>
<itunes:duration>01:40:10</itunes:duration>
<itunes:image href="https://d3t3ozftmdmh3i.cloudfront.net/production/podcast_uploaded_episode400/16332652/16332652-1664761025246-02969cd113faa.jpg"/>
<itunes:season>3</itunes:season>
<itunes:episode>5</itunes:episode>
<itunes:episodeType>full</itunes:episodeType>
</item>
<item>
<title><![CDATA[#28 - Brent Whitehead: The Giga Energy Story and Bitcoin as the Ultimate Incentive for Revolutionizing the Energy Industry]]></title>
<podcast:value type="lightning" method="keysend" suggested="0.00000005000">
<podcast:valueRecipient name="John (Host)" type="node" address="02a9cd2bca29dd7e29bdfdf485a8e78b8ccf9327517afa03a59be8f62a58792e1b" split="10"/>
<podcast:valueRecipient name="Human Rights Foundation (Donations)" type="node" address="03bbc38579cf51c6a098d1459371e1c99f26ddf330a76e683b7d485999a9ce48c7" split="90"/>
</podcast:value>
<description><![CDATA[<p>Today’s guest is <a href="https://twitter.com/B_whitehead21" target="_blank">Brent Whitehead</a>, co-founder of <a href="https://twitter.com/GigaEnergy_" target="_blank">Giga Energy</a>, a company that builds, operates, and sells equipment for off-grid bitcoin mining operations.</p>
<p>The mobility, viability, and adaptability of bitcoin mining has in the last few years become recognized for the unique opportunities it represents, for capturing and monetizing <a href="https://en.wikipedia.org/wiki/Stranded_asset" target="_blank">stranded</a> or 'waste' energy.</p>
<p>As a result, the industry is currently experiencing a boom, as market participants respond to the incentive which now exists to turn a liability, into an asset, which has a global market and operates 24/7/365.</p>
<p>This method of bitcoin mining is helping to increase resource efficiency, improve the economics of energy production and distribution, and helping to further decentralize and secure the bitcoin network.</p>
<p>It’s an incredibly exciting development in the bitcoin ecosystem and bound to have many other positive downstream effects, which is why I invited Brent on to share more about his experiences and perspective.</p>
<p>---</p>
<p>Follow Brent:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/B_whitehead21" target="_blank">@B_Whitehead21</a></li>
<li>Website: <a href="https://www.gigaenergy.com/" target="_blank">gigaenergy.com</a></li>
</ul>
<p>Follow John & Seetee:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/johnkvallis" target="_blank">@johnkvallis</a> & <a href="https://twitter.com/Seetee_io" target="_blank">@Seetee_io</a></li>
<li>Website: <a href="https://www.seetee.io/" target="_blank">seetee.io</a></li>
</ul>
<p>Use Podcasting 2.0:</p>
<ul>
<li><a href="https://breez.technology/" target="_blank">Breez.Technology</a></li>
<li><a href="https://www.fountain.fm/" target="_blank">Fountain.FM</a></li>
<li><a href="http://newpodcastingapps.com/" target="_blank">NewPodcastingApps.com</a></li>
<li><a href="http://value4value.io/" target="_blank">Value4Value.io</a></li>
</ul>
]]></description>
<link>https://anchor.fm/closingtheloop/episodes/28---Brent-Whitehead-The-Giga-Energy-Story-and-Bitcoin-as-the-Ultimate-Incentive-for-Revolutionizing-the-Energy-Industry-e1o17iv</link>
<guid isPermaLink="false">7bc85483-77fe-4696-a7d0-bf404142c307</guid>
<dc:creator><![CDATA[John Vallis]]></dc:creator>
<pubDate>Thu, 22 Sep 2022 15:12:37 GMT</pubDate>
<enclosure url="https://anchor.fm/s/61f23cb0/podcast/play/57760799/https%3A%2F%2Fd3ctxlq1ktw2nl.cloudfront.net%2Fstaging%2F2022-8-18%2F44bddd7c-645d-d73e-8e8c-b0f54a6e520f.mp3" length="216917392" type="audio/mpeg"/>
<itunes:summary><p>Today’s guest is <a href="https://twitter.com/B_whitehead21" target="_blank">Brent Whitehead</a>, co-founder of <a href="https://twitter.com/GigaEnergy_" target="_blank">Giga Energy</a>, a company that builds, operates, and sells equipment for off-grid bitcoin mining operations.</p>
<p>The mobility, viability, and adaptability of bitcoin mining has in the last few years become recognized for the unique opportunities it represents, for capturing and monetizing <a href="https://en.wikipedia.org/wiki/Stranded_asset" target="_blank">stranded</a> or 'waste' energy.</p>
<p>As a result, the industry is currently experiencing a boom, as market participants respond to the incentive which now exists to turn a liability, into an asset, which has a global market and operates 24/7/365.</p>
<p>This method of bitcoin mining is helping to increase resource efficiency, improve the economics of energy production and distribution, and helping to further decentralize and secure the bitcoin network.</p>
<p>It’s an incredibly exciting development in the bitcoin ecosystem and bound to have many other positive downstream effects, which is why I invited Brent on to share more about his experiences and perspective.</p>
<p>---</p>
<p>Follow Brent:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/B_whitehead21" target="_blank">@B_Whitehead21</a></li>
<li>Website: <a href="https://www.gigaenergy.com/" target="_blank">gigaenergy.com</a></li>
</ul>
<p>Follow John &amp; Seetee:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/johnkvallis" target="_blank">@johnkvallis</a> &amp; <a href="https://twitter.com/Seetee_io" target="_blank">@Seetee_io</a></li>
<li>Website: <a href="https://www.seetee.io/" target="_blank">seetee.io</a></li>
</ul>
<p>Use Podcasting 2.0:</p>
<ul>
<li><a href="https://breez.technology/" target="_blank">Breez.Technology</a></li>
<li><a href="https://www.fountain.fm/" target="_blank">Fountain.FM</a></li>
<li><a href="http://newpodcastingapps.com/" target="_blank">NewPodcastingApps.com</a></li>
<li><a href="http://value4value.io/" target="_blank">Value4Value.io</a></li>
</ul>
</itunes:summary>
<itunes:explicit>No</itunes:explicit>
<itunes:duration>02:30:38</itunes:duration>
<itunes:image href="https://d3t3ozftmdmh3i.cloudfront.net/production/podcast_uploaded_episode400/16332652/16332652-1663530448432-5cb8b89344c6d.jpg"/>
<itunes:season>3</itunes:season>
<itunes:episode>4</itunes:episode>
<itunes:episodeType>full</itunes:episodeType>
</item>
<item>
<title><![CDATA[#27 - Jean Amiouny: Bringing Canadians into the 'Bitcoin Golden Age']]></title>
<podcast:value type="lightning" method="keysend" suggested="0.00000005000">
<podcast:valueRecipient name="John (Host)" type="node" address="02a9cd2bca29dd7e29bdfdf485a8e78b8ccf9327517afa03a59be8f62a58792e1b" split="10"/>
<podcast:valueRecipient name="Human Rights Foundation (Donations)" type="node" address="03bbc38579cf51c6a098d1459371e1c99f26ddf330a76e683b7d485999a9ce48c7" split="90"/>
</podcast:value>
<description><![CDATA[<p>This episode's guest is <a href="https://twitter.com/aiouy" target="_blank">Jean Amiouny</a>, co-founder and CEO of Canadian bitcoin exchange, <a href="https://shakepay.com/" target="_blank">Shakepay</a>.</p>
<p>Launched in 2015, Shakepay has become one of the most popular ways to buy bitcoin in Canada, with $7 billion in transaction volume and over one million Canadians signed up to the platform.</p>
<p>As you'll hear in this discussion, while their current focus is on making it as easy as possible for Canadians to accumulate bitcoin, they have much bigger aspirations of ultimately taking on the five big legacy banks in Canada, re-creating the financial system on top of bitcoin, and ushering in what they call the "bitcoin golden age."</p>
<p>---</p>
<p>Follow Jean:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/aiouy" target="_blank">@aiouy</a></li>
<li>Website: <a href="https://shakepay.com/" target="_blank">shakepay.com</a></li>
</ul>
<p>Follow John & Seetee:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/johnkvallis" target="_blank">@johnkvallis</a> & <a href="https://twitter.com/Seetee_io" target="_blank">@Seetee_io</a></li>
<li>Website: <a href="https://www.seetee.io/" target="_blank">seetee.io</a></li>
</ul>
<p>Use Podcasting 2.0:</p>
<ul>
<li><a href="https://breez.technology/" target="_blank">Breez.Technology</a></li>
<li><a href="https://www.fountain.fm/" target="_blank">Fountain.FM</a></li>
<li><a href="http://newpodcastingapps.com/" target="_blank">NewPodcastingApps.com</a></li>
<li><a href="http://value4value.io/" target="_blank">Value4Value.io</a></li>
</ul>
]]></description>
<link>https://anchor.fm/closingtheloop/episodes/27---Jean-Amiouny-Bringing-Canadians-into-the-Bitcoin-Golden-Age-e1l3oo8</link>
<guid isPermaLink="false">3644281e-e50c-4a7c-b226-e321b946fd54</guid>
<dc:creator><![CDATA[John Vallis]]></dc:creator>
<pubDate>Thu, 08 Sep 2022 10:25:16 GMT</pubDate>
<enclosure url="https://anchor.fm/s/61f23cb0/podcast/play/54698184/https%3A%2F%2Fd3ctxlq1ktw2nl.cloudfront.net%2Fstaging%2F2022-6-11%2F03233bbb-8730-b61b-b2d9-f05e2b7e1ccd.mp3" length="209781997" type="audio/mpeg"/>
<itunes:summary><p>This episode's guest is <a href="https://twitter.com/aiouy" target="_blank">Jean Amiouny</a>, co-founder and CEO of Canadian bitcoin exchange, <a href="https://shakepay.com/" target="_blank">Shakepay</a>.</p>
<p>Launched in 2015, Shakepay has become one of the most popular ways to buy bitcoin in Canada, with $7 billion in transaction volume and over one million Canadians signed up to the platform.</p>
<p>As you'll hear in this discussion, while their current focus is on making it as easy as possible for Canadians to accumulate bitcoin, they have much bigger aspirations of ultimately taking on the five big legacy banks in Canada, re-creating the financial system on top of bitcoin, and ushering in what they call the "bitcoin golden age."</p>
<p>---</p>
<p>Follow Jean:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/aiouy" target="_blank">@aiouy</a></li>
<li>Website: <a href="https://shakepay.com/" target="_blank">shakepay.com</a></li>
</ul>
<p>Follow John &amp; Seetee:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/johnkvallis" target="_blank">@johnkvallis</a> &amp; <a href="https://twitter.com/Seetee_io" target="_blank">@Seetee_io</a></li>
<li>Website: <a href="https://www.seetee.io/" target="_blank">seetee.io</a></li>
</ul>
<p>Use Podcasting 2.0:</p>
<ul>
<li><a href="https://breez.technology/" target="_blank">Breez.Technology</a></li>
<li><a href="https://www.fountain.fm/" target="_blank">Fountain.FM</a></li>
<li><a href="http://newpodcastingapps.com/" target="_blank">NewPodcastingApps.com</a></li>
<li><a href="http://value4value.io/" target="_blank">Value4Value.io</a></li>
</ul>
</itunes:summary>
<itunes:explicit>No</itunes:explicit>
<itunes:duration>01:49:15</itunes:duration>
<itunes:image href="https://d3t3ozftmdmh3i.cloudfront.net/production/podcast_uploaded_episode400/16332652/16332652-1657663459814-8a2cac5a6758b.jpg"/>
<itunes:season>3</itunes:season>
<itunes:episode>3</itunes:episode>
<itunes:episodeType>full</itunes:episodeType>
</item>
<item>
<title><![CDATA[#26 - Lyn Alden: Bitcoin is the Technological Solution We Need]]></title>
<podcast:value type="lightning" method="keysend" suggested="0.00000005000">
<podcast:valueRecipient name="John (Host)" type="node" address="02a9cd2bca29dd7e29bdfdf485a8e78b8ccf9327517afa03a59be8f62a58792e1b" split="10"/>
<podcast:valueRecipient name="Human Rights Foundation (Donations)" type="node" address="03bbc38579cf51c6a098d1459371e1c99f26ddf330a76e683b7d485999a9ce48c7" split="90"/>
</podcast:value>
<description><![CDATA[<p>Today's guest is <a href="https://twitter.com/LynAldenContact" target="_blank">Lyn Alden</a>, founder of <a href="https://www.lynalden.com/" target="_blank">Lyn Alden Investment Strategy</a>, board director of <a href="https://www.swanbitcoin.com/" target="_blank">Swan Bitcoin</a>, and advisor to <a href="https://egodeath.capital/" target="_blank">ego death capital</a>.</p>
<p>Lyn is one of the most highly regarded voices in finance today, both for her excellent commentary on the macroeconomic landscape as well as for her sober, analytical approach to understanding bitcoin. Lyn's ability to distill complex, multi-disciplinary topics into insights that anyone can comprehend has made her a favorite amongst expert investors and humble savers alike.</p>
<p>With all the recent developments in the bitcoin world, as well as the volatility and uncertainty in all financial markets, we thought it was a perfect time to have a chat with Lyn and get her perspective on what's going on.</p>
<p>---</p>
<p>Follow Lyn:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/LynAldenContact" target="_blank">@LynAldenContact</a></li>
<li>Website: <a href="https://www.lynalden.com/" target="_blank">lynalden.com</a></li>
</ul>
<p>Follow John & Seetee:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/johnkvallis" target="_blank">@johnkvallis</a> & <a href="https://twitter.com/Seetee_io" target="_blank">@Seetee_io</a></li>
<li>Website: <a href="https://www.seetee.io/" target="_blank">seetee.io</a></li>
</ul>
<p>Use Podcasting 2.0:</p>
<ul>
<li><a href="https://breez.technology/" target="_blank">Breez.Technology</a></li>
<li><a href="https://www.fountain.fm/" target="_blank">Fountain.FM</a></li>
<li><a href="http://newpodcastapps.com/" target="_blank">NewPodcastApps.com</a></li>
<li><a href="http://value4value.io/" target="_blank">Value4Value.io</a></li>
</ul>
]]></description>
<link>https://anchor.fm/closingtheloop/episodes/26---Lyn-Alden-Bitcoin-is-the-Technological-Solution-We-Need-e1n2tcs</link>
<guid isPermaLink="false">a9f9409c-a1bf-4025-98b3-7623e294b5d7</guid>
<dc:creator><![CDATA[John Vallis]]></dc:creator>
<pubDate>Wed, 31 Aug 2022 08:27:34 GMT</pubDate>
<enclosure url="https://anchor.fm/s/61f23cb0/podcast/play/56767324/https%3A%2F%2Fd3ctxlq1ktw2nl.cloudfront.net%2Fstaging%2F2022-7-29%2Fa6768dd1-91b5-76b7-7ac5-1309b327e552.mp3" length="227449861" type="audio/mpeg"/>
<itunes:summary><p>Today's guest is <a href="https://twitter.com/LynAldenContact" target="_blank">Lyn Alden</a>, founder of <a href="https://www.lynalden.com/" target="_blank">Lyn Alden Investment Strategy</a>, board director of <a href="https://www.swanbitcoin.com/" target="_blank">Swan Bitcoin</a>, and advisor to <a href="https://egodeath.capital/" target="_blank">ego death capital</a>.</p>
<p>Lyn is one of the most highly regarded voices in finance today, both for her excellent commentary on the macroeconomic landscape as well as for her sober, analytical approach to understanding bitcoin. Lyn's ability to distill complex, multi-disciplinary topics into insights that anyone can comprehend has made her a favorite amongst expert investors and humble savers alike.</p>
<p>With all the recent developments in the bitcoin world, as well as the volatility and uncertainty in all financial markets, we thought it was a perfect time to have a chat with Lyn and get her perspective on what's going on.</p>
<p>---</p>
<p>Follow Lyn:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/LynAldenContact" target="_blank">@LynAldenContact</a></li>
<li>Website: <a href="https://www.lynalden.com/" target="_blank">lynalden.com</a></li>
</ul>
<p>Follow John &amp; Seetee:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/johnkvallis" target="_blank">@johnkvallis</a> &amp; <a href="https://twitter.com/Seetee_io" target="_blank">@Seetee_io</a></li>
<li>Website: <a href="https://www.seetee.io/" target="_blank">seetee.io</a></li>
</ul>
<p>Use Podcasting 2.0:</p>
<ul>
<li><a href="https://breez.technology/" target="_blank">Breez.Technology</a></li>
<li><a href="https://www.fountain.fm/" target="_blank">Fountain.FM</a></li>
<li><a href="http://newpodcastapps.com/" target="_blank">NewPodcastApps.com</a></li>
<li><a href="http://value4value.io/" target="_blank">Value4Value.io</a></li>
</ul>
</itunes:summary>
<itunes:explicit>No</itunes:explicit>
<itunes:duration>02:15:23</itunes:duration>
<itunes:image href="https://d3t3ozftmdmh3i.cloudfront.net/production/podcast_uploaded_episode400/16332652/16332652-1661717228917-66ba101c28b1b.jpg"/>
<itunes:season>3</itunes:season>
<itunes:episode>2</itunes:episode>
<itunes:episodeType>full</itunes:episodeType>
</item>
<item>
<title><![CDATA[#25 - Gigi: Bitcoin Offers Deep Stability]]></title>
<podcast:value type="lightning" method="keysend" suggested="0.00000005000">
<podcast:valueRecipient name="John (Host)" type="node" address="02a9cd2bca29dd7e29bdfdf485a8e78b8ccf9327517afa03a59be8f62a58792e1b" split="50"/>
<podcast:valueRecipient name="Gigi (Guest)" type="node" address="02e12fea95f576a680ec1938b7ed98ef0855eadeced493566877d404e404bfbf52" split="50"/>
</podcast:value>
<description><![CDATA[<p>Welcome to Season 3 of <a href="https://www.seetee.io/podcast/" target="_blank">Closing the Loop</a>!</p>
<p>As has become tradition, <a href="https://twitter.com/dergigi" target="_blank">Gigi</a>, our friend and colleague here at <a href="https://www.seetee.io/" target="_blank">Seetee</a>, software engineer, and prolific <a href="https://dergigi.com/bitcoin/" target="_blank">writer</a> in the bitcoin space, has joined us once again, to get this season kicked off.</p>
<p>In our conversation, we reflect on some of the guests and topics of Season 2, discuss our experiences at the <a href="https://oslofreedomforum.com/" target="_blank">Oslo Freedom Forum</a> in Norway recently, and delve into some of the current events, developments, misunderstandings, and musings going on in 'bitcoin land' today.</p>
<p>---</p>
<p>Follow Gigi:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/dergigi" target="_blank">@dergigi</a></li>
<li>Website: <a href="https://dergigi.com/" target="_blank">dergigi.com</a></li>
</ul>
<p>Follow John & Seetee:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/johnkvallis" target="_blank">@johnkvallis</a> & <a href="https://twitter.com/Seetee_io" target="_blank">@Seetee_io</a></li>
<li>Website: <a href="https://www.seetee.io/" target="_blank">seetee.io</a></li>
</ul>
<p>Use Podcasting 2.0:</p>
<ul>
<li><a href="https://breez.technology/" target="_blank">Breez.Technology</a></li>
<li><a href="https://www.fountain.fm/" target="_blank">Fountain.FM</a></li>
<li><a href="http://newpodcastapps.com/" target="_blank">NewPodcastApps.com</a></li>
<li><a href="http://value4value.io/" target="_blank">Value4Value.io</a></li>
</ul>
]]></description>
<link>https://anchor.fm/closingtheloop/episodes/25---Gigi-Bitcoin-Offers-Deep-Stability-e1mbo4s</link>
<guid isPermaLink="false">8dd3f551-3ad4-4906-a146-b025040001d7</guid>
<dc:creator><![CDATA[John Vallis]]></dc:creator>
<pubDate>Mon, 15 Aug 2022 15:43:38 GMT</pubDate>
<enclosure url="https://anchor.fm/s/61f23cb0/podcast/play/56008284/https%3A%2F%2Fd3ctxlq1ktw2nl.cloudfront.net%2Fstaging%2F2022-7-10%2Fd54763c7-697e-4cc2-b7ae-0ad7b7ba6719.mp3" length="226277588" type="audio/mpeg"/>
<itunes:summary><p>Welcome to Season 3 of <a href="https://www.seetee.io/podcast/" target="_blank">Closing the Loop</a>!</p>
<p>As has become tradition, <a href="https://twitter.com/dergigi" target="_blank">Gigi</a>, our friend and colleague here at <a href="https://www.seetee.io/" target="_blank">Seetee</a>, software engineer, and prolific <a href="https://dergigi.com/bitcoin/" target="_blank">writer</a> in the bitcoin space, has joined us once again, to get this season kicked off.</p>
<p>In our conversation, we reflect on some of the guests and topics of Season 2, discuss our experiences at the <a href="https://oslofreedomforum.com/" target="_blank">Oslo Freedom Forum</a> in Norway recently, and delve into some of the current events, developments, misunderstandings, and musings going on in 'bitcoin land' today.</p>
<p>---</p>
<p>Follow Gigi:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/dergigi" target="_blank">@dergigi</a></li>
<li>Website: <a href="https://dergigi.com/" target="_blank">dergigi.com</a></li>
</ul>
<p>Follow John &amp; Seetee:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/johnkvallis" target="_blank">@johnkvallis</a> &amp; <a href="https://twitter.com/Seetee_io" target="_blank">@Seetee_io</a></li>
<li>Website: <a href="https://www.seetee.io/" target="_blank">seetee.io</a></li>
</ul>
<p>Use Podcasting 2.0:</p>
<ul>
<li><a href="https://breez.technology/" target="_blank">Breez.Technology</a></li>
<li><a href="https://www.fountain.fm/" target="_blank">Fountain.FM</a></li>
<li><a href="http://newpodcastapps.com/" target="_blank">NewPodcastApps.com</a></li>
<li><a href="http://value4value.io/" target="_blank">Value4Value.io</a></li>
</ul>
</itunes:summary>
<itunes:explicit>Yes</itunes:explicit>
<itunes:duration>9428</itunes:duration>
<itunes:image href="https://d3t3ozftmdmh3i.cloudfront.net/production/podcast_uploaded_episode400/16332652/16332652-1660158939599-b6f4973849433.jpg"/>
<itunes:season>3</itunes:season>
<itunes:episode>1</itunes:episode>
<itunes:episodeType>full</itunes:episodeType>
</item>
<item>
<title><![CDATA[#24 - Leopoldo López: A Life-Long Struggle for Freedom in Venezuela]]></title>
<podcast:value type="lightning" method="keysend" suggested="0.00000005000">
<podcast:valueRecipient name="John (Host)" type="node" address="02a9cd2bca29dd7e29bdfdf485a8e78b8ccf9327517afa03a59be8f62a58792e1b" split="10"/>
<podcast:valueRecipient name="Human Rights Foundation (Donations)" type="node" address="03bbc38579cf51c6a098d1459371e1c99f26ddf330a76e683b7d485999a9ce48c7" split="90"/>
</podcast:value>
<description><![CDATA[<p>Our guest today is <a href="https://twitter.com/leopoldolopez" target="_blank">Leopoldo López</a>, a democracy activist, former political prisoner of the Maduro government, and national coordinator of the <a href="https://voluntadpopular.com/" target="_blank">'Voluntad Popular'</a> political party in Venezuela.</p>
<p>We recently met Leopoldo at the <a href="https://oslofreedomforum.com/" target="_blank">Oslo Freedom Forum</a> in Norway and subsequently had the chance to spend some time with him and hear the harrowing story of his life-long fight for freedom in Venezuela.</p>
<p>We also spoke to him about Bitcoin, the ways in which it can and does support the cause of freedom, and the critical distinctions between it and all other 'cryptocurrencies.'</p>
<p>In our discussions, we came to greatly admire Leopoldo's character and found his genuine curiosity, humility, and questions about Bitcoin—something which was fairly new to him—to be very endearing. As a result, we thought it would be interesting to invite him on the show, to continue our discussion, and delve further into his fascinating and inspiring story.</p>
<p>"If we figure out ways in which more people have access to financial freedom, that will, in turn, increase the probabilities to have a free society."</p>
<p>---</p>
<p>Follow Leopoldo:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/leopoldolopez" target="_blank">@leopoldolopez</a></li>
<li>Website: <a href="https://leopoldolopez.com/" target="_blank">leopoldolopez.com</a></li>
</ul>
<p>Follow John & Seetee:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/johnkvallis" target="_blank">@johnkvallis</a> & <a href="https://twitter.com/Seetee_io" target="_blank">@Seetee_io</a></li>
<li>Website: <a href="https://www.seetee.io/" target="_blank">seetee.io</a></li>
</ul>
<p>Use Podcasting 2.0:</p>
<ul>
<li><a href="https://breez.technology/" target="_blank">Breez.Technology</a></li>
<li><a href="https://www.fountain.fm/" target="_blank">Fountain.FM</a></li>
<li><a href="http://newpodcastapps.com/" target="_blank">NewPodcastApps.com</a></li>
<li><a href="http://value4value.io/" target="_blank">Value4Value.io</a></li>
</ul>
]]></description>
<link>https://anchor.fm/closingtheloop/episodes/24---Leopoldo-Lpez-A-Life-Long-Struggle-for-Freedom-in-Venezuela-e1lq6to</link>
<guid isPermaLink="false">b819a20c-6123-406d-b976-9a558aba17d5</guid>
<dc:creator><![CDATA[John Vallis]]></dc:creator>
<pubDate>Wed, 03 Aug 2022 11:55:31 GMT</pubDate>
<enclosure url="https://anchor.fm/s/61f23cb0/podcast/play/55433592/https%3A%2F%2Fd3ctxlq1ktw2nl.cloudfront.net%2Fstaging%2F2022-6-28%2F49c7b523-b67a-8856-d389-5281709b421f.mp3" length="227622168" type="audio/mpeg"/>
<itunes:summary><p>Our guest today is <a href="https://twitter.com/leopoldolopez" target="_blank">Leopoldo López</a>, a democracy activist, former political prisoner of the Maduro government, and national coordinator of the <a href="https://voluntadpopular.com/" target="_blank">'Voluntad Popular'</a> political party in Venezuela.</p>
<p>We recently met Leopoldo at the <a href="https://oslofreedomforum.com/" target="_blank">Oslo Freedom Forum</a> in Norway and subsequently had the chance to spend some time with him and hear the harrowing story of his life-long fight for freedom in Venezuela.</p>
<p>We also spoke to him about Bitcoin, the ways in which it can and does support the cause of freedom, and the critical distinctions between it and all other 'cryptocurrencies.'</p>
<p>In our discussions, we came to greatly admire Leopoldo's character and found his genuine curiosity, humility, and questions about Bitcoin—something which was fairly new to him—to be very endearing. As a result, we thought it would be interesting to invite him on the show, to continue our discussion, and delve further into his fascinating and inspiring story.</p>
<p>"If we figure out ways in which more people have access to financial freedom, that will, in turn, increase the probabilities to have a free society."</p>
<p>---</p>
<p>Follow Leopoldo:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/leopoldolopez" target="_blank">@leopoldolopez</a></li>
<li>Website: <a href="https://leopoldolopez.com/" target="_blank">leopoldolopez.com</a></li>
</ul>
<p>Follow John &amp; Seetee:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/johnkvallis" target="_blank">@johnkvallis</a> &amp; <a href="https://twitter.com/Seetee_io" target="_blank">@Seetee_io</a></li>
<li>Website: <a href="https://www.seetee.io/" target="_blank">seetee.io</a></li>
</ul>
<p>Use Podcasting 2.0:</p>
<ul>
<li><a href="https://breez.technology/" target="_blank">Breez.Technology</a></li>
<li><a href="https://www.fountain.fm/" target="_blank">Fountain.FM</a></li>
<li><a href="http://newpodcastapps.com/" target="_blank">NewPodcastApps.com</a></li>
<li><a href="http://value4value.io/" target="_blank">Value4Value.io</a></li>
</ul>
</itunes:summary>
<itunes:explicit>No</itunes:explicit>
<itunes:duration>7113</itunes:duration>
<itunes:image href="https://d3t3ozftmdmh3i.cloudfront.net/production/podcast_uploaded_episode400/16332652/16332652-1659016723356-e73d353ef7c5f.jpg"/>
<itunes:season>2</itunes:season>
<itunes:episode>12</itunes:episode>
<itunes:episodeType>full</itunes:episodeType>
</item>
<item>
<title><![CDATA[#23 - Bernard Parah: All-In on the Mission to Bring More Freedom to Africa w/ Bitcoin]]></title>
<podcast:value type="lightning" method="keysend" suggested="0.00000005000">
<podcast:valueRecipient name="John (Host)" type="node" address="02a9cd2bca29dd7e29bdfdf485a8e78b8ccf9327517afa03a59be8f62a58792e1b" split="10"/>
<podcast:valueRecipient name="Human Rights Foundation (Donations)" type="node" address="03bbc38579cf51c6a098d1459371e1c99f26ddf330a76e683b7d485999a9ce48c7" split="90"/>
</podcast:value>
<description><![CDATA[<p>For this episode, our guest is <a href="https://twitter.com/bernard_parah" target="_blank">Bernard Parah</a>. He is the founder and CEO of <a href="https://bitnob.com/" target="_blank">Bitnob</a>, a Nigerian bitcoin exchange & financial services platform.</p>
<p>We met Bernard recently at the <a href="https://oslofreedomforum.com/" target="_blank">Oslo Freedom Forum</a> in Norway, where we had the chance to hear his story firsthand. His unique perspective on bitcoin, the experience he has gathered when launching Bitnob, and the many fascinating stories he has to share about the challenges of being an entrepreneur in Nigeria make him a unique voice in the ecosystem.</p>
<p>Bernard's passion, purpose, and dedication to Bitcoin are as contagious as they are impressive, which is why we invited him to share his story on <em>Closing the Loop</em>. We hope that putting a spotlight on Bernard's work and his part of the world shows how empowering and essential Bitcoin truly is, especially in those parts of the world that do not share our <a href="https://bitcoin-resources.com/books/check-your-financial-privilege" target="_blank">financial privilege</a>.</p>
<p>"Bitcoin treats everyone as equal," to quote Bernard. "It won't fix everything, but it helps tilt the scale."</p>
<p>---</p>
<p>Follow Bernard:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/bernard_parah" target="_blank">@bernard_parah</a></li>
<li>Website: <a href="https://bitnob.com/" target="_blank">bitnob.com</a></li>
</ul>
<p>Follow John & Seetee:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/johnkvallis" target="_blank">@johnkvallis</a> & <a href="https://twitter.com/Seetee_io" target="_blank">@Seetee_io</a></li>
<li>Website: <a href="https://www.seetee.io/" target="_blank">seetee.io</a></li>
</ul>
<p>Use Podcasting 2.0:</p>
<ul>
<li><a href="https://breez.technology/" target="_blank">Breez.Technology</a></li>
<li><a href="https://www.fountain.fm/" target="_blank">Fountain.FM</a></li>
<li><a href="http://newpodcastapps.com/" target="_blank">NewPodcastApps.com</a></li>
<li><a href="http://value4value.io/" target="_blank">Value4Value.io</a></li>
</ul>
]]></description>
<link>https://anchor.fm/closingtheloop/episodes/23---Bernard-Parah-All-In-on-the-Mission-to-Bring-More-Freedom-to-Africa-w-Bitcoin-e1l68hk</link>
<guid isPermaLink="false">b3cba5e4-dcf1-4a55-9355-cbe5c341b8ff</guid>
<dc:creator><![CDATA[John Vallis]]></dc:creator>
<pubDate>Wed, 20 Jul 2022 09:06:50 GMT</pubDate>
<enclosure url="https://anchor.fm/s/61f23cb0/podcast/play/54779892/https%3A%2F%2Fd3ctxlq1ktw2nl.cloudfront.net%2Fstaging%2F2022-6-13%2F1adddbb9-1317-8b8e-1a3b-e3c0a9229ddc.mp3" length="206998389" type="audio/mpeg"/>
<itunes:summary><p>For this episode, our guest is <a href="https://twitter.com/bernard_parah" target="_blank">Bernard Parah</a>. He is the founder and CEO of <a href="https://bitnob.com/" target="_blank">Bitnob</a>, a Nigerian bitcoin exchange &amp; financial services platform.</p>
<p>We met Bernard recently at the <a href="https://oslofreedomforum.com/" target="_blank">Oslo Freedom Forum</a> in Norway, where we had the chance to hear his story firsthand. His unique perspective on bitcoin, the experience he has gathered when launching Bitnob, and the many fascinating stories he has to share about the challenges of being an entrepreneur in Nigeria make him a unique voice in the ecosystem.</p>
<p>Bernard's passion, purpose, and dedication to Bitcoin are as contagious as they are impressive, which is why we invited him to share his story on <em>Closing the Loop</em>. We hope that putting a spotlight on Bernard's work and his part of the world shows how empowering and essential Bitcoin truly is, especially in those parts of the world that do not share our <a href="https://bitcoin-resources.com/books/check-your-financial-privilege" target="_blank">financial privilege</a>.</p>
<p>"Bitcoin treats everyone as equal," to quote Bernard. "It won't fix everything, but it helps tilt the scale."</p>
<p>---</p>
<p>Follow Bernard:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/bernard_parah" target="_blank">@bernard_parah</a></li>
<li>Website: <a href="https://bitnob.com/" target="_blank">bitnob.com</a></li>
</ul>
<p>Follow John &amp; Seetee:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/johnkvallis" target="_blank">@johnkvallis</a> &amp; <a href="https://twitter.com/Seetee_io" target="_blank">@Seetee_io</a></li>
<li>Website: <a href="https://www.seetee.io/" target="_blank">seetee.io</a></li>
</ul>
<p>Use Podcasting 2.0:</p>
<ul>
<li><a href="https://breez.technology/" target="_blank">Breez.Technology</a></li>
<li><a href="https://www.fountain.fm/" target="_blank">Fountain.FM</a></li>
<li><a href="http://newpodcastapps.com/" target="_blank">NewPodcastApps.com</a></li>
<li><a href="http://value4value.io/" target="_blank">Value4Value.io</a></li>
</ul>
</itunes:summary>
<itunes:explicit>No</itunes:explicit>
<itunes:duration>6468</itunes:duration>
<itunes:image href="https://d3t3ozftmdmh3i.cloudfront.net/production/podcast_uploaded_episode400/16332652/16332652-1657729232227-68271ceab93fb.jpg"/>
<itunes:season>2</itunes:season>
<itunes:episode>11</itunes:episode>
<itunes:episodeType>full</itunes:episodeType>
</item>
<item>
<title><![CDATA[#22 - Shaun Connell: Bitcoin Mining is the 'Holy Grail' for Power Grids]]></title>
<podcast:value type="lightning" method="keysend" suggested="0.00000005000">
<podcast:valueRecipient name="John (Host)" type="node" address="02a9cd2bca29dd7e29bdfdf485a8e78b8ccf9327517afa03a59be8f62a58792e1b" split="10"/>
<podcast:valueRecipient name="Human Rights Foundation (Donations)" type="node" address="03bbc38579cf51c6a098d1459371e1c99f26ddf330a76e683b7d485999a9ce48c7" split="90"/>
</podcast:value>
<description><![CDATA[<p>This episode's guest is <a href="https://twitter.com/ShaunEnergy" target="_blank">Shaun Connell</a>, Executive Vice President of Power at <a href="https://lancium.com/" target="_blank">Lancium</a>.</p>
<p>Lancium develops technologies and builds infrastructure to improve the economic efficiency of power production, balance and stabilize the power grid, and improve the viability of renewable energy resources.</p>
<p>Shaun has a wealth of experience in energy markets, in particular in energy trading and risk management, and through his work at Lancium, he is becoming a leading expert in the rapidly occurring integration of bitcoin mining and traditional energy infrastructure.</p>
<p>We cover a lot of ground in this discussion, and as usual, we could've talked with Shaun for another two hours about all the incredibly fascinating implications of these converging industries. For now, we'll have to save that for part two—sometime in the future.</p>
<p>---</p>
<p>Follow Shaun:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/ShaunEnergy" target="_blank">@ShaunEnergy</a></li>
<li>Website: <a href="https://lancium.com/" target="_blank">lancium.com</a></li>
</ul>
<p>Follow John & Seetee:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/johnkvallis" target="_blank">@johnkvallis</a> & <a href="https://twitter.com/Seetee_io" target="_blank">@Seetee_io</a></li>
<li>Website: <a href="https://www.seetee.io/" target="_blank">seetee.io</a></li>
</ul>
<p>Use Podcasting 2.0:</p>
<ul>
<li><a href="https://breez.technology/" target="_blank">Breez.Technology</a></li>
<li><a href="https://www.fountain.fm/" target="_blank">Fountain.FM</a></li>
<li><a href="http://newpodcastingapps.com/" target="_blank">NewPodcastingApps.com</a></li>
<li><a href="http://value4value.io/" target="_blank">Value4Value.io</a></li>
</ul>
]]></description>
<link>https://anchor.fm/closingtheloop/episodes/22---Shaun-Connell-Bitcoin-Mining-is-the-Holy-Grail-for-Power-Grids-e1kgnr7</link>
<guid isPermaLink="false">a73751bd-bda3-445c-9c35-9632c6a68f62</guid>
<dc:creator><![CDATA[John Vallis]]></dc:creator>
<pubDate>Tue, 05 Jul 2022 07:32:59 GMT</pubDate>
<enclosure url="https://anchor.fm/s/61f23cb0/podcast/play/54074663/https%3A%2F%2Fd3ctxlq1ktw2nl.cloudfront.net%2Fstaging%2F2022-5-27%2F767e696b-5c4e-8761-d283-7e144932aba3.mp3" length="243248719" type="audio/mpeg"/>
<itunes:summary><p>This episode's guest is <a href="https://twitter.com/ShaunEnergy" target="_blank">Shaun Connell</a>, Executive Vice President of Power at <a href="https://lancium.com/" target="_blank">Lancium</a>.</p>
<p>Lancium develops technologies and builds infrastructure to improve the economic efficiency of power production, balance and stabilize the power grid, and improve the viability of renewable energy resources.</p>
<p>Shaun has a wealth of experience in energy markets, in particular in energy trading and risk management, and through his work at Lancium, he is becoming a leading expert in the rapidly occurring integration of bitcoin mining and traditional energy infrastructure.</p>
<p>We cover a lot of ground in this discussion, and as usual, we could've talked with Shaun for another two hours about all the incredibly fascinating implications of these converging industries. For now, we'll have to save that for part two—sometime in the future.</p>
<p>---</p>
<p>Follow Shaun:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/ShaunEnergy" target="_blank">@ShaunEnergy</a></li>
<li>Website: <a href="https://lancium.com/" target="_blank">lancium.com</a></li>
</ul>
<p>Follow John &amp; Seetee:</p>
<ul>
<li>Twitter: <a href="https://twitter.com/johnkvallis" target="_blank">@johnkvallis</a> &amp; <a href="https://twitter.com/Seetee_io" target="_blank">@Seetee_io</a></li>
<li>Website: <a href="https://www.seetee.io/" target="_blank">seetee.io</a></li>
</ul>
<p>Use Podcasting 2.0:</p>
<ul>
<li><a href="https://breez.technology/" target="_blank">Breez.Technology</a></li>
<li><a href="https://www.fountain.fm/" target="_blank">Fountain.FM</a></li>
<li><a href="http://newpodcastingapps.com/" target="_blank">NewPodcastingApps.com</a></li>
<li><a href="http://value4value.io/" target="_blank">Value4Value.io</a></li>
</ul>
</itunes:summary>
<itunes:explicit>No</itunes:explicit>
<itunes:duration>8687</itunes:duration>