-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
969 lines (908 loc) · 40.9 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="The Chaincode Labs residency, hosted in our office in Midtown Manhattan.">
<meta name="author" content="Chaincode Labs">
<title>Chaincode Residency</title>
<meta property="twitter:title" content="Chaincode Labs Residency">
<meta property="og:url" content="https://residency.chaincode.com">
<meta property="og:image" content="https://residency.chaincode.com/img/banner_2020.png">
<meta property="twitter:description" content="The Chaincode Labs residency, hosted in our office in Midtown Manhattan.">
<meta name="twitter:card" content="summary_large_image">
<meta name="robots" content="index, follow">
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Kaushan+Script' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'>
<!-- Custom styles for this template -->
<link href="css/agency.min.css" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-132693698-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-132693698-1');
</script>
</head>
<body id="page-top">
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="#page-top">Chaincode Residency</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
Menu
<i class="fa fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<!-- <li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#about">About</a>
</li> -->
<!-- <li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#residents">Residents</a>
</li> -->
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#mentors">Mentors</a>
</li>
<li class="nav-item">
<a class="nav-link-no-js js-scroll-trigger" href="/resources.html#resources">Resources</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Header -->
<header class="masthead">
<div class="container">
<div class="intro-text">
<div class="intro-heading">Chaincode Residency</div>
</div>
</div>
</header>
<section id="announcement">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h3 class="section-heading">WE DO NOT YET HAVE ANY PLANS FOR THE NEXT ONE.</h3>
<h3 class="section-heading">CHECK
<a href="https://learning.chaincode.com">Learning @ CHAINCODE</a>
FOR PROGRAMS.</h3>
</div>
</div>
</div>
</section>
<!-- About -->
<!-- <section class="bg-light" id="about">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2 class="section-heading text-center">About</h2>
<p>
This program will take place at our offices in Midtown Manhattan and consist of a seminar and discussion series. In this cohort, we are seeking industry professionals looking to build upon their experience while deconstructing the philosophies behind Bitcoin and Lightning protocol design.
</p>
</div>
</div>
<div class="row text-center">
<div class="col-md-6">
<span class="fa-stack fa-4x">
<div class="nav-link js-scroll-trigger" href="#session-a">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-university fa-stack-1x fa-inverse"></i>
</div>
</span>
<h4 class="service-heading">Becoming a Bitcoin/LN Protocol Developer</h4>
<p class="text-muted">Sessions to bootstrap the knowledge of developers by diving deep into security concerns, adversarial thinking, and approaches to Bitcoin and Lightning protocol design.</p>
</div>
<div class="col-md-6">
<span class="fa-stack fa-4x">
<div class="nav-link js-scroll-trigger" href="#session-b">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-laptop fa-stack-1x fa-inverse"></i>
</div>
</span>
<h4 class="service-heading">Project Based Learning</h4>
<p class="text-muted">(2 months) Unstructured time for residents to contribute to open-source projects or work on a personal project of their choosing. Each resident was assigned a mentor for the duration of the program.</p>
</div>
</div>
</div>
</section> -->
<!-- Apply -->
<!-- <section class="bg-light" id="apply">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2 class="section-heading text-center">Apply</h2>
<h6 class="text-center">Applications are now open!</h6>
<p>
This is an excellent opportunity if you want to:
<ul>
<li>contribute to open-source Bitcoin protocol projects but find the idea daunting</li>
<li>spend more time designing protocols based on Bitcoin and/or Lightning</li>
<li>think about edge cases and security models with established protocol developers</li>
</ul>
</p>
<p>
Chaincode is committed to creating an inclusive environment for people from different backgrounds. Travel and lodging will be provided as needed.
</p>
</br>
<div class="col-lg-12 text-center">
<a class="btn btn-primary btn-xl text-uppercase js-scroll-trigger center-block" href="https://jobs.lever.co/chaincode/0c52c2e8-2b89-428b-84d8-b85d17643ce2/apply" onClick="gtag('event', 'app_click', {'event_category': 'residency','event_label': 'summer 2020'});">Apply Now</a>
</div>
</div>
</div>
</div>
</section> -->
<!-- Resources -->
<!-- <section class="bg-light" id="resources">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2 class="section-heading text-center">Resources</h2>
<div class="nav-link js-scroll-trigger" href="#session-a">
</div>
</div>
</div>
<div class="row">
<a target="_blank" href="https://github.com/chaincodelabs/study-groups">
<span class="fa-stack fa-4x">
<div class="col-sm-2">
<i class="fa fa-github" style="color:black"></i>
</div>
</span>
</a>
<div class="col-sm-10">
<a target="_blank" href="https://github.com/chaincodelabs/study-groups">
<h4>Study Groups</h4>
</a>
<p class="text-muted">Conduct your own study groups with readings and discussion questions on various Bitcoin and Lightning topics</p>
</div>
</div>
<div class="row">
<a target="_blank" href="https://www.youtube.com/watch?v=StnOVBbIpD8&list=PLpLH33TRghT0z4nnoJx6646nfsMFvnVwF">
<span class="fa-stack fa-4x">
<div class="col-sm-2">
<i class="fa fa-youtube" style="color:black"></i>
</div>
</span>
</a>
<div class="col-sm-10">
<a target="_blank" href="https://www.youtube.com/watch?v=StnOVBbIpD8&list=PLpLH33TRghT0z4nnoJx6646nfsMFvnVwF">
<h4>Bitcoin Protocol Development Seminar</h4>
</a>
<p class="text-muted">7 videos from the 2019 Bitcoin Seminar</p>
</div>
</div>
<div class="row">
<a target="_blank" href="https://github.com/chaincodelabs/bitcoin-curriculum">
<span class="fa-stack fa-4x">
<div class="col-sm-2">
<i class="fa fa-github" style="color:black"></i>
</div>
</span>
</a>
<div class="col-sm-10">
<a target="_blank" href="https://github.com/chaincodelabs/bitcoin-curriculum">
<h4>Bitcoin Protocol Development Curriculum</h4>
</a>
<p class="text-muted">A comprehensive resource for Bitcoin protocol developers</p>
</div>
</div>
<div class="row">
<a target="_blank" href="https://www.youtube.com/playlist?list=PLpLH33TRghT17_U3as2P3vHfAGL8pSOOY">
<span class="fa-stack fa-4x">
<div class="col-sm-2">
<i class="fa fa-youtube" style="color:black"></i>
</div>
</span>
</a>
<div class="col-sm-10">
<a target="_blank" href="https://www.youtube.com/playlist?list=PLpLH33TRghT17_U3as2P3vHfAGL8pSOOY">
<h4>Lightning Protocol Development Seminar</h4>
</a>
<p class="text-muted">13+ hours of content from the 2019 Lightning Seminar</p>
</div>
</div>
<div class="row">
<a target="_blank" href="https://github.com/chaincodelabs/lightning-curriculum">
<span class="fa-stack fa-4x">
<div class="col-sm-2">
<i class="fa fa-github" style="color:black"></i>
</div>
</span>
</a>
<div class="col-sm-10">
<a target="_blank" href="https://github.com/chaincodelabs/lightning-curriculum">
<h4>Lightning Protocol Development Curriculum</h4>
</a>
<p class="text-muted">A comprehensive resource for Lightning protocol developers</p>
</div>
</div>
<div class="row">
<a target="_blank" href="https://www.youtube.com/playlist?list=PLpLH33TRghT1SbxinAsNDS6L7RkAjC8ME">
<span class="fa-stack fa-4x">
<div class="col-sm-2">
<i class="fa fa-youtube" style="color:black"></i>
</div>
</span>
</a>
<div class="col-sm-10">
<a target="_blank" href="https://www.youtube.com/playlist?list=PLpLH33TRghT1SbxinAsNDS6L7RkAjC8ME">
<h4>Lightning Apps Residency Presentations</h4>
</a>
<p class="text-muted">17 videos from industry leaders on developing Lightning Applications recorded in October 2018</p>
</div>
</div>
<div class="row">
<a target="_blank" href="https://www.youtube.com/playlist?list=PLpLH33TRghT0d23IL0-dhSkblgUdYvSHF">
<span class="fa-stack fa-4x">
<div class="col-sm-2">
<i class="fa fa-youtube" style="color:black"></i>
</div>
</span>
</a>
<div class="col-sm-10">
<a target="_blank" href="https://www.youtube.com/playlist?list=PLpLH33TRghT0d23IL0-dhSkblgUdYvSHF">
<h4>2019 Chaincode Resident Demo Day</h4>
</a>
<p class="text-muted">Presentations from the residents about their projects and future directions</p>
</div>
</div>
<div class="row">
<a target="_blank" href="https://www.youtube.com/playlist?list=PLpLH33TRghT2jmuP9YQRo-e8gk969Q2F_">
<span class="fa-stack fa-4x">
<div class="col-sm-2">
<i class="fa fa-youtube" style="color:black"></i>
</div>
</span>
</a>
<div class="col-sm-10">
<a target="_blank" href="https://www.youtube.com/playlist?list=PLpLH33TRghT2jmuP9YQRo-e8gk969Q2F_">
<h4>Fall 2018 Lightning App Residency Demos</h4>
</a>
<p class="text-muted">Presentations from the residents about their Lightning Applications</p>
</div>
</div>
</div>
</section> -->
<!-- Residents -->
<!-- <section id="residents">
<div class="container">
<div class="row">
<div class="col-lg-12 ">
<h2 class="section-heading text-center">2019 Residents</h2>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/residents/ariard.png" alt="Antoine">
<h4>Antoine</h4>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://github.com/ariard">
<i class="fa fa-github"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/residents/amiti.jpg" alt="Amiti">
<h4>Amiti</h4>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://github.com/amitiuttarwar">
<i class="fa fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com/amizi">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/residents/carla.jpg" alt="Carla">
<h4>Carla</h4>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://github.com/CarlaKC">
<i class="fa fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com/actuallyCarlaKC">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/residents/elichai.jpg" alt="Elichai">
<h4>Elichai</h4>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://github.com/elichai">
<i class="fa fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com/Elichai2">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/residents/fabian.jpg" alt="Fabian">
<h4>Fabian</h4>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://github.com/fjahr">
<i class="fa fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com/fjahr">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/residents/hugo.jpg" alt="Hugo">
<h4>Hugo</h4>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://github.com/hugohn">
<i class="fa fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com/hugohanoi">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="col-sm-6">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/residents/james_c.jpg" alt="James">
<h4>James</h4>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://github.com/jachiang">
<i class="fa fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com/digi_james">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="col-sm-6">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/residents/richard.jpg" alt="Richard">
<h4>Richard</h4>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://github.com/RichardMyers">
<i class="fa fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com/remyers_">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</section> -->
<!-- Mentors -->
<section class="bg-light" id="mentors">
<div class="container">
<div class="row">
<div class="col-lg-12 ">
<h2 class="section-heading text-center">2019 Speakers & Mentors</h2>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/team/christian.jpg" alt="profile photo">
<h4>Christian Decker</h4>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://github.com/cdecker">
<i class="fa fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com/snyke">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
<div class="bio">
Christian is an engineer at Blockstream where he works on the specification and implementation of the Lightning Network. He has been a contributor to Bitcoin since 2009.
</div>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/team/neha.png" alt="profile photo">
<h4>Neha Narula</h4>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://github.com/narula">
<i class="fa fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com/neha">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
<div class="bio">
Neha is the Director of the Digital Currency Initiative at the MIT Media Lab. Her areas of interest include distributed systems, databases, and programmable money.
</div>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/team/matt.jpg" alt="profile photo">
<h4>Matt Corallo</h4>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://github.com/TheBlueMatt">
<i class="fa fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com/TheBlueMatt">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
<div class="bio">
Matt has been contributing to Bitcoin Core since 2011. Some of his projects include: the Elements Sidechain, the Bitcoin FIBRE project, and Rust-Lightning.
</div>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/team/giulia.jpg" alt="profile photo">
<h4>Giulia Fanti</h4>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://github.com/gfanti">
<i class="fa fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com/giuliacfanti">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
<div class="bio">
Giulia is an assistant professor at Carnegie Mellon University where her research interests span the algorithmic foundations of blockchains, distributed systems, and privacy-preserving technologies.
</div>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/team/andrew_poelstra.png" alt="profile photo">
<h4>Andrew Poelstra</h4>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://github.com/apoelstra">
<i class="fa fa-github"></i>
</a>
</li>
</ul>
<div class="bio">
Andrew is the Director of Research at Blockstream and a contributor to Bitcoin since 2011. His areas of interested include Mimblewimble, scriptless scripts, libsecp256k1.
</div>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/team/bosworth.jpg" alt="profile photo">
<h4>Alex Bosworth</h4>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://github.com/alexbosworth">
<i class="fa fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com/alexbosworth">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
<div class="bio">
Alex is the lightning infrastructure lead at Lightning Labs. Previously, he created some of the most popular examples of lightning applications including yalls.org, htlc.me, and submarineswaps.org.
</div>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/team/john.jpg" alt="profile photo">
<h4>John Newbery</h4>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://github.com/jnewbery">
<i class="fa fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com/jfnewbery">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
<div class="bio">
John works at Chaincode Labs and has been contributing to Bitcoin Core since 2016. He set up Bitcoin Optech in 2018 to help Bitcoin companies adopt scaling technologies.
</div>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/team/gregory_sanders.jpg" alt="profile photo">
<h4>Gregory Sanders</h4>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://github.com/instagibbs">
<i class="fa fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com/theinstagibbs">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
<div class="bio">
Gregory works at Blockstream where he focuses on production federated sidechains connected to the Bitcoin network. A part-time contributor to Bitcoin Core, he is interested in practical wallet technology and security.
</div>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/team/suhas.jpg" alt="profile photo">
<h4>Suhas Daftuar</h4>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://github.com/sdaftuar">
<i class="fa fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com/suhasdaftuar">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
<div class="bio">
In 2014, Suhas co-founded Chaincode Labs to create a place for engineers and scientists to support the development of decentralized digital currencies and further our collective understanding of how such technologies can work.
</div>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/team/kalle.jpg" alt="profile photo">
<h4>Kalle Alm</h4>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://github.com/kallewoof">
<i class="fa fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com/kallewoof">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
<div class="bio">
Kalle is a Swedish developer and Bitcoin Core Contributor since 2016 who has authored BIPs 98, 116, 117, 154, 178, and 322. He currently works as a manager at Digital Garage.
</div>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/team/jonas_nick.jpg" alt="profile photo">
<h4>Jonas Nick</h4>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://github.com/jonasnick">
<i class="fa fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com/n1ckler">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
<div class="bio">
Jonas is a researcher at Blockstream working on the Liquid network. His areas of interest include secp256k1, scriptless scripts, and blind signatures.
</div>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/team/sjors.jpg" alt="profile photo">
<h4>Sjors Provoost</h4>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://github.com/Sjors">
<i class="fa fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com/provoost">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
<div class="bio">
Sjors is a physicist turned software developer and Bitcoin enthusiast. He focused on developing the the web wallet at Blockchain.info from 2014-2017 and has been contributing to Bitcoin Core since mid-2017.
</div>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/team/jonas_schnelli.jpg" alt="profile photo">
<h4>Jonas Schnelli</h4>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://github.com/jonasschnelli">
<i class="fa fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com/_jonasschnelli_">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
<div class="bio">
Jonas is a Bitcoin Core developer and the co-founder of Bitbox. He also develops and created libbtc, a Bitcoin library written in C.
</div>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/team/russ.png" alt="profile photo">
<h4>Russ Yanofsky</h4>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://github.com/ryanofsky">
<i class="fa fa-github"></i>
</a>
</li>
</ul>
<div class="bio">
Russ is a software developer at Chaincode Labs. He previously worked on web search at Google and set-top video software at Videon Central, Inc.
</div>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/team/alex.jpg" alt="profile photo">
<h4>Alex Morcos</h4>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://github.com/morcos">
<i class="fa fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com/morcosa">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
<div class="bio">
Alex discovered his passion for Bitcoin in 2012, and in 2014 he co-founded Chaincode with Suhas. He has enjoyed contributing to Bitcoin Core and learning about the exciting nascent field of cryptocurrency ever since.
</div>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/team/fabrice.png" alt="profile photo">
<h4>Fabrice Drouin</h4>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://github.com/sstone">
<i class="fa fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com/acinq_co">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
<div class="bio">
Fabrice worked on large-scale distributed systems in the security industry before he discovered Bitcoin in 2012 and co-founded ACINQ in 2014, one of the companies building and deploying the Lightning Network.
</div>
</div>
</div>
<!-- <div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/team/james.jpg" alt="profile photo">
<h4>James O'Beirne</h4>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://github.com/jamesob">
<i class="fa fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com/jamesob">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
<div class="bio">
James is a developer at Chaincode Labs and started contributing to Bitcoin Core in 2015 during nights and weekends. Previously he worked as a programmer in automated genetic testing and electronics manufacturing.
</div>
</div>
</div> -->
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/team/johan.jpg" alt="profile photo">
<h4>Johan Torås Halseth</h4>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://github.com/halseth">
<i class="fa fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com/johanth">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
<div class="bio">
Johan is an engineer at Lightning Labs, where he works on LND, Neutrino and other projects in the golang Bitcoin stack. He discovered Bitcoin in 2015 and has been annoying people with the topic ever since.
</div>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/team/rene.jpg" alt="profile photo">
<h4>René Pickhardt</h4>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://github.com/renepickhardt">
<i class="fa fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com/renepickhardt">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
<div class="bio">
Rene is an independent Lightning Network Protocol developer. He works on an open source book about the Lightning Network and runs a YouTube channel devoted to teaching about the Lightning Network Protocol.
</div>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/team/carl.jpg" alt="profile photo">
<h4>Carl Dong</h4>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://github.com/dongcarl">
<i class="fa fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com/carl_dong">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
<div class="bio">
Carl is a developer at Chaincode Labs where he contributes to rust-bitcoin and Bitcoin Core. He is excited about systems engineering and incentive-compatible uses of permissionless money.
</div>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/team/will.jpg" alt="profile photo">
<h4>Will O'Beirne</h4>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://github.com/wbobeirne">
<i class="fa fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com/wbobeirne">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
<div class="bio">
Will is an open source Lightning developer who created Joule and the WebLN standard. He's currently focused on projects and tools to make Lightning development awesome.
</div>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img class="mx-auto rounded-circle" src="img/team/samuel.jpg" alt="profile photo">
<h4>Samuel Dobson</h4>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a target="_blank" href="https://github.com/meshcollider">
<i class="fa fa-github"></i>
</a>
</li>
<li class="list-inline-item">
<a target="_blank" href="https://twitter.com/meshcollider">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
<div class="bio">
Samuel is a PhD student at the University of Auckland, focusing on cryptography. He has been contributing part-time to Bitcoin Core since 2017 and is the wallet maintainer for the project.
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-4">
<span class="copyright">Copyright © <a href="https://chaincode.com">Chaincode Labs</a> 2020</span>
<span class="copyright">[email protected]</span>
</div>
</div>
</div>
</footer>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/popper/popper.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="vendor/jquery-easing/jquery.easing.min.js"></script>
<!-- Custom scripts for this template -->
<script src="js/agency.min.js"></script>
</body>
</html>