forked from 621625/bitcoinmeetups.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrfeedtest.xml
More file actions
3246 lines (2837 loc) · 361 KB
/
frfeedtest.xml
File metadata and controls
3246 lines (2837 loc) · 361 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
<title>RSSMix.com Mix ID 3845704</title>
<generator>RSSMix</generator>
<link>http://www.rssmix.com/</link>
<description>This feed was created by mixing existing feeds from various sources.</description>
<language>en-gb</language>
<item>
<title>This is the most recent entry in my sample feed</title>
<link>http://webdesign.about.com/rss2.0feed/entry.html</link>
<description>This is the text that will appear in the feedreaders. It describes the post itself, not the entire feed.</description>
<guid>http://webdesign.about.com/rss2.0feed/entry.html</guid>
</item>
<item>
<title>Crowdfunding campaign - Porkfunding</title>
<link>https://bitcoinstarter.com/projects/622</link>
<description>This is the text that will appear in the feedreaders. It describes the post itself, not the entire feed.</description>
</item>
<item>
<title><![CDATA[Re: [ANN][BEE]BeeCoin - Launched/5 EXCHANGES]]></title>
<link><![CDATA[https://bitcointalk.org/index.php?topic=461550.msg5614693#msg5614693]]></link>
<description><![CDATA[<div><a href="https://bitcointalk.org/index.php?topic=461550.msg5614622#msg5614622">Quote from: cryptohunter on <b>Today</b> at 01:38:10 AM</a></div><div><div><a href="https://bitcointalk.org/index.php?topic=461550.msg5614272#msg5614272">Quote from: hualehua on <b>Today</b> at 01:01:59 AM</a></div><div><div><a href="https://bitcointalk.org/index.php?topic=461550.msg5611889#msg5611889">Quote from: venmo on March 09, 2014, 10:12:41 PM</a></div><div>Go read the...</div></div></div>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Mon, 10 Mar 2014 01:44:08 +0000</pubDate>
</item>
<item>
<title><![CDATA[$10 Amazon code, $8 bitcoin.]]></title>
<link><![CDATA[https://bitcointalk.org/index.php?topic=508772.msg5614692#msg5614692]]></link>
<description><![CDATA[Title says it all, want to get some bitcoin, only have amazon code. If you're interested, PM me.]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Mon, 10 Mar 2014 01:44:07 +0000</pubDate>
</item>
<item>
<title><![CDATA[Re: Atomic Trade&#65306;you should refund 2.39btc to me]]></title>
<link><![CDATA[https://bitcointalk.org/index.php?topic=503200.msg5614691#msg5614691]]></link>
<description><![CDATA[BTC Deposit address must be valid, because before the last recharge has many successful records<br><a href="https://blockchain.info/tx/9d6954351046749e817e6091401128d94ad0b3b3834b215753071ac3fc93bf01" target="_blank">https://blockchain.info/tx/9d6954351046749e817e6091401128d94ad0b3b3834b215753071ac3fc93bf01</a> <br><a href="https://blockchain.info/tx/14401f8c556a619beb6aeeddb22d1b4b908" target="_blank">https://blockchain.info/tx/14401f8c556a619beb6aeeddb22d1b4b908</a>...]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Mon, 10 Mar 2014 01:43:59 +0000</pubDate>
</item>
<item>
<title><![CDATA[Re: Bitcoin is nothing but a chain of digital signatures...]]></title>
<link><![CDATA[https://bitcointalk.org/index.php?topic=507533.msg5614690#msg5614690]]></link>
<description><![CDATA[yup.. i was pretty sure but google search wasn't helping.]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Mon, 10 Mar 2014 01:43:52 +0000</pubDate>
</item>
<item>
<title><![CDATA[Re: &#9608;&#9608;[MZC] MazaCoin - National Currency - now @ RussiaToday, Independent, Telegraph]]></title>
<link><![CDATA[https://bitcointalk.org/index.php?topic=494105.msg5614689#msg5614689]]></link>
<description><![CDATA[<div><a href="https://bitcointalk.org/index.php?topic=494105.msg5614509#msg5614509">Quote from: Herp on <b>Today</b> at 01:25:23 AM</a></div><div><div><a href="https://bitcointalk.org/index.php?topic=494105.msg5614407#msg5614407">Quote from: FryguyUK on <b>Today</b> at 01:14:45 AM</a></div><div><br>I am SO glad I know what the next actualy big thing is and have an incredible opportunity to get...</div></div>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Mon, 10 Mar 2014 01:43:48 +0000</pubDate>
</item>
<item>
<title><![CDATA[Jimmy Wales is playing with Bitcoin]]></title>
<link><![CDATA[http://www.reddit.com/r/Bitcoin/comments/200bx9/jimmy_wales_is_playing_with_bitcoin/]]></link>
<description><![CDATA[<table><tr><td> <a href="http://www.reddit.com/r/Bitcoin/comments/200bx9/jimmy_wales_is_playing_with_bitcoin/"><img src="http://f.thumbs.redditmedia.com/h7j3MGI74jmyZmoe.jpg" alt="Jimmy Wales is playing with Bitcoin" title="Jimmy Wales is playing with Bitcoin"></a> </td><td> submitted by <a href="http://www.reddit.com/user/litehacker"> litehacker </a> <br><a href="https://twitter.com/jimmy_wales/status/441632741352681472">[link]</a> <a href="http://www.reddit.com/r/Bitcoin/comments/200bx9/jimmy_wales_is_playing_with_bitcoin/">[23 comments]</a> </td></tr></table>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Mon, 10 Mar 2014 00:53:03 +0000</pubDate>
</item>
<item>
<title><![CDATA[I bought $20 worth of Bitcoin last March (0.2 BTC). I also put $20 in to a checking account. The checking account is now -$35 ($20 account maintenance fee that put my account into overdraft)]]></title>
<link><![CDATA[http://www.reddit.com/r/Bitcoin/comments/2008nw/i_bought_20_worth_of_bitcoin_last_march_02_btc_i/]]></link>
<description><![CDATA[<!-- SC_OFF --><div><p>With a $35 overdraft fee, I actually have now lost $55 by keeping it in the bank.</p> <p>It's ok because my 0.2 BTC is now worth over $100. It's just a pain because I now have to drive to the bank to close my account. They are only open from 9am to 4pm Monday through Friday. (I have to take off of work to close it) </p> </div><!-- SC_ON --> submitted by <a href="http://www.reddit.com/user/mastermind1228"> mastermind1228 </a> <br><a href="http://www.reddit.com/r/Bitcoin/comments/2008nw/i_bought_20_worth_of_bitcoin_last_march_02_btc_i/">[link]</a> <a href="http://www.reddit.com/r/Bitcoin/comments/2008nw/i_bought_20_worth_of_bitcoin_last_march_02_btc_i/">[26 comments]</a>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Mon, 10 Mar 2014 00:16:52 +0000</pubDate>
</item>
<item>
<title><![CDATA[TIL that a distributed, p2p mony transferring system has existed since the 8th century]]></title>
<link><![CDATA[http://www.reddit.com/r/Bitcoin/comments/2007xd/til_that_a_distributed_p2p_mony_transferring/]]></link>
<description><![CDATA[<table><tr><td> <a href="http://www.reddit.com/r/Bitcoin/comments/2007xd/til_that_a_distributed_p2p_mony_transferring/"><img src="http://e.thumbs.redditmedia.com/znbnf-ctaVnu8Kej.jpg" alt="TIL that a distributed, p2p mony transferring system has existed since the 8th century" title="TIL that a distributed, p2p mony transferring system has existed since the 8th century"></a> </td><td> submitted by <a href="http://www.reddit.com/user/guttersnipe098"> guttersnipe098 </a> <br><a href="https://en.wikipedia.org/wiki/Hawala">[link]</a> <a href="http://www.reddit.com/r/Bitcoin/comments/2007xd/til_that_a_distributed_p2p_mony_transferring/">[4 comments]</a> </td></tr></table>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Mon, 10 Mar 2014 00:08:41 +0000</pubDate>
</item>
<item>
<title><![CDATA[How do I set up a free Bitcoin eStore]]></title>
<link><![CDATA[http://bitcoin.stackexchange.com/questions/23309/how-do-i-set-up-a-free-bitcoin-estore]]></link>
<description><![CDATA[<p>I want to sell digital products (eBooks) using Bitcoin, and I want products to be instantly available after purchase. What could I do?</p>]]></description>
<enclosure url="" length="" type=""/>
<author>user14339</author>
<pubDate>Sun, 09 Mar 2014 23:55:45 +0000</pubDate>
</item>
<item>
<title><![CDATA[Opinions on an article arguing it is easier to conduct a 51% attack on PoS than PoW]]></title>
<link><![CDATA[http://bitcoin.stackexchange.com/questions/23308/opinions-on-an-article-arguing-it-is-easier-to-conduct-a-51-attack-on-pos-than]]></link>
<description><![CDATA[<p>For those who are not familiar, one of the main selling points of proof-of-stake is that it makes it more difficult to conduct a 51% attack. The reasoning is that to conduct a 51% attack on a proof-of-work coin, you just need to get enough hashpower. But to conduct a 51% on a PoS coin, you need to own 51% of the coins, meaning that you'd be heavily invested in the coin, so you would be disincentivized from performing an action that could jeopardize the value of your coins. Even if somebody (e.g. the government) simply wanted to kill the coin without regard to financial incentives, it would still be much more expensive to buy 51% of the coins than to buy enough miners to get you up to 51% hashrate, especially given that you would be eating up the orderbook and paying much more than market price.</p>
<p>I recently read an intriguing article titled <a href="http://papers.ssrn.com/sol3/papers.cfm?abstract_id=2393940" rel="nofollow">It Will Cost You Nothing to 'Kill' a Proof-of-Stake Crypto-Currency</a>. In the article, the author argues the opposite: a 51% attack on PoS is actually very cheap when done by a credible entity such as the government. The attacker could announce their intention to kill the coin and offer to buy up everyone's coin for a price far below market price. Since the attacker is credible, holders of the coin will know that if they hold on to their coins, the attacker will acquire 51% of the coins and, using this 51% stake, prevent any transactions from being confirmed, killing the coin. (If your coins can't be sent, then you can't spend or sell them, so they're worthless.) Therefore, people will be willing to sell their coins to the attacker at that price, to at least get some value for their coins before they become worthless.</p>
<p>What are your thoughts on this?</p>]]></description>
<enclosure url="" length="" type=""/>
<author>Tony</author>
<pubDate>Sun, 09 Mar 2014 23:33:07 +0000</pubDate>
</item>
<item>
<title><![CDATA[111k coins just moved - any information on this transaction?]]></title>
<link><![CDATA[http://www.reddit.com/r/Bitcoin/comments/2004fg/111k_coins_just_moved_any_information_on_this/]]></link>
<description><![CDATA[<table><tr><td> <a href="http://www.reddit.com/r/Bitcoin/comments/2004fg/111k_coins_just_moved_any_information_on_this/"><img src="http://b.thumbs.redditmedia.com/gqejM_Y_7GLbF3Sa.jpg" alt="111k coins just moved - any information on this transaction?" title="111k coins just moved - any information on this transaction?"></a> </td><td> submitted by <a href="http://www.reddit.com/user/Nous322bc"> Nous322bc </a> <br><a href="https://blockchain.info/address/15ihHoGs3onQBNnEH8afDFGvou9nD62Hm7">[link]</a> <a href="http://www.reddit.com/r/Bitcoin/comments/2004fg/111k_coins_just_moved_any_information_on_this/">[77 comments]</a> </td></tr></table>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 23:30:01 +0000</pubDate>
</item>
<item>
<title><![CDATA[Bitcoin could be worth 1000x today's value within two years, or it could be worth nothing given the community's trajectory lately. Here are my two millibits on our possible future(s).]]></title>
<link><![CDATA[http://www.reddit.com/r/Bitcoin/comments/20044n/bitcoin_could_be_worth_1000x_todays_value_within/]]></link>
<description><![CDATA[<!-- SC_OFF --><div><p>It's not the community's fault, by the way.</p> <p>Bitcoin is getting attacked in complex, sophisticated ways we will only understand fully much later. Glenn Greenwald's <a href="https://firstlook.org/theintercept/2014/02/24/jtrig-manipulation/">latest scoop</a>, which went largely 'unnoticed' by the corporate media, was that GCHQ/NSA use trolls to harass, intimidate, derail online communities, and destroy the lives of 'hacktivists' (i.e. tech savvy activists) the surveillance agency dislikes. </p> <p>Based on my preliminary research, the Bitcoin community is falling victim to nearly identical tactics.</p> <p>There is no need for us to point fingers at each other or give in to paranoia - in fact, that's one of the intended outcomes of online <em>provocateurs</em> in the first place. </p> <p>We are all aware, however, that some individuals have tried their best to make Bitcoin look very bad in the eyes of the public, and some members of the media have tried their damnedest to keep their viewers from ever wanting to explore the "seedy," "dangerous," "unregulated," world of the scary "bitcorn".</p> <p>My background dictates that I look very closely not only at forensics, but at motives. I see tremendous motive from vested interests around the world - governments, banks, some payment processors, investing opportunists - to attack Bitcoin now, with everything they've got.</p> <p>Again, no need to finger point, because <strong>Bitcoin is a battle you folks win.</strong></p> <p>In fact, you've already won, on paper at least. Bitcoin is a much better <em>technology</em> than the credit card in your wallet or your checking account. That is fact. Your credit card is basically a private key exposed, half-assed department store financial product designed 60 years ago (actually, that's exactly what a credit card is). And your Too Big To Fail checking account is a Mt. Gox account with a better PR department. </p> <p>They can spread a lot of fear - and they are doing so - but a time will come when consumers take a sober look at cryptocurrency face to face with its "competition". And the choice is clear. This is a Pepsi Challenge you all win any day of the week, without fail.</p> <p><strong>Crypto is better, the only way it can be destroyed is to prevent it from gaining critical mass.</strong></p> <p>You have to understand - that's the motive here. </p> <p>How do you beat a technology that's clearly better, faster, cheaper than yours, in every single way? <strong>You destroy its reputation. You peddle fear. You make something that was initially tempting scary and unwelcome.</strong></p> <p>If Bitcoin loses in the court of public opinion, which it is rapidly doing, Bitcoin loses. Forever.</p> <p>You can be the best accountant in the world. If your neighbors spread the rumor that you might be killing kittens in your backyard, no one will want to hire you. <strong>A reputational loss, therefore, CAN destroy an otherwise superior product or service.</strong></p> <p>Cryptocurrency can survive another Mark Karpeles, or ten more if need be, but it can't survive a public that no longer has any use for it. </p> <p>The solution is first of all, to be more savvy as a community. Don't upvote every blogger's traffic hungry bullshit. Don't peddle unfounded fear yourself. Verify your information. Don't use exchange services with no track record, when there are now services operating with a decent track record, full compliance, and credible financial backers. </p> <p><strong>And second of all, the solution is to use Bitcoin constantly.</strong> </p> <p>CONSTANTLY!</p> <p>That's how you will see a 100x or 1000x gain over time, if making money is your thing. </p> <p>As transaction volume scales, demand must in turn scale. And the various scarcity elements of Bitcoin will kick into overdrive once this becomes a household means of paying friends, buying products online, tipping musicians you like on Soundcloud, etc. </p> <p>Some finance and lawyer types have snuck into the Bitcoin world, and they sound like they are completely full of shit. They don't "get" Bitcoin or the tremendous changes that decentralized personal finance will bring. They just see Bitcoin as a new ETF type thing for them to make a quick 30% from and maybe some fat consulting fees or book deal. Nothing <em>too</em> wrong with that, I guess, but certainly not who you want to prop up as spokespeople for the community. They want to talk regulation all day and beg for establishment adoption. That's, again, how you get a 30% gain. Not how you get a 1,000% or 10,000% gain.</p> <p>The only spokesperson type I trust here is Andreas Antonopoulos, everything he says is pretty much a more intelligent version of what I would want to say in a similar situation. And I think even Andreas would agree the instant he starts talking shit or harming Bitcoin, you should abandon him, or anyone else who becomes a liability to the community's long-term aims. </p> <p>Huge gains will only come from true widespread adoption, not from convincing a bunch of thoroughly boring assholes to dip their hedge fund toes into the crypto pond. </p> <p>The Bitcoin community is accused of "fanaticism" by the mainstream press from time to time. </p> <p>If your product is better, if your worldview is more sane and more efficient for all stakeholders, <strong>it's OK to be fanatical.</strong></p> <p>In fact, you'd better be, or those with an inferior product and superior marketing muscle will talk you right out of business.</p> <p>That's exactly what is happening now, with all the bullshit people in this subreddit who don't own any coin, but constantly complain, constantly accuse the rest of us of "circle jerking".</p> <p>Some of these people are idiots. Some of them are angry they missed the boat on Bitcoin's first couple big jumps. And I believe some of them are more coordinated, professional forms of manipulation. In the case of the professional manipulation, the aim isn't to troll you or me. It's to create a "negative image" around the community itself - that we're complainers, not a fun place to browse, not a fun product to use. Check their comment histories: either brand new accounts, or accounts that exclusively spread anti-Bitcoin content. You have to ask yourself what's going on.</p> <p>The solution here is probably to have more active mods. Don't be ashamed to delete and ban manipulators. Freedom of speech is sacrosanct, but it doesn't extend to a forum where users of a cryptocurrency are trying to help each other improve that currency and enhance its reach. Block them without regret - there's a difference between honest questioning or criticism of Bitcoin's "power structure" and overt, repeated manipulation.</p> <p>Anyway, I have to leave it here as I am already late for work. Hope someone enjoyed reading this.</p> </div><!-- SC_ON --> submitted by <a href="http://www.reddit.com/user/CryptoDonDraper"> CryptoDonDraper </a> <br><a href="http://www.reddit.com/r/Bitcoin/comments/20044n/bitcoin_could_be_worth_1000x_todays_value_within/">[link]</a> <a href="http://www.reddit.com/r/Bitcoin/comments/20044n/bitcoin_could_be_worth_1000x_todays_value_within/">[103 comments]</a>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 23:27:00 +0000</pubDate>
</item>
<item>
<title><![CDATA[Btc-e and Cryptsy and CEX.io Trading Bots]]></title>
<link><![CDATA[https://www.bitcoinforum.com/technical-analysis-trading-discussion/btc-e-and-cryptsy-and-cex-io-trading-bots-4487/msg8122/#msg8122]]></link>
<description><![CDATA[Hey guys i found this bot it was mainly got mt Gox but it works on other simlar trading sites such as BTC-E Cryptsy and Cex.io. I been personally using it on BTC-E and it works great! if you guys want to check it out there is a very short video showing...]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 23:06:29 +0000</pubDate>
</item>
<item>
<title><![CDATA[Btc-e and Cryptsy and Cex.io Trading Bots]]></title>
<link><![CDATA[https://www.bitcoinforum.com/bitcoin-exchange/btc-e-and-cryptsy-and-cex-io-trading-bots/msg8121/#msg8121]]></link>
<description><![CDATA[Hey guys i found this bot it was mainly got mt Gox but it works on other simlar trading sites such as BTC-E Cryptsy and Cex.io. I been personally using it on BTC-E and it works great! if you guys want to check it out there is a very short video showing...]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 23:04:42 +0000</pubDate>
</item>
<item>
<title><![CDATA[Ponzicoin operator steals money; investors get upset]]></title>
<link><![CDATA[http://www.reddit.com/r/Bitcoin/comments/1zzzq0/ponzicoin_operator_steals_money_investors_get/]]></link>
<description><![CDATA[<!-- SC_OFF --><div><p>This is pure comedy gold. Operator of a bitcoin ponzi website has decided to pull a runner without paying people out:</p> <p><a href="http://ponzicoin.co/">http://ponzicoin.co/</a></p> <p>Reactions: <a href="https://bitcointalk.org/index.php?topic=474730.1240">https://bitcointalk.org/index.php?topic=474730.1240</a></p> <p>I usually don't laugh at other people's misfortune but it's kind of hard not to laugh when someone knowingly invests in a ponzi scheme, loses money and then gets upset.</p> </div><!-- SC_ON --> submitted by <a href="http://www.reddit.com/user/BookstoreProwler"> BookstoreProwler </a> <br><a href="http://www.reddit.com/r/Bitcoin/comments/1zzzq0/ponzicoin_operator_steals_money_investors_get/">[link]</a> <a href="http://www.reddit.com/r/Bitcoin/comments/1zzzq0/ponzicoin_operator_steals_money_investors_get/">[40 comments]</a>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 22:39:36 +0000</pubDate>
</item>
<item>
<title><![CDATA[HASHING CROWD LTD, FOR THE CHEAPEST MINING CONTRACTS]]></title>
<link><![CDATA[https://www.bitcoinforum.com/bitcoin-mining/hashing-crowd-ltd-for-the-cheapest-mining-contracts/msg8120/#msg8120]]></link>
<description><![CDATA[ <div align="center"><span><span>THE HASHING CROWD FOR THE CHEAPEST MINING CONTRACTS</span></span></div><div align="center"><span><span>* And Even Cheaper to Come*</span></span></div><div align="center"><span><span> </span></span></div>[font=...]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 22:39:31 +0000</pubDate>
</item>
<item>
<title><![CDATA[5gpu 2psu scrypt mining rig shuts down 1hour later]]></title>
<link><![CDATA[http://bitcoin.stackexchange.com/questions/23305/5gpu-2psu-scrypt-mining-rig-shuts-down-1hour-later]]></link>
<description><![CDATA[<p>I built the following rig:</p>
<p>5x SAPPHIRE TRI-X R9 280X 3GB GDDR5 OC (UEFI)
1x AeroCool Templarius Imperator 1150W 80 Plus Gold
1x HighPower Tech 1200w Gold Plus (HP-1200-G14C-GOLD)
1x Gigabyte GA-990FXA-UD3 motherboard
1x W.D Caviar Green 500GB SATA III HDD
1x Kingston KHX1600C9D3B1/4G
2x Unpowered risers 1x 16x
3x Powered risers 1x 16x</p>
<p>I have the templarius PSU powering the motherboard, the HDD and 2x GPUs with unpowered risers.
The other 3 gpus are powered by the 1200w PSU and connected to the powered usb risers.</p>
<p>I Installed Windows 8.1 and plugged one gpu. It automatically installed the Radeon HD 7990 driver. Then connected the second gpu and followed the same process with the other gpus.</p>
<p>I then executed cgminer and everything looks stable at 740Khs each.</p>
<p>However 1h later the rig shuts down. It always shuts down aprox. 1h later..</p>
<p>Regards,</p>]]></description>
<enclosure url="" length="" type=""/>
<author>Aitor</author>
<pubDate>Sun, 09 Mar 2014 22:38:08 +0000</pubDate>
</item>
<item>
<title><![CDATA[Just bought first .25 of a bitcoin. Super pumped!]]></title>
<link><![CDATA[http://www.reddit.com/r/Bitcoin/comments/1zzyly/just_bought_first_25_of_a_bitcoin_super_pumped/]]></link>
<description><![CDATA[<!-- SC_OFF --><div><p>purchased .25 bitcoin. I have been trying to read and understand for the last month. I love the idea of bitcoin but it concerns me that I read that a handful of people own 75% of all the bitcoin. I know I don't have much but I am thinking of taking $100 from each paycheck (every week) and buying bitcoin. Trying to buy my way up to a whole bitcoin. Is there a price I should shoot for to buy at? or just $100 a week regardless of price. What do you think?</p> </div><!-- SC_ON --> submitted by <a href="http://www.reddit.com/user/KieferStrugglin"> KieferStrugglin </a> <br><a href="http://www.reddit.com/r/Bitcoin/comments/1zzyly/just_bought_first_25_of_a_bitcoin_super_pumped/">[link]</a> <a href="http://www.reddit.com/r/Bitcoin/comments/1zzyly/just_bought_first_25_of_a_bitcoin_super_pumped/">[38 comments]</a>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 22:27:33 +0000</pubDate>
</item>
<item>
<title><![CDATA[Look up your MtGox balances]]></title>
<link><![CDATA[http://www.reddit.com/r/Bitcoin/comments/1zzwz1/look_up_your_mtgox_balances/]]></link>
<description><![CDATA[<!-- SC_OFF --><div><p>I just built a quick and dirty solution to query some of the fields of the leaked MtGox database dump.</p> <p>Right now you need your userid as it is in the DB, which you can find in your account activation link or by looking it up via transaction-ids (to be done later).</p> <p>The formatting might be off, as MtGox saved balances as whole numbers and I only know how to convert BTC and EUR to the proper amount. If other currencies are calculated improperly let me know.</p> <p><a href="http://peerwire.de/goxdb/">http://peerwire.de/goxdb/</a></p> <p>(This whole thing was written within 90 minutes, so it probably is buggy as hell)</p> </div><!-- SC_ON --> submitted by <a href="http://www.reddit.com/user/sulami"> sulami </a> <br><a href="http://www.reddit.com/r/Bitcoin/comments/1zzwz1/look_up_your_mtgox_balances/">[link]</a> <a href="http://www.reddit.com/r/Bitcoin/comments/1zzwz1/look_up_your_mtgox_balances/">[37 comments]</a>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 22:09:37 +0000</pubDate>
</item>
<item>
<title><![CDATA[SovereignBTC #6 – The Future of Bitcoin]]></title>
<link><![CDATA[http://letstalkbitcoin.com/sovereignbtc-6-the-future-of-bitcoin/]]></link>
<description><![CDATA[]]></description>
<enclosure url="" length="" type=""/>
<author>SovereignBTC</author>
<pubDate>Sun, 09 Mar 2014 22:06:13 +0000</pubDate>
</item>
<item>
<title><![CDATA[Have a business and want it to accept Bitcoin? Blockchain's got a merchant app for Android!]]></title>
<link><![CDATA[http://www.reddit.com/r/Bitcoin/comments/1zzpod/have_a_business_and_want_it_to_accept_bitcoin/]]></link>
<description><![CDATA[<table><tr><td> <a href="http://www.reddit.com/r/Bitcoin/comments/1zzpod/have_a_business_and_want_it_to_accept_bitcoin/"><img src="http://b.thumbs.redditmedia.com/GIfpi5z9qTI6htSa.jpg" alt="Have a business and want it to accept Bitcoin? Blockchain's got a merchant app for Android!" title="Have a business and want it to accept Bitcoin? Blockchain's got a merchant app for Android!"></a> </td><td> submitted by <a href="http://www.reddit.com/user/Alyson-Blockchain"> Alyson-Blockchain </a> <br><a href="https://play.google.com/store/apps/details?id=info.blockchain.merchant">[link]</a> <a href="http://www.reddit.com/r/Bitcoin/comments/1zzpod/have_a_business_and_want_it_to_accept_bitcoin/">[33 comments]</a> </td></tr></table>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 20:51:51 +0000</pubDate>
</item>
<item>
<title><![CDATA[Bitmessage mentioned in Wired]]></title>
<link><![CDATA[https://pay.reddit.com/r/bitmessage/comments/1zznr0/bitmessage_mentioned_in_wired/]]></link>
<description><![CDATA[submitted by <a href="http://www.reddit.com/user/bpeel"> bpeel </a> <br><a href="http://www.wired.com/opinion/2014/03/decentralized-applications-built-bitcoin-great-except-whos-responsible-outcomes/">[link]</a> <a href="https://pay.reddit.com/r/bitmessage/comments/1zznr0/bitmessage_mentioned_in_wired/">[comment]</a>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 20:30:55 +0000</pubDate>
</item>
<item>
<title><![CDATA[Find your exact balance in Excel file compiled from last MtGox hack and confirm if the data is legit or no.]]></title>
<link><![CDATA[http://www.reddit.com/r/Bitcoin/comments/1zzjcp/find_your_exact_balance_in_excel_file_compiled/]]></link>
<description><![CDATA[<!-- SC_OFF --><div><p>I converted data from last MtGox hack <a href="http://www.reddit.com/r/Bitcoin/comments/1zzb67/mtgox_2014_hack_database_revealed_live_from_mark/">http://www.reddit.com/r/Bitcoin/comments/1zzb67/mtgox_2014_hack_database_revealed_live_from_mark/</a> into excel file, so it can be easily filtered, download MtGox balancies in XLSX format here (green columnes are mine, some columnes are hidden), it is 25MB only: <a href="https://dl.dropboxusercontent.com/u/37805082/mtgox_balancies.zip">https://dl.dropboxusercontent.com/u/37805082/mtgox_balancies.zip</a> (EDIT: if you have security concerns download CSV file below).</p> <p>If you find your balance in BTC and then filter data based on your user ID, you get all your accounts at once. If you don't know the balance exactly, filter the balance to be between some limits and then find your account based on the date you made last change (trade, withdrawal, ..) see Stamp field.</p> <p>EDIT1: Anybody having worries about security of Excel file should use the original txt data (or maybe disable macros in Excel prior to loading the file - although I don't know if disabling macros is bullet-proof). Excel data is just for convenient use only. There is 189k data entries which is not easy to browse in plain text form. </p> <p>EDIT2: If you have problem with used ZIP compression, use uncompressed file, it is 32 MB, so not much difference: <a href="https://dl.dropboxusercontent.com/u/37805082/mtgox_balancies.xlsx">https://dl.dropboxusercontent.com/u/37805082/mtgox_balancies.xlsx</a></p> <p>EDIT3: According to <strong>mrpizzle</strong>, your can find your user ID in the original account-confirmation / password recovery email from MtGox. I deleted mine, so I cant check it.</p> <p><strong>EDIT4: Here is plain text CSV file compiled from XLSX: <a href="https://dl.dropboxusercontent.com/u/37805082/mtgox_balancies.csv">https://dl.dropboxusercontent.com/u/37805082/mtgox_balancies.csv</a> DOWNLOAD THIS IF YOU DONT TRUST EXCEL FILE</strong></p> <p>EDIT5: The original reddit post above <a href="http://www.reddit.com/r/Bitcoin/comments/1zzb67/mtgox_2014_hack_database_revealed_live_from_mark/">http://www.reddit.com/r/Bitcoin/comments/1zzb67/mtgox_2014_hack_database_revealed_live_from_mark/</a> does't work anymore. Here is pastebin of it: <a href="http://pastebin.com/f7DPskc7">http://pastebin.com/f7DPskc7</a> instead.</p> <p>EDIT6 - some facts from wallet balances data:</p> <ul><li><p>according to orginal file, data was obtained by SQL SELECT ALL FROM platform.User_Wallet WHERE platform.User_Wallet.Balance != 0 ORDER BY platform.User_Wallet.Balance DESC, which means only wallets with nonzero balances where included.</p></li> <li><p>there is total 189 373 data entries = currency wallets</p></li> <li><p>all BTC balances sum up to 951116.21905383 BTC, which is more than previously stated by Karpeles (around 850000 users and MtGoxs bitcoins should be lost, only 2000 BTC left)</p></li> <li><p><strong>Only 88 267 data entries are BTC wallets and 64 392 are USD wallet, which suggest that there where significantly less active user then 1 000 000 when MtGox announced "million users" late 2013.</strong></p></li> <li><p>approximately 200 of bitcoin wallets hold more than half of all total BTC balances.</p></li> <li><p>biggest balance is 44547 BTC belongs to user with additional USD, EUR, PLN and GBP accounts, all of which where all lastly updated on 3.7.2012 at 6:58.</p></li> </ul></div><!-- SC_ON --> submitted by <a href="http://www.reddit.com/user/sipak"> sipak </a> <br><a href="http://www.reddit.com/r/Bitcoin/comments/1zzjcp/find_your_exact_balance_in_excel_file_compiled/">[link]</a> <a href="http://www.reddit.com/r/Bitcoin/comments/1zzjcp/find_your_exact_balance_in_excel_file_compiled/">[59 comments]</a>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 19:44:07 +0000</pubDate>
</item>
<item>
<title><![CDATA[What are the weakest cryptographic guarantees in Bitcoin?]]></title>
<link><![CDATA[http://bitcoin.stackexchange.com/questions/23300/what-are-the-weakest-cryptographic-guarantees-in-bitcoin]]></link>
<description><![CDATA[<p>I read in <a href="https://github.com/bitcoin/bitcoin/pull/3656" rel="nofollow">this Github pull</a> that Bitcoin relies on weaker cryptographic guarantees than SHA256.</p>
<p>What are the weaker cryptographic guarantees being referred to?</p>
<p>Could it be that RipeMD is 160 bits? ... or is it something else? Perhaps in the ECC curve itself?</p>]]></description>
<enclosure url="" length="" type=""/>
<author>makerofthings7</author>
<pubDate>Sun, 09 Mar 2014 19:03:23 +0000</pubDate>
</item>
<item>
<title><![CDATA[A message from a mod]]></title>
<link><![CDATA[http://www.reddit.com/r/Bitcoin/comments/1zz9rw/a_message_from_a_mod/]]></link>
<description><![CDATA[<!-- SC_OFF --><div><p>Please refrain from posting database leaks from MtGox. As they were obtained by illegitimate means, they violate the rediquette and will be removed.</p> <p>Discussing the leaks is not against the rules, as long as the post itself doesn't break other rules. By all means, have a discussion, but please be respectful of the law, subreddit rules and the rediquette.</p> </div><!-- SC_ON --> submitted by <a href="http://www.reddit.com/user/ThePiachu"> ThePiachu </a> <br><a href="http://www.reddit.com/r/Bitcoin/comments/1zz9rw/a_message_from_a_mod/">[link]</a> <a href="http://www.reddit.com/r/Bitcoin/comments/1zz9rw/a_message_from_a_mod/">[158 comments]</a>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 17:59:13 +0000</pubDate>
</item>
<item>
<title><![CDATA[ripli.ca]]></title>
<link><![CDATA[http://www.reddit.com/r/ripplers/comments/1zz8wl/riplica/]]></link>
<description><![CDATA[submitted by <a href="http://www.reddit.com/user/themusicgod1"> themusicgod1 </a> <br><a href="https://ripli.ca/">[link]</a> <a href="http://www.reddit.com/r/ripplers/comments/1zz8wl/riplica/">[3 comments]</a>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 17:49:25 +0000</pubDate>
</item>
<item>
<title><![CDATA[Mark Karpele's blog hacked]]></title>
<link><![CDATA[http://www.reddit.com/r/Bitcoin/comments/1zz7z5/mark_karpeles_blog_hacked/]]></link>
<description><![CDATA[submitted by <a href="http://www.reddit.com/user/rantdurdenwu"> rantdurdenwu </a> <br><a href="http://blog.magicaltux.net/">[link]</a> <a href="http://www.reddit.com/r/Bitcoin/comments/1zz7z5/mark_karpeles_blog_hacked/">[28 comments]</a>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 17:39:19 +0000</pubDate>
</item>
<item>
<title><![CDATA[Two-Bit Idiot Concession]]></title>
<link><![CDATA[http://www.reddit.com/r/Bitcoin/comments/1zz72w/twobit_idiot_concession/]]></link>
<description><![CDATA[<!-- SC_OFF --><div><p>"Dear Idiots, </p> <p>I'm not going to bury the lead; I am not publishing the article tomorrow that I said I was going to on Friday. </p> <p>In fact, I never intended to (not yet anyway), and I certainly never intended to loop in the main-stream media so that they could pile on to our fledgling community. I simply hoped that a deadline would pressure Jon and Peter to resign quickly (and appropriately).</p> <p>While my accusations on Friday were 100% truthful, I now see that I have overplayed my hand. Rather than go all-in with a losing hand, I'm mucking my cards. I never anticipated this degree of backlash from within the community. As such, any further efforts to publicly push for resignations are not well-focused, and I plan to turn down the rhetoric. </p> <p>On the other hand, I'll reiterate that while my hyperbolic tone was poor and regrettable, I continue to believe that the Bitcoin Foundation in its current incarnation is significantly damaged, and that Peter Vessenes and Jon Matonis should resign. But it may be better to let the Foundation die a slow, quiet death than to organize a public execution. </p> <p>I consider myself a Bitcoin entrepreneur first and foremost, and I think that a public spectacle would just provide ammunition for Bitcoin's formidable external foes. Better to let the community purge itself. </p> <p>There are many reasons I took the course of action that I did, but as my unorthodox strategy ultimately proved unproductive, I'll bow out of the conversation with respect to the Bitcoin Foundation without explanations or defensiveness. </p> <p>I'm sure I'll be eating humble pie and ramen while I try to rebuild some of my damaged relationships. </p> <p>I tried something risky. It blew up in my face. That's ok; I'll take my medicine.</p> <p>Looking forward to getting back to my regular boring Daily Bits tomorrow.</p> <p>Cheers, TBI</p> <p>P.S. If you are looking for a great event where you can drink from the firehose of Bitcoin knowledge, meet the movers and shakers from within the industry and have a great time in the process, you should register for the Inside Bitcoins conference in New York City on April 7-8. The full conference experience is priceless. Hope to see you there!"</p> </div><!-- SC_ON --> submitted by <a href="http://www.reddit.com/user/Accordus"> Accordus </a> <br><a href="http://www.reddit.com/r/Bitcoin/comments/1zz72w/twobit_idiot_concession/">[link]</a> <a href="http://www.reddit.com/r/Bitcoin/comments/1zz72w/twobit_idiot_concession/">[158 comments]</a>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 17:29:18 +0000</pubDate>
</item>
<item>
<title><![CDATA[Non-witchhunt mtgox leak discussion thread.]]></title>
<link><![CDATA[http://www.reddit.com/r/Bitcoin/comments/1zz632/nonwitchhunt_mtgox_leak_discussion_thread/]]></link>
<description><![CDATA[submitted by <a href="http://www.reddit.com/user/Megodex"> Megodex </a> <br><a href="http://www.reddit.com/r/Bitcoin/comments/1zz632/nonwitchhunt_mtgox_leak_discussion_thread/">[link]</a> <a href="http://www.reddit.com/r/Bitcoin/comments/1zz632/nonwitchhunt_mtgox_leak_discussion_thread/">[102 comments]</a>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 17:18:30 +0000</pubDate>
</item>
<item>
<title><![CDATA[Operation 'Bury Newsweek': Whenever you see newsweek on a news stand put a credible magazine in front of it.]]></title>
<link><![CDATA[http://www.reddit.com/r/Bitcoin/comments/1zz615/operation_bury_newsweek_whenever_you_see_newsweek/]]></link>
<description><![CDATA[<!-- SC_OFF --><div><p>Let's bury newsweek and crush their 'comeback'. It's pretty simple whenever you see a newsweek on the news stand place a few Time or other magazines in front of it. Bonus points for also burying International Business Times which is part of newsweek.</p> </div><!-- SC_ON --> submitted by <a href="http://www.reddit.com/user/bithasher"> bithasher </a> <br><a href="http://www.reddit.com/r/Bitcoin/comments/1zz615/operation_bury_newsweek_whenever_you_see_newsweek/">[link]</a> <a href="http://www.reddit.com/r/Bitcoin/comments/1zz615/operation_bury_newsweek_whenever_you_see_newsweek/">[71 comments]</a>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 17:17:55 +0000</pubDate>
</item>
<item>
<title><![CDATA[Mt.Gox scam was just exposed - MK officially stole our funds - and it was removed by reddit!]]></title>
<link><![CDATA[http://www.reddit.com/r/Bitcoin/comments/1zz5ym/mtgox_scam_was_just_exposed_mk_officially_stole/]]></link>
<description><![CDATA[<!-- SC_OFF --><div><p>We've been goxed!</p> </div><!-- SC_ON --> submitted by <a href="http://www.reddit.com/user/UnderpaidBIGtime"> UnderpaidBIGtime </a> <br><a href="http://www.reddit.com/r/Bitcoin/comments/1zz5ym/mtgox_scam_was_just_exposed_mk_officially_stole/">[link]</a> <a href="http://www.reddit.com/r/Bitcoin/comments/1zz5ym/mtgox_scam_was_just_exposed_mk_officially_stole/">[373 comments]</a>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 17:17:07 +0000</pubDate>
</item>
<item>
<title><![CDATA[Share is above target when switching between stratums]]></title>
<link><![CDATA[http://bitcoin.stackexchange.com/questions/23296/share-is-above-target-when-switching-between-stratums]]></link>
<description><![CDATA[<p>I'm running a pool for some friends and myself, where we mine both dogecoin and litecoin (and occasionaly some other flavor of the day).
The farms are pointing to a simple proxy: a C daemon that is connected to the stratums for easy socket switching.</p>
<p>When switching from one coin to the other, the stratum server immediately throws "Share is above target" errors.
When it switches back to the original coin, all shares are accepted again</p>
<p>Exactly what causes the 'share is above target' error?
Based on the logs below, is there a problem with the mining software or with the stratum sending the wrong data?</p>
<p>Both stratums are configured with a fixed diff level, vardiff is disabled.
Here's a log of data going back and forth between a mining farm and server</p>
<p><strong>step 1/5: litecoin stratum sends work to mining farm</strong></p>
<pre><code>{"params": ["ed84", "716a78103f53858c8baadc8179bdbc3012c981db2a41b552998cdc06b6bae287", "01000000010000000000000000000000000000000000000000000000000000000000000000ffffffff27034f0f08062f503253482f04398b1c5308", "0d2f7374726174756d506f6f6c2f0000000001a078072a010000001976a914238e80769414592ed96192e13cddf78953e84ff388ac00000000", ["a346c6f74e37f6528e9d34e35c530a79bf11487d5c9404574972ac652331943f", "117086b6331ecef97572a981b1d2a7baf269b163a0c252c03a9f8b93cf1fdc03", "fef9b6758f809b998ce072d7bddefa86657dbee2d0fe1d71fd8a6a5558fa4dce", "7caa16ac719103ea85494bf15ec0b27507fb7367b36c01ccea2151f2eebdc811", "bdf9a2879e8cee859d2510fa63c57411f5b2e32fe0e237f597d28e6add7a9923"], "00000002", "1b0dd506", "531c8b3c", true], "id": null, "method": "mining.notify"}
</code></pre>
<p><strong>step 2/5: mining farm sends 6 valid shares to litecoin stratum</strong></p>
<pre><code>{"params": ["FarmOne", "ed84", "04000000", "531c8b3c", "fef81f01"], "id": 2, "method": "mining.submit"}
{"error": null, "id": 2, "result": true}
{"params": ["FarmOne", "ed84", "01000000", "531c8b3c", "c97a2601"], "id": 3, "method": "mining.submit"}
{"error": null, "id": 3, "result": true}
{"params": ["FarmOne", "ed84", "02000000", "531c8b3c", "685efb00"], "id": 4, "method": "mining.submit"}
{"error": null, "id": 4, "result": true}
{"params": ["FarmOne", "ed84", "01000000", "531c8b3c", "bacb9201"], "id": 5, "method": "mining.submit"}
{"error": null, "id": 5, "result": true}
{"params": ["FarmOne", "ed84", "04000000", "531c8b3c", "a221ad01"], "id": 6, "method": "mining.submit"}
{"error": null, "id": 6, "result": true}
</code></pre>
<p><strong>step 3/5: system redirects mining farm to dogecoin stratum at this point</strong></p>
<p><strong>step 4/5: dogecoin stratum sends work to mining farm</strong></p>
<pre><code>{"params": ["2610", "bca4622ca0307fc2e3c2398f67b36a0d908306f62cc65761761c2faf1b488be8", "01000000010000000000000000000000000000000000000000000000000000000000000000ffffffff2703fd0802062f503253482f04658b1c5308", "0d2f7374726174756d506f6f6c2f000000000100f473ed742b00001976a914c8b32869360584a4876c7d7617142e0f8dc4404988ac00000000", ["2adb1eabd5c3fcabeb5f75c073e6009dee136a3cf0ba6b6082a7ad2f8fe2a070", "1061486e8cebb27914e7d3e24c0ce90e8b1fc0606cb1bf8f4cc61c4e4dbad84d"], "00000002", "1b527845", "531c8b67", true], "id": null, "method": "mining.notify"}
</code></pre>
<p><strong>step 5/5: mining farm sends shares to dogecoin straum, but they are are above target</strong></p>
<pre><code>{"params": ["FarmOne", "2610", "04000000", "531c8b67", "f4be2e00"], "id": 7, "method": "mining.submit"}
{"error": [-2, "Share is above target", null], "id": 7, "result": null}
{"params": ["FarmOne", "2610", "01000000", "531c8b67", "45ca4700"], "id": 8, "method": "mining.submit"}
{"error": [-2, "Share is above target", null], "id": 8, "result": null}
</code></pre>
<p>Thanks!</p>]]></description>
<enclosure url="" length="" type=""/>
<author>Jonathan Brown</author>
<pubDate>Sun, 09 Mar 2014 17:07:38 +0000</pubDate>
</item>
<item>
<title><![CDATA[How I will always see Satoshi Nakamoto.]]></title>
<link><![CDATA[http://www.reddit.com/r/Bitcoin/comments/1zz0b0/how_i_will_always_see_satoshi_nakamoto/]]></link>
<description><![CDATA[<table><tr><td> <a href="http://www.reddit.com/r/Bitcoin/comments/1zz0b0/how_i_will_always_see_satoshi_nakamoto/"><img src="http://d.thumbs.redditmedia.com/uzZ2g0APWuU8r7Cc.jpg" alt="How I will always see Satoshi Nakamoto." title="How I will always see Satoshi Nakamoto."></a> </td><td> submitted by <a href="http://www.reddit.com/user/CaptainNemo73"> CaptainNemo73 </a> <br><a href="http://imgur.com/5bgWLm9">[link]</a> <a href="http://www.reddit.com/r/Bitcoin/comments/1zz0b0/how_i_will_always_see_satoshi_nakamoto/">[51 comments]</a> </td></tr></table>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 16:08:56 +0000</pubDate>
</item>
<item>
<title><![CDATA[Andreas Antonopoulos: "I tweeted to Ben Lawsky recently that he should look into cryptographic proof of solvency in reserve instead of looking at old style human-driven institution regulation".]]></title>
<link><![CDATA[http://www.reddit.com/r/Bitcoin/comments/1zyv89/andreas_antonopoulos_i_tweeted_to_ben_lawsky/]]></link>
<description><![CDATA[submitted by <a href="http://www.reddit.com/user/learningbtc"> learningbtc </a> <br><a href="http://www.youtube.com/watch?v=oQTM8NkbIVw&t=29m45s">[link]</a> <a href="http://www.reddit.com/r/Bitcoin/comments/1zyv89/andreas_antonopoulos_i_tweeted_to_ben_lawsky/">[31 comments]</a>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 14:56:25 +0000</pubDate>
</item>
<item>
<title><![CDATA[A privacy gateway]]></title>
<link><![CDATA[http://www.reddit.com/r/ripplers/comments/1zyuy7/a_privacy_gateway/]]></link>
<description><![CDATA[submitted by <a href="http://www.reddit.com/user/XRPTalk"> XRPTalk </a> <br><a href="https://xrptalk.org/topic/1677-a-privacy-gateway/">[link]</a> <a href="http://www.reddit.com/r/ripplers/comments/1zyuy7/a_privacy_gateway/">[1 comment]</a>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 14:51:39 +0000</pubDate>
</item>
<item>
<title><![CDATA[We are Lagging Behind. Does Ripple Really Need a Community?]]></title>
<link><![CDATA[http://www.reddit.com/r/ripplers/comments/1zyuuu/we_are_lagging_behind_does_ripple_really_need_a/]]></link>
<description><![CDATA[submitted by <a href="http://www.reddit.com/user/XRPTalk"> XRPTalk </a> <br><a href="https://xrptalk.org/topic/1587-we-are-lagging-behind-does-ripple-really-need-a-community/">[link]</a> <a href="http://www.reddit.com/r/ripplers/comments/1zyuuu/we_are_lagging_behind_does_ripple_really_need_a/">[2 comments]</a>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 14:50:05 +0000</pubDate>
</item>
<item>
<title><![CDATA[Officially/Unofficially acknowledged purpose of XRP]]></title>
<link><![CDATA[http://www.reddit.com/r/ripplers/comments/1zyut5/officiallyunofficially_acknowledged_purpose_of_xrp/]]></link>
<description><![CDATA[submitted by <a href="http://www.reddit.com/user/XRPTalk"> XRPTalk </a> <br><a href="https://xrptalk.org/topic/1584-officiallyunofficially-acknowledged-purpose-of-xrp/">[link]</a> <a href="http://www.reddit.com/r/ripplers/comments/1zyut5/officiallyunofficially_acknowledged_purpose_of_xrp/">[comment]</a>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 14:49:22 +0000</pubDate>
</item>
<item>
<title><![CDATA[Vote for Ripple at Cryptsy]]></title>
<link><![CDATA[http://www.reddit.com/r/ripplers/comments/1zyurb/vote_for_ripple_at_cryptsy/]]></link>
<description><![CDATA[submitted by <a href="http://www.reddit.com/user/XRPTalk"> XRPTalk </a> <br><a href="https://xrptalk.org/topic/1658-vote-for-ripple-at-cryptsy/">[link]</a> <a href="http://www.reddit.com/r/ripplers/comments/1zyurb/vote_for_ripple_at_cryptsy/">[comment]</a>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 14:48:39 +0000</pubDate>
</item>
<item>
<title><![CDATA[How is a Ripple gateway different than a conventional bank?]]></title>
<link><![CDATA[http://www.reddit.com/r/ripplers/comments/1zyuq7/how_is_a_ripple_gateway_different_than_a/]]></link>
<description><![CDATA[submitted by <a href="http://www.reddit.com/user/XRPTalk"> XRPTalk </a> <br><a href="https://xrptalk.org/topic/1673-how-is-a-ripple-gateway-different-than-a-conventional-bank/">[link]</a> <a href="http://www.reddit.com/r/ripplers/comments/1zyuq7/how_is_a_ripple_gateway_different_than_a/">[comment]</a>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 14:48:04 +0000</pubDate>
</item>
<item>
<title><![CDATA[Ripple: The Free Market of Crypto Money]]></title>
<link><![CDATA[http://www.reddit.com/r/ripplers/comments/1zyup7/ripple_the_free_market_of_crypto_money/]]></link>
<description><![CDATA[submitted by <a href="http://www.reddit.com/user/XRPTalk"> XRPTalk </a> <br><a href="https://www.youtube.com/watch?v=TQP60vngq5s&feature=player_embedded">[link]</a> <a href="http://www.reddit.com/r/ripplers/comments/1zyup7/ripple_the_free_market_of_crypto_money/">[comment]</a>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 14:47:35 +0000</pubDate>
</item>
<item>
<title><![CDATA[eBay Files Patent Application for Bitcoin Currency Exchanger]]></title>
<link><![CDATA[http://www.reddit.com/r/Bitcoin/comments/1zyu5h/ebay_files_patent_application_for_bitcoin/]]></link>
<description><![CDATA[<table><tr><td> <a href="http://www.reddit.com/r/Bitcoin/comments/1zyu5h/ebay_files_patent_application_for_bitcoin/"><img src="http://a.thumbs.redditmedia.com/M6KIYiVRIet8sHHB.jpg" alt="eBay Files Patent Application for Bitcoin Currency Exchanger" title="eBay Files Patent Application for Bitcoin Currency Exchanger"></a> </td><td> submitted by <a href="http://www.reddit.com/user/Bidofthis"> Bidofthis </a> <br><a href="http://www.ecommercebytes.com/C/abblog/blog.pl?/pl/2014/3/1394372710.html">[link]</a> <a href="http://www.reddit.com/r/Bitcoin/comments/1zyu5h/ebay_files_patent_application_for_bitcoin/">[112 comments]</a> </td></tr></table>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 14:39:17 +0000</pubDate>
</item>
<item>
<title><![CDATA[Bitcoin in the British Museum - we're making history guys]]></title>
<link><![CDATA[http://www.reddit.com/r/Bitcoin/comments/1zyq6d/bitcoin_in_the_british_museum_were_making_history/]]></link>
<description><![CDATA[<table><tr><td> <a href="http://www.reddit.com/r/Bitcoin/comments/1zyq6d/bitcoin_in_the_british_museum_were_making_history/"><img src="http://e.thumbs.redditmedia.com/TKczu-CSi0v7SCTp.jpg" alt="Bitcoin in the British Museum - we're making history guys" title="Bitcoin in the British Museum - we're making history guys"></a> </td><td> submitted by <a href="http://www.reddit.com/user/Mikadily"> Mikadily </a> <br><a href="http://imgur.com/myA3RRk">[link]</a> <a href="http://www.reddit.com/r/Bitcoin/comments/1zyq6d/bitcoin_in_the_british_museum_were_making_history/">[55 comments]</a> </td></tr></table>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 13:24:30 +0000</pubDate>
</item>
<item>
<title><![CDATA[Bitcoin community raises over 40 BTC for Dorian Nakamoto … and counting]]></title>
<link><![CDATA[http://www.bitcoinx.com/bitcoin-community-raises-40-btc-dorian-nakamoto-counting/]]></link>
<description><![CDATA[<p>Within moments of Newsweek claiming to have identified mysterious, possibly pseudononymous Bitcoin creator Satoshi Nakamoto as retired Temple City, California, engineer Dorian S. Nakamoto, many in the Bitcoin community immediately began crying foul. A modest man living a quiet existence with his 93-year-old mother suddenly had his life turned into a media circus, all on […]</p><p>The post <a rel="nofollow" href="http://www.bitcoinx.com/bitcoin-community-raises-40-btc-dorian-nakamoto-counting/">Bitcoin community raises over 40 BTC for Dorian Nakamoto … and counting</a> appeared first on <a rel="nofollow" href="http://www.bitcoinx.com/">Bitcoinx</a>.</p>]]></description>
<content:encoded><![CDATA[<p></p><div><a href="http://www.bitcoinx.com/wp-content/uploads/2014/03/mIOdcu1.jpg"><img src="http://www.bitcoinx.com/wp-content/uploads/2014/03/mIOdcu1-300x223.jpg" alt="Example of Dorian Nakamoto meme." width="300" height="223"></a><p>Example of Dorian Nakamoto meme.</p></div>Within moments of <em>Newsweek</em> <a href="http://www.bitcoinx.com/ap-newsweek-subject-satoshi-nakamoto-bitcoin-creator/">claiming to have identified mysterious, possibly pseudononymous Bitcoin creator Satoshi Nakamoto</a> as retired Temple City, California, engineer Dorian S. Nakamoto, many in the Bitcoin community immediately began crying foul. A modest man living a quiet existence with his 93-year-old mother suddenly had his life turned into a media circus, all on the circumstantial evidence of a magazine profile.
<p>Further complicating the situation is the rapidly growing case that <em>Newsweek</em> got it wrong, and that <a href="http://www.bitcoinx.com/isnt-great-dorian-satoshi-nakamoto-mystery/">Dorian Nakamoto had nothing to do with Bitcoin’s development</a>, and simply shares a name with its creator. His life has been upturned and exposed, not to mentioned his <a href="http://imgur.com/mIOdcu1" target="_blank">face turned into a meme</a>, simply because of a reporter’s bad hunch.</p>
<p>In response to this, Bitcoin developer <a href="http://www.reddit.com/r/Bitcoin/comments/1ztjmg/andreas_im_fundraising_for_dorian_nakamoto/" target="_blank">Andreas Antonopoulos posted an appeal on Reddit</a> to raise money for Dorian Nakamoto. </p>
<blockquote><p>I have no idea if this person is Satoshi, though it seems increasingly unlikely. However, it doesn’t matter either way. If this person is Satoshi, then the funds are a small “thanks” and won’t make much of a difference.</p>
<p>However, if this person is not Satoshi, then these funds will serve as a “sorry for what happened to you”, help with medical bills his family is facing, any legal bills they may incur, or anything else. Most of all, it serves to soften the damage caused by irresponsible journalism and to demonstrate the generosity and empathy of the community, which I know is huge.</p></blockquote>
<p>Response to this appeal was immediate and significant. As of this writing, over 43 BTC have been sent to the donation address (1Dorian4RoXcnBv9hnQ4Y2C1an6NJ4UrjX), amounting to roughly $28,000.</p>
<p>The fund will accept donations until the end of March, at which point it will be converted into USD and donated to Dorian Nakamoto. If Nakamoto rejects the donation, it will be donated to the charity of his choice. If he refuses to communicate at all, it will be donate to the Electronic Frontier Foundation.</p>
<p>The post <a rel="nofollow" href="http://www.bitcoinx.com/bitcoin-community-raises-40-btc-dorian-nakamoto-counting/">Bitcoin community raises over 40 BTC for Dorian Nakamoto … and counting</a> appeared first on <a rel="nofollow" href="http://www.bitcoinx.com/">Bitcoinx</a>.</p>]]></content:encoded>
<enclosure url="" length="" type=""/>
<author>Steve Shanafelt</author>
<pubDate>Sun, 09 Mar 2014 13:09:53 +0000</pubDate>
</item>
<item>
<title><![CDATA[Current Criticisms of Bitcoin Are at Least 10 Years Too Early - article by the "Shit Bitcoin Fanatics Say" Guy]]></title>
<link><![CDATA[http://www.reddit.com/r/Bitcoin/comments/1zypae/current_criticisms_of_bitcoin_are_at_least_10/]]></link>
<description><![CDATA[<table><tr><td> <a href="http://www.reddit.com/r/Bitcoin/comments/1zypae/current_criticisms_of_bitcoin_are_at_least_10/"><img src="http://e.thumbs.redditmedia.com/WJU2d5cvyUAa70bR.jpg" alt='Current Criticisms of Bitcoin Are at Least 10 Years Too Early - article by the "Shit Bitcoin Fanatics Say" Guy' title='Current Criticisms of Bitcoin Are at Least 10 Years Too Early - article by the "Shit Bitcoin Fanatics Say" Guy'></a> </td><td> submitted by <a href="http://www.reddit.com/user/pluribusblanks"> pluribusblanks </a> <br><a href="http://www.coindesk.com/current-criticisms-bitcoin-10-years-too-early/">[link]</a> <a href="http://www.reddit.com/r/Bitcoin/comments/1zypae/current_criticisms_of_bitcoin_are_at_least_10/">[88 comments]</a> </td></tr></table>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 13:05:35 +0000</pubDate>
</item>
<item>
<title><![CDATA[** ATTENTION ** As per our terms of service, we only service Canadian Citizens. If you deposit BTC from outside of Canada, you will **NOT** be able to withdraw them until you are level 1 Verified or higher. Failure to get level 1 verified or higher will result in the **FORFEITURE OF YOUR COINS**!!!]]></title>
<link><![CDATA[http://www.reddit.com/r/Bitcoin/comments/1zyp6g/attention_as_per_our_terms_of_service_we_only/]]></link>
<description><![CDATA[<table><tr><td> <a href="http://www.reddit.com/r/Bitcoin/comments/1zyp6g/attention_as_per_our_terms_of_service_we_only/"><img src="http://d.thumbs.redditmedia.com/0qCBO2dClUl7Z72-.jpg" alt="** ATTENTION ** As per our terms of service, we only service Canadian Citizens. If you deposit BTC from outside of Canada, you will **NOT** be able to withdraw them until you are level 1 Verified or higher. Failure to get level 1 verified or higher will result in the **FORFEITURE OF YOUR COINS**!!!" title="** ATTENTION ** As per our terms of service, we only service Canadian Citizens. If you deposit BTC from outside of Canada, you will **NOT** be able to withdraw them until you are level 1 Verified or higher. Failure to get level 1 verified or higher will result in the **FORFEITURE OF YOUR COINS**!!!"></a> </td><td> submitted by <a href="http://www.reddit.com/user/ready_ur_bottle_caps"> ready_ur_bottle_caps </a> <br><a href="http://imgur.com/OCpmMl0">[link]</a> <a href="http://www.reddit.com/r/Bitcoin/comments/1zyp6g/attention_as_per_our_terms_of_service_we_only/">[91 comments]</a> </td></tr></table>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 13:03:14 +0000</pubDate>
</item>
<item>
<title><![CDATA[Bitmessage E-Mail Gateway]]></title>
<link><![CDATA[https://bitmessage.ch/]]></link>
<description><![CDATA[Register | Setup Guide | FAQ | E-Mail access | E-Mail settings | Terms and conditions Bitmessage Mail Gateway This is a service to connect Bitmessage with E-Mail ...]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 12:49:00 +0000</pubDate>
</item>
<item>
<title><![CDATA[Report: eBay filed patent for Bitcoin currency exchanger in 2011]]></title>
<link><![CDATA[http://www.bitcoinx.com/report-ebay-filed-patent-bitcoin-currency-exchanger-2011/]]></link>
<description><![CDATA[<p>Last month, eBay CEO John Donahoe set the virtual currency world abuzz when he mentioned in a discussion about Bitcoin on Bloomberg TV that the company’s PayPal branch was “building a digital wallet that can take multiple types of currency.” Today, finance writer Brian Cohen uncovered details about eBay’s wallet, outlining the details of a […]</p><p>The post <a rel="nofollow" href="http://www.bitcoinx.com/report-ebay-filed-patent-bitcoin-currency-exchanger-2011/">Report: eBay filed patent for Bitcoin currency exchanger in 2011</a> appeared first on <a rel="nofollow" href="http://www.bitcoinx.com/">Bitcoinx</a>.</p>]]></description>
<content:encoded><![CDATA[<p></p><div><a href="http://www.bitcoinx.com/wp-content/uploads/2014/02/10680077684_5b006922fc_c.jpg"><img src="http://www.bitcoinx.com/wp-content/uploads/2014/02/10680077684_5b006922fc_c-300x225.jpg" alt="http://www.flickr.com/photos/100239928@N08/" width="300" height="225"></a><p>Photo: http://www.flickr.com/photos/100239928@N08/</p></div>Last month, eBay CEO John Donahoe set the virtual currency world abuzz when he mentioned in a <a href="http://www.bitcoinx.com/paypal-building-bitcoin-friendly-wallet/">discussion about Bitcoin on Bloomberg TV</a> that the company’s PayPal branch was “building a digital wallet that can take multiple types of currency.”
<p>Today, <a href="http://www.ecommercebytes.com/C/abblog/blog.pl?/pl/2014/3/1394372710.html" target="_blank">finance writer Brian Cohen</a> uncovered details about eBay’s wallet, outlining the details of a 2011 patent application for a <a href="http://www.google.com/patents/US20130173416" target="_blank">“System And Method For Managing Transactions In A Digital Marketplace.”</a></p>
<p>The patent application specifically mentions Bitcoin, as well as other possibilities such as credit card reward points and travelers checks, as currencies the wallet would be able to exchange. As explained in the patent application:</p>
<blockquote><p>The currency module is configured to manage exchange of digital currency. Accordingly, the currency module allows a user to trade one form of currency for another form of currency. In one embodiment, one of the forms of currency being traded is cash. The digital currency may be used to pay for real-world financial obligations (e.g., bills) as well as for virtual-world obligations…” </p></blockquote>
<p>Cohen notes that the eBay wallet, which has yet to be granted a patent, would solve significant issues in the current virtual currency ecosystem on the mainstream consumer level.</p>
<blockquote><p>PayPal has the ability to become a trusted Bitcoin wallet and people would be willing to pay good Bitcoin (err, money) for such a service. Basically just like you wouldn’t keep your entire life savings in your everyday wallet, users of Bitcoin shouldn’t keep their entire bitcoin savings online. An elegant trusted cold storage (i.e. offline) solution is needed and I hope that PayPal is chiseling away at this problem.</p></blockquote>
<p>The post <a rel="nofollow" href="http://www.bitcoinx.com/report-ebay-filed-patent-bitcoin-currency-exchanger-2011/">Report: eBay filed patent for Bitcoin currency exchanger in 2011</a> appeared first on <a rel="nofollow" href="http://www.bitcoinx.com/">Bitcoinx</a>.</p>]]></content:encoded>
<enclosure url="" length="" type=""/>
<author>Steve Shanafelt</author>
<pubDate>Sun, 09 Mar 2014 12:39:41 +0000</pubDate>
</item>
<item>
<title><![CDATA[Google’s Jared Cohen claims Bitcoin-like currencies are “inevitable” at SXSW]]></title>
<link><![CDATA[http://www.bitcoinx.com/googles-jared-cohen-claims-bitcoin-like-currencies-inevitable-sxsw/]]></link>
<description><![CDATA[<p>Speaking at SXSW yesterday, Google’s Director of Ideas, Jared Cohen, claimed that Bitcoin-like payment system are clearly not going away. “I think it’s very obvious to all of us that cryptocurrencies are inevitable,” Cohen said. “There’s lots of value to it, [but] there’s a danger to it not being regulated.” While Cohen does believe that […]</p><p>The post <a rel="nofollow" href="http://www.bitcoinx.com/googles-jared-cohen-claims-bitcoin-like-currencies-inevitable-sxsw/">Google’s Jared Cohen claims Bitcoin-like currencies are “inevitable” at SXSW</a> appeared first on <a rel="nofollow" href="http://www.bitcoinx.com/">Bitcoinx</a>.</p>]]></description>
<content:encoded><![CDATA[<p></p><div><a href="http://www.bitcoinx.com/wp-content/uploads/2014/03/11464052775_a1815710aa_b.jpg"><img src="http://www.bitcoinx.com/wp-content/uploads/2014/03/11464052775_a1815710aa_b-300x225.jpg" alt="Image credit: http://www.flickr.com/photos/fdecomite/" width="300" height="225"></a><p>Image credit: http://www.flickr.com/photos/fdecomite/</p></div>Speaking at <a href="http://techcrunch.com/2014/03/08/googles-jared-cohen-its-obvious-bitcoin-like-currencies-are-inevitable/" target="_blank">SXSW yesterday</a>, Google’s Director of Ideas, Jared Cohen, claimed that Bitcoin-like payment system are clearly not going away. “I think it’s very obvious to all of us that cryptocurrencies are inevitable,” Cohen said. “There’s lots of value to it, [but] there’s a danger to it not being regulated.”
<p>While Cohen does believe that virtual currencies are the future of finance, he wasn’t yet sold on Bitcoin as the clear winner. He noted that anyone can create a currency using the fundamental concepts of cryptocurrency, and that simply because Bitcoin was the first doesn’t mean it will be the dominant virtual currency in coming years.</p>
<p>He also noted that some issues, such as truly safe storage of funds, have yet to be resolved.</p>
<p>As the one-time technology advisor to former Secretary of State Hillary Clinton, Cohen clearly has his eye on the big picture of politically viable financial policy as much as technical wizardry. Cohen’s comments came up as part of his on-stage conversation with Google’s Chairman Eric Schmidt. The pair were at the festival to promote their new book, <em>The New Digital Age</em>.</p>
<p>The post <a rel="nofollow" href="http://www.bitcoinx.com/googles-jared-cohen-claims-bitcoin-like-currencies-inevitable-sxsw/">Google’s Jared Cohen claims Bitcoin-like currencies are “inevitable” at SXSW</a> appeared first on <a rel="nofollow" href="http://www.bitcoinx.com/">Bitcoinx</a>.</p>]]></content:encoded>
<enclosure url="" length="" type=""/>
<author>Steve Shanafelt</author>
<pubDate>Sun, 09 Mar 2014 11:57:47 +0000</pubDate>
</item>
<item>
<title><![CDATA[Re: Win free bitcoins every hour!]]></title>
<link><![CDATA[https://www.bitcoinforum.com/bitcoin-discussion/win-free-bitcoins-every-hour!/msg8119/#msg8119]]></link>
<description><![CDATA[<span><span><span>This looks very nice, I'll going to check it out</span></span></span>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 11:53:16 +0000</pubDate>
</item>
<item>
<title><![CDATA[BitMessage: A Model For A New Web 2.0? – Bitcoin Magazine]]></title>
<link><![CDATA[http://bitcoinmagazine.com/2855/bitmessage-a-model-for-a-new-web-2-0/]]></link>
<description><![CDATA[BitMessage: A Model For A New Web 2.0? Over the past twenty years, the democratization of cryptographic technology has brought us the potential for an unprecedented ...]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 11:23:00 +0000</pubDate>
</item>
<item>
<title><![CDATA[Let's get bus companies in Germany to accept BTC]]></title>
<link><![CDATA[http://www.reddit.com/r/Bitcoin/comments/1zyiui/lets_get_bus_companies_in_germany_to_accept_btc/]]></link>
<description><![CDATA[<!-- SC_OFF --><div><p>Since 2013 there is a new market of long distance bus lines ("Fernbusse") in Germany. (Previously they weren't allowed so there was a quasi monopoly of the railway company Deutsche Bahn.) Nearly all of the bus bookings are done online but so far they only accept VISA, debit notes or PayPal. Let's change this! Write them!The biggest ones are</p> <p><a href="http://meinfernbus.de/">http://meinfernbus.de</a></p> <p>and</p> <p><a href="http://deinbus.de/">http://deinbus.de</a></p> <p>EDIT: If you're already using e.g. meinfernbus.de: They usally send you an email during your journey with a link to a survey asking if everything was all right (WLAN speed, punctuality, facilities...). There is also some space for general suggestions. Use it! ;)</p> </div><!-- SC_ON --> submitted by <a href="http://www.reddit.com/user/DgssZ"> DgssZ </a> <br><a href="http://www.reddit.com/r/Bitcoin/comments/1zyiui/lets_get_bus_companies_in_germany_to_accept_btc/">[link]</a> <a href="http://www.reddit.com/r/Bitcoin/comments/1zyiui/lets_get_bus_companies_in_germany_to_accept_btc/">[50 comments]</a>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 10:25:21 +0000</pubDate>
</item>
<item>
<title><![CDATA[Sallie Rhodes Project 2014 Please help....]]></title>
<link><![CDATA[https://www.bitcoinforum.com/projects/sallie-rhodes-project-2014-please-help/msg8118/#msg8118]]></link>
<description><![CDATA[<br>Dear Members.<br>Please help with your donation of stem cell transplantation.<br><br><br><span>[size=78%]Visit: <a href="http://donatesallie.ml/about-sallie/about-sallie/" target="_blank">http://donatesallie.ml/about-sallie/about-sallie/</a>[/size]</span><br><span>[/size...</span>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 10:09:58 +0000</pubDate>
</item>
<item>
<title><![CDATA[Andreas Antonopolous Says States Can't Stop Bitcoin]]></title>
<link><![CDATA[http://www.reddit.com/r/Bitcoin/comments/1zycfh/andreas_antonopolous_says_states_cant_stop_bitcoin/]]></link>
<description><![CDATA[<table><tr><td> <a href="http://www.reddit.com/r/Bitcoin/comments/1zycfh/andreas_antonopolous_says_states_cant_stop_bitcoin/"><img src="http://c.thumbs.redditmedia.com/iQcjrR39BPaN_vW2.jpg" alt="Andreas Antonopolous Says States Can't Stop Bitcoin" title="Andreas Antonopolous Says States Can't Stop Bitcoin"></a> </td><td> submitted by <a href="http://www.reddit.com/user/Zodiacinvestigat0r"> Zodiacinvestigat0r </a> <br><a href="http://www.youtube.com/watch?v=yWTQgmCuiCw">[link]</a> <a href="http://www.reddit.com/r/Bitcoin/comments/1zycfh/andreas_antonopolous_says_states_cant_stop_bitcoin/">[254 comments]</a> </td></tr></table>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sun, 09 Mar 2014 07:51:22 +0000</pubDate>
</item>
<item>
<title><![CDATA[How can Auroracoin be the 4th crypto-coin by market cap if it's unreleased yet?]]></title>
<link><![CDATA[http://bitcoin.stackexchange.com/questions/23253/how-can-auroracoin-be-the-4th-crypto-coin-by-market-cap-if-its-unreleased-yet]]></link>
<description><![CDATA[<p><a href="http://auroracoin.org/" rel="nofollow">Auroracoin</a> has become <a href="http://coinmarketcap.com/" rel="nofollow">the 4th biggest crypto-currency</a> measured in market capitalization. How can an as-yet unreleased coin have market value if it's not available for exchange (either for fiat or for another crypto-coin) anywhere??? In fact, save for the storage accounts of its creator, <em>noone</em> has an Auroracoin yet. So whence comes its valuation and thus its market cap???</p>
<p>As much as I admire the stated intentions of Auroracoin's creators and their ingenuity for turning stuff traditionally seen as BAD (premining, universal and compulsory registration for all citizens) into GOOD, this market cap point makes me a bit suspicious.</p>]]></description>
<enclosure url="" length="" type=""/>
<author>Joe Pineda</author>
<pubDate>Sun, 09 Mar 2014 01:46:48 +0000</pubDate>
</item>
<item>
<title><![CDATA[Bitcoin Regulation Update- 03/07/14]]></title>
<link><![CDATA[http://bitcoinmagazine.com/10947/bitcoin-regulation-update-030714/]]></link>
<description><![CDATA[<p>This week saw the outing (or not) of Satoshi Nakamoto, Bitcoin’s alleged inventor, who is said to have abruptly disappeared from the online forums he was known to frequent in Bitcoin’s early days. Though the man alleged to be Nakamoto, who was living under a different name in the United States, denied involvement with Bitcoin, Newsweek, the publication that broke the story, stands behind their work. The early response from the online Bitcoin community could best be described as a low grade form of moral outrage, combined with a dash of horror. What seems to have upset Bitcoiners most is the fact that a media outlet was able to identify and publicly name a person who clearly was not interested […]</p><p>The post <a rel="nofollow" href="http://bitcoinmagazine.com/10947/bitcoin-regulation-update-030714/">Bitcoin Regulation Update- 03/07/14</a> appeared first on <a rel="nofollow" href="http://bitcoinmagazine.com/">Bitcoin Magazine</a>.</p>]]></description>
<content:encoded><![CDATA[<a href="http://bitcoinmagazine.com/10947/bitcoin-regulation-update-030714/"><img width="400" height="266" src="http://btcmag.9wizards.netdna-cdn.com/wp-content/uploads/2014/01/ravenbit-physical-bitcoin-closeup-1015a-400.jpg" alt="ravenbit-physical-bitcoin-closeup-1015a-400"></a><p dir="ltr">This week saw the outing (or not) of Satoshi Nakamoto, Bitcoin’s alleged inventor, who is said to have abruptly disappeared from the online forums he was known to frequent in Bitcoin’s early days. Though the man alleged to be Nakamoto, who was living under a different name in the United States, denied involvement with Bitcoin, Newsweek, the publication that broke the story, stands behind their work. The early response from the online Bitcoin community could best be described as a low grade form of moral outrage, combined with a dash of horror. What seems to have upset Bitcoiners most is the fact that a media outlet was able to identify and publicly name a person who clearly was not interested in being identified, using little more than public information and basic detective work. To the extent that the majority of crypto enthusiasts value privacy, if not anonymity, the Satoshi Nakamoto affair does not bode well.</p>
<p dir="ltr">Canada-based Bitcoin exchange Vault of Satoshi announced via Facebook on Thursday that it would <a href="http://newsbtc.com/2014/03/06/vault-satoshi-ceasing-u-s-operations-due-incre%20asingly-hostile-regulatory-environment/">discontinue</a> support for US customers due to an “increasingly hostile” regulatory environment. The exchange, which connects users with others looking to trade crypto currencies for fiat currencies, claimed to be facing considerable difficulties complying with FinCEN’s anti-money laundering rules, not the least of which was FinCEN’s policy disallowing the filing of paper reports by money service businesses and the seeming incompatibility of the online reporting system with foreign businesses. The decision to abandon the US market entirely seems to be a fairly drastic response to US law, which could rightly be described as overly complicated. Vault of Satoshi is neither the first nor the only non-US based company to face US regulatory requirements, so it isn’t clear why it seems to be having unusual difficulty in this area. The company’s Bitcoin to US dollar volume on Friday stood at 280 coins as of 5:00 PM CST, compared to 314 for Bitcoin to Canadian dollars. Under the new policy, US traders will be unable to deposit or withdraw cash from the exchange, but will be permitted to trade coins.</p>
<p dir="ltr">Yet another exchange, this time Canadian company Flexcoin, informed customers this week that it is <a href="http://www.euronews.com/2014/03/05/another-bitcoin-bank-bites-the-dust-flexc%20oin-blames-losses-on-hackers/">insolvent</a> as the result of a hack induced theft and would have no choice but to cease operations. The exchange lost an estimated $500,000 worth of coins in its hot wallet, but a spokesman said that customer coins in cold storage would be returned to their owners. Flexcoin referred to its terms of service, reminding its customers that they agreed not to hold Flexcoin liable for theft, while informing everyone else that they were out of luck. The operative verbiage states that “Flexcoin is not responsible for insuring any bitcoins stored in the Flexcoin system.” Whether this will be sufficient to ward off civil liability remains to be seen.</p>
<p dir="ltr">Her Majesty’s Revenue and Customs service in the United Kingdom has reportedly <a href="http://www.pcworld.com/article/2104080/uk-tax-authority-clarifies-policy-on-%20bitcoin.html">dropped</a> a plan to apply value added taxes to mined bitcoins and Bitcoin exchange transactions. However, the treasury maintained in a brief delivered to British lawmakers that the 20% VAT still applies to goods and services purchased with bitcoins, just the same as it would if those same goods and services were purchased with Pounds. After a careful review, HM Treasury was more likely to have discovered the near impossibility of taxing Bitcoin at the point of exchange or the point of creation, than to have determined that it falls outside the scope of transactions subject to the tax. Merchants, on the other hand, are already accustomed to collecting VAT and equipped with the infrastructure both to report it and to comply with the audit requirements of the British government. The UK has developed a reputation in the Bitcoin community of late for being comparatively friendly to crypto currency from a regulatory standpoint and more accessible than US regulators.</p>
<p dir="ltr">Vietnam’s Communist government has officially<a href="http://www.pfhub.com/vietnam-officially-bans-all-bitcoin-transactions-424/"> banned</a> all Bitcoin transactions. The Vietnamese central bank announced the policy, citing Bitcoin’s alleged role in promoting money laundering and other criminal activity. The bank did not specify how the ban would be enforced or what the penalties for non-compliance would be. The Vietnamese government maintains restrictive capital controls (ostensibly to protect the Dong against speculators), that Bitcoin could be used to subvert. Few exchanges offer the ability to convert from Bitcoin to the Vietnamese Dong. However, other currencies, such as the US dollar, are in common use on Vietnam’s streets, especially in urban centers.</p>
<p>Japan has <a href="http://techcrunch.com/2014/03/07/japan-government-has-no-plans-to-regulate-bitcoin-transactions-after-mt-goxs-demise/">announced</a> that it will not attempt to regulate Bitcoin transactions carried out within its borders on the grounds that bitcoins are not considered a currency. However, Japanese banks will be prohibited from buying or selling bitcoins. The Japanese government also clarified that it intends to treat Bitcoin as a commodity and subject it to the applicable taxation regime. Japan is the home of Mt. Gox, the collapsed Bitcoin exchange which is currently the subject of a bankruptcy filing in that country, along with at least one criminal probe and numerous civil suits.</p>
<p>The post <a rel="nofollow" href="http://bitcoinmagazine.com/10947/bitcoin-regulation-update-030714/">Bitcoin Regulation Update- 03/07/14</a> appeared first on <a rel="nofollow" href="http://bitcoinmagazine.com/">Bitcoin Magazine</a>.</p>]]></content:encoded>
<enclosure url="" length="" type=""/>
<author>Jason M. Tyra</author>
<pubDate>Sat, 08 Mar 2014 23:44:31 +0000</pubDate>
</item>
<item>
<title><![CDATA[Arthur Nakamoto: My brother, Dorian Satoshi Nakamoto...]]></title>
<link><![CDATA[http://www.reddit.com/r/Bitcoin/comments/1zx9zj/arthur_nakamoto_my_brother_dorian_satoshi_nakamoto/]]></link>
<description><![CDATA[<!-- SC_OFF --><div><p>Mis-quoting and blatant lies are unfortunately the journalistic world that exists today. I am just a humble handsome Asian man who is confused as to how a female asshole can become transferred onto my brother's rear end. But I saw with my own eyes from released video that there is a surgeon operating without an ethical or moral license to do exactly that.</p> <p>I and my immediate family were frightened due to obvious safety concerns, angered by our privacy being invaded and highly concerned over a gentle man trying, trying to recover from his life threatening health concerns. He was so private that he did not tell me when he was going through his health threats, only told me quietly when I visited the house in Temple City to take our mother for lunch. And I am his blood brother.</p> <p>I recall as a child that I looked up to Dorian, who I believe is many times smarter than I am. He taught me as a toddler, protected me from harm, shared with me Manga, the Japanese comic books and made up fantastic stories til I fell asleep. I am forever indebted to him in saving my life when I was 9 years old. He probably doesn’t remember anymore, but I do and that’s what matters to me. I called the writer an asshole and told her to leave my brother alone but the whole world did not read that, why? Dorian can be stubborn and be an asshole but then I am telling the whole world right here and now that I and only 2 other people in the whole world can say that to him and we are automatically forgiven by him in an instant. He can call me an asshole too and has and maybe a few “idiot” or “morons”, but you know, he was probably right and can prove it. That’s private. </p> <p>How dare this Leah demean, belittle the comforts of an old man in poor health who has barely enough money to feed himself and takes gentle care of our 93 year old mother in a modest house. To act and publish with carefully studied thought along with professional profilers, editors who calculated greed to ultimately endanger my brother's health and his physical safety. To be callous enough to place the safety of our 93 year old mother as a person of no consequence? Their collective act that published their magazines and follow-up public reports speak volumes of the motivation tied to greed. Who is going to be responsible in their safety, her, the executives at Newsweek, the entire Journalistic community? Yes, I place Leah McGraw Goodman and Newsweek and all news organizations that had joined in the feeding frenzy to be held responsible for their blatant and open carelessness.</p> <p>I understand that I will be mis-quoted in this post and that I will be made out to be the brother who is the asshole remark guy. I can and will have no choice that to be slandered and live with that. What I want to make clear is that I am pleading, no, begging for all to allow Dorian to live whatever life he has left to live it in dignity, peace and in private. To let him play with his trains and obsess over being treated to free lunches that he craves for some reason since his stroke. Funny thing is that growing up we were always hungry because there was never enough and lunch was our largest meal. What do I have to do? Show everyone my bowl legs due to malnutrition? His legs which are worse? What lower level of indecency is required to quench their thirst for what I cannot fathom? </p> <p>Do you know what's a real bitch (I am welling with tears right now) is? I cannot physically go to see him and my mother. To come together as a family to support or call for fear of my immediate family being in physical danger. I can’t go over there to bring groceries or have a private discussion.</p> <p>Proof: <a href="http://imgur.com/kvpzrK7">http://imgur.com/kvpzrK7</a></p> <p>Edit: I have found a picture of me and my brother. I hope this evidence is more concrete. More Proof: <a href="http://imgur.com/3O0STf2">http://imgur.com/3O0STf2</a></p> </div><!-- SC_ON --> submitted by <a href="http://www.reddit.com/user/arthurnakamoto"> arthurnakamoto </a> <br><a href="http://www.reddit.com/r/Bitcoin/comments/1zx9zj/arthur_nakamoto_my_brother_dorian_satoshi_nakamoto/">[link]</a> <a href="http://www.reddit.com/r/Bitcoin/comments/1zx9zj/arthur_nakamoto_my_brother_dorian_satoshi_nakamoto/">[574 comments]</a>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sat, 08 Mar 2014 22:57:35 +0000</pubDate>
</item>
<item>
<title><![CDATA[Breaking The Fourth Monopoly – Part 1 of 2]]></title>
<link><![CDATA[http://letstalkbitcoin.com/breaking-the-fourth-monopoly-part-1-of-2/]]></link>
<description><![CDATA[Governments have had monopolies on various aspects of our lives, including knowledge and violence. But what about another monopoly? The one that involves currency?
In part 1 of a 2 part essay, <b>Greatest Instruments</b> discusses these different monopolies and provides some insight into breaking the monopoly on currency.]]></description>
<enclosure url="" length="" type=""/>
<author>Greatest Instruments</author>
<pubDate>Sat, 08 Mar 2014 21:00:10 +0000</pubDate>
</item>
<item>
<title><![CDATA[E90 – Not About Gox]]></title>
<link><![CDATA[http://letstalkbitcoin.com/e90-not-about-gox/]]></link>
<description><![CDATA[]]></description>
<enclosure url="" length="" type=""/>
<author>Let's Talk Bitcoin!</author>
<pubDate>Sat, 08 Mar 2014 17:57:24 +0000</pubDate>
</item>
<item>
<title><![CDATA[Two-Bit Idiot: Bitcoin Foundation corruption ultimatum]]></title>
<link><![CDATA[http://www.bitcoinx.com/corruption-bitcoin-foundation/]]></link>
<description><![CDATA[<p>As Mt.Gox was falling apart, the “Two-Bit Idiot” blog on Tumblr was one of the rare sources of well-sourced, reliable information. Written by self-professed “entrepreneur and former VC” Ryan Selkis (who also writes under the name Ryan Galt), the blog was the first to leak the damning internal memos that all but proved Mt.Gox was […]</p><p>The post <a rel="nofollow" href="http://www.bitcoinx.com/corruption-bitcoin-foundation/">Two-Bit Idiot: Bitcoin Foundation corruption ultimatum</a> appeared first on <a rel="nofollow" href="http://www.bitcoinx.com/">Bitcoinx</a>.</p>]]></description>
<content:encoded><![CDATA[<p></p><div><a href="http://www.bitcoinx.com/wp-content/uploads/2014/02/11373483476_f77ae5f4b3_b.jpg"><img src="http://www.bitcoinx.com/wp-content/uploads/2014/02/11373483476_f77ae5f4b3_b-300x234.jpg" alt="Photo credit: http://www.flickr.com/photos/100239928@N08/" width="300" height="234"></a><p>Photo credit: http://www.flickr.com/photos/100239928@N08/</p></div>As Mt.Gox was falling apart, the <a href="http://two-bit-idiot.tumblr.com/" target="_blank">“Two-Bit Idiot” blog on Tumblr</a> was one of the rare sources of well-sourced, reliable information. Written by self-professed “entrepreneur and former VC” Ryan Selkis (who also writes under the name Ryan Galt), the blog was the first to leak the <a href="http://www.bitcoinx.com/mt-gox-offline-rumored-lost-744400-btc/">damning internal memos</a> that all but proved Mt.Gox was dead nearly a week before any official announcement.
<p>On Friday, Selkis took on another heavyweight in the cryptocurrency world, the Bitcoin Foundation In a post titled<br><a href="http://two-bit-idiot.tumblr.com/post/78868284696/coup-or-death-for-the-bitcoin-foundation" target="_blank">“Coup or Death for the Bitcoin Foundation?”</a> Selkis claims to have massively condemning material, and will publishing it on Monday unless Chairman Peter Vessenes and Executive Director Jon Matonis step down, effective immediately.</p>
<blockquote><p>Behind the scenes this week, I solicited the input of dozens of leaders throughout the industry who represent many of the corporate sponsors and lifetime individual members of the Foundation. The individual response has been nearly unanimous: these gentlemen must go, immediately. However, the corporate response has been understandably tepid. Truly good and professional executives have been caught between a rock and a hard place: Vessenes and Matonis are obstinate individuals who will be hard to force from their positions, and a public battle will cause additional media backlash for Bitcoin, which will hurt these executives’ businesses.</p>
<p>I have no similar fiduciary obligations to maintain the peace.</p></blockquote>
<p>What will happen if Selkis’s ultimatum is ignored? He’ll publish a full article on Monday, outlining the “glaring incompetence and negligence” of the two men in detail. Just to show he’s not bluffing, Selkis even gave readers a taste of what’s to come.</p>
<blockquote><p>1) The Foundation never once warned Bitcoin investors about keeping deposits in Mt. Gox, despite clear red flags dating back to at least April 2013. Nor did the Foundation craft or advocate for best practices such as technical transparency, deposit audits, or appropriate consumer protection disclosures. This was a colossal failure of leadership. </p>
<p>2) There is evidence that Bitcoin Foundation board members may have had direct access to Mark Karpeles which allowed them to personally deposit and withdraw funds from Mt. Gox, despite persistent delays for other customers. </p>
<p>3) There is a troubling and inappropriate overlap between Peter Vessenes’ staff at his private company, CoinLab, and the Bitcoin Foundation’s staff, which goes far beyond shared office space. </p>
<p>4) The current leadership has shown a stunning disregard for proper communications with its members. The importance of immediate resignations (rather than gradual) is highlighted by the Board’s secret plans to move the Foundation’s headquarters to London without input from members and sponsors.</p>
<p>5) Peter Vessenes has had a nine month conflict of interest regarding Mt. Gox given that his company CoinLab was involved in an active multi-million dollar lawsuit against Mark Karpeles and Mt. Gox, following a failed partnership. Both men remained on the board of directors, and the Foundation failed to draft adequate by-laws that would allow them to address situations such as this where directors had material conflicts, which would compromise their ability to act in the best interests of its members.</p></blockquote>
<p>Selkis make it absolutely clear that his proposed change is non-negotiable.</p>
<blockquote><p>I assure you, I am ready to go nuclear. Because this is important. </p>
<p>Make no mistake: Peter and Jon will either step down from their leadership positions, or the corporate sponsors of the Foundation will quickly assemble and publicly distance themselves from the Foundation, writing off the organization as an illegitimate zombie entity.</p></blockquote>
<p>Will Vessenes and Matonis cave to the blogger and step down? Will Selkis air the Bitcoin Foundation’s dirty laundry? All should be revealed on Monday. More on the situation as it develops.</p>
<p>The post <a rel="nofollow" href="http://www.bitcoinx.com/corruption-bitcoin-foundation/">Two-Bit Idiot: Bitcoin Foundation corruption ultimatum</a> appeared first on <a rel="nofollow" href="http://www.bitcoinx.com/">Bitcoinx</a>.</p>]]></content:encoded>
<enclosure url="" length="" type=""/>
<author>Steve Shanafelt</author>
<pubDate>Sat, 08 Mar 2014 14:17:38 +0000</pubDate>
</item>
<item>
<title><![CDATA[Report: “Sorry Banks, Millennials Hate You”]]></title>
<link><![CDATA[http://www.bitcoinx.com/report-sorry-banks-millennials-hate/]]></link>
<description><![CDATA[<p>In a dramatic new survey by Viacom’s brand research division Scratch, the mid-20s generation known as “millennials” have made their views about banks and the banking industry unambiguously clear: They don’t like banks. Period. The three-year study of 10,000 millennials, the “Millennial Disruption Index,” showed a general sense of skepticism and hostility towards banks. According […]</p><p>The post <a rel="nofollow" href="http://www.bitcoinx.com/report-sorry-banks-millennials-hate/">Report: “Sorry Banks, Millennials Hate You”</a> appeared first on <a rel="nofollow" href="http://www.bitcoinx.com/">Bitcoinx</a>.</p>]]></description>
<content:encoded><![CDATA[<p></p><div><a href="http://www.bitcoinx.com/wp-content/uploads/2014/03/Millenial-banking.jpg"><img src="http://www.bitcoinx.com/wp-content/uploads/2014/03/Millenial-banking-139x300.jpg" alt="Detail from the Scratch report." width="139" height="300"></a><p>Detail from the Scratch report.</p></div>In a dramatic new survey by Viacom’s brand research division Scratch, the mid-20s generation known as “millennials” have made their views about banks and the banking industry unambiguously clear: <a href="http://www.millennialdisruptionindex.com/" target="_blank">They don’t like banks.</a> Period.
<p>The three-year study of 10,000 millennials, the “Millennial Disruption Index,” showed a general sense of skepticism and hostility towards banks. </p>
<p>According to the report, 33% of millennials believe they won’t need a bank at all in coming years. All four leading banks rank in the “ten least loved brands” by millennials. A full 70% of those polled believe that payments will be “totally different” than today’s system in a mere 5 years, and they believe this change will be “seismic.” Nearly half expect this change to come from tech startups.</p>
<p><a href="http://www.fastcompany.com/3027197/fast-feed/sorry-banks-millennials-hate-you" target="_blank">Speaking with <em>Fast Company</em></a>, Scratch executive vice president Ross Martin explained the results:</p>
<blockquote><p>As consumers, millennials have been slow to accumulate wealth. They have huge debt. They’re facing unprecedented underemployment. They’ve been relatively unaddressed as a generation by banks. All of a sudden, you see purchasing power by millennials growing to over $1.3 trillion.”</p></blockquote>
<p>As millennials become an increasingly powerful economic force, their view of banking has massive implications for alternative currencies and payments. The Fast Company report suggests that the likely winners of the coming battle for the wallets of millennial customers are non-bank options like PayPal, Square and, tellingly, Bitcoin.</p>
<p>No banks? Totally different payment systems? Tech-driven? It certainly sounds like the millennials are describing Bitcoin.</p>
<p>The post <a rel="nofollow" href="http://www.bitcoinx.com/report-sorry-banks-millennials-hate/">Report: “Sorry Banks, Millennials Hate You”</a> appeared first on <a rel="nofollow" href="http://www.bitcoinx.com/">Bitcoinx</a>.</p>]]></content:encoded>
<enclosure url="" length="" type=""/>
<author>Steve Shanafelt</author>
<pubDate>Sat, 08 Mar 2014 13:52:48 +0000</pubDate>
</item>
<item>
<title><![CDATA[University of Nicosia proposes Cyprus become a “worldwide Bitcoin hub”]]></title>
<link><![CDATA[http://www.bitcoinx.com/university-nicosia-proposes-cyprus-become-worldwide-bitcoin-hub/]]></link>
<description><![CDATA[<p>In a recent conference at the University of Nicosia in Cyprus, university CFO Dr. Christos Vlachos gave a presentation about Bitcoin to the Cypriot government and Cyprus Stock Exchange. The highlight of the presentation was a formal proposal to the government for “Converting Cyprus into a worldwide hub for Bitcoin trading and processing.” According to […]</p><p>The post <a rel="nofollow" href="http://www.bitcoinx.com/university-nicosia-proposes-cyprus-become-worldwide-bitcoin-hub/">University of Nicosia proposes Cyprus become a “worldwide Bitcoin hub”</a> appeared first on <a rel="nofollow" href="http://www.bitcoinx.com/">Bitcoinx</a>.</p>]]></description>
<content:encoded><![CDATA[<p></p><div><a href="http://www.bitcoinx.com/wp-content/uploads/2014/03/512px-Flag_of_Cyprus.svg_.png"><img src="http://www.bitcoinx.com/wp-content/uploads/2014/03/512px-Flag_of_Cyprus.svg_-300x199.png" alt="Cyprus's flag" width="300" height="199"></a><p>Cyprus’s flag</p></div>In a recent conference at the <a href="http://www.unic.ac.cy/" target="_blank">University of Nicosia</a> in Cyprus, university CFO Dr. Christos Vlachos gave a presentation about Bitcoin to the Cypriot government and Cyprus Stock Exchange. The highlight of the presentation was a formal proposal to the government for “Converting Cyprus into a worldwide hub for Bitcoin trading and processing.”
<p>According to a <a href="http://www.reddit.com/r/Bitcoin/comments/1zw6x1/university_of_nicosia_proposal_to_the_cyprus/" target="_blank">translation posted to Reddit</a>, the proposal makes a powerful case for Cyprus to adopt progressive policies towards the rapidly growing cryptocurrency market.</p>
<blockquote><p>We believe that Bitcoin offers a significant opportunity for innovation and development: we would like to see Cyprus using its powerful human and academic capitals to become a pioneer in this regard.</p>
<p>All that the state has to do is to create a regulatory framework for Bitcoin businesses in Cyprus: this will eliminate/reduce the risks associated with digital currencies such as counterparty risk.</p>
<p>We can create an entirely new industry in Cyprus based on Bitcoin and digital currencies.</p>
<p>There will be major foreign investments in the economy, large annual income from its trading in the official Cyprus stock exchange and creation of new jobs.</p>
<p>Zero investment from the government.</p>
<p>The opportunity will not be there forever. Already other countries make similar moves e.g. Singapore, Switzerland, Denmark.</p></blockquote>
<p>Cyprus was on the front lines of the economic battles following the Greek debt crisis last year, and its population has been increasingly disillusioned with the state’s banking system since the incredibly unpopular decision to “haircut” all bank deposits by 6.7% to nearly 40% as part of a 2013 bailout deal. While that decision was largely aimed at out-of-country depositors using Cyprus as a tax haven, the action has resulted in the steep decline of investment in the country and the moving of citizen funds to non-Cypriot banks. It has also resulted in a massive interest in alternative forms of currency like Bitcoin.</p>
<p>As a result, Cyprus is already well ahead of the curve when it comes to Bitcoin. The country is already home to first brick-and-mortar “Bitcoin bank” chain and payment company, <a href="http://www.bitcoinx.com/bitcoin-bank-neo-opens-cyprus/" target="_blank">Neo & Bee</a>, and University of Nicosia already accepts Bitcoin for tuition payments. The government, meanwhile, has made few moves to regulate virtual currency. Bitcoin prices are regularly shown on local TV news along with stock prices, and Bitcoin-based startups are appearing all over the country.</p>
<p>The idea of Cyprus as a haven for Bitcoin-related business is not far-fetched. The country’s existing laws have long allowed Cyprus to serve as a shelter for foreign funds. According to the Reddit account of the conference, the Chairman of the Cyprus Stock Exchange expressed interest in the idea, although admitted to having almost no knowledge of Bitcoin. Neo & Bee representatives offered any assistance needed to set up a workable system.</p>
<p>The post <a rel="nofollow" href="http://www.bitcoinx.com/university-nicosia-proposes-cyprus-become-worldwide-bitcoin-hub/">University of Nicosia proposes Cyprus become a “worldwide Bitcoin hub”</a> appeared first on <a rel="nofollow" href="http://www.bitcoinx.com/">Bitcoinx</a>.</p>]]></content:encoded>
<enclosure url="" length="" type=""/>
<author>Steve Shanafelt</author>
<pubDate>Sat, 08 Mar 2014 13:33:20 +0000</pubDate>
</item>
<item>
<title><![CDATA[Hardening the API]]></title>
<link><![CDATA[https://pay.reddit.com/r/bitmessage/comments/1zvut9/hardening_the_api/]]></link>
<description><![CDATA[<!-- SC_OFF --><div><p>First I want to say that I love the idea behind this project. </p> <p>I was reading about how to use the API and noticed, that all API calls are made over http in plain text. In my opinion, this is a weak spot. Is this something we could fix? Would it be to hard to rewrite so the API calls are encrypted? Maybe if we fix this we can start to see some mobile clients.</p> </div><!-- SC_ON --> submitted by <a href="http://www.reddit.com/user/TcM1911"> TcM1911 </a> <br><a href="http://www.reddit.com/r/bitmessage/comments/1zvut9/hardening_the_api/">[link]</a> <a href="https://pay.reddit.com/r/bitmessage/comments/1zvut9/hardening_the_api/">[3 comments]</a>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sat, 08 Mar 2014 11:13:37 +0000</pubDate>
</item>
<item>
<title><![CDATA[What's the largest message we can send?]]></title>
<link><![CDATA[https://pay.reddit.com/r/bitmessage/comments/1zv4j4/whats_the_largest_message_we_can_send/]]></link>
<description><![CDATA[<!-- SC_OFF --><div><p><a href="https://github.com/Bitmessage/PyBitmessage/blob/44f31d7bf92cb985359a699d6eea3c700fcc8591/src/class_receiveDataThread.py#L333-L336">This</a> seems to imply you can send up-to at-least 100MB, <a href="https://github.com/Bitmessage/PyBitmessage/blob/44f31d7bf92cb985359a699d6eea3c700fcc8591/src/class_receiveDataThread.py#L126-L130">this</a> however seems to be a hard limit of just 20MB.</p> <p>Four questions:-</p> <ol><li><p>What is the largest sized message we can broadcast, assuming clients are using the default settings & build (Obviously anyone could just comment the whole thing out and tuh-duh, we can transfer 10TB messages, but, we're assuming most of the network doesn't/won't do that)</p></li> <li><p>What is the reason for the limited size? Bandwidth attacks? Disk attacks? Computing time attacks? All of the above? If it is one of the above, how do/will you implement attachments (See question #3)?</p></li> <li><p>Why does <a href="https://bitmessage.org/wiki/FAQ#How_does_Bitmessage_compare_to_other_messaging_methods">this</a> claim that I can send up to 180MB attachments when the actual message is capped at 20MB? Where is the 180MB attachment limited to 180MB in the source?</p></li> <li><p>Is the 20MB 20,000,000 raw bytes worth of data, or, 20,000,000 base64-digest bytes of data (I couldn't think of a better word for the ouput of the base64 function, basically, not the raw data it's encoding)? Same question goes for the 100MB limit.</p></li> </ol><p>Thanks, sorry for the mass amount of questions, just trying to familiarize myself with the application.</p> </div><!-- SC_ON --> submitted by <a href="http://www.reddit.com/user/B24Cd5JU0pm9O7pxrw7n"> B24Cd5JU0pm9O7pxrw7n </a> <br><a href="http://www.reddit.com/r/bitmessage/comments/1zv4j4/whats_the_largest_message_we_can_send/">[link]</a> <a href="https://pay.reddit.com/r/bitmessage/comments/1zv4j4/whats_the_largest_message_we_can_send/">[9 comments]</a>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sat, 08 Mar 2014 03:14:18 +0000</pubDate>
</item>
<item>
<title><![CDATA[Risk analysis for FlowingMail. Comments and suggestions are welcomed]]></title>
<link><![CDATA[https://pay.reddit.com/r/bitmessage/comments/1zuoro/risk_analysis_for_flowingmail_comments_and/]]></link>
<description><![CDATA[submitted by <a href="http://www.reddit.com/user/pbrandoli"> pbrandoli </a> <br><a href="http://flowingmail.com/geeks/risk-analysis/">[link]</a> <a href="https://pay.reddit.com/r/bitmessage/comments/1zuoro/risk_analysis_for_flowingmail_comments_and/">[comment]</a>]]></description>
<enclosure url="" length="" type=""/>
<pubDate>Sat, 08 Mar 2014 00:03:45 +0000</pubDate>
</item>
<item>
<title><![CDATA["Can't detect any devices"]]></title>
<link><![CDATA[http://bitcoin.stackexchange.com/questions/23213/cant-detect-any-devices]]></link>
<description><![CDATA[<p>I'm trying to start mining using my GPU (ATI Radeon HD 4850) but when I try to run cgminer it cant detect any devices.
I use this to run cgminer: cgminer --scrypt -o stratum+tcp://stratum2.dogechain.info:3333 -u USERNAME -p PASSWORD
Im very nooby so if you can help that would be great!</p>]]></description>
<enclosure url="" length="" type=""/>
<author>Noob</author>
<pubDate>Fri, 07 Mar 2014 23:53:02 +0000</pubDate>
</item>
<item>
<title><![CDATA[2014 Liberty Forum (excerpt)]]></title>
<link><![CDATA[http://bitcoinmagazine.com/10873/2014-liberty-forum-excerpt/]]></link>
<description><![CDATA[<p>Welcome to New Hampshire. Land of those who “Live Free or Die”. A place where some government owned roads have potholes deep enough to nearly flatten my car’s tires during a night drive. But what are the free people of New Hampshire like? I browsed the Internet and filed away stories of nanobreweries and porcupine quill crowns, and stumbled into a Facebook group dedicated to the Liberty Forum. The most noticeable pattern in the Facebook posts was the amount of people driving in from out of town. Several conference attendees were driving in from South Carolina, Michigan and other locations outside of New Hampshire. Others were members of the press, with requests being posted for Ben Swann’s journalists who would […]</p><p>The post <a rel="nofollow" href="http://bitcoinmagazine.com/10873/2014-liberty-forum-excerpt/">2014 Liberty Forum (excerpt)</a> appeared first on <a rel="nofollow" href="http://bitcoinmagazine.com/">Bitcoin Magazine</a>.</p>]]></description>
<content:encoded><![CDATA[<a href="http://bitcoinmagazine.com/10873/2014-liberty-forum-excerpt/"><img width="950" height="350" src="http://btcmag.9wizards.netdna-cdn.com/wp-content/uploads/2014/03/nhlibforum2014.png" alt="nhlibforum2014"></a><p dir="ltr">Welcome to New Hampshire. Land of those who “Live Free or Die”. A place where some government owned roads have potholes deep enough to nearly flatten my car’s tires during a night drive. But what are the free people of New Hampshire like?</p>
<p>I browsed the Internet and filed away stories of nanobreweries and porcupine quill crowns, and stumbled into a Facebook group dedicated to the Liberty Forum. The most noticeable pattern in the Facebook posts was the amount of people driving in from out of town. Several conference attendees were driving in from South Carolina, Michigan and other locations outside of New Hampshire. Others were members of the press, with requests being posted for Ben Swann’s journalists who would need a ride from Logan Airport.</p>
<p><span>Several folks made reservations to sleep on the floor of those who booked hotel rooms at the Crowne Plaza where the Liberty Forum was held.</span></p>
<hr><p><strong><span><img alt="" src="http://upload.wikimedia.org/wikipedia/commons/0/09/Jeffrey_Tucker.jpg" width="343" height="387">Jeffrey Tucker</span></strong></p>
<p><span>I personally dislike bowties. But Jeffrey Tucker has a way of beating any haters of liberty (and bowties) down with elegance and charm. His first talk was concise and went through a talk called 10 Steps to Hack the Leviathan.</span></p>
<p><em><span>Notes from 10 Steps to Hack The Leviathan</span></em></p>
<p>Jeffrey talked about the softer subversive ways to Hack the Leviathan. He claimed centuries of work done by the government and lobbyists to limit choice and free markets can be undone in one Saturday afternoon.</p>
<p><span>1. Hack the House</span></p>
<ul><li dir="ltr">
<p dir="ltr">Use <a href="http://mises.org/daily/5267/why-everything-is-dirtier">TSP</a> (trisodium phosphate) instead of bleach for laundry, dishes, and cleaning around the house.</p>
</li>
</ul><p><span>2. Hack Education</span></p>
<ul><li dir="ltr">
<p dir="ltr">Don’t bother with school</p>
</li>
<li dir="ltr">
<p dir="ltr">Use the Khan Academy</p>
</li>
<li dir="ltr">
<p dir="ltr">Use tablets to download millions of free books online available via the Gutenburg project and Laissez Faire Books (lfb.org)</p>
</li>
</ul><p><span>3. Travel</span></p>
<ul><li dir="ltr">
<p dir="ltr">Americans don’t travel enough</p>
</li>
<li dir="ltr">
<p dir="ltr">Travel to countries freer than America</p>
</li>
<li dir="ltr">
<p dir="ltr">America isn’t the most perfect nation on earth</p>
</li>
<li dir="ltr">
<p dir="ltr">Get a passport</p>
</li>
</ul><p><span>4. Build an Online Network</span></p>
<ul><li dir="ltr">
<p dir="ltr">Twitter, Facebook</p>
</li>
<li dir="ltr">
<p dir="ltr"><a href="http://liberty.me/"><span>Liberty.me</span></a></p>
</li>
</ul><p><span>5. Leave Your Job</span></p>
<ul><li dir="ltr">
<p dir="ltr">People are afraid of leaving a bad job</p>
</li>
<li dir="ltr">
<p dir="ltr">Fear of losing health care</p>
</li>
<li dir="ltr">
<p dir="ltr">Fear of uncertainty</p>
</li>
<li dir="ltr">
<p dir="ltr">Human beings are anti-fragile</p>
</li>
<li dir="ltr">
<p dir="ltr">The State wants us to stay in 1 job forever</p>
</li>
</ul><p>6. Take Charge of Your Health</p>
<ul><li dir="ltr">
<p dir="ltr">Use online pharmacies</p>
</li>
</ul><p>7. Peer to Peer Lending</p>
<ul><li dir="ltr">
<p dir="ltr">Banking system is broken</p>
</li>
<li dir="ltr">
<p dir="ltr">Loan system is f’d up</p>
</li>
</ul><p>8. Learn New Technology</p>
<ul><li dir="ltr">
<p dir="ltr">We can all learn new things</p>
</li>
</ul><p>9. Cryptocurrency</p>
<ul><li dir="ltr">
<p dir="ltr">Read Satoshi Nakamoto’s white paper on a peer-to-peer cash transaction system (Bitcoin).</p>
</li>
<li dir="ltr">
<p dir="ltr">Over 400 cryptocurrencies in circulation</p>
</li>
</ul><p>10. Have Hope</p>
<ul><li dir="ltr">
<p dir="ltr">Don’t be afraid</p>
</li>
<li dir="ltr">
<p dir="ltr">Banish despair</p>
</li>
<li dir="ltr">
<p dir="ltr">Future can be brighter than the present</p>
</li>
<li dir="ltr">
<p dir="ltr">Satoshi didn’t approach a central planner and didn’t ask for permission. He just served others.</p>
</li>
<li dir="ltr">
<p dir="ltr">States are cruel and stupid. Markets are smart</p>
</li>
</ul><p>The audience laughed and cheered through each of these points and Jeffrey’s enthusiasm helped the talk fly by and made most people feel like the talk should have extended past the designated time slot.</p>
<p>One of the attendees asked Jeffrey if we were more free than 10 or 20 years ago. Mr. Tucker said, “We have more choices, but are less free.”</p>
<hr><p><a href="http://btcmag.9wizards.netdna-cdn.com/wp-content/uploads/2014/03/photo2.jpg"><img alt="photo2" src="http://btcmag.9wizards.netdna-cdn.com/wp-content/uploads/2014/03/photo2-620x465.jpg" width="620" height="465"></a></p>
<p><strong>Kashmir Hill</strong></p>
<p dir="ltr">I was very familiar with the Living 1 Week on Bitcoin series Kashmir published and I loved the story. I almost decided not to sit in on the talk, but as she began I realized it was much better to hear the story directly from the source, than to read online.</p>
<p dir="ltr">Here are a list of facts that I didn’t remember reading in the online story:</p>
<p dir="ltr">- The first two food items she could purchase when she started her story was cupcakes and sushi.</p>
<p dir="ltr">- Buyers Best Friend began accepting Bitcoins (in store only) just because Kashmir Hill was living on Bitcoins.</p>
<p dir="ltr">- Jared Kenna provided her with shelter and his hostel was the only living space that accepted Kashmir’s Bitcoins.</p>
<p dir="ltr">Finding a reliable means of transportation that would accept Bitcoin was a constant struggle the entire week. She paid her friend some Bitcoin for an old used bike.</p>
<p>She shared that she would be repeating the experiment on the anniversary of her first experiment to see if it was easier to live off Bitcoins in San Francisco one year later.</p>
<hr><p><a href="http://btcmag.9wizards.netdna-cdn.com/wp-content/uploads/2014/03/photo6.jpg"><img alt="photo6" src="http://btcmag.9wizards.netdna-cdn.com/wp-content/uploads/2014/03/photo6-620x465.jpg" width="620" height="465"></a><strong>The Liberator</strong></p>
<p> One of the first 3d printer users to download Cody’s liberator raised his gun as a packed room and the crowd cheered him on for exercising his freedom to print.</p>
<p>I also own a 3D printer and I looked forward to hearing the specifics on how the Liberator was designed and released. It is modeled after a .380 caliber gun and designed by an Electrical Engineer. Cody didn’t have a Mechanical Engineer on hand, but this gentleman named John was available and determined to design the first 3D printed gun.</p>
<p dir="ltr"> Initial test shots resulted in shredded the plastic gun due to several misfires and gave Cody and his team a bit of apprehension before calling the media (Andy Greenberg of Forbes and others) down to witness a successful test fire, but after choosing the right gun to model their gun after, finding a strong reliable spring design on thingiverse, and getting a second hand Stratasys Dimension SST 3D printer off ebay they had all they needed to finish the project.</p>
<p dir="ltr"><em>ABS vs. PLA</em></p>
<p dir="ltr">When I first did research on 3D printers, choosing ABS or PLA was a big question. ABS plastic was stronger, but was oil based and released hazardous fumes as it cooled. PLA plastic was corn based, but fragile and couldn’t withstand high temperatures. I personally only use PLA since I have children in my home, but it is very common for ABS to be used for high force applications.</p>
<p dir="ltr">Knowing the difference between the two types of plastics Cody had available is important, because to make a usable gun it is clear ABS is the only plastic that would be able to make strong enough springs and barrel to allow the gun to be fired multiple times. Cody was able to, with ABS, fire the Liberator 10 times before the barrel cracked. He taped it together and was then able to fire it one more time.</p>
<hr><p><strong>Bitcoin Public Addresses Over Ham Radio</strong></p>
<p><span>After a brief nap, I drove back to the Liberty Forum where I was expected to hear Patrick Byrne, CEO of Overstock.com, talk about his recent successes with Bitcoin, but he was unavailable due to health reasons, and the talk was delayed. Instead a stellar panel including Daniel Krawisz, Cody Wilson, and Chris Case talked about Bitcoin.</span></p>
<p><span>After the talk, I sat down with a lady who had several solar chargers and enough devices in her backpack to survive through an apocalypse. Her main concern with Bitcoins was, if the power grid went down in a region, how would people continue to transfer Bitcoins?</span></p>
<p>I didn’t have a good answer, but the gentleman who sat with us showed us his ham radio he was selling for $100. He also had an iPhone app called PSKer. The app was a less powerful audio receiver and unlike like the chirp app, could decipher data encoded over specific frequencies designated spectrum.</p>
<p>We ran a test using a public Bitcoin Address, and it worked perfectly. I then turned to the survivalist lady and said, “If some region did run out of power, they could use their ham radio to communicate their public address.” The ham radio operator on the other end would have to be a trusted source.</p>
<p><span>According the FCC, ham radios can not be used for commerce; whether a Bitcoin public address could be seen as commerce is questionable. Someone could use it to confirm a balance for off-chain manually entered transactions in a rural region that has lost power.</span></p>
<hr><p><strong><a href="http://btcmag.9wizards.netdna-cdn.com/wp-content/uploads/2014/03/photo13.jpg"><img alt="photo13" src="http://btcmag.9wizards.netdna-cdn.com/wp-content/uploads/2014/03/photo13-620x465.jpg" width="496" height="372"></a></strong></p>
<p><strong>Tom Drake and The Whistleblowers</strong></p>
<p>I had never heard of many of the other whistleblowers besides Chelsea Manning and Edward Snowden, but of the modern whistleblowers, Thomas Drake was the first to draw media attention to the wasteful spending going on in the NSA and prove that this government organization had the resources to prevent the 9/11 attack.</p>
<p><span>He went to court and suffered for informing the public of this intel and he admitted some of his friends had suffered for his revelation. His lawyer is Jesselyn Radack who is also Edward Snowden’s lawyer, and is also a whistleblower about the government’s interrogation of John Walker Lindh without a lawyer present.</span></p>
<p>Thomas spoke of the first whistleblower in American history, Benjamin Franklin, and how he was penalized for intercepting letters to the Massachusetts governor Thomas Hutchinson who called for an “abridgement of English liberties” and had been assisted by his brother-in-law General George Oliver in restricting the freedoms of British citizens living in Massachusetts.</p>
<p><span>Thomas referred to Ben Franklin because the letters which served as evidence were dismissed from Ben Franklin’s trial. He was fired as the Postmaster and permanently sent back to the US. Thomas said that under this government all whistleblowers have suffered losses, whether it’s having a spouse fired and forcing a family to live on food stamps or threatening someone with jail time as the threat pushes someone to commit suicide. Releasing government secrets to assist the public in knowing the truth always has negative personal consequences.</span></p>
<p>Jesselyn Radack was also the lawyer for John Kiriakou, who became a whistleblower after announcing to the press the methods which the CIA used to institutionalize torture. John’s sister was in the audience and confirmed he was still in jail serving his 2.5 year sentence and misses being with his wife and 5 children.</p>
<hr><p><strong><span>Area 23</span></strong></p>
<p>All Liberty Forum attendees were invited to a second party in Manchester at a location called Area 23. This place was larger and thus more visible from the street, although someone told me I was entering through the wrong door. Again I followed the crowd to my destination, and this space seemed like more of a hangout, even though it was still under construction. To be honest, the unfinished rooms were quite appealing as most people chose to spend their time in areas with construction equipment and bare walls. The other rooms included Free State Project’s office, a map room, an open black room, and an area with a pool table.</p>
<p><span>Near the food there was a dance floor where a few brave souls donning neon apparel danced to a playlist I heard even as I was pulling up into the parking lot.</span></p>
<p><span>The map room had a world map that covered one entire wall. It was close to 10 feet high and about 14-15 feet wide. I spoke to Zach and Josh Harvey, the developers of the Lamassu Bitcoin ATM and they talked about all the places in the world they were shipping their ATMs. I asked Josh how they tested different fiat currencies, and they told me they obtained the customers’ target currency and tested the ATM against a country specific firmware is installed to handle any currency. They pointed to all the places on the map where they had sent their ATMs.</span></p>
<p><span>The software used on the Lamassu is open source, and it could technically be configured to use software from the Dark Wallet or add support for other cryptocurrencies like AuroraCoin or Dogecoin.</span></p>
<p><span>We started talking about where we would go if we had to leave the US. At such a large scale, all the small islands around the larger continents were visible and we shared what we knew about these islands and how difficult it would be to migrate there.</span></p>
<p><span>While I was in the room, a gentleman approached me and pulled a slender shiny 10 ounce bar of silver out of his pocket. He wanted to exchange his silver for Bitcoin. This was my first ever informal silver offer, but I declined because I had just used Bitcoin to buy several silver coins from Amagi Metals hours earlier at the Liberty Forum.</span></p>
<hr><p><strong><span>A Chat with The Quill Queen a.k.a. Carla Gericke</span></strong></p>
<p><span>A large part of the Liberty Forum attendees were early Free State movers, and a lot of the buzz about the Free State project is due to Carla Gericke’s leadership. I use the term leadership very liberally and I would say the Free State Project is full of a lot of leaders. Carla took some time to share some of the details of the Free State Project and talk about PorcFest.</span></p>
<p><strong>Ruben Alexander:</strong> <em>What did you enjoy the most about the 2014 Liberty Forum? What do you think you won’t repeat again?</em></p>
<p><strong>Carla Gericke:</strong><span> Enjoyed the most? Definitely our keynote speakers. NSA whistleblower Thomas Drake and Jesselyn Radack, who represented Drake and is now representing Snowden, were amazing!</span></p>
<p><span>I was also excited by our Friday night keynote, Naomi Wolf, whom I personally recruited. I’m thrilled that she joined us, and that she was totally enamoured with what we are achieving in New Hampshire. She called it “ground zero for grassroots activism,” and she’s right. I wanted to bring Naomi out because part of this journey to freedom rests on us finding common ground with others. I believe progressives, or at least the ones asking the right questions, can be allies. This is no longer a left vs. right paradigm, it’s an issue of liberty vs. tyranny. When Naomi spoke about being wrong on gun rights and the Second Amendment, and acknowledged that we need guns to protect individuals’ rights against the strong arm of the state, I knew we could continue the dialogue. I’m excited to see where her next book takes her, and her new documentary, which is an update on her book “The End of America.” </span></p>
<p><span>I also really enjoyed the Ignite talks, which was a first for us. The format–sticking to 5 minutes with 20 slides that auto-progress every 15 seconds–forced speakers to be succinct and on point. It was great to see what other activists are passionate about, with topics ranging from my own “Art as Activism (Or How Not to Do an Ignite Talk),” to “How to Hitchhike in New Hampshire.”</span></p>
<p><span>As to what not to repeat again, nothing really jumps out. The conference was well balanced, with topics covering economics, food freedom, legislature, moving to New Hampshire, philosophy, police state, secession, surveillance and privacy, social justice, technology, whistleblowing, and of course, Bitcoin. I’m already thinking about 2015, and am, frankly, a little worried about how to top this one!</span></p>
<p><span><strong>RA:</strong> <em>I didn’t see a dry eye when Thomas Drake and the other whistleblower’s sister talked about the illusion of freedom in America and punishment for speaking the truth. Have there been any whistleblowers for matters local to the New Hampshire law enforcement or government? What protection do freestaters have in this circumstance?</em></span></p>
<p><span><strong>CG:</strong> You’re right about not a dry eye–I cried too! It’s very emotional to see the consequences of taking the moral high ground so personally, as human beings who are trying to protect and alert others to the emerging police state. Drake really impressed me with his unapologetic, forthright testimony against the national surveillance state, at great cost to himself.</span></p>
<p><span>There have been examples of local liberty lovers blowing the whistle. One of our speakers, Peter Martino, who spoke out at the Concord BEARCAT hearing about the federal government building a domestic army, whistleblew on waste and fraud in a warzone overseas. I believe he is under a gag order, and not a “free stater” per se, but he’s one of us, a “pre-stater,” if you will. One of the many reasons we chose New Hampshire–no sales tax, no income tax–is because a desire for liberty still exists here.</span></p>
<p><span>We have had situations where activists’ actions have led to more transparency and accountability in law enforcement. Personally, I was arrested in 2010 for filming police officers in public, and my subsequent lawsuit against them is currently in the First Circuit Court of Appeals. The police chief of the town of Weare resigned, and two officers have been fired. It’s hard to say definitively that my suit was the cause, but the new police chief did reach out through my attorney to acknowledge there are problems in the Weare police department.</span></p>
<p><span>During the Concord BEARCAT hearings last fall, it came to light that the then Concord police chief Duval had lied on a federal grant application for the acquisition of BEARCAT, calling Free Staters “a domestic terrorist threat.” Although the city ultimately voted to accept the BEARCAT, despite the will of more than 1,500 petition signers against it, Chief Duval quietly retired a few months later, and now works security for the Concord Hospital.</span></p>
<p><span>You can read more about the BEARCAT on www.freestateproject.org and here are some choice links:</span></p>
<p><a href="http://freestateproject.org/blogs/bearcat-right-know">http://freestateproject.org/blogs/bearcat-right-know</a></p>
<p dir="ltr"><a href="http://freestateproject.org/blogs/voices-against-attack-vehicles">http://freestateproject.org/blogs/voices-against-attack-vehicles</a></p>
<p dir="ltr"><a href="http://freestateproject.org/blogs/can-police-chief-call-you-terrorist-and-get-away-it">http://freestateproject.org/blogs/can-police-chief-call-you-terrorist-and-get-away-it</a></p>
<p dir="ltr"><a href="http://freestateproject.org/blogs/police-chief-backpedals-over-tank-fsp-pushes-truth">http://freestateproject.org/blogs/police-chief-backpedals-over-tank-fsp-pushes-truth</a></p>
<p><span><strong>RA:</strong> <em>I heard the free state movement has 15,000 pledges. From what I saw the community is strong even though most folks who have signed the pledge haven’t arrived. Do you know what locations are growing the most due to early movers? Do you have any insight into what town has the most free staters?</em></span></p>
<p><span><strong>CG:</strong> The FSP is now more than 75% to our goal of getting 20,000 activists to pledge to move to New Hampshire. Early movers have been coming to the state since the FSP started more than a decade ago, but there’s definitely an acceleration happening, and even though no one is even obligated to move yet (you have 5 years after we reach the 20,000 mark), more than 1,500 people already have! With the successes we’ve seen with this relatively small number of activists, imagine what is going to happen when we Trigger the Move!</span></p>
<p>Movers settle all across the state, but the largest concentration is in Manchester, NH’s biggest city (pop. 110,000). The largest per capita concentration of Free Staters is in Grafton, which is a small, rural town with no zoning laws. There are also pockets in Nashua, which is close to the Massachusetts border and supplies FSP techies to the Boston area, and in Keene, which is a liberal college town.</p>
<p><strong>RA:</strong><em>Have Bitcoin donations helped with the expenses related to running the Free State Project?</em></p>
<p><span><strong>CG:</strong> The FSP was an early adopter of Bitcoin, and we started accepting payments in BTC to our events back in 2011, and BTC donations in 2012. We have a large Bitcoin community in New Hampshire, for example, the founders of Lamassu are Free Staters. We also have a lot of BTC related independent media that originates from here. We have received modest BTC donations in the past, and have had great relationships with BTC vendors as sponsors at our events. We appreciate the support! Of course, I wouldn’t mind if a Bitcoin millionaire wanted to step in and solve our immediate fundraising needs. </span></p>
<p><strong>RA:</strong> <em>I read online you were originally from South Africa. Can you talk more about your background and what shaped your current views on the value in pursuing liberty in your community?</em></p>
<p dir="ltr"><strong>CG:</strong> Yes, I was born and raised in South Africa, but also traveled a lot as a child as my father was a diplomat. Being able to see the “free world” while living in a police state formed many of my opinions. I was always a bit of a rebel, and never saw much sense in trying to control others. I won a green card in the mid-Nineties, and decided to immigrate to America. I have a distinct memory of the first time I took an internal business flight–this was probably 1996–and having been subjected to rigorous airport screenings growing up in South Africa–security theater–I arrived a couple of hours early, only to be told you can go through up to half an hour before your flight. This blew my mind! Fast forward to the post 9/11 world we live in, and the same police state scare tactics I saw under the apartheid regime, are now visible everywhere in the USA.</p>
<p><span>I come from a long lineage of people who don’t take crap, and who moved time and time again for more freedom. My forefathers left Europe for more freedom in Africa. They then left the Cape in the Great Trek to get away from the British. I left South Africa for the promise of a brighter future in America. I left California for New York for more opportunity. I left NYC for New Hampshire to pursue Liberty in Our Lifetime. MY lifetime. Before signing up for the FSP, I researched other options–moving back to South Africa, going to Belize, Uruguay, Argentina, the informed know the drill–but ultimately I decided I wanted to make a stand. I wanted to held build a community of like-minded people to see if we can keep one little slice of America free. We are turning the tide, we picked the right state, and now all we need is more signers and movers. (And the funds to make it happen.) </span></p>
<p><span><strong>RA:</strong> <em>Talk about the picture with Jason Soren’s daughter handing you her allowance, which was a handful of pennies.</em></span></p>
<p><strong>CG:</strong> Talk about an evocative, happenstance moment! I was waiting for panelists to get miked, and decided to warm up the crowd and talk about how I was going to talk about our fundraising needs the next day. I was kind of goofing around, and said “Gimme moneeeey! I need money!” The founder of the FSP, Jason Sorens’ daughter, was playing in the back of the room. She heard what I said, dug out coins from her coat pocket, and started down the aisle to the stage. Her mom noticed in time, and stopped her since the panel had by now started, telling her she could talk to me afterwards. When I left the stage, this adorable 3 year old comes up to me, and says: “You said you needed money. Take mine,” and dropped a handful of pennies and dimes in my hand. I almost burst into tears!</p>
<p><strong>RA:</strong><em>Why should people consider attending PorcFest?</em></p>
<p><strong>CG:</strong> PorcFest XI will be even more epic than our tenth anniversary event last year, where we attracted more than 1,700 attendees. The Porcupine Freedom Festival is a week-long camping experience, with nearby motels and hotels, as well as park motels, for those who prefer a little more comfort.</p>
<p>PorcFest is liberty in action, the agora in motion, it is a truly free market. FRNs are the least favorite means of exchange, and people pay in gold, silver, Bitcoin and other crypto-currencies. You can walk down Agora Valley and buy some “Lew Rocky Road” ice cream with BTCs.</p>
<p><span>While we always attract world renowned speakers–I’m delighted to announce that Overstock’s Patrick Byrne will be one of our headline speakers–PorcFest 2014 will be focusing on “DIY,” self-reliance, instructional classes, and skill-building. Free Staters are, by their very natures, doers who like to execute on projects.</span></p>
<p><span>Some call PorcFest the “Burning Man for libertarians,” and that’s partly true, but it is also a family-friendly event. All we ask is that attendees take personal responsibility for their actions. It’s a big tent event, drawing gun enthusiasts, religious folks, big and small Ls, politicos, anarchists, voluntaryists, entrepreneurs, the whole gamut participating together in classes, workshops, hikes, cook-offs, shooting expeditions, swimming, singing, etc. The beauty of PorcFest is that it shows that voluntary interactions free of force actually work, and it’s a sight to behold.</span></p>
<p><span>Tickets are on sale for only $60 (accommodation at Roger’s Campground in Lancaster, NH, is separate). You can get more information and buy your tickets at: </span><a href="http://porcfest.com/">porcfest.com</a><span>. Porcfest runs from June 22-29, 2014.</span></p>
<hr><p><span>I saw Amanda Billyrock after one of the final talks and realized I had Issue 16 (To The Moon) which included her interview. <a href="http://bitcoinmagazine.com/10912/breakfastwithananarchist-amandabillyrock/">In the interview</a>, I closed the story with her invitation to come to the Liberty Forum. I accepted and realized that more of these sorts of invitation need to be given from us to others – whether it’s an invitation to visit a local Bitcoin meetup, or to come and move to a state full of Anarchists and Libertarians. These invitations allow anyone who may be disillusioned with the world the opportunity to start a new chapter and enter a community that will help them thrive. </span></p>
<p dir="ltr">So, I invite you to check out the Free State Project and the growing Bitcoin community in New Hampshire by joining me at Porcfest or Liberty Forum in the future.</p>
<p>The post <a rel="nofollow" href="http://bitcoinmagazine.com/10873/2014-liberty-forum-excerpt/">2014 Liberty Forum (excerpt)</a> appeared first on <a rel="nofollow" href="http://bitcoinmagazine.com/">Bitcoin Magazine</a>.</p>]]></content:encoded>
<enclosure url="" length="" type=""/>
<author>Ruben Alexander</author>
<pubDate>Fri, 07 Mar 2014 22:29:11 +0000</pubDate>
</item>
<item>
<title><![CDATA[Bitcoin in South America – BitPay Opens Latin American Headquarters]]></title>
<link><![CDATA[http://bitcoinmagazine.com/10902/bitcoin-south-america-bitpay-opens-latin-american-headquarters/]]></link>
<description><![CDATA[<p>As global popularity of Bitcoin grows, many Bitcoin companies are taking notice and expanding operations into other countries. Earlier this week, merchant payment processor BitPay announced the opening of its Latin America headquarters in Argentina. The expansion is one of the first for the Atlanta, Georgia based company and comes at an important time for the future of currency in the region. In Argentina, BitPay will employ five software engineers in addition to business development manager, Alberto Liver Vega. “As a technology enthusiast, I see Bitcoin as a big opportunity for companies to gain a competitive advantage,” says Vega. “BitPay is the perfect match and the natural platform for businesses to be able to use bitcoin easily and risk free […]</p><p>The post <a rel="nofollow" href="http://bitcoinmagazine.com/10902/bitcoin-south-america-bitpay-opens-latin-american-headquarters/">Bitcoin in South America – BitPay Opens Latin American Headquarters</a> appeared first on <a rel="nofollow" href="http://bitcoinmagazine.com/">Bitcoin Magazine</a>.</p>]]></description>
<content:encoded><![CDATA[<a href="http://bitcoinmagazine.com/10902/bitcoin-south-america-bitpay-opens-latin-american-headquarters/"><img width="784" height="504" src="http://btcmag.9wizards.netdna-cdn.com/wp-content/uploads/2014/03/argentinian-flag.png" alt="argentinian-flag"></a><p dir="ltr">As global popularity of Bitcoin grows, many Bitcoin companies are taking notice and expanding operations into other countries. Earlier this week, merchant payment processor BitPay announced the opening of its Latin America headquarters in Argentina. The expansion is one of the first for the Atlanta, Georgia based company and comes at an important time for the future of currency in the region.</p>
<p>In Argentina, BitPay will employ five software engineers in addition to business development manager, Alberto Liver Vega. “As a technology enthusiast, I see Bitcoin as a big opportunity for companies to gain a competitive advantage,” says Vega. “BitPay is the perfect match and the natural platform for businesses to be able to use bitcoin easily and risk free in a voluntarily, open source and decentralized way.” The company’s Latin American headquarters will be located within The Bitcoin Embassy Buenos Aires, which contains the Fundación Bitcoin Argentina and several other Bitcoin companies.</p>
<p>In a recent press release, BitPay also announced that Matias Alejo Garcia, nuclear engineer and founder of popular global movie recommendation site Cinefis.com, will lead the five-person development team in Argentina.</p>
<p>Bitcoin has enjoyed growing success within the region, which may be due to the instability of the Argentine peso, high e-commerce penetration, or the massive regulations surrounding purchasing US dollars. With these challenges, it is evident that change needs to occur and as Latin America’s adoption of Bitcoin continues to grow, the country is beginning to see the benefit of utilizing the new currency. Currently, a range of businesses within Argentina and throughout Latin America accept Bitcoin, including hotels, new publications and a large number of e-commerce merchants.</p>
<p>The expansion will allow the continued growth of Bitcoin in Latin America and help decrease reliance on the Argentine peso, which is expected to devaluate another 50% by the end of the year. In fact, the value of the Argentine peso decreased 17% versus the American dollar (USD) in January 2014. Additionally, inflation within the region has increased over 25% annually, further establishing the importance of a new store of wealth within the country.</p>
<p>In a region plagued by staggering inflation and continuously decreasing currency value, it seems Bitcoin makes perfect sense. What the virtual currency provides allows for decreased dependence on the peso, and will enable businesses and individuals in the region to achieve sustainable wealth and future prosperity.</p>
<p>We have only begun to see the effect Bitcoin will have on Latin America. Either way, as more and more countries continue to support the adoption of Bitcoin, we will get a realistic glimpse at how nations can benefit from cryptocurrencies around the world. Organizations like the Bitcoin Embassy Buenos Aires, <a href="http://bitcoinargentina.org/">Fundación Bitcoin Argentina</a> and BitPay will help support prosperity in Latin America by helping companies gain competitive advantage and spread Bitcoin knowledge throughout the nation.</p>
<p> </p>
<p>The post <a rel="nofollow" href="http://bitcoinmagazine.com/10902/bitcoin-south-america-bitpay-opens-latin-american-headquarters/">Bitcoin in South America – BitPay Opens Latin American Headquarters</a> appeared first on <a rel="nofollow" href="http://bitcoinmagazine.com/">Bitcoin Magazine</a>.</p>]]></content:encoded>
<enclosure url="" length="" type=""/>
<author>Adam Hofman</author>
<pubDate>Fri, 07 Mar 2014 22:08:59 +0000</pubDate>
</item>
<item>
<title><![CDATA[Failure is an Option]]></title>
<link><![CDATA[http://letstalkbitcoin.com/failure-is-an-option/]]></link>
<description><![CDATA[With all of the talk of the end of Bitcoin because of the failure at Mt.Gox, sometimes it's hard to hear the voices of those that are saying it's a good thing.
LTB host <b>Andreas M. Antonopoulos</b> discusses why we shouldn't look at the failure as a bad thing, but instead something that should happen in a free market.]]></description>
<enclosure url="" length="" type=""/>
<author>Andreas M. Antonopoulos</author>
<pubDate>Fri, 07 Mar 2014 21:00:51 +0000</pubDate>
</item>
<item>
<title><![CDATA[FreedomPop’s Snowden Phone – A Mobile Service Built for Privacy]]></title>
<link><![CDATA[http://bitcoinmagazine.com/10899/freedompops-snowden-phone-mobile-service-built-privacy/]]></link>
<description><![CDATA[<p>In a society that is increasingly reliant on mobility, the privacy of information is of utmost importance. Now, thanks to FreedomPop, there is a solution that gives mobile users government level security. With a platform that is based on privacy, FreedomPop’s Privacy Phone, nicknamed “The Snowden Phone,” allows mobile users to take advantage of encrypted mobile service. The Snowden Phone is able to protect your privacy from hackers, government agencies and spyware, ensuring your internet, voice calls and texts are secure and encrypted. In a company press release, FreedomPop stated, “We launched the phone to specifically protect Americans’ privacy, thereby providing the peace and assurance [of] knowing your data is not being compromised. The phone is a response to the […]</p><p>The post <a rel="nofollow" href="http://bitcoinmagazine.com/10899/freedompops-snowden-phone-mobile-service-built-privacy/">FreedomPop’s Snowden Phone – A Mobile Service Built for Privacy</a> appeared first on <a rel="nofollow" href="http://bitcoinmagazine.com/">Bitcoin Magazine</a>.</p>]]></description>
<content:encoded><![CDATA[<a href="http://bitcoinmagazine.com/10899/freedompops-snowden-phone-mobile-service-built-privacy/"><img width="950" height="350" src="http://btcmag.9wizards.netdna-cdn.com/wp-content/uploads/2014/03/FreedomPop.jpg" alt="FreedomPop"></a><p dir="ltr">In a society that is increasingly reliant on mobility, the privacy of information is of utmost importance. Now, thanks to FreedomPop, there is a solution that gives mobile users government level security. With a platform that is based on privacy, FreedomPop’s Privacy Phone, nicknamed “The Snowden Phone,” allows mobile users to take advantage of encrypted mobile service.</p>
<p>The Snowden Phone is able to protect your privacy from hackers, government agencies and spyware, ensuring your internet, voice calls and texts are secure and encrypted. In a company press release, FreedomPop stated, “We launched the phone to specifically protect Americans’ privacy, thereby providing the peace and assurance [of] knowing your data is not being compromised. The phone is a response to the growing frustrations and concerns around privacy infringement, call monitoring and Internet tracking.”</p>
<p>For users, FreedomPop’s service can provide peace of mind and ensure private information remains in the right hands. “In light of recent violations in consumer’s privacy across social networks and mobile devices, privacy is becoming increasingly important to many Americans and we all have a right to communicate anonymously,” said Steven Sesar, COO at FreedomPop. “Large carriers don’t have the flexibility, desire or creativity to invest in privacy. We don’t agree with this approach and felt it was up to us to create a truly private mobile phone service at an affordable price.”</p>
<p>The Snowden Phone is one of the first of its kind and has benefits for both the common consumer and individuals in the many cryptocurrency communities. The platform behind the service leverages FreedomPop’s VoIP network, and allows for private communication, anonymous internet and online security.</p>
<p>To ensure private communication, FreedomPop utilizes 128-bit encryption, which helps encrypt calls and text messages, prevents online marketers from tracking web activity and defends against data monitoring and eavesdropping, amongst many other benefits surrounding communication privacy.</p>
<p>The service also can protect users with advanced mobile security that protects your device from viruses and malware attacks. Additionally, FreedomPop can protect privacy by blocking unsolicited calls and text messages, and blocks malicious and phishing websites from accessing and stealing confidential data. Also, all application and internet data is sent through a secure and encrypted virtual private network (VPN).</p>
<p>The Snowden Phone costs $189 and is built on top of the Samsung Galaxy II smartphone. Service comes with unlimited voice and text, plus 500 MBs of data for three months and costs $10 each subsequent month after that.</p>
<p>Although FreedomPop’s Privacy Phone may not be for everyone, there is no mistaking the importance of keeping your information out of the wrong hands. The nature of the information age makes anyone susceptible to confidential data theft and other attacks that spring forth from the increasing availability of sensitive personal information. What FreedomPop has provided is a solution to the problem, providing a device with built in VPN, anonymous voice and data, all of which can be purchased with Bitcoin.</p>
<p>Like Bitcoin, FreedomPop seems to support the same foundations that cryptocurrencies have been built upon – security and anonymity using a platform that allows for world-wide adoption. By shining light on the importance of information protection, this service could change the way we think of personal security, which can be extended not only to mobility, but also the conventional methods we use to pay for goods and services.<br><a href="http://www.freedompop.com/theprivacyphone">http://www.freedompop.com/theprivacyphone</a></p>
<p>The post <a rel="nofollow" href="http://bitcoinmagazine.com/10899/freedompops-snowden-phone-mobile-service-built-privacy/">FreedomPop’s Snowden Phone – A Mobile Service Built for Privacy</a> appeared first on <a rel="nofollow" href="http://bitcoinmagazine.com/">Bitcoin Magazine</a>.</p>]]></content:encoded>
<enclosure url="" length="" type=""/>
<author>Adam Hofman</author>
<pubDate>Fri, 07 Mar 2014 19:28:01 +0000</pubDate>
</item>
<item>
<title><![CDATA[Bitcoin Decentral Launches Bitcoin and Cryptocurrency 2.0 Accelerator]]></title>
<link><![CDATA[http://bitcoinmagazine.com/10896/bitcoin-decentral-launches-bitcoin-cryptocurrency-2-0-accelerator/]]></link>
<description><![CDATA[<p>Over the past few months, Bitcoin Decentral, the new Toronto-based Bitcoin community center and coworkingspace that has been operational since the start of the year, has come to take center stage in the Canadian Bitcoin economy. Progress toward renovating and furnishing the upper floors of the four-storey house are well underway, and even now the location serves as the headquarters of KryptoKit, the Bitcoin Alliace of Canada, the organizing committee for the upcoming Bitcoin Expo and the Canadian arm of Ethereum as well as the site of a weekly meetup that attracts 50-100 attendees. The site is one of three similar locations in Canada, alongside the Bitcoin Embassy in Montreal and a smaller community center, also named Decentral, located in […]</p><p>The post <a rel="nofollow" href="http://bitcoinmagazine.com/10896/bitcoin-decentral-launches-bitcoin-cryptocurrency-2-0-accelerator/">Bitcoin Decentral Launches Bitcoin and Cryptocurrency 2.0 Accelerator</a> appeared first on <a rel="nofollow" href="http://bitcoinmagazine.com/">Bitcoin Magazine</a>.</p>]]></description>
<content:encoded><![CDATA[<a href="http://bitcoinmagazine.com/10896/bitcoin-decentral-launches-bitcoin-cryptocurrency-2-0-accelerator/"><img width="620" height="465" src="http://btcmag.9wizards.netdna-cdn.com/wp-content/uploads/2014/03/bitcoin_decentral2.jpg" alt="bitcoin_decentral2"></a><p>Over the past few months, Bitcoin Decentral, the new Toronto-based Bitcoin community center and coworkingspace that has been operational since the start of the year, has come to take center stage in the Canadian Bitcoin economy. Progress toward renovating and furnishing the upper floors of the four-storey house are well underway, and even now the location serves as the headquarters of <a href="http://bitcoinmagazine.com/8645/kryptokit-easy-to-use-in-browser-bitcoin-and-messaging-for-the-masses/">KryptoKit</a>, the <a href="http://bitcoinmagazine.com/7449/">Bitcoin Alliace of Canada</a>, the organizing committee for the upcoming <a href="http://bitcoinmagazine.com/10568/toronto-bitcoin-expo-speakers-announced-tickets-sale/">Bitcoin Expo</a> and the Canadian arm of <a href="http://ethereum.org/">Ethereum</a> as well as the site of a weekly meetup that attracts 50-100 attendees. The site is one of three similar locations in Canada, alongside the <a href="http://bitcoinembassy.ca/">Bitcoin Embassy</a> in Montreal and a smaller community center, also named Decentral, located in Vancouver, and the concept of a “Bitcoin embassy” is rapidly taking hold in countries all around the world. Now, Bitcoin Decentral has announced that it is launching its newest program: a Bitcoin and cryptocurrency 2.0-specific startup accelerator.</p>
<p>The program, entitled <a href="http://bdaccelerate.com/">Bitcoin Decentral Accelerate</a>, is a standard three-month startup acceleration program, in which participating startups will be able work together at Bitcoin Decentral and enjoy the benefits of specialized in-house legal counsel, shared office resources and the assistance of and a number of expert mentors, investors, and business owners experienced in the cryptocurrency space. Startups will receive these benefits, alongside an upfront injection of a yet-to-be-determined quantity of cash, in exchange for a seven per cent stake in the company, and will also be eligible for an additional larger investment at the end of the three-month program. Managing the Bitcoin Decentral Accelerate program is A. Traviss Corry, who previously managed the Toronto-based incubator program Incubes until a dispute with Incubes CEO Ben Zlotnick led to his departure. Also involved are Anthony Di Iorio, founder of Bitcoin Decentral, as CEO and William Mouyagar, founder of <a href="http://startupmanagement.org/">Startup Management</a> as special advisor.</p>
<p>In addition, the program has signed up over 100 mentors, including:</p>
<ul><li><strong>Erik Voorhees</strong>, a long-time Bitcoin advocate well-known for his involvement in a number of Bitcoin startups, including BitInstant, SatoshiDice, KryptoKit and his current main project, Coinapult. Coinapult is currently a <a href="http://www.coinapult.com/">service for sending bitcoins by SMS and email</a>, but intends to soon become a powerful international Bitcoin exchange.</li>
<li><strong>Andreas Antonopoulos</strong>, a Bitcoin security expert and frequent speaker at Bitcoin conferences, also serving as a permanent co-host at the Bitcoin podcast Let’s Talk Bitcoin and more recently the Chief Security Officer at <a href="http://blockchain.info/">blockchain.info</a>.</li>
<li><strong>Tony Gallippi</strong>, founder and CEO of <a href="http://bitpay.com/">BitPay</a>, a Bitcoin payment processor that allows merchants to accept Bitcoin payments and optionally have the funds immediately converted into local currency in their bank account, thereby instantly protecting them from all Bitcoin price volatility risk. The company charges processing fees of only 0.01-0.99%, and now has over 25,000 merchants signed up.</li>
<li><strong>Jason King</strong>, founder of <a href="http://seansoutpost.com/">Sean’s Outpost</a>, the now famous Bitcoin-accepting homeless outreach program in Pensacola, Florida, and the associated permanent shelter <a href="http://bitcoinmagazine.com/6939/seans-outpost-announces-satoshi-forest/">Satoshi Forest</a>. </li>
<li><strong>David Johnston</strong>, co-founder of the Bitcoin angel investing group <a href="http://bitangels.co/">BitAngels</a> and director at the <a href="http://mastercoinfoundation.org/">Mastercoin Foundation</a>.</li>
<li><strong>Jamie Robinson</strong>, founder of <a href="https://quickbt.com/ca/?">QuickBT</a>, a Canadian company that allows users to buy up to 0.1 BTC with their debit cards</li>
<li><strong>Stuart Hoegner</strong>, a cryptocurrency and gambling lawyer who is also involved as a counsel at the Bitcoin Alliance of Canada</li>
<li><strong>Johann Gevers</strong>, founder of Monetas, the company behind the federated-server-based auditable financial transactions toolkit <a href="http://opentransactions.org/">OpenTransactions</a></li>
<li><strong>Gav Wood</strong>, lead C++ developer at <a href="http://ethereum.org/">Ethereum</a>
</li></ul><p>Although there have been several startup accelerator programs that have started including a Bitcoin component, Bitcoin Decentral Accelerate is the first in the world to be a cryptocurrency-specific program right from the start, and the first program or sub-program to specifically target ventures related to the rapidly growing concept of “cryptocurrency 2.0″ – using Bitcoin-like cryptography and blockchains for more than just money, including applications such a decentralized domain name registry, smart property and smart contracts, cross-chain currency exchange, online democracy, custom branded currencies and blockchain-based financial contracts. The program is now accepting applications from startups; anyone interested in applying is enouraged to submit the <a href="http://bdaccelerate.com/">application form at bdaccelerate.com</a> at </p>
<p>The post <a rel="nofollow" href="http://bitcoinmagazine.com/10896/bitcoin-decentral-launches-bitcoin-cryptocurrency-2-0-accelerator/">Bitcoin Decentral Launches Bitcoin and Cryptocurrency 2.0 Accelerator</a> appeared first on <a rel="nofollow" href="http://bitcoinmagazine.com/">Bitcoin Magazine</a>.</p>]]></content:encoded>
<enclosure url="" length="" type=""/>
<author>Vitalik Buterin</author>
<pubDate>Fri, 07 Mar 2014 18:42:17 +0000</pubDate>
</item>
<item>
<title><![CDATA[Berlin & Texas: Bitcoin Hackathon]]></title>
<link><![CDATA[http://bitcoinmagazine.com/10889/bitcoin-hackathon-texas-berlin/]]></link>
<description><![CDATA[<p>This is a guest post by Brian Fabian Crain. On the weekend of February 21-23, the Berlin & Texas Bitcoin Hackathon took place at the legendary hackerspace c-base in Berlin. The motto, Decentralize Everything!, was inspired by the recent projects aiming to bring the power of the blockchain to a broad range of applications. Many members of Berlin’s vibrant Bitcoin community were there, joined by visitors from other cities. Inside the Spaceship c-base turned out to be an awesome location: It was founded in 1995 as one of the world’s first hackerspaces and played an influential role in helping hackerspaces proliferate. It is also known for its close affiliation with the Chaos Computer Club, Europe’s largest association of hackers, and more […]</p><p>The post <a rel="nofollow" href="http://bitcoinmagazine.com/10889/bitcoin-hackathon-texas-berlin/">Berlin & Texas: Bitcoin Hackathon</a> appeared first on <a rel="nofollow" href="http://bitcoinmagazine.com/">Bitcoin Magazine</a>.</p>]]></description>
<content:encoded><![CDATA[<a href="http://bitcoinmagazine.com/10889/bitcoin-hackathon-texas-berlin/"><img width="950" height="350" src="http://btcmag.9wizards.netdna-cdn.com/wp-content/uploads/2014/03/featurecbase.png" alt="featurecbase"></a><p dir="ltr"><em>This is a guest post by <em>Brian Fabian Crain.</em></em></p>
<p>On the weekend of February 21-23, the Berlin & Texas Bitcoin Hackathon took place at the legendary hackerspace c-base in Berlin. The motto, Decentralize Everything!, was inspired by the recent projects aiming to bring the power of the blockchain to a broad range of applications. Many members of Berlin’s vibrant Bitcoin community were there, joined by visitors from other cities.</p>
<p dir="ltr"><a href="http://btcmag.9wizards.netdna-cdn.com/wp-content/uploads/2014/03/c-base.png"><img alt="c-base" src="http://btcmag.9wizards.netdna-cdn.com/wp-content/uploads/2014/03/c-base-620x410.png" width="620" height="410"></a></p>
<p><strong><span>Inside the Spaceship</span></strong></p>
<p dir="ltr">c-base turned out to be an awesome location: It was founded in 1995 as one of the world’s first hackerspaces and played an influential role in helping hackerspaces proliferate. It is also known for its close affiliation with the Chaos Computer Club, Europe’s largest association of hackers, and more recently the German Pirate Party was founded there. As impressive as its history is its interiors: It felt as if we had stumbled into the large relaxation area of a gigantic spaceship drifting off into space.</p>
<p><span>The event started off on Friday evening with a welcome by JF Gallas, the organizer of the event. Then Jörg Platzer gave one of his signature motivational speeches. He is also the owner of Room 77, the world’s first brick-and-mortar establishment to accept bitcoin, which provided great food throughout the weekend. Thomas Hessler, co-founder and former CEO of Zanox, talked about his new project UFOStart, the world’s first global crowd network for lean startups, which was sponsoring the event.</span></p>
<p> </p>
<p><strong><span>From Berlin to Texas</span></strong></p>
<p><span>The hackathon was organized in collaboration with the upcoming Texas Bitcoin Conference in Austin, Texas on March 5 & 6. The tantalizing prize for the top four hackathon competitors was a trip to the conference and a chance to compete in the Texas Bitcoin 2.0 Hackathon with UFOStart covering the flights and the Texas Bitcoin Conference covering local accommodation and conference tickets. Before people dove into their projects, Paul Snow of the Texas Bitcoin Conference sent a greeting message from Texas.</span></p>
<p><strong><span>Voting Convolutions</span></strong></p>
<p><span>On Sunday, core Developer Mike Hearn came too to meet people and help out with the projects. Then the time for selecting the winning project came. One of the teams, Jeffcoin, had been building a Bitcoin-based voting system that we had planned to use for selecting the winners. Unfortunately, something wasn’t working when it came to the voting and we had to look for alternative methods. (This was probably to the advantage of the other teams since Jeffcoin was admirably transparent about building a rigged system so only they could win.)</span> <span>Mike Hearn made the strange proposal of voting by a raise of hands, but the idea was dismissed by everyone for being ridiculously uncomplicated and not digital enough. Instead, we settled on voting by SMS and the service showed the tallies live on the big screen. It was a close race, but in the end Coinswap won, followed by Supporttr and Jeffcoin.</span></p>
<p><strong><span>1st place: Coinswap</span></strong></p>
<p><span>Coinswap was developed by Felix Weis of Bitalo, who programmed the backend, and Dennis Wilson, who created the UI. Coinswap uses multi-signature addresses to allow trading between coins of different cryptocurrencies. Here is how it works: Let’s assume Alice wants to trade 2,000 Dogecoin with Bob for 1 bitcoin. They both meet on Coinswap, enter the details of the trade and are then shown QR codes. Alice pays her 2,000 DOGE into the multi-signature address and if Bob does the same with the bitcoin, the trade completes. If, however, Bob doesn’t send the bitcoin, Coinswap uses its private key to sign a transaction that refunds Alice her 2,000 DOGE. Thus Coinswap can provide the same escrow functionality of an exchange like Cryptsy but does so in a decentralized, semi-trustless way using multi-signature addresses.</span></p>
<p><strong><span>2nd place: Supporttr</span></strong></p>
<p><span>The runner-up was an Android app called Supporttr created by Java developer Christian Rotzoll. Supporttr implements the idea of micro-donations pioneered by the Swedish app Flattr. Users can select a monthly donation level, for example 5 mBTC, and then add different projects and charities in the app. At the end of the month, the 5 mBTC are split and paid out to all the projects. Through giving projects between one and three stars, the app also allows adjustment of the share given to each project. While there were still many details to be worked out, such as generating a single transaction with multiple outputs instead of separate transactions for each donation, the concept of smooth, recurring donations is great.</span></p>
<p><strong><span>3rd Place & Other Projects:</span></strong></p>
<p><span>The third place went to the previously mentioned bitcoin-based voting system Jeffcoin by Callum MacDonald, Hubert Gertis, Meinhard Benn, and Benjamin Wilson. Some other great projects included Bookr, a cool 3D representation of Bitstamp’s orderbook, by Jan Jorissen. Heinrich Erfurt and Dennis Mellman spent the weekend exploring Ethereum. Dirk Jäckel and Gustav Simonsson built a Bitcoin SPV wallet that looked like a cat with Lego Mindstorms EV3. When one sent a transaction to the address of the cat, it waved its arm in return. Björn Günzel and Doris Schleibinger worked on a 3D-printed paper wallet egg that would have the private key inside the egg.</span></p>
<p><span>While they didn’t quite manage to finish it, they announced a spectacular launch before Easter. Uwe Kamper built a website called ‘Yeah, let’s do it’ to improve Bitcoin-based crowdfunding. Users are able to post a donation address and a progress bar is updated with the incoming transactions to show how much has been raised. Hubert Gertis also briefly introduced Qllect, his project to create colored coins backed by creative works.</span> <span>In the end the winning teams, Felix Weis and Dennis Wilson, Christian Rotzoll of Supportr and Callum MacDonald of Jeffcoin, all won trips to Texas and they’ll be joined by Thomas Hessler and JF Gallas.</span><span> </span></p>
<p><img alt="" src="http://cam.c-base.org/wp-content/gallery/antenne/img_1998.jpg"></p>
<hr><p><em>Brian Fabian Crain is founder of the Bitcoin Startups Berlin group, founder/co-host of the Epicenter Bitcoin Podcast and writes a weekly newsletter analyzing the latest news and developments in the Bitcoin world.</em></p>
<p>The post <a rel="nofollow" href="http://bitcoinmagazine.com/10889/bitcoin-hackathon-texas-berlin/">Berlin & Texas: Bitcoin Hackathon</a> appeared first on <a rel="nofollow" href="http://bitcoinmagazine.com/">Bitcoin Magazine</a>.</p>]]></content:encoded>
<enclosure url="" length="" type=""/>
<author>Ruben Alexander</author>
<pubDate>Fri, 07 Mar 2014 17:26:10 +0000</pubDate>
</item>
<item>
<title><![CDATA[Buying Bitcoin 101: A Primer for New Canadian Bitcoiners]]></title>
<link><![CDATA[http://bitcoinmagazine.com/10878/buying-bitcoin-101-primer-new-canadian-bitcoiners/]]></link>
<description><![CDATA[<p>The most exciting part of financial planning these days is exposing, educating and incorporating bitcoin into clients’ portfolios. But the confusion starts when clients go out into the world to start purchasing and trading the currency by themselves. Most clients return with a list of questions about how to best purchase bitcoin, which exchanges are the most reputable, and whether it’s better to purchase through a BTM or from someone online, or if there’s another way to go about it. Here is a brief analysis on three ways to purchase bitcoin in Canada (and it’s also applicable for citizens of other countries!). You will need a bitcoin wallet to use any of these methods. Tip! Recommended bitcoin wallet: Blockchain Tip! […]</p><p>The post <a rel="nofollow" href="http://bitcoinmagazine.com/10878/buying-bitcoin-101-primer-new-canadian-bitcoiners/">Buying Bitcoin 101: A Primer for New Canadian Bitcoiners</a> appeared first on <a rel="nofollow" href="http://bitcoinmagazine.com/">Bitcoin Magazine</a>.</p>]]></description>
<content:encoded><![CDATA[<a href="http://bitcoinmagazine.com/10878/buying-bitcoin-101-primer-new-canadian-bitcoiners/"><img width="950" height="350" src="http://btcmag.9wizards.netdna-cdn.com/wp-content/uploads/2014/03/bitcoin101_canada.png" alt="bitcoin101_canada"></a><p dir="ltr"><span>The most exciting part of financial planning these days is exposing, educating and incorporating bitcoin into clients’ portfolios. But the confusion starts when clients go out into the world to start purchasing and trading the currency by themselves. Most clients return with a list of questions about how to best purchase bitcoin, which exchanges are the most reputable, and whether it’s better to purchase through a BTM or from someone online, or if there’s another way to go about it. </span></p>
<p dir="ltr"><span>Here is a brief analysis on three ways to purchase bitcoin in Canada (and it’s also applicable for citizens of other countries!). You will need a bitcoin wallet to use any of these methods.</span></p>
<p dir="ltr"><strong><em>Tip!</em></strong> Recommended bitcoin wallet: <a href="https://blockchain.info/wallet/new" target="_blank">Blockchain</a></p>
<p dir="ltr"><strong><em>Tip!</em> </strong>Please consult your financial planner or advisor before purchasing bitcoin to see if/where it fits into your financial plan.</p>
<p><strong><span>BTMs: Bitcoin ATM’s </span></strong></p>
<p dir="ltr">BTM’s are ATMs, but for bitcoin. The process is quite simple.</p>
<p dir="ltr">First, figure out if there is a BTM in your city (Google can help with this.) Next, go to your bank and withdraw the amount in cash that you will want to trade into BTC; because most, if not all, BTM’s do not currently allow us to use our debit or credit cards. We must still feed cash into the machine to buy bitcoin.</p>
<p dir="ltr">When you arrive at the BTM with your cash in hand, follow the straightforward instructions on the machine to verify your personal information. All financial transactions require what is called KYC compliance – “know your client” – so you will have to enter your mobile number, name, e-mail address, the like.</p>
<p dir="ltr">Next, link your wallet API key (example: 14BwoQ4d6kVZCkdCZnrnryjGeww8NzAVxQ) enter the amount of bitcoin you would like to buy, feed the machine the equivalent<a href="http://en.wikipedia.org/wiki/Fiat_money" target="_blank"> fiat </a>(CAD, USD, etc) money, and you’re in! Congratulations! <a href="http://ottawa.ctvnews.ca/ottawa-s-first-bitcoin-teller-machine-1.1642877">Ottawa</a>, <a href="http://www.thestar.com/news/gta/2014/01/13/bitcoin_atm_comes_to_toronto.html">Toronto</a>, <a href="http://winnipeg.ctvnews.ca/winnipeg-s-first-bitcoin-atm-now-accepting-cash-1.1688529">Winnipeg</a> and <a href="http://www.cbc.ca/news/technology/world-s-first-bitcoin-atm-opens-in-vancouver-1.2286877">Vancouver</a> are a few Canadian cities that currently have BTMs.</p>
<p dir="ltr"><em>Pros:</em> Very fast; very convenient.</p>
<p dir="ltr"><em>Cons:</em> Rates tend to be higher; BTM companies take a spread on the transaction; safety is challenging when carrying around large amounts of cash.</p>
<p dir="ltr"><em><strong>Tip! </strong></em>Consider bringing a friend with you when you go to the BTM if you are depositing a large amount of cash.</p>