summaryrefslogtreecommitdiff
path: root/e8/400c4d02e4badd65982ceda29490e9a8698115
blob: e1cc1a98a1697509f80a406ddeebab124e50787c (plain)
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
Received: from sog-mx-1.v43.ch3.sourceforge.com ([172.29.43.191]
	helo=mx.sourceforge.net)
	by sfs-ml-1.v29.ch3.sourceforge.com with esmtp (Exim 4.76)
	(envelope-from <allen.piscitello@gmail.com>) id 1WOVRY-0007wM-63
	for bitcoin-development@lists.sourceforge.net;
	Fri, 14 Mar 2014 16:58:48 +0000
Received-SPF: pass (sog-mx-1.v43.ch3.sourceforge.com: domain of gmail.com
	designates 74.125.82.45 as permitted sender)
	client-ip=74.125.82.45; envelope-from=allen.piscitello@gmail.com;
	helo=mail-wg0-f45.google.com; 
Received: from mail-wg0-f45.google.com ([74.125.82.45])
	by sog-mx-1.v43.ch3.sourceforge.com with esmtps (TLSv1:RC4-SHA:128)
	(Exim 4.76) id 1WOVRV-0007Y3-PK
	for bitcoin-development@lists.sourceforge.net;
	Fri, 14 Mar 2014 16:58:48 +0000
Received: by mail-wg0-f45.google.com with SMTP id l18so2361095wgh.28
	for <bitcoin-development@lists.sourceforge.net>;
	Fri, 14 Mar 2014 09:58:39 -0700 (PDT)
MIME-Version: 1.0
X-Received: by 10.180.8.170 with SMTP id s10mr6868478wia.35.1394816319552;
	Fri, 14 Mar 2014 09:58:39 -0700 (PDT)
Received: by 10.194.76.135 with HTTP; Fri, 14 Mar 2014 09:58:39 -0700 (PDT)
In-Reply-To: <CALC81CNf0sP0K3yF+_Ku9fcU4B7bPu9Dpm4P768sqXp2gUuCdA@mail.gmail.com>
References: <CAKaEYhK4oXH3hB7uS3=AEkA6r0VB5OYyTua+LOP18rq+rYajHg@mail.gmail.com>
	<52852C2D.9020103@gmail.com> <52853D8A.6010501@monetize.io>
	<CAJHLa0M6CkoDbD6FFixf9-mmhug7DvehSWCJ+EHWVxUDuwNiBg@mail.gmail.com>
	<EE02A310-8604-4811-B2D0-FC32C72C20F3@grabhive.com>
	<CAJHLa0OMcTCgGESi-F4jT2NA3FyCeMYbD_52j47t3keEYBfK8g@mail.gmail.com>
	<CAKm8k+3J9Po4xQn9LhTQrnrGCvG36-kLCjWPX4kmd-c7h+LujA@mail.gmail.com>
	<CANEZrP1VbQPapKJCLcE0+vpK0xac6D6JxRGKdagPVchfZjpUmQ@mail.gmail.com>
	<lfscfd$3cs$1@ger.gmane.org> <lfv2an$iv3$1@ger.gmane.org>
	<362072F0-1EA8-4474-AE26-4691C852A22C@bitsofproof.com>
	<lfv4tm$lpg$1@ger.gmane.org> <532327DD.7030005@monetize.io>
	<CAPWm=eWW25cL+F6NJTuQrmy_U2GNSpNEY6dn0CwfgkcO=RQyzw@mail.gmail.com>
	<CALC81CNf0sP0K3yF+_Ku9fcU4B7bPu9Dpm4P768sqXp2gUuCdA@mail.gmail.com>
Date: Fri, 14 Mar 2014 11:58:39 -0500
Message-ID: <CAJfRnm5RGjQyCqLD7aMwynT51tGaowF+Lyu=T69-P0nr019wkQ@mail.gmail.com>
From: Allen Piscitello <allen.piscitello@gmail.com>
To: Ricardo Filipe <ricardojdfilipe@gmail.com>
Content-Type: multipart/alternative; boundary=f46d0443063e41019004f493fb92
X-Spam-Score: -0.6 (/)
X-Spam-Report: Spam Filtering performed by mx.sourceforge.net.
	See http://spamassassin.org/tag/ for more details.
	-1.5 SPF_CHECK_PASS SPF reports sender host as permitted sender for
	sender-domain
	0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider
	(allen.piscitello[at]gmail.com)
	-0.0 SPF_PASS               SPF: sender matches SPF record
	1.0 HTML_MESSAGE           BODY: HTML included in message
	-0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from
	author's domain
	0.1 DKIM_SIGNED            Message has a DKIM or DK signature,
	not necessarily valid
	-0.1 DKIM_VALID Message has at least one valid DKIM or DK signature
X-Headers-End: 1WOVRV-0007Y3-PK
Cc: Bitcoin Development <bitcoin-development@lists.sourceforge.net>
Subject: Re: [Bitcoin-development] moving the default display to mbtc
X-BeenThere: bitcoin-development@lists.sourceforge.net
X-Mailman-Version: 2.1.9
Precedence: list
List-Id: <bitcoin-development.lists.sourceforge.net>
List-Unsubscribe: <https://lists.sourceforge.net/lists/listinfo/bitcoin-development>,
	<mailto:bitcoin-development-request@lists.sourceforge.net?subject=unsubscribe>
List-Archive: <http://sourceforge.net/mailarchive/forum.php?forum_name=bitcoin-development>
List-Post: <mailto:bitcoin-development@lists.sourceforge.net>
List-Help: <mailto:bitcoin-development-request@lists.sourceforge.net?subject=help>
List-Subscribe: <https://lists.sourceforge.net/lists/listinfo/bitcoin-development>,
	<mailto:bitcoin-development-request@lists.sourceforge.net?subject=subscribe>
X-List-Received-Date: Fri, 14 Mar 2014 16:58:48 -0000

--f46d0443063e41019004f493fb92
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable

Fairly useless experiment, since the vast majority of users will almost
always stay at the default.  The winner will always be whatever was
selected as the default initially.  This might work if the default was
randomly chosen, and you see what actually annoyed users enough to switch
off of it most often.


On Fri, Mar 14, 2014 at 11:51 AM, Ricardo Filipe
<ricardojdfilipe@gmail.com>wrote:

> so much discussion for a visual update...
>
> make this a user experiment:
> -give the user the possibility to use BTC/mBTC/uMTC
> -retrieve the results after some time
> -make the default the most used option
>
>
> 2014-03-14 16:15 GMT+00:00 Alex Morcos <morcos@gmail.com>:
> > I think Mark makes some good arguments.
> > I realize this would only add to the confusion, but...
> > What if we did relabel 100 satoshis to be some new kind of unit ("bit" =
or
> > whatever else), with a proper 3 letter code, and then from a user
> > standpoint, where people are using mBTC, they could switch to using Kbi=
ts
> > (ok thats obviously bad, but you get the idea) at the same nominal pric=
e.
> > But accounting backends and so forth would operate in the "bit" base un=
it
> > with 2 decimals of precision.
> >
> >
> >
> >
> > On Fri, Mar 14, 2014 at 12:01 PM, Mark Friedenbach <mark@monetize.io>
> wrote:
> >>
> >> A cup of coffee in Tokyo costs about 55 yen. You see similar magnitude
> >> numbers in both Chinas, Thailand, and other economically important Eas=
t
> >> Asian countries. Expect to pay hundreds of rupees in India, or thousan=
ds
> >> of rupees in Indonesia.
> >>
> >> This concept that money should have low, single digits for everyday
> >> prices is not just Western-centric, it's English-centric. An expresso =
in
> >> Rome would have cost you a few (tens of?) thousand lira in recent
> >> memory. It was pegging of the Euro to the U.S. dollar that brought
> >> European states in line with the English-speaking world (who themselve=
s
> >> trace lineage to the pound sterling).
> >>
> >> No, there is no culturally-neutral common standards for currency and
> >> pricing. But there are ill-advised, ill-informed "standards" in
> >> accounting software that we nevertheless must live with. These softwar=
e
> >> packages do not handle more than two decimal places gracefully. That
> >> gives technical justifications for moving to either uBTC or accounting
> >> in Satoshis directly. An argument for uBTC is that it retains alignmen=
t
> >> with the existing kBTC/BTC/mBTC/uBTC conventions.
> >>
> >> However another limitation of these accounting software practices is
> >> that they do not always handle SI notation very well, particularly
> >> sub-unit prefixes. By relabeling uBTC to be a new three-digit symbol
> >> (XBT, XBC, IBT, NBC, or whatever--I really don't care), we are now ful=
ly
> >> compliant with any software accounting package out there.
> >>
> >> We are still very, very early in the adoption period. These are change=
s
> >> that could be made now simply by a few big players and/or the bitcoin
> >> foundation changing their practice and their users following suit.
> >>
> >> On 03/14/2014 07:49 AM, Andreas Schildbach wrote:
> >> > How much do you pay for an Espresso in your local currency?
> >> >
> >> > At least for the Euro and the Dollar, mBTC 3.56 is very close to wha=
t
> >> > people would expect. Certainly more familiar than =C2=B5BTC 3558 or =
BTC
> >> > 0.003578.
> >> >
> >> > Anyway, I was just sharing real-world experience: nobody is confused=
.
> >> >
> >> >
> >> > On 03/14/2014 03:14 PM, Tamas Blummer wrote:
> >> >> You give them a hard to interpret thing like mBTC and then wonder
> >> >> why they rather look at local currency. Because the choices you
> >> >> gave them are bad.
> >> >>
> >> >> I think Bitcoin would have a better chance to be percieved as a
> >> >> currency of its own if it had prices and fractions like currencies
> >> >> do.
> >> >>
> >> >> 3.558 mBTC or 0.003578 BTC will never be as accepted as 3558 bits
> >> >> would be.
> >> >>
> >> >>
> >> >> Tamas Blummer Bits of Proof
> >> >>
> >> >> On 14.03.2014, at 15:05, Andreas Schildbach <andreas@schildbach.de>
> >> >> wrote:
> >> >>
> >> >>> btw. None of Bitcoin Wallet's users complained about confusion
> >> >>> because of the mBTC switch. In contrast, I get many mails and
> >> >>> questions if exchange rates happen to differ by >10%.
> >> >>>
> >> >>> I suspect nobody looks at the Bitcoin price. It's the amount in
> >> >>> local currency that matters to the users.
> >> >>>
> >> >>>
> >> >>> On 03/13/2014 02:40 PM, Andreas Schildbach wrote:
> >> >>>> Indeed. And users were crying for mBTC. Nobody was asking for
> >> >>>> =C2=B5BTC.
> >> >>>>
> >> >>>> I must admit I was not aware if this thread. I just watched
> >> >>>> other wallets and at some point decided its time to switch to
> >> >>>> mBTC.
> >> >>>>
> >> >>>>
> >> >>>> On 03/13/2014 02:31 PM, Mike Hearn wrote:
> >> >>>>> The standard has become mBTC and that's what was adopted.
> >> >>>>> It's too late to try and sway this on a mailing list thread
> >> >>>>> now.
> >> >>>>>
> >> >>>>>
> >> >>>>> On Thu, Mar 13, 2014 at 2:29 PM, Gary Rowe
> >> >>>>> <g.rowe@froot.co.uk <mailto:g.rowe@froot.co.uk>> wrote:
> >> >>>>>
> >> >>>>> The MultiBit HD view is that this is a locale-sensitive
> >> >>>>> presentation issue. As a result we offer a simple
> >> >>>>> configuration panel giving pretty much every possible
> >> >>>>> combination: icon, m+icon,  =CE=BC+icon, BTC, mBTC,  =CE=BCBTC, =
XBT,
> >> >>>>> mXBT,  =CE=BCXBT, sat along with settings for leading/trailing
> >> >>>>> symbol, commas, spaces and points. This allows anyone to
> >> >>>>> customise to meet their own needs beyond the offered default.
> >> >>>>>
> >> >>>>>
> >> >>>>> We apply the NIST guidelines for representation of SI unit
> >> >>>>> symbols (i.e no conversion to native language, no RTL giving
> >> >>>>> icon+m etc).
> >> >>>>>
> >> >>>>> Right now MultiBit HD is configured to use m+icon taken from
> >> >>>>> the Font Awesome icon set. However reading earlier posts it
> >> >>>>> seems that =CE=BC+icon is more sensible.
> >> >>>>>
> >> >>>>> Let us know what you'd like.
> >> >>>>>
> >> >>>>> Links: m+icon screenshot: http://imgur.com/a/WCDoG Font
> >> >>>>> Awesome icon:
> >> >>>>> http://fortawesome.github.io/Font-Awesome/icon/btc/ NIST SI
> >> >>>>> guidelines: http://physics.nist.gov/Pubs/SP811/sec07.html
> >> >>>>>
> >> >>>>>
> >> >>>>> On 13 March 2014 12:56, Jeff Garzik <jgarzik@bitpay.com
> >> >>>>> <mailto:jgarzik@bitpay.com>> wrote:
> >> >>>>>
> >> >>>>> Resurrecting this topic.  Bitcoin Wallet moved to mBTC
> >> >>>>> several weeks ago, which was disappointing -- it sounded like
> >> >>>>> the consensus was uBTC, and moving to uBTC later --which will
> >> >>>>> happen-- may result in additional user confusion, thanks to
> >> >>>>> yet another decimal place transition.
> >> >>>>>
> >> >>>>>
> >> >>>>>
> >> >>>>> On Sun, Nov 17, 2013 at 9:28 PM, Wendell <w@grabhive.com
> >> >>>>> <mailto:w@grabhive.com>> wrote:
> >> >>>>>> We're with uBTC too. Been waiting for the signal to do
> >> >>>>>> this,
> >> >>>>> let's do it right after the fee system is improved.
> >> >>>>>>
> >> >>>>>> -wendell
> >> >>>>>>
> >> >>>>>> grabhive.com <http://grabhive.com> |
> >> >>>>>> twitter.com/hivewallet
> >> >>>>> <http://twitter.com/hivewallet> | gpg: 6C0C9411
> >> >>>>>>
> >> >>>>>> On Nov 15, 2013, at 6:03 AM, Jeff Garzik wrote:
> >> >>>>>>
> >> >>>>>>> Go straight to uBTC. Humans and existing computer
> >> >>>>>>> systems
> >> >>>>> handle numbers to
> >> >>>>>>> the left of the decimals just fine (HK Dollars, Yen).
> >> >>>>>>> The
> >> >>>>> opposite is
> >> >>>>>>> untrue (QuickBooks really does not like 3+ decimal
> >> >>>>>>> places).
> >> >>>>>>
> >> >>>>>
> >> >>>>>
> >> >>>>>
> >> >>>>> -- Jeff Garzik Bitcoin core developer and open source
> >> >>>>> evangelist BitPay, Inc.      https://bitpay.com/
> >> >>>>>
> >> >>>>>
> >> >>>>>
> -------------------------------------------------------------------------=
-----
> >> >>>>>
> >> >>>>>
> >> > Learn Graph Databases - Download FREE O'Reilly Book
> >> >>>>> "Graph Databases" is the definitive new guide to graph
> >> >>>>> databases and their applications. Written by three acclaimed
> >> >>>>> leaders in the field, this first edition is now available.
> >> >>>>> Download your free book today!
> >> >>>>> http://p.sf.net/sfu/13534_NeoTech
> >> >>>>> _______________________________________________
> >> >>>>> Bitcoin-development mailing list
> >> >>>>> Bitcoin-development@lists.sourceforge.net
> >> >>>>> <mailto:Bitcoin-development@lists.sourceforge.net>
> >> >>>>> https://lists.sourceforge.net/lists/listinfo/bitcoin-development
> >> >>>>>
> >> >>>>>
> >> >>>>>
> >> >>>>>
> >> >>>>>
> >> >
> >> >
> -------------------------------------------------------------------------=
-----
> >> >>>>> Learn Graph Databases - Download FREE O'Reilly Book "Graph
> >> >>>>> Databases" is the definitive new guide to graph databases
> >> >>>>> and their applications. Written by three acclaimed leaders in
> >> >>>>> the field, this first edition is now available. Download your
> >> >>>>> free book today! http://p.sf.net/sfu/13534_NeoTech
> >> >>>>> _______________________________________________
> >> >>>>> Bitcoin-development mailing list
> >> >>>>> Bitcoin-development@lists.sourceforge.net
> >> >>>>> <mailto:Bitcoin-development@lists.sourceforge.net>
> >> >>>>> https://lists.sourceforge.net/lists/listinfo/bitcoin-development
> >> >>>>>
> >> >>>>>
> >> >>>>>
> >> >>>>>
> >> >>>>>
> >> >>>>>
> >> >
> >> >
> -------------------------------------------------------------------------=
-----
> >> >>>>> Learn Graph Databases - Download FREE O'Reilly Book "Graph
> >> >>>>> Databases" is the definitive new guide to graph databases and
> >> >>>>> their applications. Written by three acclaimed leaders in the
> >> >>>>> field, this first edition is now available. Download your
> >> >>>>> free book today! http://p.sf.net/sfu/13534_NeoTech
> >> >>>>>
> >> >>>>>
> >> >>>>>
> >> >>>>> _______________________________________________
> >> >>>>> Bitcoin-development mailing list
> >> >>>>> Bitcoin-development@lists.sourceforge.net
> >> >>>>> https://lists.sourceforge.net/lists/listinfo/bitcoin-development
> >> >>>>>
> >> >>>>
> >> >>>>
> >> >>>>
> >> >>>>
> >> >>>>>
> >> >
> >> >
> -------------------------------------------------------------------------=
-----
> >> >>>> Learn Graph Databases - Download FREE O'Reilly Book "Graph
> >> >>>> Databases" is the definitive new guide to graph databases and
> >> >>>> their applications. Written by three acclaimed leaders in the
> >> >>>> field, this first edition is now available. Download your free
> >> >>>> book today! http://p.sf.net/sfu/13534_NeoTech
> >> >>>> _______________________________________________
> >> >>>> Bitcoin-development mailing list
> >> >>>> Bitcoin-development@lists.sourceforge.net
> >> >>>> https://lists.sourceforge.net/lists/listinfo/bitcoin-development
> >> >>>>
> >> >>>
> >> >>>
> >> >>>
> >> >>>
> >> >>>>
> >> >
> >> >
> -------------------------------------------------------------------------=
-----
> >> >>> Learn Graph Databases - Download FREE O'Reilly Book "Graph
> >> >>> Databases" is the definitive new guide to graph databases and
> >> >>> their applications. Written by three acclaimed leaders in the
> >> >>> field, this first edition is now available. Download your free
> >> >>> book today! http://p.sf.net/sfu/13534_NeoTech
> >> >>> _______________________________________________
> >> >>> Bitcoin-development mailing list
> >> >>> Bitcoin-development@lists.sourceforge.net
> >> >>> https://lists.sourceforge.net/lists/listinfo/bitcoin-development
> >> >>
> >> >>
> >> >>
> >> >>
> >> >>
> -------------------------------------------------------------------------=
-----
> >> >>
> >> >>
> >> > Learn Graph Databases - Download FREE O'Reilly Book
> >> >> "Graph Databases" is the definitive new guide to graph databases
> >> >> and their applications. Written by three acclaimed leaders in the
> >> >> field, this first edition is now available. Download your free book
> >> >> today! http://p.sf.net/sfu/13534_NeoTech
> >> >>
> >> >>
> >> >>
> >> >> _______________________________________________ Bitcoin-development
> >> >> mailing list Bitcoin-development@lists.sourceforge.net
> >> >> https://lists.sourceforge.net/lists/listinfo/bitcoin-development
> >> >>
> >> >
> >> >
> >> >
> >> >
> >> >
> -------------------------------------------------------------------------=
-----
> >> > Learn Graph Databases - Download FREE O'Reilly Book
> >> > "Graph Databases" is the definitive new guide to graph databases and
> >> > their
> >> > applications. Written by three acclaimed leaders in the field,
> >> > this first edition is now available. Download your free book today!
> >> > http://p.sf.net/sfu/13534_NeoTech
> >> > _______________________________________________
> >> > Bitcoin-development mailing list
> >> > Bitcoin-development@lists.sourceforge.net
> >> > https://lists.sourceforge.net/lists/listinfo/bitcoin-development
> >> >
> >>
> >>
> >>
> -------------------------------------------------------------------------=
-----
> >> Learn Graph Databases - Download FREE O'Reilly Book
> >> "Graph Databases" is the definitive new guide to graph databases and
> their
> >> applications. Written by three acclaimed leaders in the field,
> >> this first edition is now available. Download your free book today!
> >> http://p.sf.net/sfu/13534_NeoTech
> >> _______________________________________________
> >> Bitcoin-development mailing list
> >> Bitcoin-development@lists.sourceforge.net
> >> https://lists.sourceforge.net/lists/listinfo/bitcoin-development
> >
> >
> >
> >
> -------------------------------------------------------------------------=
-----
> > Learn Graph Databases - Download FREE O'Reilly Book
> > "Graph Databases" is the definitive new guide to graph databases and
> their
> > applications. Written by three acclaimed leaders in the field,
> > this first edition is now available. Download your free book today!
> > http://p.sf.net/sfu/13534_NeoTech
> > _______________________________________________
> > Bitcoin-development mailing list
> > Bitcoin-development@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/bitcoin-development
> >
>
>
> -------------------------------------------------------------------------=
-----
> Learn Graph Databases - Download FREE O'Reilly Book
> "Graph Databases" is the definitive new guide to graph databases and thei=
r
> applications. Written by three acclaimed leaders in the field,
> this first edition is now available. Download your free book today!
> http://p.sf.net/sfu/13534_NeoTech
> _______________________________________________
> Bitcoin-development mailing list
> Bitcoin-development@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bitcoin-development
>

--f46d0443063e41019004f493fb92
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr">Fairly useless experiment, since the vast majority of user=
s will almost always stay at the default. =C2=A0The winner will always be w=
hatever was selected as the default initially. =C2=A0This might work if the=
 default was randomly chosen, and you see what actually annoyed users enoug=
h to switch off of it most often.</div>
<div class=3D"gmail_extra"><br><br><div class=3D"gmail_quote">On Fri, Mar 1=
4, 2014 at 11:51 AM, Ricardo Filipe <span dir=3D"ltr">&lt;<a href=3D"mailto=
:ricardojdfilipe@gmail.com" target=3D"_blank">ricardojdfilipe@gmail.com</a>=
&gt;</span> wrote:<br>
<blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:1p=
x #ccc solid;padding-left:1ex">so much discussion for a visual update...<br=
>
<br>
make this a user experiment:<br>
-give the user the possibility to use BTC/mBTC/uMTC<br>
-retrieve the results after some time<br>
-make the default the most used option<br>
<br>
<br>
2014-03-14 16:15 GMT+00:00 Alex Morcos &lt;<a href=3D"mailto:morcos@gmail.c=
om">morcos@gmail.com</a>&gt;:<br>
<div class=3D"HOEnZb"><div class=3D"h5">&gt; I think Mark makes some good a=
rguments.<br>
&gt; I realize this would only add to the confusion, but...<br>
&gt; What if we did relabel 100 satoshis to be some new kind of unit (&quot=
;bit&quot; or<br>
&gt; whatever else), with a proper 3 letter code, and then from a user<br>
&gt; standpoint, where people are using mBTC, they could switch to using Kb=
its<br>
&gt; (ok thats obviously bad, but you get the idea) at the same nominal pri=
ce.<br>
&gt; But accounting backends and so forth would operate in the &quot;bit&qu=
ot; base unit<br>
&gt; with 2 decimals of precision.<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; On Fri, Mar 14, 2014 at 12:01 PM, Mark Friedenbach &lt;<a href=3D"mail=
to:mark@monetize.io">mark@monetize.io</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; A cup of coffee in Tokyo costs about 55 yen. You see similar magni=
tude<br>
&gt;&gt; numbers in both Chinas, Thailand, and other economically important=
 East<br>
&gt;&gt; Asian countries. Expect to pay hundreds of rupees in India, or tho=
usands<br>
&gt;&gt; of rupees in Indonesia.<br>
&gt;&gt;<br>
&gt;&gt; This concept that money should have low, single digits for everyda=
y<br>
&gt;&gt; prices is not just Western-centric, it&#39;s English-centric. An e=
xpresso in<br>
&gt;&gt; Rome would have cost you a few (tens of?) thousand lira in recent<=
br>
&gt;&gt; memory. It was pegging of the Euro to the U.S. dollar that brought=
<br>
&gt;&gt; European states in line with the English-speaking world (who thems=
elves<br>
&gt;&gt; trace lineage to the pound sterling).<br>
&gt;&gt;<br>
&gt;&gt; No, there is no culturally-neutral common standards for currency a=
nd<br>
&gt;&gt; pricing. But there are ill-advised, ill-informed &quot;standards&q=
uot; in<br>
&gt;&gt; accounting software that we nevertheless must live with. These sof=
tware<br>
&gt;&gt; packages do not handle more than two decimal places gracefully. Th=
at<br>
&gt;&gt; gives technical justifications for moving to either uBTC or accoun=
ting<br>
&gt;&gt; in Satoshis directly. An argument for uBTC is that it retains alig=
nment<br>
&gt;&gt; with the existing kBTC/BTC/mBTC/uBTC conventions.<br>
&gt;&gt;<br>
&gt;&gt; However another limitation of these accounting software practices =
is<br>
&gt;&gt; that they do not always handle SI notation very well, particularly=
<br>
&gt;&gt; sub-unit prefixes. By relabeling uBTC to be a new three-digit symb=
ol<br>
&gt;&gt; (XBT, XBC, IBT, NBC, or whatever--I really don&#39;t care), we are=
 now fully<br>
&gt;&gt; compliant with any software accounting package out there.<br>
&gt;&gt;<br>
&gt;&gt; We are still very, very early in the adoption period. These are ch=
anges<br>
&gt;&gt; that could be made now simply by a few big players and/or the bitc=
oin<br>
&gt;&gt; foundation changing their practice and their users following suit.=
<br>
&gt;&gt;<br>
&gt;&gt; On 03/14/2014 07:49 AM, Andreas Schildbach wrote:<br>
&gt;&gt; &gt; How much do you pay for an Espresso in your local currency?<b=
r>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; At least for the Euro and the Dollar, mBTC 3.56 is very close=
 to what<br>
&gt;&gt; &gt; people would expect. Certainly more familiar than =C2=B5BTC 3=
558 or BTC<br>
&gt;&gt; &gt; 0.003578.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Anyway, I was just sharing real-world experience: nobody is c=
onfused.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; On 03/14/2014 03:14 PM, Tamas Blummer wrote:<br>
&gt;&gt; &gt;&gt; You give them a hard to interpret thing like mBTC and the=
n wonder<br>
&gt;&gt; &gt;&gt; why they rather look at local currency. Because the choic=
es you<br>
&gt;&gt; &gt;&gt; gave them are bad.<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; I think Bitcoin would have a better chance to be percieve=
d as a<br>
&gt;&gt; &gt;&gt; currency of its own if it had prices and fractions like c=
urrencies<br>
&gt;&gt; &gt;&gt; do.<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; 3.558 mBTC or 0.003578 BTC will never be as accepted as 3=
558 bits<br>
&gt;&gt; &gt;&gt; would be.<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; Tamas Blummer Bits of Proof<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; On 14.03.2014, at 15:05, Andreas Schildbach &lt;<a href=
=3D"mailto:andreas@schildbach.de">andreas@schildbach.de</a>&gt;<br>
&gt;&gt; &gt;&gt; wrote:<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt; btw. None of Bitcoin Wallet&#39;s users complained ab=
out confusion<br>
&gt;&gt; &gt;&gt;&gt; because of the mBTC switch. In contrast, I get many m=
ails and<br>
&gt;&gt; &gt;&gt;&gt; questions if exchange rates happen to differ by &gt;1=
0%.<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt; I suspect nobody looks at the Bitcoin price. It&#39;s=
 the amount in<br>
&gt;&gt; &gt;&gt;&gt; local currency that matters to the users.<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt; On 03/13/2014 02:40 PM, Andreas Schildbach wrote:<br>
&gt;&gt; &gt;&gt;&gt;&gt; Indeed. And users were crying for mBTC. Nobody wa=
s asking for<br>
&gt;&gt; &gt;&gt;&gt;&gt; =C2=B5BTC.<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; I must admit I was not aware if this thread. I ju=
st watched<br>
&gt;&gt; &gt;&gt;&gt;&gt; other wallets and at some point decided its time =
to switch to<br>
&gt;&gt; &gt;&gt;&gt;&gt; mBTC.<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; On 03/13/2014 02:31 PM, Mike Hearn wrote:<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; The standard has become mBTC and that&#39;s w=
hat was adopted.<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; It&#39;s too late to try and sway this on a m=
ailing list thread<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; now.<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; On Thu, Mar 13, 2014 at 2:29 PM, Gary Rowe<br=
>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; &lt;<a href=3D"mailto:g.rowe@froot.co.uk">g.r=
owe@froot.co.uk</a> &lt;mailto:<a href=3D"mailto:g.rowe@froot.co.uk">g.rowe=
@froot.co.uk</a>&gt;&gt; wrote:<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; The MultiBit HD view is that this is a locale=
-sensitive<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; presentation issue. As a result we offer a si=
mple<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; configuration panel giving pretty much every =
possible<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; combination: icon, m+icon, =C2=A0=CE=BC+icon,=
 BTC, mBTC, =C2=A0=CE=BCBTC, XBT,<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; mXBT, =C2=A0=CE=BCXBT, sat along with setting=
s for leading/trailing<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; symbol, commas, spaces and points. This allow=
s anyone to<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; customise to meet their own needs beyond the =
offered default.<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; We apply the NIST guidelines for representati=
on of SI unit<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; symbols (i.e no conversion to native language=
, no RTL giving<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; icon+m etc).<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; Right now MultiBit HD is configured to use m+=
icon taken from<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; the Font Awesome icon set. However reading ea=
rlier posts it<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; seems that =CE=BC+icon is more sensible.<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; Let us know what you&#39;d like.<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; Links: m+icon screenshot: <a href=3D"http://i=
mgur.com/a/WCDoG" target=3D"_blank">http://imgur.com/a/WCDoG</a> Font<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; Awesome icon:<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; <a href=3D"http://fortawesome.github.io/Font-=
Awesome/icon/btc/" target=3D"_blank">http://fortawesome.github.io/Font-Awes=
ome/icon/btc/</a> NIST SI<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; guidelines: <a href=3D"http://physics.nist.go=
v/Pubs/SP811/sec07.html" target=3D"_blank">http://physics.nist.gov/Pubs/SP8=
11/sec07.html</a><br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; On 13 March 2014 12:56, Jeff Garzik &lt;<a hr=
ef=3D"mailto:jgarzik@bitpay.com">jgarzik@bitpay.com</a><br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; &lt;mailto:<a href=3D"mailto:jgarzik@bitpay.c=
om">jgarzik@bitpay.com</a>&gt;&gt; wrote:<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; Resurrecting this topic. =C2=A0Bitcoin Wallet=
 moved to mBTC<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; several weeks ago, which was disappointing --=
 it sounded like<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; the consensus was uBTC, and moving to uBTC la=
ter --which will<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; happen-- may result in additional user confus=
ion, thanks to<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; yet another decimal place transition.<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; On Sun, Nov 17, 2013 at 9:28 PM, Wendell &lt;=
<a href=3D"mailto:w@grabhive.com">w@grabhive.com</a><br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; &lt;mailto:<a href=3D"mailto:w@grabhive.com">=
w@grabhive.com</a>&gt;&gt; wrote:<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; We&#39;re with uBTC too. Been waiting for=
 the signal to do<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; this,<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; let&#39;s do it right after the fee system is=
 improved.<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; -wendell<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; <a href=3D"http://grabhive.com" target=3D=
"_blank">grabhive.com</a> &lt;<a href=3D"http://grabhive.com" target=3D"_bl=
ank">http://grabhive.com</a>&gt; |<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; <a href=3D"http://twitter.com/hivewallet"=
 target=3D"_blank">twitter.com/hivewallet</a><br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; &lt;<a href=3D"http://twitter.com/hivewallet"=
 target=3D"_blank">http://twitter.com/hivewallet</a>&gt; | gpg: 6C0C9411<br=
>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; On Nov 15, 2013, at 6:03 AM, Jeff Garzik =
wrote:<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; Go straight to uBTC. Humans and exist=
ing computer<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; systems<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; handle numbers to<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; the left of the decimals just fine (H=
K Dollars, Yen).<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; The<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; opposite is<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; untrue (QuickBooks really does not li=
ke 3+ decimal<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; places).<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; -- Jeff Garzik Bitcoin core developer and ope=
n source<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; evangelist BitPay, Inc. =C2=A0 =C2=A0 =C2=A0<=
a href=3D"https://bitpay.com/" target=3D"_blank">https://bitpay.com/</a><br=
>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; ---------------------------------------------=
---------------------------------<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt; Learn Graph Databases - Download FREE O&#39;Reilly Book<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; &quot;Graph Databases&quot; is the definitive=
 new guide to graph<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; databases and their applications. Written by =
three acclaimed<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; leaders in the field, this first edition is n=
ow available.<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; Download your free book today!<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; <a href=3D"http://p.sf.net/sfu/13534_NeoTech"=
 target=3D"_blank">http://p.sf.net/sfu/13534_NeoTech</a><br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; _____________________________________________=
__<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; Bitcoin-development mailing list<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; <a href=3D"mailto:Bitcoin-development@lists.s=
ourceforge.net">Bitcoin-development@lists.sourceforge.net</a><br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; &lt;mailto:<a href=3D"mailto:Bitcoin-developm=
ent@lists.sourceforge.net">Bitcoin-development@lists.sourceforge.net</a>&gt=
;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; <a href=3D"https://lists.sourceforge.net/list=
s/listinfo/bitcoin-development" target=3D"_blank">https://lists.sourceforge=
.net/lists/listinfo/bitcoin-development</a><br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; -------------------------------------------------------------=
-----------------<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; Learn Graph Databases - Download FREE O&#39;R=
eilly Book &quot;Graph<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; Databases&quot; is the definitive new guide t=
o graph databases<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; and their applications. Written by three accl=
aimed leaders in<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; the field, this first edition is now availabl=
e. Download your<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; free book today! <a href=3D"http://p.sf.net/s=
fu/13534_NeoTech" target=3D"_blank">http://p.sf.net/sfu/13534_NeoTech</a><b=
r>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; _____________________________________________=
__<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; Bitcoin-development mailing list<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; <a href=3D"mailto:Bitcoin-development@lists.s=
ourceforge.net">Bitcoin-development@lists.sourceforge.net</a><br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; &lt;mailto:<a href=3D"mailto:Bitcoin-developm=
ent@lists.sourceforge.net">Bitcoin-development@lists.sourceforge.net</a>&gt=
;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; <a href=3D"https://lists.sourceforge.net/list=
s/listinfo/bitcoin-development" target=3D"_blank">https://lists.sourceforge=
.net/lists/listinfo/bitcoin-development</a><br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; -------------------------------------------------------------=
-----------------<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; Learn Graph Databases - Download FREE O&#39;R=
eilly Book &quot;Graph<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; Databases&quot; is the definitive new guide t=
o graph databases and<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; their applications. Written by three acclaime=
d leaders in the<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; field, this first edition is now available. D=
ownload your<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; free book today! <a href=3D"http://p.sf.net/s=
fu/13534_NeoTech" target=3D"_blank">http://p.sf.net/sfu/13534_NeoTech</a><b=
r>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; _____________________________________________=
__<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; Bitcoin-development mailing list<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; <a href=3D"mailto:Bitcoin-development@lists.s=
ourceforge.net">Bitcoin-development@lists.sourceforge.net</a><br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; <a href=3D"https://lists.sourceforge.net/list=
s/listinfo/bitcoin-development" target=3D"_blank">https://lists.sourceforge=
.net/lists/listinfo/bitcoin-development</a><br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; -------------------------------------------------------------=
-----------------<br>
&gt;&gt; &gt;&gt;&gt;&gt; Learn Graph Databases - Download FREE O&#39;Reill=
y Book &quot;Graph<br>
&gt;&gt; &gt;&gt;&gt;&gt; Databases&quot; is the definitive new guide to gr=
aph databases and<br>
&gt;&gt; &gt;&gt;&gt;&gt; their applications. Written by three acclaimed le=
aders in the<br>
&gt;&gt; &gt;&gt;&gt;&gt; field, this first edition is now available. Downl=
oad your free<br>
&gt;&gt; &gt;&gt;&gt;&gt; book today! <a href=3D"http://p.sf.net/sfu/13534_=
NeoTech" target=3D"_blank">http://p.sf.net/sfu/13534_NeoTech</a><br>
&gt;&gt; &gt;&gt;&gt;&gt; _______________________________________________<b=
r>
&gt;&gt; &gt;&gt;&gt;&gt; Bitcoin-development mailing list<br>
&gt;&gt; &gt;&gt;&gt;&gt; <a href=3D"mailto:Bitcoin-development@lists.sourc=
eforge.net">Bitcoin-development@lists.sourceforge.net</a><br>
&gt;&gt; &gt;&gt;&gt;&gt; <a href=3D"https://lists.sourceforge.net/lists/li=
stinfo/bitcoin-development" target=3D"_blank">https://lists.sourceforge.net=
/lists/listinfo/bitcoin-development</a><br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; -------------------------------------------------------------=
-----------------<br>
&gt;&gt; &gt;&gt;&gt; Learn Graph Databases - Download FREE O&#39;Reilly Bo=
ok &quot;Graph<br>
&gt;&gt; &gt;&gt;&gt; Databases&quot; is the definitive new guide to graph =
databases and<br>
&gt;&gt; &gt;&gt;&gt; their applications. Written by three acclaimed leader=
s in the<br>
&gt;&gt; &gt;&gt;&gt; field, this first edition is now available. Download =
your free<br>
&gt;&gt; &gt;&gt;&gt; book today! <a href=3D"http://p.sf.net/sfu/13534_NeoT=
ech" target=3D"_blank">http://p.sf.net/sfu/13534_NeoTech</a><br>
&gt;&gt; &gt;&gt;&gt; _______________________________________________<br>
&gt;&gt; &gt;&gt;&gt; Bitcoin-development mailing list<br>
&gt;&gt; &gt;&gt;&gt; <a href=3D"mailto:Bitcoin-development@lists.sourcefor=
ge.net">Bitcoin-development@lists.sourceforge.net</a><br>
&gt;&gt; &gt;&gt;&gt; <a href=3D"https://lists.sourceforge.net/lists/listin=
fo/bitcoin-development" target=3D"_blank">https://lists.sourceforge.net/lis=
ts/listinfo/bitcoin-development</a><br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; ---------------------------------------------------------=
---------------------<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt; Learn Graph Databases - Download FREE O&#39;Reilly Book<br>
&gt;&gt; &gt;&gt; &quot;Graph Databases&quot; is the definitive new guide t=
o graph databases<br>
&gt;&gt; &gt;&gt; and their applications. Written by three acclaimed leader=
s in the<br>
&gt;&gt; &gt;&gt; field, this first edition is now available. Download your=
 free book<br>
&gt;&gt; &gt;&gt; today! <a href=3D"http://p.sf.net/sfu/13534_NeoTech" targ=
et=3D"_blank">http://p.sf.net/sfu/13534_NeoTech</a><br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; _______________________________________________ Bitcoin-d=
evelopment<br>
&gt;&gt; &gt;&gt; mailing list <a href=3D"mailto:Bitcoin-development@lists.=
sourceforge.net">Bitcoin-development@lists.sourceforge.net</a><br>
&gt;&gt; &gt;&gt; <a href=3D"https://lists.sourceforge.net/lists/listinfo/b=
itcoin-development" target=3D"_blank">https://lists.sourceforge.net/lists/l=
istinfo/bitcoin-development</a><br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; -------------------------------------------------------------=
-----------------<br>
&gt;&gt; &gt; Learn Graph Databases - Download FREE O&#39;Reilly Book<br>
&gt;&gt; &gt; &quot;Graph Databases&quot; is the definitive new guide to gr=
aph databases and<br>
&gt;&gt; &gt; their<br>
&gt;&gt; &gt; applications. Written by three acclaimed leaders in the field=
,<br>
&gt;&gt; &gt; this first edition is now available. Download your free book =
today!<br>
&gt;&gt; &gt; <a href=3D"http://p.sf.net/sfu/13534_NeoTech" target=3D"_blan=
k">http://p.sf.net/sfu/13534_NeoTech</a><br>
&gt;&gt; &gt; _______________________________________________<br>
&gt;&gt; &gt; Bitcoin-development mailing list<br>
&gt;&gt; &gt; <a href=3D"mailto:Bitcoin-development@lists.sourceforge.net">=
Bitcoin-development@lists.sourceforge.net</a><br>
&gt;&gt; &gt; <a href=3D"https://lists.sourceforge.net/lists/listinfo/bitco=
in-development" target=3D"_blank">https://lists.sourceforge.net/lists/listi=
nfo/bitcoin-development</a><br>
&gt;&gt; &gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; ------------------------------------------------------------------=
------------<br>
&gt;&gt; Learn Graph Databases - Download FREE O&#39;Reilly Book<br>
&gt;&gt; &quot;Graph Databases&quot; is the definitive new guide to graph d=
atabases and their<br>
&gt;&gt; applications. Written by three acclaimed leaders in the field,<br>
&gt;&gt; this first edition is now available. Download your free book today=
!<br>
&gt;&gt; <a href=3D"http://p.sf.net/sfu/13534_NeoTech" target=3D"_blank">ht=
tp://p.sf.net/sfu/13534_NeoTech</a><br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; Bitcoin-development mailing list<br>
&gt;&gt; <a href=3D"mailto:Bitcoin-development@lists.sourceforge.net">Bitco=
in-development@lists.sourceforge.net</a><br>
&gt;&gt; <a href=3D"https://lists.sourceforge.net/lists/listinfo/bitcoin-de=
velopment" target=3D"_blank">https://lists.sourceforge.net/lists/listinfo/b=
itcoin-development</a><br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; ----------------------------------------------------------------------=
--------<br>
&gt; Learn Graph Databases - Download FREE O&#39;Reilly Book<br>
&gt; &quot;Graph Databases&quot; is the definitive new guide to graph datab=
ases and their<br>
&gt; applications. Written by three acclaimed leaders in the field,<br>
&gt; this first edition is now available. Download your free book today!<br=
>
&gt; <a href=3D"http://p.sf.net/sfu/13534_NeoTech" target=3D"_blank">http:/=
/p.sf.net/sfu/13534_NeoTech</a><br>
&gt; _______________________________________________<br>
&gt; Bitcoin-development mailing list<br>
&gt; <a href=3D"mailto:Bitcoin-development@lists.sourceforge.net">Bitcoin-d=
evelopment@lists.sourceforge.net</a><br>
&gt; <a href=3D"https://lists.sourceforge.net/lists/listinfo/bitcoin-develo=
pment" target=3D"_blank">https://lists.sourceforge.net/lists/listinfo/bitco=
in-development</a><br>
&gt;<br>
<br>
---------------------------------------------------------------------------=
---<br>
Learn Graph Databases - Download FREE O&#39;Reilly Book<br>
&quot;Graph Databases&quot; is the definitive new guide to graph databases =
and their<br>
applications. Written by three acclaimed leaders in the field,<br>
this first edition is now available. Download your free book today!<br>
<a href=3D"http://p.sf.net/sfu/13534_NeoTech" target=3D"_blank">http://p.sf=
.net/sfu/13534_NeoTech</a><br>
_______________________________________________<br>
Bitcoin-development mailing list<br>
<a href=3D"mailto:Bitcoin-development@lists.sourceforge.net">Bitcoin-develo=
pment@lists.sourceforge.net</a><br>
<a href=3D"https://lists.sourceforge.net/lists/listinfo/bitcoin-development=
" target=3D"_blank">https://lists.sourceforge.net/lists/listinfo/bitcoin-de=
velopment</a><br>
</div></div></blockquote></div><br></div>

--f46d0443063e41019004f493fb92--