forked from jlopp/lopp.net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
articles.html
993 lines (978 loc) · 49.8 KB
/
articles.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="google-site-verification" content="R0dzeFRj3Xe_EeN3ckdmdqfm7tbk27eyWcfmTvWtfzE" />
<meta name="keywords" content="jameson, lopp, bitcoin, crypto, cypherpunk" />
<meta name="Robots" content="index,follow" />
<title>Jameson Lopp :: Articles</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.css">
<link href="style.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Overpass+Mono:300,400,600,700&subset=latin-ext" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<script type="text/javascript">
function MM_swapImgRestore() { //v3.0
var i, x, a = document.MM_sr;
for (i = 0; a && i < a.length && (x = a[i]) && x.oSrc; i++) x.src = x.oSrc;
}
function MM_preloadImages() { //v3.0
var d = document;
if (d.images) {
if (!d.MM_p) d.MM_p = new Array();
var i, j = d.MM_p.length,
a = MM_preloadImages.arguments;
for (i = 0; i < a.length; i++)
if (a[i].indexOf("#") != 0) {
d.MM_p[j] = new Image;
d.MM_p[j++].src = a[i];
}
}
}
function MM_findObj(n, d) { //v4.01
var p, i, x;
if (!d) d = document;
if ((p = n.indexOf("?")) > 0 && parent.frames.length) {
d = parent.frames[n.substring(p + 1)].document;
n = n.substring(0, p);
}
if (!(x = d[n]) && d.all) x = d.all[n];
for (i = 0; !x && i < d.forms.length; i++) x = d.forms[i][n];
for (i = 0; !x && d.layers && i < d.layers.length; i++) x = MM_findObj(n, d.layers[i].document);
if (!x && d.getElementById) x = d.getElementById(n);
return x;
}
function MM_swapImage() { //v3.0
var i, j = 0,
x, a = MM_swapImage.arguments;
document.MM_sr = new Array;
for (i = 0; i < (a.length - 2); i += 3)
if ((x = MM_findObj(a[i])) != null) {
document.MM_sr[j++] = x;
if (!x.oSrc) x.oSrc = x.src;
x.src = a[i + 2];
}
}
</script>
<script type="text/javascript">
<!--
function HideContent(d) {
document.getElementById(d).style.display = "none";
}
function ShowContent(d) {
document.getElementById(d).style.display = "block";
}
function ReverseDisplay(d) {
if (document.getElementById(d).style.display == "none") {
document.getElementById(d).style.display = "block";
} else {
document.getElementById(d).style.display = "none";
}
}
//-->
</script>
<!-- Google Analytics -->
<script>
(function(i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function() {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-2071667-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body onLoad="MM_preloadImages('images/facebook-roll.gif','images/twitter-roll.gif','images/linked-roll.gif','images/github-roll.gif','images/21-roll.gif','images/keybase-roll.gif')">
<nav class="navbar navbar-default col-sm-offset-0 col-sm-12 col-md-offset-0 col-md-12 col-lg-offset-0 col-lg-12">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#myDefaultNavbar1" aria-expanded="false"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button>
<a class="navbar-brand" href="index.html">Jameson Lopp</a> </div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="myDefaultNavbar1">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Articles <span class="sr-only">(current)</span></a>
</li>
<li><a href="presentations.html">Presentations</a>
</li>
<!-- Do not display this at the moment
<li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false" aria-haspopup="true">Dropdown <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">One more separated link</a></li>
</ul>
</li>
-->
<li><a href="interviews.html">Interviews</a>
</li>
<li><a href="bitcoin.html">Bitcoin Resources</a>
</li>
<li><a href="contact.php">Contact</a>
</li>
</ul>
<!-- Do not display this at the moment
<form class="navbar-form navbar-right" role="search">
<div class="form-group">
<input type="text" class="form-control" placeholder="Search">
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
-->
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<section class="inner-background">
<div class="container">
<div class="row">
<div class="col-xs-12 text-left col-lg-offset-0 col-lg-12">
<br>
</div>
</div>
</div>
<div class="container" style="background-color: #ffffff">
<div class="row">
<div class="col-xs-12 text-left col-lg-8 col-lg-offset-1 col-md-10 col-md-offset-1 col-sm-10 col-sm-offset-1">
<h1>Articles</h1>
<p>When he can't compress a complex concept into a few tweets, Jameson writes lengthy technical (and sometimes philosophical) articles to communicate information and opinions he has gathered while building crypto asset infrastructure.</p>
<br>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-xs-12 text-left col-lg-offset-0 col-lg-12">
<br>
<br>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div class="row">
<div class="col-xs-12 text-left col-lg-offset-0 col-lg-12">
<br>
<br>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://www.coindesk.com/bitcoin-2017-stats/" target="_blank">
What the Data Tells Us About Bitcoin in 2017</a></h3> Statistics show bitcoin is at the forefront of an increasingly complex ecosystem that continues to grow in a variety of ways.
<p class="date">13 January 2018 | <a href="https://coindesk.com" target="_blank">CoinDesk</a>
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/the-challenges-of-building-ethereum-infrastructure-87e443e47a4b" target="_blank">
The Challenges of Building Ethereum Infrastructure</a></h3> Lopp covers a number of issues encountered while building a multisig smart contract wallet.
<p class="date">8 January 2018 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/securing-your-financial-sovereignty-3af6fe834603" target="_blank">
Securing Your Financial Sovereignty</a></h3> An explanation of why fully validating nodes matter and how to make use of them.
<p class="date">22 October 2017 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://www.coindesk.com/spv-support-billion-bitcoin-users-sizing-scaling-claim/" target="_blank">
Can SPV Support a Billion Bitcoin Users?</a></h3> Lopp takes a deep dive into claims that it's safe to remove bitcoin's block size limit and instead rely on existing SPV methods.
<p class="date">30 July 2017 | <a href="http://www.coindesk.com" target="_blank">CoinDesk</a>
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://www.coindesk.com/bitcoin-benefits-coopetition-adversarial-environments/" target="_blank">
Bitcoin and the Benefits of Coopetition</a></h3> Lopp makes an impassioned argument for the need for more cooperation between the players in the bitcoin space.
<p class="date">14 July 2017 | <a href="http://www.coindesk.com" target="_blank">CoinDesk</a>
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://blog.bitgo.com/the-challenges-of-bitcoin-transaction-fee-estimation-e47a64a61c72" target="_blank">The Challenges of Bitcoin Transaction Fee Estimation</a></h3> Bitcoin transaction fee estimation is a goldilocks problem wrapped in a future prediction enigma shrouded...
<p class="date">10 May 2017 | <a href="https://blog.bitgo.com" target="_blank">BitGo</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/announcing-the-bitcoin-core-config-generator-4ce74a4af7fc" target="_blank">Announcing the Bitcoin Core Config Generator</a></h3> Bitcoin Core is a complex piece of software. Because one of the primary goals of Bitcoin is to enable users to be self sovereign and...
<p class="date">30 March 2017 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="http://www.coindesk.com/nobody-understands-bitcoin-thats-ok/" target="_blank">Nobody Understands Bitcoin (And That's OK)</a></h3> When I first became interested in bitcoin, I found myself spending countless hours absorbing as much information about it as possible, trying to put all of the pieces together...
<p class="date">13 March 2017 | <a href="http://www.coindesk.com" target="_blank">CoinDesk</a>
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/moderation-methods-vs-censorship-claims-f6baeb3c7392" target="_blank">Moderation Methods vs Censorship Claims</a></h3> One of the major points of contention in the Bitcoin community these days revolves around claims of censorship...
<p class="date">13 February 2017 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://blog.bitgo.com/statoshis-satoshi-roundtable-review-66054990075f" target="_blank">Statoshi’s Satoshi Roundtable Review</a></h3> I was fortunate to attend the 2017 Satoshi Roundtable on behalf of BitGo. It was truly a pleasure to meet many...
<p class="date">30 January 2017 | <a href="https://blog.bitgo.com" target="_blank">BitGo</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="http://www.coindesk.com/review-putting-ledgers-newest-bitcoin-hardware-test/" target="_blank">Review: Putting Ledger's New Bitcoin Hardware to the Test</a></h3> Ledger's new hardware wallet is the most costly on the market. Does it have the features to justify the expense...
<p class="date">28 January 2017 | <a href="http://www.coindesk.com" target="_blank">CoinDesk</a>
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://segwit.org/segwit-the-swiftest-safe-path-forward-cf41fe483d58" target="_blank">SegWit: The Swiftest Safe Path Forward</a></h3> I and many of my colleagues at BitGo and across the Bitcoin ecosystem are eager to see...
<p class="date">19 January 2017 | <a href="https://segwit.org" target="_blank">SegWit Resources</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://blog.bitgo.com/bitcoin-2016-in-review-9f26a9efce7e" target="_blank">Bitcoin: 2016 in Review</a></h3> In addition to my day job as a BitGo engineer, I run <a href="https://statoshi.info/" target="_blank">Statoshi.info</a>, a site I created in 2014 to track Bitcoin metrics from the perspective...
<p class="date">9 January 2017 | <a href="https://blog.bitgo.com" target="_blank">BitGo</a>
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="http://www.coindesk.com/bitcoins-security-model-deep-dive/" target="_blank">Bitcoin's Security Model: A Deep Dive</a></h3> When <a href="http://www.coindesk.com/bitcoin-the-trust-anchor-in-a-sea-of-blockchains/" target="_blank">discussing consensus mechanisms</a> for different cryptocurrencies, one issue that often causes arguments is a lack...
<p class="date">13 November 2016 | <a href="http://www.coindesk.com" target="_blank">CoinDesk</a>
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/how-to-run-bitcoin-as-a-tor-hidden-service-on-ubuntu-cff52d543756" target="_blank">How to Run Bitcoin as a Tor Hidden Service on Ubuntu</a></h3> Why should you run a Bitcoin hidden service on your node? * It increases the privacy of other Bitcoin users...
<p class="date">19 August 2016 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="http://www.coindesk.com/bitcoin-the-trust-anchor-in-a-sea-of-blockchains/" target="_blank">Bitcoin: The Trust Anchor in a Sea of Blockchains</a></h3> Bitcoin has a number of properties that give it utility (and thus value) such as trustlessness, permissionlessness...
<p class="date">23 July 2016 | <a href="http://www.coindesk.com" target="_blank">CoinDesk</a>
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="http://www.coindesk.com/building-better-bitcoin-fee-market/" target="_blank">Building a Better Bitcoin Fee Market</a></h3> Over the past year we have seen the fee market for bitcoin transactions evolve at a rapid pace. As transaction volume continues to increase, so does the demand for block space, which remains...
<p class="date">8 May 2016 | <a href="http://www.coindesk.com" target="_blank">CoinDesk</a>
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="http://www.coindesk.com/the-rise-of-the-cypherpunks/" target="_blank">Bitcoin and the Rise of the Cypherpunks</a></h3> From bitcoin to blockchain to distributed ledgers, the cryptocurrency space is fast evolving, to the...
<p class="date">9 April 2016 | <a href="http://www.coindesk.com" target="_blank">CoinDesk</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://blog-archive.bitgo.com/avoiding-stuck-transactions-with-bitgo/" target="_blank">Avoiding Stuck Transactions With BitGo</a></h3> A lot happens under the hood when sending a Bitcoin transaction - I covered some of the details in a previous...
<p class="date">29 February 2016 | <a href="https://blog.bitgo.com" target="_blank">BitGo</a>
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="http://www.coindesk.com/lightning-technical-challenges-bitcoin-scalability/" target="_blank">Lightning’s Balancing Act: Challenges Face Bitcoin’s Scalability Savior</a></h3> The bitcoin community has been discussing the concept of the...
<p class="date">28 February 2016 | <a href="http://www.coindesk.com" target="_blank">CoinDesk</a>
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="http://www.coindesk.com/how-to-save-bitcoins-node-network-from-centralization/" target="_blank">How to Save Bitcoin's Node Network from Centralization</a></h3> Decentralization is, I would argue, the most important property of the bitcoin network. Without it, many...
<p class="date">30 January 2016 | <a href="http://www.coindesk.com" target="_blank">CoinDesk</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12" id="linkdiv" style="display:inherit;">
<div class="media">
<div class="media-left"> </div>
<div class="media-body">
<h5 class="media-heading">
<a href="javascript:ShowContent('articles');HideContent('linkdiv')">VIEW ALL ARTICLES BY JAMESON LOPP</a></h5>
<br>
<br>
</div>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div class="row" id="articles" style="display: none;">
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/statoshi-developer-s-guide-241ac9ab9993" target="_blank">Statoshi Developer’s Guide</a></h3>
<a href="https://github.com/jlopp/statoshi" target="_blank">Statoshi</a> is a fork of <a href="https://github.com/bitcoin/bitcoin" target="_blank">Bitcoin Core</a> with several hundred additional lines of code for emitting metrics to a StatsD instance. You can view the...
<p class="date">24 December 2015 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/the-future-of-bitcoin-mining-ac9c3dc39c60" target="_blank">The Future of Bitcoin Mining</a></h3> Bitcoin mining has evolved rapidly over the last 7 years, with three distinct generations of miners in terms of power efficiency: 1.CPUs (2009–2010) 2. GPUs & FPGAs (2010–2013) 3. ASICs (2013-present)...
<p class="date">19 December 2015 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/scaling-bitcoin-hong-kong-recap-9a28f5a57f43" target="_blank">Scaling Bitcoin: Hong Kong Recap</a></h3> While many were dubious that it would be successful, I attended the second <a href="https://scalingbitcoin.org/" target="_blank">Scaling Bitcoin</a> workshop with...
<p class="date">8 December 2015 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/case-wallet-review-91e6e9bc453a" target="_blank">Case Wallet Review</a><br>
</h3> When I first heard about <a href="https://choosecase.com/" target="_blank">Case Wallet,</a> I was intrigued. The fact that it used a 2-of-3 multi-sig setup like we do at <a href="https://www.bitgo.com/" target="_blank">BitGo</a> made me interested to see if this product would be able...
<p class="date">21 November 2015 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://blog-archive.bitgo.com/malevolent-malleability/" target="_blank">Malevolent Malleability</a><br>
</h3> Transaction malleability is a longstanding well-known issue in the Bitcoin technical community. One of the earliest discussions about it <a href="https://bitcointalk.org/index.php?topic=8392.0" target="_blank">occurred in 2011.</a> Malleability...
<p class="date">5 November 2015 | <a href="https://blog.bitgo.com" target="_blank">BitGo</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/bitcoin-legislation-in-north-carolina-b07433f0b861" target="_blank">Bitcoin Legislation in North Carolina</a><br>
</h3> I’ve lived in North Carolina my entire life. It’s a great place to live and has a thriving tech scene...
<p class="date">2 October 2015 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/to-node-or-not-to-node-48da1b6d7091" target="_blank">To Node or Not to Node?</a><br>
</h3> Over a year ago I wondered: <a href="https://medium.com/@lopp/bitcoin-nodes-how-many-is-enough-9b8e8f6fd2cf" target="_blank">how many Bitcoin nodes is enough?</a> It turns out that there are several different perspectives from which one can ask...
<p class="date">26 September 2015 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/how-to-solo-mine-on-bitcoin-s-testnet-6073c917b495" target="_blank">How to Solo Mine on Bitcoin’s Testnet</a><br>
</h3> I’m a Bitcoin engineer, so I often need to test new code but I don’t want to risk losing valuable bitcoins in case there is a bug. Thankfully...
<p class="date">14 September 2015 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/statoshi-info-account-creation-guide-8033b745a5b7" target="_blank">Statoshi.info Account Creation Guide</a><br>
</h3> Now you can create, save, and share your own custom dashboards on statoshi.info! It only takes a couple minutes...
<p class="date">24 June 2015 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://blog-archive.bitgo.com/the-challenges-of-block-chain-indexing/" target="_blank">The Challenges of Block Chain Indexing</a><br>
</h3> Over the past several months I’ve had the pleasure of enhancing BitGo’s block chain indexing service — a core...
<p class="date">1 June 2015 | <a href="https://blog.bitgo.com" target="_blank">BitGo</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/de-centralized-block-chain-scaling-268dc5c3a7d0" target="_blank">(De)centralized Block Chain Scaling</a><br>
</h3> Lately there has been a great deal of debate around increasing the maximum block size allowed by the Bitcoin protocol because we’re approaching the current 1 MB limit. While this...
<p class="date">17 May 2015 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://blog-archive.bitgo.com/how-to-create-a-bitgo-wallet-with-a-mycelium-entropy-generated-offline-key/" target="_blank">How to Create a BitGo Wallet with a Mycelium Entropy Generated Offline Key</a><br>
</h3>
<a href="https://www.bitgo.com/" target="_blank">BitGo</a> provides a secure non-custodial Bitcoin wallet using our <a href="https://www.bitgo.com/p2sh_safe_address" target="_blank">P2SH Safe Address</a> multisignature tech...
<p class="date">7 April 2015 | <a href="https://blog.bitgo.com" target="_blank">BitGo</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://blog-archive.bitgo.com/challenges-optimizing-unspent-output-selection/" target="_blank">The Challenges of Optimizing Unspent Output Selection</a><br>
</h3> When we talk about bitcoins being stored on the block chain, most people speak in terms of “address balances” which makes sense from an accounting perspective, but this is not...
<p class="date">23 February 2015 | <a href="https://blog.bitgo.com" target="_blank">BitGo</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/how-to-fix-amazon-instant-video-streaming-in-ubuntu-f43e3f13261" target="_blank">How to Fix Amazon Instant Video Streaming in Ubuntu</a><br>
</h3> If you’re an Ubuntu user who is trying to play Amazon Instant Videos but you’re encountering an error that looks like this: "Player Update: An error occurred and your player could not...
<p class="date">20 December 2014 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/graphite-grafana-performance-tips-3bccf22be49d" target="_blank">Graphite & Grafana Performance Tips</a><br>
</h3> If you’re using Graphite to monitor your systems, your dashboards are probably only accessible to a few people in your organization and page load performance...
<p class="date">13 December 2014 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/a-puzzling-bitcoin-treasure-hunt-818c61e6a58c" target="_blank">A Puzzling Bitcoin Treasure Hunt</a><br>
</h3> After reading about <a href="https://bitcoinmagazine.com/14850/coin_artists-latest-dark-wallet-puzzle-32-page-solution/" target="_blank">Coin Artist’s epic Dark Wallet puzzle</a> I decided to try my hand at crafting a (slightly less difficult) <a href="https://en.wikipedia.org/wiki/Steganography" target="_blank">steganographic</a> bitcoin treasure hunt...
<p class="date">9 December 2014 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/how-to-generate-a-custom-bitcoin-address-with-an-amd-gpu-on-ubuntu-f3f10cfdffc6" target="_blank">How to Generate a Custom Bitcoin Address with an AMD GPU on Ubuntu</a><br>
</h3> Have you ever wanted a bitcoin address that was more personalized and recognizable than the standard...
<p class="date">8 November 2014 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/thoughts-on-secure-storage-of-bitcoins-and-other-crypto-assets-210cadabb53d" target="_blank">Thoughts on Secure Storage of Bitcoins and Other Crypto Backed Assets</a><br>
</h3> Depending upon the value of your crypto assets, you’ll need to take different levels of precautions in order to provide sufficient...
<p class="date">5 October 2014 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/the-future-of-statoshi-f6ff9afb4f85" target="_blank">The Future of Statoshi</a><br>
</h3> I am a software engineer who has spent the past 7 years scaling my employer’s web application from a several server infrastructure capable of sending a hundred thousand emails a day to a several hundred server infrastructure that sends a hundred...
<p class="date">23 August 2014 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/bitcoin-baron-bios-8750231022a" target="_blank">Bitcoin Baron Bios: The Who’s Who of the Cryptocurrency Community</a><br>
</h3> I’m not sure if it was YTCracker who coined the term “Bitcoin Baron,” but I’ve found it fascinating to observe the Bitcoin early adopters who have played public roles in shaping...
<p class="date">7 June 2014 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/the-state-of-the-bitcoin-network-2b6911fd9e32" target="_blank"> The State of the Bitcoin Network</a><br>
</h3> Friends, followers, fellow Internet denizens: twenty-six years ago, Timothy May <a href="https://activism.net/cypherpunk/crypto-anarchy.html" target="_blank">predicted</a> that cryptologic methods would fundamentally...
<p class="date">7 June 2014 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/announcing-statoshi-info-5c377997b30c" target="_blank">Announcing Statoshi.info: A public Statoshi dashboard</a><br>
</h3> A common criticism of <a href="https://jlopp.github.io/statoshi/" target="_blank">Statoshi</a> is that it is too complicated for the average person to configure and...
<p class="date">7 June 2014 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/announcing-statoshi-realtime-bitcoin-node-statistics-61457f07ee87" target="_blank">Announcing Statoshi: Realtime Bitcoin Node Statistics</a><br>
</h3> I’ve been on a quest for the past several months since I first asked the question: <a href="https://medium.com/@lopp/bitcoin-nodes-how-many-is-enough-9b8e8f6fd2cf" target="_blank">how many Bitcoin</a>...
<p class="date">7 June 2014 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/bitcoin-nodes-how-many-is-enough-9b8e8f6fd2cf" target="_blank">Bitcoin Nodes: How Many is Enough?</a><br>
</h3> Should we be worried about the declining number of nodes? It’s fairly straightforward to see the computational strength of the Bitcoin mining infrastructure growing...
<p class="date">7 June 2014 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/peeking-under-the-hood-of-a-running-bitcoin-node-784870874515" target="_blank">Peeking Under the Hood of a Running Bitcoin Node</a><br>
</h3> I’ve been running a Bitcoin full node for over a year now, but the only insight I ever had into what it was doing was how many...
<p class="date">7 June 2014 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/how-to-set-up-a-bitcoin-full-node-2dd1c09763d3" target="_blank"> How to Set Up a Bitcoin Full Node</a><br>
</h3> Help support the network at little cost! In a <a href="https://medium.com/@lopp/bitcoin-nodes-how-many-is-enough-9b8e8f6fd2cf" target="_blank">previous post</a> I discussed the functions of full nodes and how the complexity of Bitcoin’s network makes it difficult to discern how many nodes are actually needed...
<p class="date">7 June 2014 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/the-multifaceted-nature-of-bitcoin-94d79c95b9ef" target="_blank"> The Multifaceted Nature of Bitcoin</a><br>
</h3> It’s indisputable that Bitcoin is a controversial topic. It results in people to asking questions like “what is money?” and “what is value?” — questions that many people live...
<p class="date">7 June 2014 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/how-to-set-up-an-ide-for-developing-bitcoin-core-on-linux-193bd313acb1" target="_blank">How to set up an IDE for developing Bitcoin Core on Linux</a><br>
</h3> Recently I decided that browsing the Bitcoin Core source code in a text editor was not sufficient; I wanted to leverage the features...
<p class="date">7 June 2014 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/the-value-of-bitcoins-infrastructure-4eff264ee2be" target="_blank"> The Value of Bitcoin’s Infrastructure</a><br>
</h3> Debunking the myth of “intrinsic value”. We often hear from naysayers that Bitcoin has no intrinsic value because it’s simply software, a hodgepodge of digital bits and bytes that only exist in the ether of the Internet...
<p class="date">7 June 2014 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/zerocoin-zero-knowledge-for-infinite-anonymity-b38322a46767" target="_blank"> Zerocoin: Zero Knowledge for Infinite Anonymity</a><br>
</h3> Many people mistakenly describe Bitcoin as an anonymous digital currency. This is not true by a long shot — Bitcoin can be best described...
<p class="date">7 June 2014 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
<div class="media-body">
<h3 class="media-heading"><a href="https://medium.com/@lopp/how-to-invest-in-bitcoin-within-a-tax-advantaged-retirement-account-4c742e564b52 target="_blank"> How to Invest in Bitcoin Within a Tax Advantaged Retirement Account</a><br>
</h3> Note that the following does not constitute investment advice. Investing in cryptocurrency is high risk...
<p class="date">7 June 2014 | <a href="https://medium.com" target="_blank">Medium</a>
</p>
<br>
<br>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="media">
<div class="media-left">
<a href="#"> </a>
</div>
</div>
</div>
</div>
</div>
</section>
<hr>
<div class="section well">
<div class="container">
<div class="row">
<div class="col-sm-10 col-sm-offset-1 col-md-10 col-lg-10 col-xs-offset-0 col-xs-12">
<p class="text-right"><strong><a href="pgpkey.html" target="_blank">PGP KEY</a></strong>
<a href="https://www.facebook.com/jameson.lopp" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Facebook','','images/facebook-roll.gif',1)" target="_blank"><img src="images/facebook.gif" alt="Facebook" width="24" height="20" id="Facebook">
</a>
<a href="https://twitter.com/lopp?ref_src=twsrc%5Etfw&ref_url=http%3A%2F%2Flopp.net%2F" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Twitter','','images/twitter-roll.gif',1)" target="_blank"><img src="images/twitter.gif" alt="Twitter" width="20" height="17" id="Twitter">
</a>
<a href="https://www.linkedin.com/in/jamesonlopp/" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('LinkedIn','','images/linked-roll.gif',1)" target="_blank"><img src="images/linked.gif" alt="LinkedIn" width="24" height="20" id="LinkedIn">
</a>
<a href="https://github.com/jlopp" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Github','','images/github-roll.gif',1)" target="_blank"><img src="images/github.gif" alt="Github" width="24" height="20" id="Github">
</a>
<a href="https://21.co/lopp/" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('21','','images/21-roll.gif',1)" target="_blank"><img src="images/21.gif" alt="21" width="24" height="20" id="21">
</a>
<a href="https://keybase.io/lopp" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Keybase','','images/keybase-roll.gif',1)" target="_blank"><img src="images/keybase.gif" alt="Keybase" width="24" height="20" id="Keybase">
</a> <strong><a href="https://onename.com/lopp" target="_blank">ONENAME</a></strong> </p>
</div>
</div>
</div>
</div>
<footer class="text-center">
<div class="container">
<div class="row">
<div class="col-xs-12">
<p class="footer">No copyright ever. No rights reserved.</p>
</div>
</div>
</div>
</footer>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/jquery-1.11.3.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.js"></script>
</body>
</html>