-
Notifications
You must be signed in to change notification settings - Fork 2
/
reddit-senti.csv
We can't make this file beautiful and searchable because it's too large.
8732 lines (8732 loc) · 744 KB
/
reddit-senti.csv
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
,neg,neu,pos,compound,Post Titles,Sentiment
0,0,1,0,0,"⚡ Lightning Thursday! January 06, 2022: Explore the Lightning Network!⚡",0
1,0,1,0,0,"Daily Discussion, January 06, 2022",0
2,0,1,0,0,Wahoo... New Years BTC Sale!,0
3,0.075,0.809,0.116,0.1272,"Anyone else experience this? Told my friend at work about Bitcoin, he was really fascinated by it as an inflation hedge. Came back the next day with a bunch of shitcoins but no Bitcoin.",1
4,0,1,0,0,Bitcoin is down 10 percent this year in the first 5 days,0
5,0,0.709,0.291,0.6249,The Great Readjustment: understanding where we are and where we're headed,1
6,0,1,0,0,My goal for 2022 is to get to 0.1 BTC,0
7,0,0.351,0.649,0.5719,Bitcoin bears won,1
8,0,1,0,0,I analysed all the BTC pullbacks of the past 15 months,0
9,0,0,0,0,😢,0
10,0.113,0.887,0,-0.1027,I just threw all my savings into bitcoin and idk how to feel.,-1
11,0,0.799,0.201,0.8074,Bitcoin is a long play. Just chill and don’t invest more than you can afford. Don’t wish your years away in the meantime go find a hobby or do some the thing you enjoy. That’s the whole point,1
12,0.097,0.565,0.338,0.7885,Trigger Warning: Crypto is Not Here To Make You RICH. Crypto is Here To Make You FREE,1
13,0,1,0,0,Airbnb To Implement Crypto Payments,0
14,0.045,0.901,0.054,0.1134,"I have been in Bitcoin for more than a decade at this point, and nothing has convinced more people around me to start DCA saving some of their income in Bitcoin than sending them Michael Saylor videos to help explain Bitcoin to them in a vocabulary that they can understand",1
15,0,1,0,0,Should the Bitcoin Community Start Emphasizing Satoshis and the Price of a Satoshi?,0
16,0.495,0.505,0,-0.7089,WTF? What just happened to Bitcoin?,-1
17,0,1,0,0,Me After Living Through Multiple 50-80% Bitcoin Dips.,0
18,0,0.784,0.216,0.296,Goldman Sachs: Bitcoin is Slowly Taking Gold's Market Share,1
19,0,0.855,0.145,0.296,"Bitcoin is set to take further market share from gold, according to Goldman Sachs",1
20,0,0.606,0.394,0.5994,Loving the dip and buying more BTC,1
21,0,1,0,0,Blood in the streets,0
22,0,0.861,0.139,0.2732,El Salvador plans to create a 'Bitcoin City' and raise $1 billion via a 'Bitcoin Bond',1
23,0.094,0.864,0.042,-0.4871,So buy bitcoin now? Been waiting to buy for a while and with the current dip it seems like now is the time. but people keep saying its about to crash down to the floor soon. Whats your opinion?,-1
24,0,1,0,0,Story of Bitcoin in El Salvador,0
25,0,1,0,0,I analyzed all RSI range movements of BTC of the past 52 months,0
26,0,0.536,0.464,0.3818,Bitcoin is monetary integrity.,1
27,0.102,0.713,0.185,0.7351,Planning to hold Bitcoin for next 2 - 3 years but check Coinbase far too often every day and most days makes me anxious about my investment. Should I delete the app and enjoy ignorant bliss until the day comes that I’m considering selling?,1
28,0,0.909,0.091,0.128,DeVere's Green: Bitcoin to become legal tender in three more countries this year & (buys the dip),1
29,0,1,0,0,leverage in bitcoin,0
30,0,1,0,0,"Bitcoin Dips Below $44K, Crypto Economy Drops 4.5%, Traders Rush to Stablecoins",0
31,0.16,0.84,0,-0.2263,BTC mining: Internet Blackout Reported in Kazakhstan Amid Escalating Anti-Government Protests,-1
32,0,1,0,0,If I sold my btc the price will sky rocket,0
33,0.073,0.862,0.065,-0.0757,"The Fed just needs to crash everything (stocks, real estate, crypto) for i'd estimate about 6-24 months to get wagies back to work and inflation expectionation to chill out. Don't worry its just transit",-1
34,0.395,0.605,0,-0.3832,Kinda scared to buy bitcoin,-1
35,0,0.821,0.179,0.34,"Goldman Sachs says bitcoin will compete with gold as ""store of value""",1
36,0,0.8,0.2,0.6696,You Wanted Futures and Applauded when Wall Street Got Involved! People were were planted here to drum up support. This is what you get.,1
37,0.138,0.718,0.144,0.0258,Banks that were criticized by the creator of Bitcoin 13 years ago now accept cryptocurrencies,0
38,0,0.667,0.333,0.3612,Time for recovery like nothing happen.,1
39,0,0.683,0.317,0.7885,"Another reminder to TAKE YOUR BITCOINS OFF THE EXCHANGES, AND OUT OF INTEREST PROVIDING SERVICES LIKE BLOCKFI",1
40,0,0.741,0.259,0.4939,Bitcoin Could Top $100k By Replacing Gold as a Store of Value: Goldman Sachs — DailyCoin,1
41,0.051,0.837,0.112,0.4003,"Made my first investment recently! 250$ into BTC, as that's all I could comfortably put into it at the moment. How do I deal with the nerves?",1
42,0.049,0.917,0.034,-0.1779,Seeking to redeem physical coin from Tim Fillmore's Titan Mint Bitcoin company. Web site does not work. I have emailed and even messaged him on LinkedIn over the past 3 months. No response. Considering legal action; has anyone else been ripped off by Titan Mint?,-1
43,0,1,0,0,"Bitcoin prices fall but Goldman Sachs predicts it could hit $100,000",0
44,0.263,0.421,0.316,0.128,Honestly Goverments Might Be Manipulating Bitcoin,1
45,0,1,0,0,Can’t buy,0
46,0,1,0,0,"In these times of ""bearish"" sentiment, look at these two data sources:",0
47,0,0.656,0.344,0.6369,What's the best bitcoin quote you have ever heard?,1
48,0.246,0.754,0,-0.4466,BISQ a decentralised exchange for buying and selling bitcoin. NO KYC,-1
49,0,0.819,0.181,0.4767,Lawmakers begin early talks about another round of coronavirus relief targeting businesses. (money printer bailouts),1
50,0.302,0.698,0,-0.3818,Using btc loans as an emergency fund,-1
51,0,1,0,0,Bitcoin düşünce delirmek,0
52,0,1,0,0,Why BTC is crashing? Because it follows the pattern/algo… World’s news agenda follows it,0
53,0,1,0,0,"trading and mining bitcoin, cryptos in a country where it is illigal.",0
54,0,1,0,0,Depositing/withdrawing without KYC,0
55,0.128,0.872,0,-0.5719,~12% of the bitcoin hash rate has been disconnected from the network due to the Kazakhstan Government cutting internet nationwide in response to anti government protests. The bitcoin network continues to operate smoothly. Even if this hash never reconnects that will continue,-1
56,0,0.588,0.412,0.2732,Bitcoin Q&A: Energy Consumption,1
57,0,0.861,0.139,0.2732,"Bulletin: Kazakhstan Faces Uprising against Soaring Energy Costs, Bitcoin Mining Pools Hashrate Drops Greatly",1
58,0,1,0,0,A lesson from Kazakhstan,0
59,0.173,0.682,0.145,0.1027,Seriously. Bears who successfully timed this drop — how did you do it and what signals gave it away?,1
60,0,0.723,0.277,0.3182,British Authorities Strengthen Crackdown on Cryptocurrency Ads,1
61,0,1,0,0,Just out of curiosity.,0
62,0,1,0,0,El Salvador,0
63,0,1,0,0,How the New Regulatory Amendments Draft Really Affects VASPs in Estonia,0
64,0,0.848,0.152,0.3612,Is there a mobile Bitcoin wallet which supports Taproot accounts in read-only mode (master public key)?,1
65,0,0.526,0.474,0.4019,Need help buying Bitcoin.,1
66,0,0.714,0.286,0.34,Medium of exchange vs Store of value,1
67,0,1,0,0,goldshell ck6 in stock,0
68,0,0.861,0.139,0.2732,What will the impact be to bitcoin when nations create there own digital currencies?,1
69,0,1,0,0,Verify Bitcoin full node is a tor hidden service - debug.log,0
70,0,1,0,0,Down Ten Million: Update on Nayib Bukele’s portfolio via @NayibTracker,0
71,0.15,0.765,0.085,-0.3883,"How does ""The Bitcoin Architecture"" know what range of nonces will create a legitimate block without actually hashing all possible outputs itself??!?",-1
72,0.189,0.811,0,-0.2732,Bitcoin's price hits 1-month low as US stock prices fall,-1
73,0,1,0,0,OPINION TIME: At what price would you set your limit orders! (Buy),0
74,0,1,0,0,Blockchain.com wallet insufficient funds why>>?>? any help/?,0
75,0,0.631,0.369,0.6249,"What are ""Bitcoin days destroyed?"" by Awesome Crypto",1
76,0,0.821,0.179,0.34,"Goldman Sachs says bitcoin will compete with gold as ""store of value""",1
77,0.073,0.761,0.166,0.5267,Bitcoins in the future is undoubtedly the best option. But I just don’t believe governments around the world would allow themselves to lose so much of their power to an automated system.,1
78,0,1,0,0,"Fed: ""Rate Hikes"", Bitcoin: Crashes",0
79,0,1,0,0,Wheres Plan B,0
80,0,0.33,0.67,0.7269,Finally orange pilled a good friend,1
81,0.375,0.625,0,-0.34,Warning: qr.js has been overtaken,-1
82,0,1,0,0,Ledger live glitching right now,0
83,0,1,0,0,El Salvador to Move Forward With Issuing Bitcoin Bonds: Finance Minister,0
84,0,1,0,0,Bitcoin calendar 2022,0
85,0,0.854,0.146,0.4404,"If I'm still in high school and about 2k in savings, how much would be safe to invest?",1
86,0,0.951,0.049,0.128,Many experts have started predicting two or three more countries will make Bitcoin legal tender this year in 2022. Here is why I believe Dubai and the UAE will be next.,1
87,0.448,0.552,0,-0.8442,Is anyone else terrified of CBDC's and their potential to enslave humanity?,-1
88,0,1,0,0,Different Bitcoin Prices On Exchanges Question,0
89,0,0.792,0.208,0.2732,"Announcing a new Bitcoin protocol course, Base58’s bitcoin txs class",1
90,0.756,0.244,0,-0.4767,Wrench Attack,-1
91,0,1,0,0,Don't Give Up on Bitcoin Just Yet!,0
92,0.135,0.865,0,-0.1027,Nasdaq company to pay first Bividend – A Dividend Payable In Bitcoin,-1
93,0,0.8,0.2,0.5423,Signing bonus paid in Bitcoin for professional disc golfer Ricky Wysocky ($4 million dollar contract),1
94,0,1,0,0,"Omicron variant likely to fuel inflation, as Americans keep shopping rather than dining out and traveling, retail trade group economist says",0
95,0,0.794,0.206,0.7579,Still Thinking Bitcoin Is a Madoff-Style Ponzi Scheme? Listen to the World’s Best Hedge Fund Managers Investing in Bitcoin. This will probably strengthen your convictions if need be.,1
96,0.432,0.568,0,-0.4215,Having hard time understanding Bitcoin's difficulty adjustment,-1
97,0,0.838,0.162,0.4019,"Although Bitcoin is declining now, it will definitely surpass even higher heights in the future.",1
98,0,1,0,0,"Daily Discussion, January 05, 2022",0
99,0.205,0.531,0.265,0.1999,Friendly Reminder: Do not provide free liquidity to exchanges!,1
100,0.133,0.778,0.089,-0.594,"If we repeat 2013 to 2017, this is what it would look like. The first image shows the brutal path to $100k. The second image shows a post halving mania run. Could you hold to $100K? After it hits $100k, would you hold and enjoy the next rally? This is why holding is so brutal.",-1
101,0,0.87,0.13,0.2023,How real are the chances of recovering my bit coin from Mt Gox?,1
102,0,0.788,0.212,0.3612,"El Salvador To Send 20 Bills To Congress Providing ""Legal Certainty"" For Bitcoin Bond Issuance",1
103,0.21,0.79,0,-0.3384,Do people generally sell their btc? sort of naive q I guess,-1
104,0,1,0,0,Grabbing a bull by it's horns,0
105,0,1,0,0,In theory what would happen to bitcoin sent to a non-existent wallet?,0
106,0,1,0,0,El Salvador Finance Minister: Will Release Bitcoin Bonds,0
107,0.301,0.699,0,-0.6808,Tales from the Crypt: #293: Bitcoin and the Looming US Fiscal Crisis with Avik Roy,-1
108,0.28,0.4,0.32,0.0772,Sudden drop in Bitcoin value?,1
109,0,1,0,0,What to expect on short and long term!?,0
110,0.139,0.861,0,-0.2732,Any way or suggested exchange to buy BTC to cut down the withdraw fee?,-1
111,0,1,0,0,Any predictions around bitcoins behavior against the CBDC?,0
112,0,1,0,0,Bitcoin Dividends! - One company (BTCS) is offering dividends in bitcoin,0
113,0,1,0,0,Where should I buy?,0
114,0.167,0.682,0.151,-0.1179,Everybody is talking about whale manipulation. Why would the whales want to keep the price low? Wouldn’t a rising price be beneficial for everyone?,-1
115,0.275,0.725,0,-0.2263,How to listen for new blocks?,-1
116,0,1,0,0,How accurate are these BTC forecasts?,0
117,0,0.95,0.05,0.2732,Everyone having access to SEPA banking account should look into https://getbittr.com which is a service that automatically exchanges incoming SEPA transfers into Bitcoin and sends it to a preset bitcoin address. One-time as well as recurring payments possible. Fee is 1.5%. Keep stacking.,1
118,0,1,0,0,Segwit; Done... Taproot; Done.... What's the next fork?,0
119,0.236,0.764,0,-0.5719,Are index funds a scam that will be flattened by sound money? (chart inside),-1
120,0,0.723,0.277,0.6705,The Homerun Architecture: Digital Currency (USD Stable Coin) on Top of Digital Asset (Bitcoin) (short audio clip from Michael Saylor),1
121,0,1,0,0,Can Transaction Outputs' Be of Various Types?,0
122,0,1,0,0,Bitcoin short term trend,0
123,0,0.839,0.161,0.3612,"Like Twitter, Anthony Pompliano Predicts More Platforms Adopting Bitcoin's Payment Rails (3-minute audio clip)",1
124,0.096,0.753,0.151,0.2023,BREAKING – Public Nasdaq-listed $BTCS company $BTCS to pay $0.05 per share in bitcoin,1
125,1,0,0,-0.4019,Problem,-1
126,0,0.27,0.73,0.4019,Bitcoin Help?,1
127,0,1,0,0,Advice on asic bitcoin miners,0
128,0,1,0,0,Bummed with bitcoin,0
129,0,0.68,0.32,0.3182,A way to be notified when BTC reaches a certain price,1
130,0,0.867,0.133,0.3182,So i was wondering if someone can link the original BofA Report on El Salvadors Bitcoin adaption?,1
131,0,0.641,0.359,0.4215,Moved from nice hash to Luxor,1
132,0.065,0.711,0.224,0.8294,Buying bitcoin on the wealth simple platform. If I am wanting to start out buying crypto but don’t want to setup the wallet and platforms etc. Is there any strong arguments or issues with buying it off of the wealth simple platform? (50k or less),1
133,0,1,0,0,Bitcoin,0
134,0,1,0,0,I didn't buy the dip even though I bought today.,0
135,0.277,0.552,0.171,-0.3595,Trigger Warning: Crypto is Here To Make You POOR. Bitcoin is Here To Make You FREE!,-1
136,0.18,0.82,0,-0.296,How does a 13 year old buy cryptocurrency with no BTC atms?,-1
137,0,0.886,0.114,0.2023,A thread on the relationship between Stacks and Bitcoin. The top comment is from the founder.,1
138,0,1,0,0,Should I HODL my bitcoin all the way down a bear market?,0
139,0.211,0.789,0,-0.34,"Peter Schiff's ""Scary"" Warning for the US Dollar in 2022...",-1
140,0,1,0,0,UK police have seized more than £300 million in Bitcoin - and get to keep half,0
141,0,0.877,0.123,0.1027,How is it possible for an Indian to legally buy bitcoin?,1
142,0,0.698,0.302,0.3818,Real Estate Attorneys Accept Bitcoin Ethereum & Litecoin,1
143,0,1,0,0,termux Brasil apt update apt upgrade pkg install git bash -termux víruz é v ir uz-- 1s 3.22.1 ClakeOutput.log CMakeTmp,0
144,0,1,0,0,Quantum Entanglement using Bitcoin’s Proof Of Work,0
145,0,0.548,0.452,0.765,"KYC-free Bitcoin circular economies: Free the markets, free the world",1
146,0.209,0.556,0.235,0.2359,Is this manipulation? BITCOIN has broken support and looks like new levels incoming. What is interesting is there is bullish news? Manipulation? Watch to see more,1
147,0,1,0,0,The Bitcoin Patrons You Haven’t Heard About,0
148,0,0.58,0.42,0.4404,Am I supporting the bitcoin network?,1
149,0,0.748,0.252,0.4019,Anyone interested in getting paid to summarize Bitcoin interviews?,1
150,0,1,0,0,Anyone putting in monthly deposits of Bitcoin for your children’s future?,0
151,0.524,0.476,0,-0.296,Stop being A$$holes,-1
152,0.234,0.319,0.447,0.4588,Best no verification Bitcoin Exchange?,1
153,0,1,0,0,Italy: the new place to be for big “cash-outs” from cryptocurrencies,0
154,0,1,0,0,"How much ""absolute scarcity"" should I aim to hold.",0
155,0,0.5,0.5,0.6124,How to improve your Bitcoin mining profitability,1
156,0,0.803,0.197,0.4019,"Bitcoin Holds Support Ahead of Fed Minutes, March Rate Hike Probability Rises",1
157,0,1,0,0,Blockfi vs Celsius vs Crypto.com - 2022 Comparison,0
158,0,0.658,0.342,0.481,MY GOD ITS CRASHING sell.. Sell.. SELL!,1
159,0,1,0,0,Looking for an old Bitcoin Video,0
160,0,0.426,0.574,0.4019,i need some help,1
161,0,1,0,0,Bitcoin will be 20% of my 2022 investments. Here’s why,0
162,0,0.544,0.456,0.7717,Bitcoin The best performing Asset in 2021: Goldman Sachs Research,1
163,0,1,0,0,Stablecoin built on Bitcoin?,0
164,0,1,0,0,"Costed me an hour and $28 to send $3,000 from home to the other side of the planet.",0
165,0,1,0,0,"MoneyGram Takes 4% Stake in Coinme, Building on Existing Partnership",0
166,0,0.806,0.194,0.5927,Is there a foreseeable future where Bitcoin could become the virtual but better Gold of the new world?,1
167,0,1,0,0,Got a Ledger Nano S,0
168,0.147,0.603,0.25,0.296,Where are good places to hide your seed plate?,1
169,0,1,0,0,Is there an age requierement on blockchain?,0
170,0,1,0,0,Lisbon city center has now it's own Bitcoin ATM,0
171,0,1,0,0,Bisq - A decentralized bitcoin exchange network,0
172,0,0.554,0.446,0.8573,Quite good Forbes article without any FUD - How Bitcoin Is Giving Elderly El Salvadorians A Reason To Smile,1
173,0,0.609,0.391,0.5423,"Italy Top Bank, Banca Generali Adds Support For Bitcoin",1
174,0,1,0,0,Ledger is Closed-Source,0
175,0,0.769,0.231,0.2023,In other news; bitcoin still working fine.,1
176,0,1,0,0,Crypto arbitrage in india,0
177,0,1,0,0,Bitcoin cycles theorem - speculation about extended cycles.,0
178,0,1,0,0,Addressing the idea of a Dark winter,0
179,0,0.812,0.188,0.4588,Bitcoin Open Interest Matches Record High Following Predictions of BTC Price ‘Fireworks’ This Month,1
180,0.574,0.426,0,-0.4019,Trouble buying Bitcoin,-1
181,0,1,0,0,Some TA hopium meanwhile whales keep buying,0
182,0,1,0,0,Bitcoin (BTC) turns 13 and continues to move sideways,0
183,0,1,0,0,Goldman Sachs shows Bitcoin outperformed all capital markets in 2021,0
184,0,1,0,0,HRF Gifts 4.25 BTC To Bitcoin Projects,0
185,0.028,0.94,0.032,0.0516,"Do we all realize that any form of capital that we use, that was by someone else is willfully accepting of bondage state with the institutions with control of that capital? So it would behoove us to have a global decentralized form of capital that is run by no one but the users of that capital.",1
186,0.339,0.661,0,-0.6249,Worst case scenario for not running your own node?,-1
187,0,0.732,0.268,0.296,Bitcoin transaction fees are surprisingly cheap lately?,1
188,0,1,0,0,Burak of BitMatrix shows off the LiquidBtc Script Wizard,0
189,0.096,0.693,0.211,0.4215,Apple rejects Bitcoin EC curve: Please help writing - on Github - CONSTRUCTIVE and POLITE contra-arguments and maybe we can convince them to change their mind (requires Github account),1
190,0,0.842,0.158,0.4588,Do we have any historical knowledge on Bitcoin's price movement after the US Fed Raises Interest Rates?,1
191,0.326,0.674,0,-0.4404,Melania Trump just tweeted Bitcoin's genesis block.,-1
192,0,1,0,0,I hodl my keys,0
193,0.212,0.788,0,-0.5423,'Suspicious': Dallas Detectives Seize $100k from Woman at Airport Without Charging Her With a Crime,-1
194,0,0.77,0.23,0.4576,"Very interesting video about Dorian Satoshi Nakatomo, could it be him?",1
195,0,0.769,0.231,0.2732,"Well, it's official. I SODL'ed all my bitcoin 43.2",1
196,0.263,0.582,0.155,-0.3939,BTC.com a scam? Ha e anyone one experiance with this online Wallet before?,-1
197,0,0.818,0.182,0.4404,Bloomberg Editor: Crypto Future Is Bright As Bitcoin Is Becoming Part Of Financial Systems,1
198,0,0.602,0.398,0.5106,BTC private Key with Trust Wallet?,1
199,0,1,0,0,lending bitcoin with ledger,0
200,0,0.927,0.073,0.0258,Michael Saylor: GAAP Accounting Practices Prevent Most Public Companies from Buying Bitcoin (short audio clip),0
201,0,0.843,0.157,0.3818,This is why Netflix can and should accept lightning network bitcoin as a form of payment.,1
202,0,1,0,0,"The Bitcoin Journey Podcast is 1 month old, we are openly reporting our figures so you can see what's going on...",0
203,0.247,0.753,0,-0.3182,coinsquare lost my email address on my account,-1
204,0,1,0,0,Why is Canaan Expanding BTC Mining in Energy-Troubled Kazakhstan?,0
205,0,1,0,0,What is the way to deal with cryptocurrency taxes?,0
206,0,1,0,0,How to get the most out of bitcoin,0
207,0,0.806,0.194,0.34,"Sparrow Bitcoin Wallet - Sparrow’s emphasis is on security, privacy and usability.",1
208,0,1,0,0,The History of Money & The Potential of Crypto - Raoul Pal (AfterSkool illustrated explainer video),0
209,0,1,0,0,I am now in possession of my keys,0
210,0,1,0,0,What are Bitcoin fees? Why are they needed? Cheapest way to withdraw BTC from an exchange? How to minimise transaction fees?,0
211,0,0.472,0.528,0.6808,Method to save taxes on crypto gains,1
212,0,0.828,0.172,0.3612,If you like simple to understand technical analysis you should follow Charting Crypto.,1
213,0,1,0,0,Buying bitcoin with Mercury Bank account,0
214,0,0.738,0.262,0.7506,The colour green represents wealth and money today. But soon wealth and money will be represented by the colour orange.,1
215,0,1,0,0,How to buy bitcoin on Coinbase using a TSB account?,0
216,0,1,0,0,Perspective from 2013 Bitcoin Miner Coming Back into Crypto After 8 Years,0
217,0.085,0.779,0.136,0.2732,New Bitcoin article that claims that Bitcoin is bad for environment. Can you guys help me to add sources to my observations? While my observations are mostly that bitcoin is good for environment and earth,1
218,0.487,0.336,0.176,-0.5719,Bitcoin to confront the global energy crisis,-1
219,0,1,0,0,Lex Fridman talks power of Blockchain,0
220,0,1,0,0,Bitcoin Remittances to El Salvador,0
221,0,1,0,0,Any thoughts on my BTC question?,0
222,0.056,0.793,0.151,0.4741,"If I had access to a kind of very low interest loan, is it worth spending it on Bitcoin or is the recent volatility of the number 1 cryptocurrency proof that it can actually go to zero at any given time?",1
223,0,1,0,0,"Daily Bitcoin News January 4th,2022",0
224,0.589,0.411,0,-0.6486,Bitcoin is dead again?,-1
225,0.143,0.476,0.381,0.4588,"Hey folks, lend a lightning noob a hand.",1
226,0,1,0,0,Bitcoin BIP85; Deterministic Entropy - One Seed Back-up to Rule Them All.,0
227,0,0.86,0.14,0.3818,How do I buy? credit card is an issue and bank xfer is hoop after hoop to navigate,1
228,0,1,0,0,Do We Really Understand Inflation? with Cullen Roche — What Bitcoin Did,0
229,0,0.845,0.155,0.5267,"Other Mozilla's prominent figures (Jwz, co-Creator of Mozilla) and Gecko designer have joined the Mozilla bashing train because they accepted donations in Bitcoin and other cryptocurrencies.",1
230,0,1,0,0,Whole coin right now or DCA?,0
231,0.173,0.786,0.041,-0.7096,"On this day 13 years ago, Satoshi Nakamoto launched Bitcoin. Hidden in the genesis block—mined on January 3, 2009—is a clue. A reaction to the inadequacy and injustice of central banking and fiat currency.",-1
232,0,0.766,0.234,0.6467,Looking for 13 volunteers to celebrate Bitcoin's 13th birthday by setting up your own node!!,1
233,0,1,0,0,Latin America to Become The 2022 Bitcoin Mining Giant,0
234,0,1,0,0,The Rainbow Trader status,0
235,0,1,0,0,Why you always can buy Bitcoin??,0
236,0,1,0,0,I joined the DCA gang,0
237,0,1,0,0,59 Companies and Several Countries Are Holding A Total of 1.49 Million BTC,0
238,0,0.548,0.452,0.5106,BTC has set me free,1
239,0,1,0,0,Len Sassaman and Satoshi,0
240,0,0.88,0.12,0.128,Bitcoin launched 13 years ago today—here are 8 milestones from the past year,1
241,0,0.894,0.106,0.6808,"Every time I watch Mr. Saylor, it blows my mind. With Bitcoin it will be easy to introduce ‘Truth and Consequence’ on the Internet, a kind of ‘Civil Liability’ for cyberspace to clean up most of the massive garbage and corruption on the internet (for example: the ‘orange check’ he mentions).",1
242,0,1,0,0,Bitcoin (BTC) Back of the napkin valuation for the coming capital reallocation,0
243,0.225,0.775,0,-0.4404,I have written a Python script that visualises Bitcoin block headers as “paintings”,-1
244,0,1,0,0,All of MicroStrategy's bitcoin is stored in 2 single sig addresses 1FzWLkAahHooV3kzTgyx6qsswXJ6sCXkSR 1P5ZEDWTKTFGxQjZphgWPQUpe554WKDfHQ,0
245,0.541,0.459,0,-0.7096,Bitcoin fear and greed index on iphone,-1
246,0,1,0,0,Crypto payment provider that allows split payments,0
247,0,0.633,0.367,0.4404,Bitcoin useful for anonymous money transfer?,1
248,0,0.706,0.294,0.7845,What cold storages are the safest? Asking before Bitcoin goes parabolic since I’m assuming cold storage prices will increase too. Thanks all.,1
249,0.099,0.791,0.11,0.0762,We are at least 20 years away from Hyperbitcoinization. The vast majority of people simply don't care about Bitcoin. They don't give a shit.,1
250,0,0.333,0.667,0.25,The Dream.,1
251,0,1,0,0,Tales from the Crypt: Citadel Dispatch e49 - digital privacy tools and strategies with @techloreistaken,0
252,0.136,0.649,0.214,0.0516,Bitcoin as a legal tender in El Salvador - Scientific essay about chances and risks,1
253,0,1,0,0,Bitcoin's Self-Healing Properties,0
254,0,0.519,0.481,0.5719,Happy New Year: Next Catalyst,1
255,0,0.635,0.365,0.3182,Keep calm and buy #Bitcoin,1
256,0,0.86,0.14,0.0772,I want to get into bitcoin buying and selling bandwagon,1
257,0,1,0,0,"Daily Discussion, January 04, 2022",0
258,0,1,0,0,"I know I still got a long way to go, but i finally have 0.1BTC",0
259,0,1,0,0,VERDADEIRA FABRICA DE DINHEIRO,0
260,0.208,0.694,0.098,-0.6486,"The upper class is cruising at economic escape velocity while the lower class is trapped in the gravity well of inflation, pointless jobs, stagnant wages, never-ending debt, and rising cost of living",-1
261,0,0.413,0.587,0.7964,Best place to buy Steam/Valve gift cards?,1
262,0,1,0,0,Coldcard Feedback,0
263,0,1,0,0,I sent bitcoin to the same exchange address I got last month.,0
264,0,0.536,0.464,0.3818,Lightning network unique benefits?,1
265,0,0.811,0.189,0.2716,"Who’s more important on the Bitcoin blockchain, miners or nodes?",1
266,0,0.625,0.375,0.34,Purchase Value of All Bitcoin,1
267,0,0.58,0.42,0.4404,BTC Holding Nicely above $45k,1
268,0,1,0,0,"So what is the ""cryptographic puzzle"" that's being mined exactly? (informative 10 mins!)",0
269,0,1,0,0,SLP335 Don Stuart – Venture Capital and Bitcoin,0
270,0,0.484,0.516,0.4939,Bitcoin's incredible wealth distribution,1
271,0,1,0,0,14 year old nephew wants to invest in BTC,0
272,0,1,0,0,Buying Bitcoin every month for 52 months in a row now - status update,0
273,0,1,0,0,Wire deposit into FTX.US account,0
274,0.081,0.838,0.081,0,"Satoshi's choice for the Genesis Block will always remind us about the inflationary nature of fiat: 12 years later, it's basically impossible to eat out for £5 in UK. Good choice, Satoshi!",0
275,0,1,0,0,Staking vs lending,0
276,0.351,0.649,0,-0.4019,Leftist arguments for and against bitcoin?,-1
277,0,0.796,0.204,0.3182,"Marathon mined 3,197 BTC in 2021, an 846% increase YOY",1
278,0,1,0,0,Where to start?,0
279,0,0.625,0.375,0.6369,Best practices To follow when setting up a Ledger?,1
280,0,1,0,0,Only 10% of Bitcoin Supply Left to Be Mined,0
281,0,1,0,0,$87B Italian Bank To Add Bitcoin Trading,0
282,0,0.913,0.087,0.3182,Inflation won't slow down in 2022. 26 states just raised minimum wage. These people will get their first paycheck this week and increase their spending.,1
283,0,1,0,0,"Daily Bitcoin News Jan 3rd, 2022",0
284,0,1,0,0,Rare footage of Whale buying Bitcoin - crypto meme 2021,0
285,0,1,0,0,Is this normal?,0
286,0,0.27,0.73,0.4019,Help needed.,1
287,0,1,0,0,How does tax work?,0
288,0,1,0,0,#ubibitcoinminging,0
289,0,0.954,0.046,0.1134,"Hi Everyone! I want to sell my piece of land in cash or BTC, but I can't seem to explain or find any agents/title companies that understand how this interaction can take place....",1
290,0,0.417,0.583,0.6369,Best place to invest?,1
291,0,1,0,0,How to monitor multiple wallets,0
292,0,0.334,0.666,0.6114,"Happy Birthday, Bitcoin!",1
293,0,0.588,0.412,0.6369,Best app to DCA Bitcoin (United Kingdom),1
294,0,0.615,0.385,0.3612,What’s it like starting over?,1
295,0,0.821,0.179,0.5719,"Melania Trump Tweets on Bitcoin's Estimated Market Cap on Digital Currency's 13th Anniversary, Netizens Trend 'Happy Birthday Bitcoin'",1
296,0,0.769,0.231,0.4588,Her node is up and running… open a channel with us :),1
297,0,0.465,0.535,0.5574,New and I want to be free,1
298,0,0.79,0.21,0.1511,I want to learn more! Where to start?,1
299,0,1,0,0,LuckyHash Analysis: Fed’s Impact on 2022 Cryptocurrency Market; Can BTC Breakthrough 100 Thousand USD?,0
300,0,1,0,0,Coinbase CEO reportedly buys LA mansion for $133M,0
301,0.099,0.719,0.181,0.3382,"Happy Birthday Bitcoin 🎂 ! On 3 January 2009, the bitcoin network came into existence with Satoshi Nakamoto mining the genesis block of bitcoin (block number 0) 🥳",1
302,0.232,0.727,0.041,-0.7937,Isn’t it a cardinal sin to enter your seed phrase on an internet-connected device? Why would you want an app to generate/manage your seed(s)? Seems very dangerous.,-1
303,0,1,0,0,Jameson Lopp's Annual Bitcoin Review for 2021,0
304,0,0.792,0.208,0.2732,"Money Messiah: God, Bitcoin, and The Evolution of Consciousness",1
305,0,1,0,0,How do segregated and omnibus wallets differentiate?,0
306,0.095,0.905,0,-0.3412,Wanting To Explain to a Baby Boomer What Bitcoin Is? Use This Simple 3-Step Explanation. There’s nothing better than relying on things they’ve already mastered.,-1
307,0,1,0,0,found an old mycelium paper wallet,0
308,0,0.824,0.176,0.5294,Today is proof-of-keys day and Andreas Antonopoulos made an extra video for this special day! Simple rule:,1
309,0,1,0,0,Bitcoin GenesisBlock Was Borned 13 Years Ago Today,0
310,0,0.448,0.552,0.5719,Happy 13th Birthday Bitcoin,1
311,0,1,0,0,Turkish Lira (TRY) is the 29th largest currency in the world and its likely to enter hyperinflation. Never realized it was so large,0
312,0.164,0.596,0.24,0.2537,"No, the EU is NOT going to ban private wallets!",1
313,0,1,0,0,Unpopular opinion,0
314,0,1,0,0,3 Major Signs We're Kicking Off 2022 With a BULLISH Outlook On Bitcoin...,0
315,0,1,0,0,Bitcoin as Foreign Currency for Tax Purposes,0
316,0,0.417,0.583,0.4215,Leap of faith,1
317,0,0.88,0.12,0.128,Bitcoin launched 13 years ago today—here are 8 milestones from the past year,1
318,0.112,0.657,0.231,0.4753,"13 years ago, the Genesis Block was created, marking the beginning of a revolution in the financial world. Happy Birthday Bitcoin!",1
319,0,0.905,0.095,0.6219,"Friendly reminder: Just a couple of hours until proof-of-keys day! Get your funds off the exchanges! Let's verify who really owns the bitcoin. Let's stress-test the exchanges. Do they really hold the reserves they claim? Not your keys, not your coins!",1
320,0,1,0,0,A Message From Hal Finney's Wife,0
321,0,0.594,0.406,0.6249,The Great Reset Triggers A Bitcoin Network Upgrade,1
322,0.176,0.484,0.339,0.4617,2021 Marks Bitcoin's Best Year Despite Modest Growth,1
323,0.242,0.758,0,-0.1531,19 BTC USE-CASES … Did I miss any?,-1
324,0,1,0,0,We Are Year 13 After Bitcoin Network Came Into Existence. Nothing Will Ever Be the Same Again.,0
325,0,1,0,0,Bitcoin Auction,0
326,0,1,0,0,"Daily Discussion, January 03, 2022",0
327,0,0.455,0.545,0.802,Best place to earn interest on your BTC,1
328,0,1,0,0,We are about to hit 700 million transactions made to date on the network,0
329,0,0.714,0.286,0.4215,Why Bitcoin Saved Us: CBDCs Heading into 2022,1
330,0,0.839,0.161,0.3612,"Nexo sent me BTC with about $0.18 in tx fees, will it ever arrive?",1
331,0,1,0,0,What's Next for Bitcoin and Crypto: 5 Trends to Watch in 2022,0
332,0.049,0.85,0.101,0.3182,Are you ready for bitcoin to finally leave the dock on the way to the moon? Because we have barely started our engines.,1
333,0.385,0.615,0,-0.4824,Let's talk about the FIRE community.,-1
334,0,1,0,0,How Bitcoin Works Under the Hood [VIDEO - 22m],0
335,0,1,0,0,Everyone bought the dip at some point,0
336,0.463,0.339,0.199,-0.5994,Warning: DO NOT BUY FROM thebitcoinmachines.com... SCAM ALERT,-1
337,0,1,0,0,What thing determines the bitcoin's price.,0
338,0,0.883,0.117,0.6114,"Happy Birthday BITCOIN! - Proof of Keys 2022 | Not Your Keys, Not Your Bitcoin | Matt Odell, Wiz & Ketan Explain Why You Should Self-Custody-Take-Possession-of-and-HODL Your BITCOIN | With A Cautionary Tale From QuadrigaCX-Gerald Cotten | 1/3/2021",1
339,0,1,0,0,Is it feasible for companies to use the lightning network for payments?,0
340,0,1,0,0,"0.61 BTC + $30,000 Bug Bounty for BIP-119",0
341,0.061,0.939,0,-0.3544,CMC should be shut down!!! CMC fuckn everything up. It's causing serious issues to people who already got scammed too many times by their patrons. If they can't operate a website without glitches then SHUT The COIN MARKET CAP down!!!!,-1
342,0,1,0,0,Bitcoin Hashrate Mints New All-Time Highs,0
343,0,1,0,0,New Year's Bitcoin Listening,0
344,0,1,0,0,bitcoin should be about 400k right now if you extrapolate from the date that the futures went live in 2017,0
345,0,1,0,0,"Mentor Monday, January 03, 2022: Ask all your bitcoin questions!",0
346,0,0.872,0.128,0.5228,How do you read bitcoin blockchains? Bitcoin blockchains looks very different from other cryptos I'm familiar with so I'm try to understand this better,1
347,0.268,0.732,0,-0.296,What if QE and money printing stop?,-1
348,0,1,0,0,Do you put all your savings in Bitcoin? Do you diversify with other investments? Why / why not?,0
349,0,0.752,0.248,0.5106,What is the smallest UTXO that you would feel comfortable with?,1
350,0.337,0.233,0.43,0.2023,Happy Birthday #Genesis Block,1
351,0,1,0,0,Finally set up a Bitcoin Full node!,0
352,0,0.496,0.504,0.7964,What is the best gift Bitcoin has given you?,1
353,0.22,0.682,0.098,-0.3818,Trying to understand how proof-of-work prevents modification of the block chain,-1
354,0,1,0,0,High School Cryptocurrency/Blockchain Club,0
355,0.205,0.795,0,-0.2023,[Starting with crypto] Empty wallet or trade site?,-1
356,0,0.57,0.43,0.6739,THE ESOTERIC BEAUTY OF BTC (part 1),1
357,0,0.651,0.349,0.7096,Easiest way to get service providers or friends to take payment in Crypto?,1
358,0.207,0.793,0,-0.4341,"BTC receiving address on Ledger changes each time, so no test transaction?",-1
359,0,1,0,0,Nakamoto and The Fabric Of Computational Non-Duality,0
360,0,1,0,0,"Why is it called ""Lightning network"" ?",0
361,0,1,0,0,Metal Seedplate - Colorado Fires,0
362,0.178,0.822,0,-0.3818,"Founder of crypto lending platform argues that bitcoin could hit $100,000 by mid-2022",-1
363,0,0.894,0.106,0.0772,I want to start the DCA strategy. Can I do this on Coinbase/Coinbase Pro?,1
364,0,1,0,0,Stocks Vs Bitcoin,0
365,0,1,0,0,From THE MEANING OF MONEY by Ayn Rand,0
366,0,1,0,0,"$6,000 Roth IRA Contribution???",0
367,0,1,0,0,Bitcoiners are living 10 years in the future,0
368,0,1,0,0,Is it too late to invest into crypto?,0
369,0,1,0,0,I met this legend (Davincij15) in Dubai! For those who don’t know he made a video explaining why to buy BTC in 2013,0
370,0.294,0.508,0.198,-0.4019,Does surprisingly low number of full nodes opens the possibility to a 51% attack?,-1
371,0,1,0,0,"Coinswaps by default, Lightning Network and Wallets, Wasabi 2.0 research",0
372,0,0.833,0.167,0.34,what is the secure way to travel to a different country with your bitcoin?,1
373,0,1,0,0,Why I focus on bitcoin,0
374,0,0.754,0.246,0.5562,We need Binance to implement LN to make small bitcoin deposits/withdrawals free!,1
375,0,0.917,0.083,0.2263,New to bitcoin only bought a $100 worth the other day. Now thats its dipping a little should i buy more or wait a few days?,1
376,0,1,0,0,BITCOIN and BLOCKCHAIN TECHNOLOGY,0
377,0,0.667,0.333,0.4588,What’s your favorite Bitcoin interview / talk / debate?,1
378,0,1,0,0,A look back at the biggest bitcoin ETF news of 2021,0
379,0,1,0,0,Regret/rumination (forgotten mBTCs on IRC),0
380,0,0.75,0.25,0.25,Why nonce adjustment can guarantee leading zeros?,1
381,0,1,0,0,bitcoin price discovery is not a reflection of reality,0
382,0,1,0,0,Should I buy the dip for 5k??,0
383,0,1,0,0,how do miners get paid? where does the money(rewards) come from?,0
384,0,1,0,0,"It’s a new year, a new month and a new possibility to stack some sats!",0
385,0,1,0,0,Cottonwood Vending NYC.,0
386,0,0.946,0.054,0.0387,"I want to start investing into Bitcoin but I know nothing about it I just hear It everywhere, how do I get started any resources?",0
387,0,0.746,0.254,0.1779,Need a bigger car for growing family.,1
388,0,1,0,0,Hodl it long,0
389,0,1,0,0,satoshi online on p2pfoundation?,0
390,0,1,0,0,satoshi online on p2pfoundation?,0
391,0.315,0.685,0,-0.3182,BTC locked in lost seed phrases,-1
392,0.085,0.752,0.163,0.5962,ELI5— what happens when most bitcoin owners die off? Basically all or most bitcoin is lost… or even worse… i see so many whales gobbling up bitcoin… what’s the point? It will eventually be with just a handful of super rich folks?,1
393,0,1,0,0,How to withdraw money from Coinbase to your bank account,0
394,0,0.841,0.159,0.7615,"I have a blockchain wallet and i have made a withdrawal of some funds , hence the 14 days period is over but they havnt still released my funds yet . Is a month and over ,i cant transfer or withdraw funds from my wallet . Please can someone help me",1
395,0.23,0.647,0.122,-0.3612,Amazon dot com bubble looks scary close to BTC current run.,-1
396,0.076,0.924,0,-0.1027,"Hi Guys, what is removing crypto from exchanges and putting into hard wallets and how do I do it?",-1
397,0,1,0,0,How is bitcoin / lightning supposed to scale,0
398,0,0.909,0.091,0.128,El Salvador President Nayib Bukele Predicts Two More Countries Will Make Bitcoin Legal Tender In 2022,1
399,0,1,0,0,"Just watched the rise and rise of Bitcoin 2014 documentary. It followed a man named Dan, does anyone know if he's still involved in the bitcoin community and what he's been up to?",0
400,0.359,0.641,0,-0.4215,"International Monetary Fund Fears the ""Cryptoization""",-1
401,0,0.588,0.412,0.6369,GigaChad Michael Saylor best moments - Bitcoin song,1
402,0.281,0.719,0,-0.4404,"Elon Musk Conveniently Forgets About Lightning, AGAIN, Then Ignores It When Confronted",-1
403,0,1,0,0,Steel Man your opposition to learn something,0
404,0,1,0,0,The Evolution of Money,0
405,0,1,0,0,BTC Hash Rate Hits All-Time High,0
406,0.24,0.579,0.182,-0.1779,What incentivize miners to include transactions when creating a block?,-1
407,0.492,0.508,0,-0.4404,Why non-custodial wallets suck,-1
408,0,0.71,0.29,0.5423,"In honor of Hal Finney, the inaugural Running Bitcoin Challenge is Jan 1-10",1
409,0.098,0.902,0,-0.3818,Some Musings on Bitcoin Distribution — More and More Long-Term HODLers and Illiquid BTC. This supply shock will sooner or later affect the price of Bitcoin.,-1
410,0,0.737,0.263,0.3612,Why haven't cellphones developed duress PIN's like Coldcard?,1
411,0,1,0,0,All-Time Highs Bitcoin Song,0
412,0.093,0.81,0.097,0.0258,You can easily run a full bitcoin node (not to be confused with a miner) using a raspberry pi and a 1TB SSD with Umbrel software,0
413,0,0.872,0.128,0.5859,The first globally recognised country that switches over to the lightning network will win in so many ways that will have a profound impact decades into the future.,1
414,0,1,0,0,Inflation hedge?,0
415,0,1,0,0,Exchanges for minors,0
416,0.342,0.658,0,-0.872,"So who's buying right now? Market is tired, Google Trends is low, Crypto Fear & Greed Index is at ""Extreme Fear"", retail nowhere to be seen.",-1
417,0,1,0,0,Umbrel Node & Processing Lightning Network Transactions,0
418,0.182,0.818,0,-0.4404,One more big dipper to flush out the weak hands then it’s rally time..,-1
419,0.63,0.37,0,-0.7783,"Block 5101541, the death of BTC?",-1
420,0,1,0,0,Paid in BTC but Denominated in USD,0
421,0,0.853,0.147,0.2263,MicroStrategy closes the year and buys another $95 million worth of bitcoin,1
422,0.315,0.685,0,-0.3182,Lost backup copy of seed words,-1
423,0,1,0,0,Billionaire Ray Dalio Insists Governments Could Outlaw Bitcoin – Regulation Bitcoin News,0
424,0,1,0,0,Short summary of 2021,0
425,0.184,0.816,0,-0.4019,Can bitcoin held in a hardware wallet be garnished if you lose a civil suit?,-1
426,0,1,0,0,how to generate new bitcoin address on blockchain?,0
427,0,1,0,0,Bitcoin Predictions for 2022,0
428,0,1,0,0,Re-reading Neal Stephenson's Cryptonomicon I realize how much it primed me for Bitcoin,0
429,0,0.588,0.412,0.6369,What's the best self custodian LN wallet?,1
430,0,1,0,0,Link between address?,0
431,0.188,0.5,0.312,0.25,Looking Recommend offline storage for Bitcoin.,1
432,0,1,0,0,Bitcoin finishes 1st day of 2022 up over 3%,0
433,0,1,0,0,"Daily Discussion, January 02, 2022",0
434,0,0.545,0.455,0.3612,Asset Class Return Comparison,1
435,0.109,0.674,0.218,0.4767,Best EU/ UK regulated Crypto/ BTC Exchanges for low fees and fast withdrawals... (Kraken competitors),1
436,0,1,0,0,Scenarip: If banks use bitcoin as first layer money,0
437,0,1,0,0,Question regarding tax - UK,0
438,0,0.64,0.36,0.6204,What game-changing truth do very few hodlers agree with you on?,1
439,0,1,0,0,Jack Dorsey VS Web 3.0: Why Twitter’s Founder Is A Bitcoin Maximalist,0
440,0,1,0,0,"Full Video Guide to make your own Raspberry Pi Zero Bitcoin Tracker with a 2.13"" e-ink screen",0
441,0,0.481,0.519,0.6597,Are entities like MicroStrategy good for BTC?,1
442,0.173,0.462,0.364,0.5106,Is bitcoin only safe when mining gain is bigger than attacking,1
443,0,1,0,0,"It will take 7 Months, 2 Weeks, 3 Days, 22 Hours, 6 Minutes and 39 Seconds to count until 21 million",0
444,0,0.729,0.271,0.6654,"How high does Bitcoin go in 2022?? Cast your prediction, win some sats!",1
445,0.072,0.928,0,-0.2732,Does anyone else think 2021 was a year where institutions were trying to buy as low as possible while OG whales were trying to sell as high as possible.,-1
446,0.268,0.732,0,-0.296,"Stop saying ""We're still early"" - we're not.",-1
447,0,1,0,0,Hilbert-Huang Transform analysis on Bitcoin,0
448,0,0.789,0.211,0.34,How is a secure transfer made from P2P wihtou using KYC?,1
449,0,1,0,0,how to monitor the stability of a chosen platform/trading app company,0
450,0,1,0,0,BIP39 Seed Word Entropy visualized (odds of someone guessing private key seed phrase assuming it has randomness),0
451,0,1,0,0,Company that will set me up for mining?,0
452,0,1,0,0,How do I find my Bitcoin from 2018?,0
453,0.219,0.581,0.2,-0.0772,My friends think I am stupid for buying and believing in bitcoin…,-1
454,0,0.588,0.412,0.4215,I was a bitcoin 100K true believer.,1
455,0,1,0,0,What is an announcement or news that would undeniably cause spike in BTC/USD price and where would this news originate from?,0
456,0,0.714,0.286,0.34,Is bitcoin secure enough... for social engineering?,1
457,0,1,0,0,My Full Lightning Node is up and running!,0
458,0.097,0.736,0.167,0.4939,"Had I gone to college, I’d have a growing, compounding interest debt of $500 dollars a month or more. Since instead I started saving in ₿itcoin, my ₿itcoin interest payments alone are compounding and earning me more than $500 dollars a month in ₿itcoin",1
459,0.264,0.736,0,-0.6486,"Documentary on Gerald Cotten. ""Dead Man's Switch: A Crypto Mystery"" Anyone seen it yet?",-1
460,0,1,0,0,Some Q about mining bitcoin,0
461,0,0.536,0.464,0.6369,I made a Bitcoin accounting template in Excel to share,1
462,0,1,0,0,Is the US Dollar going to fall near soon?,0
463,0,1,0,0,I was told 69420 usd OR...,0
464,0,0.725,0.275,0.2263,Bitcoin Worth Through the Past Decade,1
465,0,1,0,0,Will we ever own a whole Bitcoin?,0
466,0,0.69,0.31,0.4019,Does Blockstream Green support the Lightning Network?,1
467,0,1,0,0,"Bitcoin prototype ""Bit Gold"" by Nick Szabo. (1998)",0
468,0,0.69,0.31,0.4019,Help finding a platform that fits my needs,1
469,0.176,0.824,0,-0.4939,How to invest for retirement in the US today if the dollar collapse in the future?,-1
470,0,0.775,0.225,0.4404,This is coming and it will make spending bitcoin effortlessly easy.,1
471,0,1,0,0,How to start in bitcoin?,0
472,0,0.683,0.317,0.6767,Has anybody noticed? The hashrate seems to be peaking. Natural fluctuations? Looks promising though.,1
473,0,0.448,0.552,0.5719,You have already won.,1
474,0,0.833,0.167,0.5267,Gold Bug Peter Schiff Claims Bitcoin's Yearly Gain of 60% Was Achieved in First 5 Weeks of the Year,1
475,0,1,0,0,Vitalik Buterin's first-ever post on r/bitcoin,0
476,0,0.508,0.492,0.4404,Good habit to have,1
477,0,1,0,0,The year is 2030,0
478,0,0.848,0.152,0.2449,Which industry/market/economy will most likely adopt bitcoin as their currency of choice?,1
479,0,0.741,0.259,0.6369,The greatest resource I can give all the Bitcoiners to continue the hodl 2022,1
480,0,1,0,0,Kevin O'Leary talks Future of Cryptocurrency | Calls Bitcoin Software,0
481,0,1,0,0,MicroStrategy Remains One Step Ahead With $94M Bitcoin Purchase,0
482,0,1,0,0,"BITCOIN History: PGP Creator Phil Zimmermann Calls Out Faketoshi, Talks Bitcoin Technology & More From Andreas Antonopoulos - 2015/2021 Documentaries Mashup",0
483,0.214,0.636,0.15,-0.2732,"Mozilla says they'll accept Bitcoin & crypto donations, gets much hate in their comments",-1
484,0.138,0.714,0.148,0.0516,I'm about to become a proud operator of a full containerized bitcoind node after waiting for initial block download.,1
485,0,1,0,0,Bitcoin Roth IRA,0
486,0,1,0,0,Lightning Channel yield as the new “risk-free” reference rate (in the future)?,0
487,0,0.921,0.079,0.4939,"If you live in a country that has access to a bank or neo bank app that has lightning functionality, ditch your old bank account and adopt the new one that supports lightning. This is the only way we can show the worlds financial apps that they need to integrate with lightning today.",1
488,0,0.859,0.141,0.5574,"""The way to become rich is to put all your eggs in one basket and then watch that basket"" Andrew Carnegie on Bitcoin",1
489,0,0.745,0.255,0.34,US 1099-B overstates Cap gains tax by 10x,1
490,0,0,1,0.4019,Interesting.,1
491,0,1,0,0,Synology NAS for Bitcoin/Lightning full node?,0
492,0,1,0,0,Contributors’ Convictions: A Bitcoin Legacy Letter,0
493,0,0.92,0.08,0.0772,Miners want to rent some of our land and build a structure on it. Why should I know .,1
494,0,1,0,0,Different Bitcoin investing strategies,0
495,0,1,0,0,Rolling old pension into BTC.,0
496,0.252,0.748,0,-0.4003,Here comes the NFT rant and my Bitcoin journey!,-1
497,0,0.889,0.111,0.3612,Can anyone explain me why options like shorts or longs on future BTC have such an influence in BTC Spot price?,1
498,0,1,0,0,Bitcoin trading.,0
499,0.762,0.238,0,-0.4939,Stolen Seed,-1
500,0.412,0.588,0,-0.4215,How would a recession affect BTC?,-1
501,0.073,0.798,0.129,0.4496,Which UK banks are best for transferring bitcoin?I used to use Santander to transfer my fiat money for bitcoin but recently after every transfer they block my account and ask me to call them. Are there any UK banks that are more accepting bitcoin transactions?,1
502,0,0.625,0.375,0.5574,Cryptocurrencies Approach New Year in Positive Mood,1
503,0,1,0,0,Thinking about my by ins for this year.,0
504,0,1,0,0,Bitcoin Core Hanging,0
505,0,1,0,0,How I DCA bitcoin,0
506,0,0.588,0.412,0.6369,Hodl Your Love for New Year (OC),1
507,0,1,0,0,"Daily Discussion, January 01, 2022",0
508,0,1,0,0,Bitcoin will hit $100k,0
509,0,1,0,0,Chinese New Year,0
510,0,1,0,0,Bitcoin bonds,0
511,0,1,0,0,Indiana Bitcoin Maximalists?,0
512,0,1,0,0,Future BTC Price Predictions #BeyondPlanB,0
513,0,1,0,0,A short story of my coins,0
514,0,0.581,0.419,0.802,What's the best way to earn interest on Bitcoin in the US?,1
515,0,1,0,0,Bitcoin to Trad-Fi Comparisons,0
516,0,1,0,0,How many of you are actually paying taxes on BTC income?,0
517,0.2,0.48,0.32,0.3595,Happy new year … and ignore the USD price!,1
518,0,1,0,0,"Need advice, I'm a beginner.",0
519,0,1,0,0,Resources for Bitcoin on chain data analysis,0
520,0.063,0.84,0.097,0.2023,Got the strike app and curious how they don’t charge any fees (even mining fees). Do they take a percentage of btc purchases?,1
521,0,0.706,0.294,0.3612,Thank you to all the OG hodlers,1
522,0,0.884,0.116,0.7325,"Not to toot my own bugle, but 16 months ago, I had created a thread when Bitcoin was $12000, and enumerated the reasons it was a very bullish asset then. I had also made a rough prediction/estimate of end of 2021 price of $40k, which isn't too far from what the price is today.",1
523,0,0.222,0.778,0.5423,Rational Optimism,1
524,0,1,0,0,"Additional to Binance card, what other crypto cards are there and where can I see a comparison?",0
525,0,0.872,0.128,0.2263,Bitcoin Treasuries List Claims 59 Companies and a Handful of Countries Hold 1.49 Million BTC,1
526,0,1,0,0,What is a crypto project?,0
527,0,1,0,0,Everyone said 100k by 2022,0
528,0,1,0,0,Made bitcoin tracker out of an old pi zero. Link to dev and instructions in the comments,0
529,0,0.769,0.231,0.2732,Can you create DAOs and NFTs with bitcoin?,1
530,0.15,0.663,0.187,0.1139,is it possible to make a Bitcoin without the energy problem,1
531,0,0.708,0.292,0.6553,Where do you guys recommend buying your Bitcoin? And where do you recommend storing it?,1
532,0,0.469,0.531,0.7783,Sapio: Smart Contracts for Bitcoin by Awesome Crypto,1
533,0,1,0,0,Blockchain Developing,0
534,0,1,0,0,2022 is the year of Bitcoin education,0
535,0.092,0.709,0.199,0.3612,Proposal - Efficient reusable Taproot addresses (improvement over stealth addresses / BIP47 payment codes),1
536,0,0.936,0.064,0.0258,What happened to all the clowns constantly claiming that Bitcoin would reach $100 before the new year?,0
537,0,1,0,0,Some Bitcoin statistics to start the year:,0
538,0,0.727,0.273,0.9516,Posted this 3 years ago. Can’t remember what was happening but It’s funny looking back. 18k to 6k puts the dips going on atm into perspective. Happy new year folks! What goes up must go down but best believe we’ll always bounce back stronger💯,1
539,0.516,0.484,0,-0.4939,Taxes on stolen Bitcoin?,-1
540,0,1,0,0,looking for old viral video,0
541,0,1,0,0,Bitcoin-HODLing Companies Keep Up With S&P 500,0
542,0,1,0,0,My 2021 BTC journey and questions…,0
543,0.239,0.761,0,-0.296,"“I have only 600 bitcoins…I missed the bus""",-1
544,0.148,0.323,0.529,0.7096,How does Bitcoin gain value as fiat loses value?,1
545,0,0.529,0.471,0.8412,Happy new year ! puzzle around 1:12 for 54 000 sats :D,1
546,0,1,0,0,Find out what wallet?,0
547,0,0.484,0.516,0.4939,When sovereign wealth funds?,1
548,0.22,0.78,0,-0.4767,Lighting makes every other payments network on earth look broken by comparison.,-1
549,0,1,0,0,I got tipped this on the beach,0
550,0.423,0.577,0,-0.296,Sell pressure 50.000.000$ a day.,-1
551,0,1,0,0,The Year 2021 in 10 Key Moments for Bitcoin. 2022 will be an even more exceptional year for you if you are a Bitcoin HODLer.,0
552,0.047,0.899,0.054,0.0516,"Is it still worth mining Bitcoin? I have around £5k of disposable income and I’m thinking of setting up a rig, but wanted to hear everyone else’s experience.",1
553,0,0.777,0.223,0.3182,2021 was a huge step forward in terms of hyperbitcoinization,1
554,0,1,0,0,Encrypt your Seed Phrase with a 2 word password,0
555,0,0.704,0.296,0.4939,How is the increased Energy cost impacting the crypto currency mining “market”?,1
556,0,0.634,0.366,0.6369,I saved 42.5% on Capital Gains taxes owed by doing a wash sale.,1
557,0,1,0,0,Eric Voskuil on Cryptoeconomics in Zurich February 2018,0
558,0,1,0,0,George Athanassakos (Seat tight and HODL),0
559,0,0.844,0.156,0.4019,"To see baseline Bitcoin adoption over time, measure the solid floors that hodlers establish, well below the more exotic day trading activity.",1
560,0,1,0,0,BITCOIN REWIND 2021,0
561,0.135,0.865,0,-0.1027,BTC getting sold hard on every rally attempt. Is there,-1
562,0.329,0.479,0.192,-0.25,"theguardian: ""We have a powerful weapon to fight inflation: price controls.""",-1
563,0.094,0.831,0.075,-0.1759,"US Congressman on Bitcoin: ""Even when 60% of the world’s Bitcoin mining was forced out of China, the network remained reliable. This technology is capable of so much—if we let it!""",-1
564,0,1,0,0,Am I the only one that think 2022 will be another sideways year?,0
565,0.171,0.829,0,-0.5423,El Salvador is using BTC as it's form of currency ( And why this is bad for USA Economy),-1
566,0,1,0,0,Secret message begin!,0
567,0,0.765,0.235,0.6114,Happy new year everyone! How high do you think Bitcoin will climb in 2022?,1
568,0,0.809,0.191,0.6435,"End of 2021 BITCOIN Clips: Saylor, Pomp, El Salvador Documentary, Grayscale ETF & More - Dec 2021 - Happy New Year BITCOIN!",1
569,0,0.722,0.278,0.4019,Can someone help me access my Bitcoin wallet?,1
570,0,1,0,0,2021 Bitcoin Review with Matt Odell — What Bitcoin Did,0
571,0,1,0,0,There is SOME degenerate advice on here,0
572,0,1,0,0,December 31st 2021 - The End of...,0
573,0,0.793,0.207,0.7412,"I paint stuff, painted this bitcoin pill with oil paints and some glitter! ₿💊🎨🖌️ What you think? Hope ya like it! Even got Satoshi to sign it!",1
574,0,1,0,0,"MicroStrategy has purchased an additional 1,914 bitcoins for ~$94.2 million in cash at an average price of ~$49,229 per #bitcoin. As of 12/29/21 we #hodl ~124,391 bitcoins acquired for ~$3.75 billion at an average price of ~$30,159 per bitcoin.",0
575,0,0.58,0.42,0.4404,Good Android Wallet for BTC,1
576,0.22,0.78,0,-0.1759,Hard wallet question! Looking for your insight,-1
577,0.196,0.804,0,-0.296,A finance professor’s advice on investing in bitcoin: Just say no,-1
578,0,0.656,0.344,0.2732,I’m waiting for god candle,1
579,0,0.294,0.706,0.34,Bitcoins value,1
580,0,1,0,0,Buying cheap sats,0
581,0,1,0,0,How to teach kids to calculate a Bitcoin. #BitcoinEducation #homeschooling,0
582,0,1,0,0,Future of Cryptocurrency in 2022,0
583,0.162,0.838,0,-0.4019,"MicroStrategy, Bitcoin's Biggest Corporate Backer, Announces $94 Million Investment Amid $250 Billion Crypto Market Crash",-1
584,0,1,0,0,Just 1.3 million Bitcoin left circulating on crypto exchanges,0
585,0.084,0.705,0.211,0.3871,"MexBT not allowing withdrawal, and their support phone line is disconnected",1
586,0,1,0,0,"Daily Discussion, December 31, 2021",0
587,0,1,0,0,Raspberry Pi Node,0
588,0,1,0,0,How to get bitcoin into cash?,0
589,0.046,0.907,0.046,0,"Bitcoin Halving. I don’t understand why the halving will make the price of BTC and the market drop. Halving means that less BTC will be mind for the same amount of energy. So wouldn’t that cause the price to go up, do to scarcity?",0
590,0,0.888,0.112,0.3094,Is investing $5 a day worth the effort at all over the long term? Or will the results be nonnoticeable?,1
591,0,1,0,0,"""It might make sense just to get some in case it catches on.” — Satoshi Nakamoto on Bitcoin in 2009",0
592,0,1,0,0,An average persons critique of bitcoin,0
593,0,1,0,0,Long Island ~ Bitcoin Boozers! | Meetup,0
594,0,1,0,0,Human B | The Insight Journey Into The Bitcoin Rabbit Hole | english subtitles,0
595,0,1,0,0,"The Lightning network is gonna change it all, but I have a few questions…",0
596,0,0.8,0.2,0.6114,Happy New Year 2022 to all Bitcoiners and to the FED for more money printing to come! 😄,1
597,0,1,0,0,MicroStrategy Buys Another $94.2 Million of Bitcoin,0
598,0,0.737,0.263,0.3612,Year 2021 Data Cements Bitcoin As Risk-On Asset,1
599,0,0.882,0.118,0.34,ARK Invest ($ARKK) just published this whitepaper on how to value Bitcoin's fundamentals using the power of on-chain data.,1
600,0,0.853,0.147,0.4753,Hi everyone! My tax guy said that i don’t need to report selling Crypto to the IRS. Is that true?,1
601,0,0.5,0.5,0.6124,"First time buying with crypto, please help.",1
602,0,1,0,0,Factored in satoshi Nakamoto’s bitcoins into the price?,0
603,0,1,0,0,Paper wallet question,0
604,0.285,0.715,0,-0.4926,Tik Tok next Block! See you in 2022 🚀 🎆🎆🎆🎆🎆🎆🎆🎆🎆🎆🎆🎆🎆🎆🎆🎆🎆🎆🎆🎆🎆,-1
605,0,1,0,0,Muun wallet,0
606,0,0.723,0.277,0.8481,I read a lot of posts early this year about Bitcoin on track to 100k by end of year and everyone seemed super confident. Well here we are....wtf happened?,1
607,0,0.823,0.177,0.3774,How to buy Bitcoin and accumulate in my ledger without paying CRAZY fees,1
608,0,1,0,0,"Film adaptation of the book ""Bitcoin Billionaires"" by Ben Mezrich, when ?",0
609,0,0.294,0.706,0.34,Overthinking security,1
610,0,0.914,0.086,0.5267,"2013 -> premined altcoins 2017 -> ICOs 2021 -> NFTs ------------------- Every 4 year market cycle we see a trendy new type of Shitcoin that people want to sell to get your Bitcoin. Remember, Bitcoin is valuable because it’s scarce. Shitcoins are not scarce, so don’t trade your Bitcoin for Shitcoins",1
611,0,0.745,0.255,0.3382,Bitcoin now greener then Germany in energy usage !,1
612,0,1,0,0,Let's get to the basics,0
613,0,0.845,0.155,0.5949,For all the new people to the crypto market: You have to be so grateful if #Bitcoin goes through a bear market first.😉,1
614,0,0.826,0.174,0.2263,MicroStrategy Buys Another $94 Million Worth of BTC Amid $49K,1
615,0,1,0,0,Ledger wallet seed vs BTC seed. Can you access the Blockchain without a HW wallet if a ledger was set up?,0
616,0.089,0.847,0.064,-0.0258,"Microstrategy's massive hoard of 124,391 BTC @ average price of 30,159 is now a critical support level for Bitcoin and Mircrostrategy. This is a price point at which Bitcoin demand and supply will be watched closely by both Bulls and the Bears.",0
617,0.545,0.455,0,-0.0516,Noob question,-1
618,0,1,0,0,Question about network fee,0
619,0,1,0,0,Need reliable platform to buy Bitcoin without KYC,0
620,0,1,0,0,BITCOIN ATM,0
621,0,1,0,0,The Bitcoin blockchain is the most legitimate thing to ever exist,0
622,0.247,0.753,0,-0.6776,Going to a country where merchants don't accept lightning invoices will soon be the same as going to a country where no merchants accept visa,-1
623,0,1,0,0,Bitcoin Makes It As A New Word In The Sixth Edition Of The Merriam-Webster Scrabble Dictionary After An Explosive 2021,0
624,0,1,0,0,What happens to fractions of cents when BTC or any crypto is transferred?,0
625,0.16,0.84,0,-0.2263,"[question] RPC in Bitcoin Core: one full user, and several limited",-1
626,0,1,0,0,Hodling Bitcoin in US are there taxes?,0
627,0,1,0,0,Even in bear mode you only need 8 years savings in Bitcoin to retire.,0
628,0,1,0,0,"Bitcoin 2022 Conference April 6-9 in Miami Beach, Florida",0
629,0,1,0,0,Close to $50 Million in Bitcoin From 2011 Moved for the First Time in 10.5 Years – News Bitcoin News - Kyindo,0
630,0,1,0,0,"Bitcoin does the opposite of what the majority says it’s going to do, again.",0
631,0,1,0,0,"What is the general consensus on BTC lending platforms such as CDC, Celsius, BlockFI etc?",0
632,0,0.737,0.263,0.3612,To the early adopters and advocates - I thank you,1
633,0.429,0.571,0,-0.128,New mining rig,-1
634,0,1,0,0,Look at that green candle woowee $48.5k,0
635,0.244,0.756,0,-0.4404,So Bitcoin we own is actually a key to the block?,-1
636,0.333,0.667,0,-0.4576,Why are people extremely blind about Bitcoin ?,-1
637,0,0.5,0.5,0.4588,Bitcoin could benefit FIAT,1
638,0,0.889,0.111,0.4576,"Bitcoin miners have earned nearly $38 billion over the past 13 years and revenue is accelerating. This number assumes they instantly sell for fiat, which is most certainly not the case - miners are HODLers.",1
639,0,0.323,0.677,0.6369,Best bitcoin dashboard,1
640,0.191,0.696,0.113,-0.2263,Why do some Bitcoiners want progressives to stop adopting Bitcoin?,-1
641,0,1,0,0,Tipped the waiter with Sats in India,0
642,0.403,0.597,0,-0.4019,Just me who wants a crash?,-1
643,0,1,0,0,How do you think Bitcoin and the crypto market will respond to the $6B options expiring tomorrow?,0
644,0,0.649,0.351,0.6597,Can someone please explain why Bitcoin is actually effective at using electricity?,1
645,0,0.874,0.126,0.0772,Why do people want more USD and not more BTC,1
646,0,1,0,0,"If Just A Few Are Hording All The BTC, How Do You Introduce It As A Public Currency?",0
647,0.184,0.632,0.184,0,Friendly reminder: Engraved metal seed will not survive grenade explosion and nuclear bomb,0
648,0,1,0,0,Alternatives to Bitcoin core?,0
649,0,1,0,0,"The IMF: Global Regulation, Licensing For Bitcoin, And Capital Requirements",0
650,0,0.707,0.293,0.4404,Proof 2022 will be a good year for BITCOIN.,1
651,0,0.649,0.351,0.4019,Ledger safest spot to store Bitcoin,1
652,0,1,0,0,Where Can One View Bitcoin Options and when they Expire?,0
653,0,1,0,0,KYC & Non-KYC BTC in cold storage,0
654,0,1,0,0,Can Michael Saylor sell all bitcoins at the request of Microstrategy shareholders if the bitcoin price stays below the average purchase price for several months?,0
655,0,0.705,0.295,0.5574,We want decentralization of monetary power and yet we still cheer for Microstrategy......,1
656,0.209,0.791,0,-0.4404,"When the First ASIC Machines Went Online, Did Block Time Decrease Dramatically?",-1
657,0,1,0,0,Microstrategy Ultimate strategy,0
658,0,1,0,0,Anyone going to the The North American Bitcoin Conference? Are there any discount codes for the tickets?,0
659,0,1,0,0,People are misinterpreting the cause behind Bitcoin's declining exchange balances and dormant adresses over the last 3 years. It's not because more people are hodling...,0
660,0,1,0,0,Questions regarding BTC,0
661,0,0.678,0.322,0.6408,"Marathon Digital Buys 78,000 Antminer S19 XP Bitcoin Miners Worth Almost $900M - Kyindo",1
662,0,1,0,0,OTC execution,0
663,0,1,0,0,Building on bitcoin,0
664,0,1,0,0,"Daily Discussion, December 30, 2021",0
665,0,0.909,0.091,0.0258,Does it matter using the same bitcoin address to send my bitcoin.,0
666,0,1,0,0,Footprint: 3 reasons to buy Bitcoin ETF rather than BTC,0
667,0,1,0,0,Testnet,0
668,0.605,0.395,0,-0.6801,Is Bitcoin really dead?,-1
669,0,1,0,0,For Bitcoin to become a medium of exchange…,0
670,0,1,0,0,Remember When People Wanted 1 Dollar Instead of 1 Bitcoin? What Would the Response Be Today?,0
671,0,1,0,0,A Bitcoin watch you need BTC to purchase,0
672,0,0.584,0.416,0.6908,"We Got a Winner: ""Bitcoin Will Be Worth $10M in 2029""",1
673,0,0.43,0.57,0.6486,Embrace the sub cycles I guess :),1
674,0,1,0,0,"I hold BTC ON A Ledger Nano X. Should I buy a second Nano X as a backup wallet, and what’s a backup’s purpose, anyway?",0
675,0.393,0.607,0,-0.3802,Tracking down lost Bitcoin? Halp!,-1
676,0,1,0,0,If anyone is looking for a 501c3 non-profit to donate to before 12/31...,0
677,0.068,0.932,0,-0.1531,"Compare Bitcoin and the Anachronistic Banking System on LinkedIn, Then Get Censored. On why we need decentralization in all domains more than ever.",-1
678,0,1,0,0,Tales from the Crypt: Rabbit Hole Recap #180: End of 2021 roundup,0
679,0,1,0,0,"Bitcoin Should Not Be Measured In Dollar Terms, Says Pompliano",0
680,0,0.615,0.385,0.3612,Bitcoin Magazine reads like Zerohedge,1
681,0,1,0,0,I am under 18 and have some Bitcoin in an exchange and need ID to withdraw.,0
682,0,0.805,0.195,0.3947,How much more decentralized and secure is bitcoin compared to other cryptos?,1
683,0,1,0,0,Bitcoin owners are the equivalent of land owners in the Middle Ages.,0
684,0,1,0,0,Issue with adoption by more countries?,0
685,0.069,0.806,0.125,0.4404,"Bitcoin Opens Your Eyes to the Trap of the Consumer Society and Offers You a Way Out. With Bitcoin, you have access to the best savings technology in the world.",1
686,0,0.625,0.375,0.34,Coinbase Pro security flaw exploitable,1
687,0,1,0,0,Guy Says he Has a Formula to Bitcoin Trading and Wants me to Write Automated Software for Him,0
688,0,0.69,0.31,0.4019,Help with accessing my 2013 Blockchain.com wallet.,1
689,0,0.78,0.22,0.8349,"I just decided to apply to UPGRADE cc and got approved! Basically, they give unlimited 1.5 % back in Bitcoin!! Is anyone using that card here ? I would love to hear some feedback",1
690,0,0.661,0.339,0.4767,Careers in client security solutions and other Bitcoin career ideas.,1
691,0,0.396,0.604,0.7269,Good short film on generational wealth,1
692,0,0.68,0.32,0.5106,How to add BTC to a revocable living trust,1
693,0,1,0,0,Can’t get money out of Coinbase. I posed on their subreddit too. Everyone who said get your own keys was absolutely right.,0
694,0,1,0,0,Sell on Dec 31st and Buy on Jan 1st for Taxes?,0
695,0,1,0,0,Bitcoin on children book about money,0
696,0.143,0.857,0,-0.4874,"Not sure if this is the right sub, but.. I transferred btc from my electrum wallet to a wallet on a dark market, and it’s no where to be found 😭",-1
697,0,0.876,0.124,0.4019,"Marathon Bought 78,000 Bitcoin Miners For $879 Million - Expects To Have 199,000 Active Machines Outputting 23 EH/s By Early 2023",1
698,0,1,0,0,Companies with large amount of BTC,0
699,0,1,0,0,"⚡ Lightning Thursday! December 30, 2021: Explore the Lightning Network!⚡",0
700,0,1,0,0,Full ape into Bitcoin,0
701,0,1,0,0,ideas for my Bitcoin art?,0
702,0,1,0,0,Why does it take so long to get btc from coinbase to coinbase wallet?,0
703,0.132,0.735,0.132,0,People are selling into the New Year to realize tax losses and close positions before the holiday,0
704,0.259,0.741,0,-0.4215,Bitcoin Price over 1 Million USD = Useless as payment option?,-1
705,0,1,0,0,"Daily Bitcoin News December 29th, 2021",0
706,0,1,0,0,The Unhashed Podcast: BOGGED Down,0
707,0.31,0.69,0,-0.5574,How Many Countries in The World That Ban Cryptocurrency?,-1
708,0.112,0.612,0.276,0.296,"KYC Alert: Coinone to Stop Withdrawal to Certain Wallets, Other South Korean Crypto Exchange Might Follow",1
709,0,0.851,0.149,0.2732,How is it possible for Bitcoin to use excessed energy caused by windparks?,1
710,0,1,0,0,Bitcoin is nationless,0
711,0,1,0,0,What was your response the first time you were introduced to BTC?,0
712,0.038,0.809,0.153,0.6759,Blast from the past! Anyone remember doing this? Or did you set up your own mining rig before early sites like these? I feel spoiled by the convenience of all these easy to use modern exchanges.,1
713,0,1,0,0,What BTC price slump? Bitcoin outperforms stocks and gold for 3rd year in a row,0
714,0.452,0.548,0,-0.5106,Coldcard seed XOR dumb questions,-1
715,0,1,0,0,This is how Bitcoin is perceived in Hong Kong,0
716,0.18,0.82,0,-0.296,Bitcoin Money Laundering? No. USA is king and Australia it's queen.,-1
717,0,1,0,0,The exchange rate of Bitcoin to national currencies is mostly irrelevant when compared to Bitcoin's increasing adoption by humans across the planet as a more globally resilient approach to savings accounts.,0
718,0,1,0,0,Just ordered my first hardware wallet (Ledger Nano S) 😊,0
719,0.095,0.823,0.082,-0.0772,Coinone will no longer allow withdrawals to unverified external wallets (it could happen to you. Withdraw your funds from all exchanges),-1
720,0,1,0,0,Applications of Bitcoin,0
721,0.279,0.721,0,-0.4767,How do you know if it's a fake trading site,-1
722,0,1,0,0,An African Perspective on Why the World Needs Cryptocurrencies – Op-Ed Bitcoin News,0
723,0,1,0,0,Bitcoin mining on quantum computers,0
724,0,0.682,0.318,0.4199,"Bitcoin's Lightning Network now supports 3,500+ podcasters!",1
725,0,0.323,0.677,0.2732,Forgive me,1
726,0,1,0,0,"Bitcoin City, El Salvador Documentary- Trailer",0
727,0,1,0,0,In-Depth: $5.7 Billion of Bitcoin Options Set to Expire on Friday,0
728,0,1,0,0,How will Quantum Computing effect Bitcoin?,0
729,0,0.819,0.181,0.4767,What do you think of having access to Bitcoin through ETF's and trusts as proxies?,1
730,0.065,0.765,0.171,0.5574,"A plague is sweeping the globe, fiat currencies are inflating at an unprecedented rate. You are uncertain about your future. Buy Bitcoin today, and build a brighter, wealthier future for tomorrow.",1
731,0,1,0,0,What are you doing with the Bitcoin that you are holding?,0
732,0,1,0,0,"Bitcoin Transaction: What happens on the blockchain when fiat is transferred into crypto (BTC) e.g. through BTC ATM's, on a cryptoexchange?",0
733,0,1,0,0,Alternative Openbazaar,0
734,0.237,0.763,0,-0.4215,60k Bitcoin to the moon 🌙 Boomer regret meme compilation 2021,-1
735,0.127,0.727,0.145,0.0772,"Do you use SMS 2FA? If so, your funds are at risk. Crypto security",1
736,0,0.722,0.278,0.4019,Help needed about currency change while sending money,1
737,0,0.491,0.509,0.634,"Bitcoin dominance down, is this a good thing?",1
738,0,1,0,0,The Winklevoss twins Explain Bitcoin to a Nocoiner,0
739,0.223,0.777,0,-0.4871,What happens to Bitcoin if the power grid fails? (is this accurate?),-1
740,0.107,0.893,0,-0.0516,"I'm a crypto noob, is now the right time to get in?",-1
741,0,1,0,0,This Man Predicts Bitcoin back in 1999,0
742,0,0.667,0.333,0.25,Anti-bitcoin = Anti-freedom. Convince me otherwise.,1
743,0,0.769,0.231,0.2732,Mike Novogratz: BTC Doesn’t Use That Much Energy,1
744,0,0.764,0.236,0.5267,#bitcoin is winning the lottery in slow motion. Accumulating #btc since 2018.,1
745,0,0.763,0.237,0.4215,Bitcoin and bear markets. Is it becoming a flight to safety?,1
746,0,1,0,0,Where to Hold Bitcoin.,0
747,0.128,0.872,0,-0.5719,~12% of the bitcoin hash rate has been disconnected from the network due to the Kazakhstan Government cutting internet nationwide in response to anti government protests. The bitcoin network continues to operate smoothly. Even if this hash never reconnects that will continue,-1
748,0,0.588,0.412,0.2732,Bitcoin Q&A: Energy Consumption,1
749,0,0.861,0.139,0.2732,"Bulletin: Kazakhstan Faces Uprising against Soaring Energy Costs, Bitcoin Mining Pools Hashrate Drops Greatly",1
750,0,1,0,0,A lesson from Kazakhstan,0
751,0,1,0,0,How the New Regulatory Amendments Draft Really Affects VASPs in Estonia,0
752,0.277,0.552,0.171,-0.3595,Trigger Warning: Crypto is Here To Make You POOR. Bitcoin is Here To Make You FREE!,-1
753,0,0.714,0.286,0.34,Medium of exchange vs Store of value,1
754,0,1,0,0,goldshell ck6 in stock,0
755,0,1,0,0,Verify Bitcoin full node is a tor hidden service - debug.log,0
756,0,1,0,0,Down Ten Million: Update on Nayib Bukele’s portfolio via @NayibTracker,0
757,0.15,0.765,0.085,-0.3883,"How does ""The Bitcoin Architecture"" know what range of nonces will create a legitimate block without actually hashing all possible outputs itself??!?",-1
758,0,1,0,0,"Bitcoin prices fall but Goldman Sachs predicts it could hit $100,000",0
759,0,1,0,0,Bitcoin,0
760,0,0.8,0.2,0.6696,You Wanted Futures and Applauded when Wall Street Got Involved! People were were planted here to drum up support. This is what you get.,1
761,0.189,0.811,0,-0.2732,Bitcoin's price hits 1-month low as US stock prices fall,-1
762,0,1,0,0,Can’t buy,0
763,0,1,0,0,OPINION TIME: At what price would you set your limit orders! (Buy),0
764,0,0.838,0.162,0.4019,"Although Bitcoin is declining now, it will definitely surpass even higher heights in the future.",1
765,0.209,0.556,0.235,0.2359,Is this manipulation? BITCOIN has broken support and looks like new levels incoming. What is interesting is there is bullish news? Manipulation? Watch to see more,1
766,0,0.821,0.179,0.34,"Goldman Sachs says bitcoin will compete with gold as ""store of value""",1
767,0,1,0,0,Bitcoin düşünce delirmek,0
768,0,1,0,0,I analyzed all RSI range movements of BTC of the past 52 months,0
769,0,1,0,0,"Fed: ""Rate Hikes"", Bitcoin: Crashes",0
770,0,1,0,0,leverage in bitcoin,0
771,0,0.784,0.216,0.296,Goldman Sachs: Bitcoin is Slowly Taking Gold's Market Share,1
772,0.173,0.682,0.145,0.1027,Seriously. Bears who successfully timed this drop — how did you do it and what signals gave it away?,1
773,0,0.723,0.277,0.3182,British Authorities Strengthen Crackdown on Cryptocurrency Ads,1
774,0,1,0,0,Story of Bitcoin in El Salvador,0
775,0,1,0,0,Just out of curiosity.,0
776,0,1,0,0,I analysed all the BTC pullbacks of the past 15 months,0
777,0,0.848,0.152,0.3612,Is there a mobile Bitcoin wallet which supports Taproot accounts in read-only mode (master public key)?,1
778,0,0.526,0.474,0.4019,Need help buying Bitcoin.,1
779,0,0.351,0.649,0.5719,Bitcoin bears won,1
780,0.756,0.244,0,-0.4767,Wrench Attack,-1
781,0,1,0,0,"⚡ Lightning Thursday! January 06, 2022: Explore the Lightning Network!⚡",0
782,0,1,0,0,How accurate are these BTC forecasts?,0
783,0.432,0.568,0,-0.4215,Having hard time understanding Bitcoin's difficulty adjustment,-1
784,0.094,0.864,0.042,-0.4871,So buy bitcoin now? Been waiting to buy for a while and with the current dip it seems like now is the time. but people keep saying its about to crash down to the floor soon. Whats your opinion?,-1
785,0,1,0,0,Why BTC is crashing? Because it follows the pattern/algo… World’s news agenda follows it,0
786,0,0.606,0.394,0.5994,Loving the dip and buying more BTC,1
787,0,0.667,0.333,0.3612,Time for recovery like nothing happen.,1
788,0,1,0,0,"In these times of ""bearish"" sentiment, look at these two data sources:",0
789,0,1,0,0,"trading and mining bitcoin, cryptos in a country where it is illigal.",0
790,0,1,0,0,Blockchain.com wallet insufficient funds why>>?>? any help/?,0
791,0.049,0.917,0.034,-0.1779,Seeking to redeem physical coin from Tim Fillmore's Titan Mint Bitcoin company. Web site does not work. I have emailed and even messaged him on LinkedIn over the past 3 months. No response. Considering legal action; has anyone else been ripped off by Titan Mint?,-1
792,0,1,0,0,"Daily Discussion, January 06, 2022",0
793,0.395,0.605,0,-0.3832,Kinda scared to buy bitcoin,-1
794,0,1,0,0,El Salvador,0
795,0,0.87,0.13,0.2023,How real are the chances of recovering my bit coin from Mt Gox?,1
796,0.21,0.79,0,-0.3384,Do people generally sell their btc? sort of naive q I guess,-1
797,0.073,0.862,0.065,-0.0757,"The Fed just needs to crash everything (stocks, real estate, crypto) for i'd estimate about 6-24 months to get wagies back to work and inflation expectionation to chill out. Don't worry its just transit",-1
798,0,0,0,0,😢,0
799,0,1,0,0,In theory what would happen to bitcoin sent to a non-existent wallet?,0
800,0,0.709,0.291,0.6249,The Great Readjustment: understanding where we are and where we're headed,1
801,0,1,0,0,Ledger live glitching right now,0
802,0.28,0.4,0.32,0.0772,Sudden drop in Bitcoin value?,1
803,0,1,0,0,What to expect on short and long term!?,0
804,0,1,0,0,Any predictions around bitcoins behavior against the CBDC?,0
805,0,0.769,0.231,0.2732,"Well, it's official. I SODL'ed all my bitcoin 43.2",1
806,0,1,0,0,Bitcoin Dividends! - One company (BTCS) is offering dividends in bitcoin,0
807,0,0.855,0.145,0.296,"Bitcoin is set to take further market share from gold, according to Goldman Sachs",1
808,0,1,0,0,Different Bitcoin Prices On Exchanges Question,0
809,0,1,0,0,Quantum Entanglement using Bitcoin’s Proof Of Work,0
810,0.302,0.698,0,-0.3818,Using btc loans as an emergency fund,-1
811,0,0.658,0.342,0.481,MY GOD ITS CRASHING sell.. Sell.. SELL!,1
812,0,0.909,0.091,0.128,DeVere's Green: Bitcoin to become legal tender in three more countries this year & (buys the dip),1
813,0,1,0,0,My goal for 2022 is to get to 0.1 BTC,0
814,0.205,0.531,0.265,0.1999,Friendly Reminder: Do not provide free liquidity to exchanges!,1
815,0.096,0.753,0.151,0.2023,BREAKING – Public Nasdaq-listed $BTCS company $BTCS to pay $0.05 per share in bitcoin,1
816,0,1,0,0,Bitcoin will be 20% of my 2022 investments. Here’s why,0
817,0,1,0,0,Advice on asic bitcoin miners,0
818,0.234,0.319,0.447,0.4588,Best no verification Bitcoin Exchange?,1
819,0,0.854,0.146,0.4404,"If I'm still in high school and about 2k in savings, how much would be safe to invest?",1
820,0.065,0.711,0.224,0.8294,Buying bitcoin on the wealth simple platform. If I am wanting to start out buying crypto but don’t want to setup the wallet and platforms etc. Is there any strong arguments or issues with buying it off of the wealth simple platform? (50k or less),1
821,0,1,0,0,Is there an age requierement on blockchain?,0
822,0,1,0,0,I didn't buy the dip even though I bought today.,0
823,0.18,0.82,0,-0.296,How does a 13 year old buy cryptocurrency with no BTC atms?,-1
824,0,0.799,0.201,0.8074,Bitcoin is a long play. Just chill and don’t invest more than you can afford. Don’t wish your years away in the meantime go find a hobby or do some the thing you enjoy. That’s the whole point,1
825,0,1,0,0,Don't Give Up on Bitcoin Just Yet!,0
826,0.139,0.861,0,-0.2732,Any way or suggested exchange to buy BTC to cut down the withdraw fee?,-1
827,0.211,0.789,0,-0.34,"Peter Schiff's ""Scary"" Warning for the US Dollar in 2022...",-1
828,0,1,0,0,Blood in the streets,0
829,0,0.631,0.369,0.6249,"What are ""Bitcoin days destroyed?"" by Awesome Crypto",1
830,0,1,0,0,Wahoo... New Years BTC Sale!,0
831,0,1,0,0,"Bitcoin Dips Below $44K, Crypto Economy Drops 4.5%, Traders Rush to Stablecoins",0
832,0,0.698,0.302,0.3818,Real Estate Attorneys Accept Bitcoin Ethereum & Litecoin,1
833,0,1,0,0,Where should I buy?,0
834,0,1,0,0,Bitcoin is down 10 percent this year in the first 5 days,0
835,0,1,0,0,Stablecoin built on Bitcoin?,0
836,0,1,0,0,lending bitcoin with ledger,0
837,0,1,0,0,Bitcoin short term trend,0
838,0.589,0.411,0,-0.6486,Bitcoin is dead again?,-1
839,0,1,0,0,The Bitcoin Patrons You Haven’t Heard About,0
840,0,0.58,0.42,0.4404,Am I supporting the bitcoin network?,1
841,0,1,0,0,Wheres Plan B,0
842,0,0.27,0.73,0.4019,Bitcoin Help?,1
843,0,1,0,0,Me After Living Through Multiple 50-80% Bitcoin Dips.,0
844,0.263,0.421,0.316,0.128,Honestly Goverments Might Be Manipulating Bitcoin,1
845,0,1,0,0,Should the Bitcoin Community Start Emphasizing Satoshis and the Price of a Satoshi?,0
846,0.495,0.505,0,-0.7089,WTF? What just happened to Bitcoin?,-1
847,0,1,0,0,"How much ""absolute scarcity"" should I aim to hold.",0
848,0.275,0.725,0,-0.2263,How to listen for new blocks?,-1
849,0,1,0,0,Should I HODL my bitcoin all the way down a bear market?,0
850,0,0.77,0.23,0.4576,"Very interesting video about Dorian Satoshi Nakatomo, could it be him?",1
851,0,0.723,0.277,0.6705,The Homerun Architecture: Digital Currency (USD Stable Coin) on Top of Digital Asset (Bitcoin) (short audio clip from Michael Saylor),1
852,0,1,0,0,Can Transaction Outputs' Be of Various Types?,0
853,0,0.426,0.574,0.4019,i need some help,1
854,0,0.867,0.133,0.3182,So i was wondering if someone can link the original BofA Report on El Salvadors Bitcoin adaption?,1
855,0,1,0,0,Bummed with bitcoin,0
856,0,0.68,0.32,0.3182,A way to be notified when BTC reaches a certain price,1
857,0,1,0,0,termux Brasil apt update apt upgrade pkg install git bash -termux víruz é v ir uz-- 1s 3.22.1 ClakeOutput.log CMakeTmp,0
858,0,0.641,0.359,0.4215,Moved from nice hash to Luxor,1
859,0.051,0.837,0.112,0.4003,"Made my first investment recently! 250$ into BTC, as that's all I could comfortably put into it at the moment. How do I deal with the nerves?",1
860,0.097,0.565,0.338,0.7885,Trigger Warning: Crypto is Not Here To Make You RICH. Crypto is Here To Make You FREE,1
861,0,1,0,0,"Omicron variant likely to fuel inflation, as Americans keep shopping rather than dining out and traveling, retail trade group economist says",0
862,0,0.33,0.67,0.7269,Finally orange pilled a good friend,1
863,0.263,0.582,0.155,-0.3939,BTC.com a scam? Ha e anyone one experiance with this online Wallet before?,-1
864,0.236,0.764,0,-0.5719,Are index funds a scam that will be flattened by sound money? (chart inside),-1
865,0,0.821,0.179,0.34,"Goldman Sachs says bitcoin will compete with gold as ""store of value""",1
866,0,0.683,0.317,0.7885,"Another reminder to TAKE YOUR BITCOINS OFF THE EXCHANGES, AND OUT OF INTEREST PROVIDING SERVICES LIKE BLOCKFI",1
867,0,0.886,0.114,0.2023,A thread on the relationship between Stacks and Bitcoin. The top comment is from the founder.,1
868,0.247,0.753,0,-0.3182,coinsquare lost my email address on my account,-1
869,0,1,0,0,"MoneyGram Takes 4% Stake in Coinme, Building on Existing Partnership",0
870,0.102,0.713,0.185,0.7351,Planning to hold Bitcoin for next 2 - 3 years but check Coinbase far too often every day and most days makes me anxious about my investment. Should I delete the app and enjoy ignorant bliss until the day comes that I’m considering selling?,1
871,0.075,0.809,0.116,0.1272,"Anyone else experience this? Told my friend at work about Bitcoin, he was really fascinated by it as an inflation hedge. Came back the next day with a bunch of shitcoins but no Bitcoin.",1
872,0,1,0,0,"Daily Bitcoin News January 4th,2022",0
873,0.045,0.901,0.054,0.1134,"I have been in Bitcoin for more than a decade at this point, and nothing has convinced more people around me to start DCA saving some of their income in Bitcoin than sending them Michael Saylor videos to help explain Bitcoin to them in a vocabulary that they can understand",1
874,0.301,0.699,0,-0.6808,Tales from the Crypt: #293: Bitcoin and the Looming US Fiscal Crisis with Avik Roy,-1
875,0,0.828,0.172,0.3612,If you like simple to understand technical analysis you should follow Charting Crypto.,1
876,0,1,0,0,Grabbing a bull by it's horns,0
877,0,0.5,0.5,0.6124,How to improve your Bitcoin mining profitability,1
878,1,0,0,-0.4019,Problem,-1
879,0,1,0,0,Bitcoin calendar 2022,0
880,0.16,0.84,0,-0.2263,BTC mining: Internet Blackout Reported in Kazakhstan Amid Escalating Anti-Government Protests,-1
881,0,0.861,0.139,0.2732,El Salvador plans to create a 'Bitcoin City' and raise $1 billion via a 'Bitcoin Bond',1
882,0,1,0,0,Blockfi vs Celsius vs Crypto.com - 2022 Comparison,0
883,0,1,0,0,Crypto arbitrage in india,0
884,0,0.861,0.139,0.2732,What will the impact be to bitcoin when nations create there own digital currencies?,1
885,0,0.794,0.206,0.7579,Still Thinking Bitcoin Is a Madoff-Style Ponzi Scheme? Listen to the World’s Best Hedge Fund Managers Investing in Bitcoin. This will probably strengthen your convictions if need be.,1
886,0,1,0,0,Looking for an old Bitcoin Video,0
887,0,0.812,0.188,0.4588,Bitcoin Open Interest Matches Record High Following Predictions of BTC Price ‘Fireworks’ This Month,1
888,0,0.877,0.123,0.1027,How is it possible for an Indian to legally buy bitcoin?,1
889,0.487,0.336,0.176,-0.5719,Bitcoin to confront the global energy crisis,-1
890,0,1,0,0,Some TA hopium meanwhile whales keep buying,0
891,0,0.95,0.05,0.2732,Everyone having access to SEPA banking account should look into https://getbittr.com which is a service that automatically exchanges incoming SEPA transfers into Bitcoin and sends it to a preset bitcoin address. One-time as well as recurring payments possible. Fee is 1.5%. Keep stacking.,1
892,0.246,0.754,0,-0.4466,BISQ a decentralised exchange for buying and selling bitcoin. NO KYC,-1
893,0,1,0,0,Any thoughts on my BTC question?,0
894,0,1,0,0,If I sold my btc the price will sky rocket,0
895,0,0.839,0.161,0.3612,"Like Twitter, Anthony Pompliano Predicts More Platforms Adopting Bitcoin's Payment Rails (3-minute audio clip)",1
896,0,1,0,0,Burak of BitMatrix shows off the LiquidBtc Script Wizard,0
897,0,0.792,0.208,0.2732,"Announcing a new Bitcoin protocol course, Base58’s bitcoin txs class",1
898,0.135,0.865,0,-0.1027,Nasdaq company to pay first Bividend – A Dividend Payable In Bitcoin,-1
899,0,0.842,0.158,0.4588,Do we have any historical knowledge on Bitcoin's price movement after the US Fed Raises Interest Rates?,1
900,0.113,0.887,0,-0.1027,I just threw all my savings into bitcoin and idk how to feel.,-1
901,0,1,0,0,Airbnb To Implement Crypto Payments,0
902,0,0.819,0.181,0.4767,Lawmakers begin early talks about another round of coronavirus relief targeting businesses. (money printer bailouts),1
903,0,0.602,0.398,0.5106,BTC private Key with Trust Wallet?,1
904,0,0.741,0.259,0.4939,Bitcoin Could Top $100k By Replacing Gold as a Store of Value: Goldman Sachs — DailyCoin,1
905,0,0.748,0.252,0.4019,Anyone interested in getting paid to summarize Bitcoin interviews?,1
906,0,0.843,0.157,0.3818,This is why Netflix can and should accept lightning network bitcoin as a form of payment.,1
907,0,1,0,0,"The Bitcoin Journey Podcast is 1 month old, we are openly reporting our figures so you can see what's going on...",0
908,0.073,0.761,0.166,0.5267,Bitcoins in the future is undoubtedly the best option. But I just don’t believe governments around the world would allow themselves to lose so much of their power to an automated system.,1
909,0,1,0,0,UK police have seized more than £300 million in Bitcoin - and get to keep half,0
910,0,1,0,0,Why is Canaan Expanding BTC Mining in Energy-Troubled Kazakhstan?,0
911,0,0.788,0.212,0.3612,"El Salvador To Send 20 Bills To Congress Providing ""Legal Certainty"" For Bitcoin Bond Issuance",1
912,0,1,0,0,What is the way to deal with cryptocurrency taxes?,0
913,0.138,0.718,0.144,0.0258,Banks that were criticized by the creator of Bitcoin 13 years ago now accept cryptocurrencies,0
914,0,1,0,0,Bitcoin (BTC) turns 13 and continues to move sideways,0
915,0,0.806,0.194,0.34,"Sparrow Bitcoin Wallet - Sparrow’s emphasis is on security, privacy and usability.",1
916,0,1,0,0,What are Bitcoin fees? Why are they needed? Cheapest way to withdraw BTC from an exchange? How to minimise transaction fees?,0
917,0.339,0.661,0,-0.6249,Worst case scenario for not running your own node?,-1
918,0,1,0,0,Depositing/withdrawing without KYC,0
919,0,0.803,0.197,0.4019,"Bitcoin Holds Support Ahead of Fed Minutes, March Rate Hike Probability Rises",1
920,0,1,0,0,How to buy bitcoin on Coinbase using a TSB account?,0
921,0,1,0,0,Bitcoin cycles theorem - speculation about extended cycles.,0
922,0.085,0.779,0.136,0.2732,New Bitcoin article that claims that Bitcoin is bad for environment. Can you guys help me to add sources to my observations? While my observations are mostly that bitcoin is good for environment and earth,1
923,0.375,0.625,0,-0.34,Warning: qr.js has been overtaken,-1
924,0.056,0.793,0.151,0.4741,"If I had access to a kind of very low interest loan, is it worth spending it on Bitcoin or is the recent volatility of the number 1 cryptocurrency proof that it can actually go to zero at any given time?",1
925,0.167,0.682,0.151,-0.1179,Everybody is talking about whale manipulation. Why would the whales want to keep the price low? Wouldn’t a rising price be beneficial for everyone?,-1
926,0,1,0,0,Anyone putting in monthly deposits of Bitcoin for your children’s future?,0
927,0,0.86,0.14,0.3818,How do I buy? credit card is an issue and bank xfer is hoop after hoop to navigate,1
928,0,0.845,0.155,0.5267,"Other Mozilla's prominent figures (Jwz, co-Creator of Mozilla) and Gecko designer have joined the Mozilla bashing train because they accepted donations in Bitcoin and other cryptocurrencies.",1
929,0,0.818,0.182,0.4404,Bloomberg Editor: Crypto Future Is Bright As Bitcoin Is Becoming Part Of Financial Systems,1
930,0,1,0,0,Whole coin right now or DCA?,0
931,0.028,0.94,0.032,0.0516,"Do we all realize that any form of capital that we use, that was by someone else is willfully accepting of bondage state with the institutions with control of that capital? So it would behoove us to have a global decentralized form of capital that is run by no one but the users of that capital.",1
932,0,0.738,0.262,0.7506,The colour green represents wealth and money today. But soon wealth and money will be represented by the colour orange.,1
933,0,0.732,0.268,0.296,Bitcoin transaction fees are surprisingly cheap lately?,1
934,0,1,0,0,"Daily Discussion, January 05, 2022",0
935,0,1,0,0,Staking vs lending,0
936,0,0.656,0.344,0.6369,What's the best bitcoin quote you have ever heard?,1
937,0.574,0.426,0,-0.4019,Trouble buying Bitcoin,-1
938,0,1,0,0,Buying bitcoin with Mercury Bank account,0
939,0,1,0,0,How to get the most out of bitcoin,0
940,0,0.706,0.294,0.7845,What cold storages are the safest? Asking before Bitcoin goes parabolic since I’m assuming cold storage prices will increase too. Thanks all.,1
941,0,1,0,0,HRF Gifts 4.25 BTC To Bitcoin Projects,0
942,0,1,0,0,El Salvador Finance Minister: Will Release Bitcoin Bonds,0
943,0,1,0,0,Tales from the Crypt: Citadel Dispatch e49 - digital privacy tools and strategies with @techloreistaken,0
944,0,1,0,0,I hodl my keys,0
945,0,0.86,0.14,0.0772,I want to get into bitcoin buying and selling bandwagon,1
946,0,1,0,0,"Costed me an hour and $28 to send $3,000 from home to the other side of the planet.",0
947,0,1,0,0,#ubibitcoinminging,0
948,0,1,0,0,Ledger is Closed-Source,0
949,0,1,0,0,VERDADEIRA FABRICA DE DINHEIRO,0
950,0,1,0,0,Got a Ledger Nano S,0
951,0,1,0,0,Lex Fridman talks power of Blockchain,0
952,0,1,0,0,Segwit; Done... Taproot; Done.... What's the next fork?,0
953,0,1,0,0,Addressing the idea of a Dark winter,0
954,0.143,0.476,0.381,0.4588,"Hey folks, lend a lightning noob a hand.",1
955,0,1,0,0,Bitcoin (BTC) Back of the napkin valuation for the coming capital reallocation,0
956,0,0.811,0.189,0.2716,"Who’s more important on the Bitcoin blockchain, miners or nodes?",1
957,0,1,0,0,Bitcoin Remittances to El Salvador,0
958,0,0.625,0.375,0.34,Purchase Value of All Bitcoin,1
959,0.541,0.459,0,-0.7096,Bitcoin fear and greed index on iphone,-1
960,0,1,0,0,El Salvador to Move Forward With Issuing Bitcoin Bonds: Finance Minister,0
961,0,0.536,0.464,0.3818,Bitcoin is monetary integrity.,1
962,0,1,0,0,Wire deposit into FTX.US account,0
963,0.351,0.649,0,-0.4019,Leftist arguments for and against bitcoin?,-1
964,0,0.548,0.452,0.765,"KYC-free Bitcoin circular economies: Free the markets, free the world",1
965,0,0.806,0.194,0.5927,Is there a foreseeable future where Bitcoin could become the virtual but better Gold of the new world?,1
966,0,1,0,0,Italy: the new place to be for big “cash-outs” from cryptocurrencies,0
967,0.133,0.778,0.089,-0.594,"If we repeat 2013 to 2017, this is what it would look like. The first image shows the brutal path to $100k. The second image shows a post halving mania run. Could you hold to $100K? After it hits $100k, would you hold and enjoy the next rally? This is why holding is so brutal.",-1
968,0,1,0,0,Why you always can buy Bitcoin??,0
969,0,0.536,0.464,0.3818,Lightning network unique benefits?,1
970,0.225,0.775,0,-0.4404,I have written a Python script that visualises Bitcoin block headers as “paintings”,-1
971,0,1,0,0,The Rainbow Trader status,0
972,0,0.544,0.456,0.7717,Bitcoin The best performing Asset in 2021: Goldman Sachs Research,1
973,0,1,0,0,Crypto payment provider that allows split payments,0
974,0,0.413,0.587,0.7964,Best place to buy Steam/Valve gift cards?,1
975,0,1,0,0,Perspective from 2013 Bitcoin Miner Coming Back into Crypto After 8 Years,0
976,0,1,0,0,Goldman Sachs shows Bitcoin outperformed all capital markets in 2021,0
977,0,0.333,0.667,0.25,The Dream.,1
978,0,1,0,0,Coinbase CEO reportedly buys LA mansion for $133M,0
979,0,1,0,0,The History of Money & The Potential of Crypto - Raoul Pal (AfterSkool illustrated explainer video),0
980,0,1,0,0,I sent bitcoin to the same exchange address I got last month.,0
981,0.448,0.552,0,-0.8442,Is anyone else terrified of CBDC's and their potential to enslave humanity?,-1
982,0.136,0.649,0.214,0.0516,Bitcoin as a legal tender in El Salvador - Scientific essay about chances and risks,1
983,0,0.27,0.73,0.4019,Help needed.,1
984,0,0.635,0.365,0.3182,Keep calm and buy #Bitcoin,1
985,0,1,0,0,Where to start?,0
986,0,1,0,0,Len Sassaman and Satoshi,0
987,0,1,0,0,SLP335 Don Stuart – Venture Capital and Bitcoin,0
988,0,1,0,0,How does tax work?,0
989,0,0.472,0.528,0.6808,Method to save taxes on crypto gains,1
990,0.147,0.603,0.25,0.296,Where are good places to hide your seed plate?,1
991,0,0.766,0.234,0.6467,Looking for 13 volunteers to celebrate Bitcoin's 13th birthday by setting up your own node!!,1
992,0,0.769,0.231,0.2023,In other news; bitcoin still working fine.,1
993,0,0.519,0.481,0.5719,Happy New Year: Next Catalyst,1
994,0,1,0,0,Coldcard Feedback,0
995,0,1,0,0,Bisq - A decentralized bitcoin exchange network,0
996,0,1,0,0,"Daily Bitcoin News Jan 3rd, 2022",0
997,0,1,0,0,Rare footage of Whale buying Bitcoin - crypto meme 2021,0
998,0,0.951,0.049,0.128,Many experts have started predicting two or three more countries will make Bitcoin legal tender this year in 2022. Here is why I believe Dubai and the UAE will be next.,1