This repository has been archived by the owner on Mar 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 160
/
Copy pathtrufflecon2019.html
1141 lines (998 loc) · 59.5 KB
/
trufflecon2019.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
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-WHT4PS2');</script>
<!-- End Google Tag Manager -->
<!-- HubSpot Forms -->
<!--[if lte IE 8]>
<script charset="utf-8" type="text/javascript" src="//js.hsforms.net/forms/v2-legacy.js"></script>
<![endif]-->
<script charset="utf-8" type="text/javascript" src="//js.hsforms.net/forms/v2.js"></script> <!-- Start of HubSpot Embed Code -->
<script type="text/javascript" id="hs-script-loader" async defer src="//js.hs-scripts.com/4795067.js"></script>
<!-- End of HubSpot Embed Code -->
<meta charset="utf-8">
<meta name="description" content="For Truffle users, blockchain developers and those building the future with decentralized applications (dapps) and smart contracts on decentralized digital ledgers such as Ethereum.">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="environment" content="">
<!-- Favicon -->
<link rel="icon" href="/img/favicons/favicon.ico">
<!-- Add to homescreen for Chrome on Android -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="Truffle Suite">
<link rel="icon" sizes="192x192" href="/img/favicons/chrome-touch-icon-192x192.png">
<!-- Add to homescreen for Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="Truffle Suite">
<link rel="apple-touch-icon" href="/img/favicons/apple-touch-icon.png">
<!-- Tile icon for Win8/10 (144x144 + tile color) -->
<meta name="msapplication-TileImage" content="img/favicons/ms-touch-icon-144x144-precomposed.png">
<meta name="msapplication-TileColor" content="#3372DF">
<!-- Facebook OpenGraph -->
<meta property="og:site_name" content="Truffle Suite" />
<meta property="og:description" content="For Truffle users, blockchain developers and those building the future with decentralized applications (dapps) and smart contracts on decentralized digital ledgers such as Ethereum." />
<meta property="og:title" content="TruffleCon 2019 | Truffle Suite" />
<meta property="og:url" content="https://trufflesuite.com/trufflecon2019" />
<meta property="og:type" content="article" />
<meta property="og:image" content="https://truffleframework.com/img/favicons/truffle-share.png" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="Truffle Suite" />
<meta name="twitter:title" content="TruffleCon 2019 | Truffle Suite" />
<meta name="twitter:description" content="For Truffle users, blockchain developers and those building the future with decentralized applications (dapps) and smart contracts on decentralized digital ledgers such as Ethereum." />
<meta name="twitter:creator" content="Truffle Suite" />
<meta name="twitter:domain" content="trufflesuite.com" />
<meta name="twitter:image:src" content="https://truffleframework.com/img/favicons/truffle-share.png" />
<meta name="google-site-verification" content="BSgPkMHzw7IxJTpEElNfD8ZZYPzXgOQiTVPzAxAG8-o" />
<title>TruffleCon 2019 | Truffle Suite</title>
<link href="https://fonts.googleapis.com/css?family=Grand+Hotel|Open+Sans|Oswald|Varela+Round|Roboto+Condensed|Roboto+Mono|Cinzel" rel="stylesheet">
<link rel="stylesheet" href="https://use.typekit.net/okj1vue.css">
<script src="https://kit.fontawesome.com/371f2d7a8a.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="/css/index.css?cache_buster=1623735132235">
<!-- start Mixpanel --><!--<script type="text/javascript">(function(c,a){if(!a.__SV){var b=window;try{var d,m,j,k=b.location,f=k.hash;d=function(a,b){return(m=a.match(RegExp(b+"=([^&]*)")))?m[1]:null};f&&d(f,"state")&&(j=JSON.parse(decodeURIComponent(d(f,"state"))),"mpeditor"===j.action&&(b.sessionStorage.setItem("_mpcehash",f),history.replaceState(j.desiredHash||"",c.title,k.pathname+k.search)))}catch(n){}var l,h;window.mixpanel=a;a._i=[];a.init=function(b,d,g){function c(b,i){var a=i.split(".");2==a.length&&(b=b[a[0]],i=a[1]);b[i]=function(){b.push([i].concat(Array.prototype.slice.call(arguments,
0)))}}var e=a;"undefined"!==typeof g?e=a[g]=[]:g="mixpanel";e.people=e.people||[];e.toString=function(b){var a="mixpanel";"mixpanel"!==g&&(a+="."+g);b||(a+=" (stub)");return a};e.people.toString=function(){return e.toString(1)+".people (stub)"};l="disable time_event track track_pageview track_links track_forms track_with_groups add_group set_group remove_group register register_once alias unregister identify name_tag set_config reset opt_in_tracking opt_out_tracking has_opted_in_tracking has_opted_out_tracking clear_opt_in_out_tracking people.set people.set_once people.unset people.increment people.append people.union people.track_charge people.clear_charges people.delete_user people.remove".split(" ");
for(h=0;h<l.length;h++)c(e,l[h]);var f="set set_once union unset remove delete".split(" ");e.get_group=function(){function a(c){b[c]=function(){call2_args=arguments;call2=[c].concat(Array.prototype.slice.call(call2_args,0));e.push([d,call2])}}for(var b={},d=["get_group"].concat(Array.prototype.slice.call(arguments,0)),c=0;c<f.length;c++)a(f[c]);return b};a._i.push([b,d,g])};a.__SV=1.2;b=c.createElement("script");b.type="text/javascript";b.async=!0;b.src="undefined"!==typeof MIXPANEL_CUSTOM_LIB_URL?
MIXPANEL_CUSTOM_LIB_URL:"file:"===c.location.protocol&&"//cdn4.mxpnl.com/libs/mixpanel-2-latest.min.js".match(/^\/\//)?"https://cdn4.mxpnl.com/libs/mixpanel-2-latest.min.js":"//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js";d=c.getElementsByTagName("script")[0];d.parentNode.insertBefore(b,d)}})(document,window.mixpanel||[]);
let devPort = '9000';
let devToken = 'ef061cba76a9bbc41219d6382fc12f23';
let prodToken = 'Production Token';
//If the hostname is anything other than your production domain, initialize the Mixpanel library with your Development Token
if (window.location.port.search(devPort) < 0) {
mixpanel.init(prodToken);
} else {
mixpanel.init(devToken);
}
</script>--><!-- end Mixpanel --></head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WHT4PS2"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<nav class="navbar navbar-expand-md navbar-dark fixed-top" id="primaryNav">
<a class="navbar-brand current" href="/">
<img class="suite-logo" src="/img/truffle-logomark.svg" alt="Truffle Logo" /><span class="d-none d-lg-block">TRUFFLE SUITE</span>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="collapse navbar-collapse" id="navbarsExampleDefault">
<ul class="navbar-nav ml-auto">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="suiteDropdown" href="#" data-toggle="dropdown">SUITE</a>
<div class="dropdown-menu">
<a class="text-truffle" href="/teams">
<img class="suite-logo" src="/img/tt-logomark.svg" alt="Truffle Teams Logo" /><span class="narrow">T</span>RUFFLE TEAMS
</a>
<a class="text-truffle" href="/truffle">
<img class="suite-logo" src="/img/truffle-logomark.svg" alt="Truffle Logo" /><span class="narrow">T</span>RUFFLE
</a>
<a class="text-ganache" href="/ganache">
<img class="suite-logo" src="/img/ganache-logomark.svg" alt="Ganache Logo" />Ganache
</a>
<a class="text-drizzle" href="/drizzle">
<img class="suite-logo" src="/img/drizzle-logomark.svg" alt="Drizzle Logo" />dri<span class="drizzle-z-skew-1">z</span><span class="drizzle-z-skew-2">z</span>le
</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="/docs">DOCS</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/guides">GUIDES</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/tutorial">TUTORIAL</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/boxes">BOXES</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/blog">BLOG</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/community">COMMUNITY</a>
</li>
</ul>
</div>
</nav>
<nav class="nav subnav trufflecon-subnav justify-content-end">
<a class="nav-link scroll-link" href="#speakers">Speakers</a>
<a class="nav-link scroll-link" href="#sponsors">Sponsors</a>
<a class="nav-link scroll-link" href="#schedule">Schedule</a>
<a class="nav-link scroll-link" href="#location">Location</a>
</nav>
<main role="main" class="trufflecon-content" style="position: relative;">
<div class="trufflecon-heading-funky"></div>
<div class="container-heading trufflecon-heading">
<div class="row align-items-center">
<div class="col text-center">
<h1 class="mt-4">TRUFFLEC<img src="/img/truffle-logomark.svg" alt="Truffle Logo" /><span>O</span>N</h1>
<div class="mt-4"></div>
<h2 class="mb-0">THANK YOU ATTENDEES, SPEAKERS AND SPONSORS!</h2>
<h3>AUGUST 2-4, 2019 | MICROSOFT CAMPUS | REDMOND, WA</h3>
</div>
</div>
<div class="row align-items-center justify-content-center">
<div class="col-12 col-sm-6 col-md-4 text-center">
<p class="alert alert-slides mt-3"><a class="nav-link scroll-link" href="#schedule"><i class="fas fa-projector"></i> <strong>Want to grab the slides from your favorite talks?</strong> Click here to scroll to the SCHEDULE section, then search for "slide deck" in the sidebar!</a></p>
</div>
</div>
</div>
</main>
<main class="banner banner-white-choc pb-5">
<div class="container">
<div class="row">
<div class="col-md-12">
<nav class="nav trufflecon-nav-inline justify-content-center">
<a class="nav-link scroll-link" href="#speakers">Speakers</a>
<a class="nav-link scroll-link" href="#sponsors">Sponsors</a>
<a class="nav-link scroll-link" href="#schedule">Schedule</a>
<a class="nav-link scroll-link" href="#location">Location</a>
</nav>
<h3 class="mt-6 mb-6 mx-auto text-center" style="width: 60%; letter-spacing: 1px;">A conference for those who want to build world-changing applications powered by decentralized technologies.</h3>
<h1 class="tcon-countdown color-drizzle text-center mb-4 text-lowercase"></h1>
<div class="mt-6 mb-4 mx-auto" style="text-align: center;">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" width="560" height="315" src="https://www.youtube.com/embed/m_VLN5Or_w8" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
</main>
<main class="banner banner-bright-pink pt-5 pb-5">
<div class="container">
<div class="row">
<div class="col-md-4">
<h2>What is TruffleCon?</h2>
</div>
<div class="col-md-8">
<p><strong>TruffleCon is a gathering for Truffle users, fans, developers, and those who want to build world-changing applications powered by decentralized technologies.</strong></p>
<p>Join people from around the world as we meet August 2-4 in Redmond, WA to build community and foster connections in the blockchain developer space, share tips and tricks, challenges and successes.</p>
<p>Our goal is to inspire you to build your DApps and smart contracts to bring your ideas to the world! And we'll have some fun too while we're at it. And maybe chocolate too.</p>
</div>
</div>
</div>
</main>
<div class="triangle-tr"></div>
<main class="banner banner-white-choc pt-5 pb-5">
<div class="container">
<div class="row">
<div class="col-md-12">
<h4 id="sponsors" class="text-center">Sponsored by...</h4>
<div class="row align-items-center justify-content-center text-center mb-2">
<div class="col-8 col-sm-6 col-md-3 mt-5 mt-sm-3 mb-4 mb-sm-3">
<a href="https://azure.microsoft.com/" target="blank">
<img class="img-fluid" src="/img/trufflecon/sponsors/art01-microsoft.svg" alt="Microsoft" /></a>
</div>
<div class="col-8 col-sm-6 col-md-3 mt-4 mt-sm-3 mb-4 mb-sm-3">
<a href="https://www.goquorum.com" target="blank">
<img class="img-fluid pl-4 pr-4" src="/img/trufflecon/sponsors/art22-quorum.svg" alt="Quorum" /></a>
</div>
<div class="col-8 col-sm-6 col-md-3 mt-4 mt-sm-3 mb-4 mb-sm-3">
<a href="https://www.rsk.co" target="blank">
<img class="img-fluid pb-2" style="max-width: 90%;" src="/img/trufflecon/sponsors/art16-rsk.svg" alt="rsk.svg" /></a>
</div>
<div class="col-8 col-sm-6 col-md-3 mt-4 mt-sm-3 mb-4 mb-sm-3">
<a href="https://axoni.com" target="blank">
<img class="img-fluid pl-4 pr-4 pt-2" src="/img/trufflecon/sponsors/art21-axoni.svg" alt="Axoni" /></a>
</div>
<div class="col-8 col-sm-6 col-md-3 mt-4 mt-sm-3 mb-4 mb-sm-3">
<a href="https://www.trailofbits.com" target="blank">
<img class="img-fluid" src="/img/trufflecon/sponsors/art12-tob.svg" alt="Trail of Bits" /></a>
</div>
<div class="col-8 col-sm-6 col-md-3 mt-4 mt-sm-3 mb-4 mb-sm-3">
<a href="https://www.securityinnovation.com" target="blank">
<img class="img-fluid pl-4 pr-4" src="/img/trufflecon/sponsors/art22-security-innovations-gray.svg" alt="Security Innovations" /></a>
</div>
<div class="col-8 col-sm-6 col-md-3 mt-4 mt-sm-3 mb-4 mb-sm-3">
<a href="https://www.hedera.com/" target="blank">
<img class="img-fluid pl-4 pr-4" src="/img/trufflecon/sponsors/hedera.svg" alt="Hedera Hashgraph" /></a>
</div>
<div class="col-8 col-sm-6 col-md-3 mt-4 mt-sm-3 mb-4 mb-sm-3">
<a href="https://www.thundercore.com" target="blank">
<img class="img-fluid" src="/img/trufflecon/sponsors/art20-thundercore.svg" alt="ThunderCore" /></a>
</div>
<div class="col-8 col-sm-6 col-md-3 mt-4 mt-sm-3 mb-4 mb-sm-3">
<a href="https://provable.xyz" target="blank">
<img class="img-fluid pl-4 pr-4" src="/img/trufflecon/sponsors/art14-provable.svg" alt="Provable" /></a>
</div>
<div class="col-8 col-sm-6 col-md-3 mt-4 mt-sm-3 mb-4 mb-sm-3">
<a href="http://www.mythx.io" target="blank">
<img class="img-fluid pl-4 pr-4" src="/img/trufflecon/sponsors/art18-mythx.svg" alt="MythX" /></a>
</div>
<div class="col-8 col-sm-6 col-md-3 mt-4 mt-sm-3 mb-4 mb-sm-3">
<a href="https://runtimeverification.com" target="blank">
<img class="img-fluid pl-4 pr-4" src="/img/trufflecon/sponsors/art21-runtime.svg" alt="Runtime Verification" /></a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h4 id="sponsors" class="text-center mt-4 mb-4 pt-4 pb-4">Our media partners:</h4>
<div class="row align-items-center justify-content-center text-center mb-2">
<div class="col-8 col-sm-6 col-md-3 mt-5 mt-sm-3 mb-4 mb-sm-3">
<a href="https://cryptoslate.com/" target="blank">
<img class="img-fluid media-image" src="/img/trufflecon/2019media/cryptoslate.png" alt="CryptoSlate" /></a>
</div>
<div class="col-8 col-sm-6 col-md-3 mt-5 mt-sm-3 mb-4 mb-sm-3">
<a href="https://www.rabbithole.network" target="blank">
<img class="img-fluid media-image" src="/img/trufflecon/2019media/rabbithole.png" alt="Rabbithole Network" /></a>
</div>
<div class="col-8 col-sm-6 col-md-3 mt-5 mt-sm-3 mb-4 mb-sm-3">
<a href="https://gokhshtein.com" target="blank">
<img class="img-fluid media-image" src="/img/trufflecon/2019media/gokhshtein.png" alt="Gokhshtein" /></a>
</div>
</div>
</div>
</div>
</div>
</main>
<main class="banner banner-green pt-5 pb-5">
<div class="container keynotes">
<div class="row">
<div class="col-md-12 text-center">
<h1 id="speakers" class="pt-2 mt-4 mb-4">Keynote Speakers & Special Guests</h1>
<div class="pt-2 mt-4 mb-4"></div>
</div>
</div>
<div class="row">
<div class="col-12 col-lg-6">
<div class="row align-items-start justify-content-center trufflecon-speakers featured">
<div class="col-6 col-md-4 mt-4">
<img class="img-fluid rounded-circle" src="/img/trufflecon/tim-still.jpg" alt="Marc Mercuri" />
</div>
<div class="col-xs-12 col-md-8">
<h3 class="mb-1 mt-4">Tim Coulter</h3>
<p class="mb-0">Founder and CEO</p>
<p class="mb-2 font-italic">Truffle</p>
<p>Before blockchain, Tim built a career specializing in software testing and developer support, which became extremely valuable in the early days of blockchain development. He's now surrounded by an amazing team building the next generation of blockchain development tools, and can't wait to tell you about what's to come.</p>
</div>
</div>
</div>
<div class="col-12 col-lg-6">
<div class="row align-items-start justify-content-center trufflecon-speakers featured">
<div class="col-6 col-md-4 mt-4">
<img class="img-fluid rounded-circle" src="/img/trufflecon/2019speakers/marc_mercuri.png" alt="Marc Mercuri" />
</div>
<div class="col-xs-12 col-md-8">
<h3 class="mb-1 mt-4">Marc Mercuri</h3>
<p class="mb-0">Head of Product, Blockchain Engineering, Microsoft Azure</p>
<p class="mb-2 font-italic ">Microsoft</p>
<p>Marc's career has included architecture, consulting, engineering, evangelism, and strategy leadership roles at startups, enterprises, ISVs and CSVs. He has worked in Europe, Latin America, Asia, and the United States. From this experience he brings an entrepreneurial perspective and an ability to work across the business that has been recognized by multiple awards from engineering, evangelism and sales organizations. </p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-12 col-lg-6">
<div class="row align-items-start justify-content-center trufflecon-speakers featured">
<div class="col-6 col-md-4 mt-4">
<img class="img-fluid rounded-circle" src="/img/trufflecon/2019speakers/joseph-lubin.jpg" alt="Joseph Lubin" />
</div>
<div class="col-xs-12 col-md-8">
<h3 class="mb-1 mt-4">Joseph Lubin</h3>
<p class="mb-0">Founder and CEO</p>
<p class="mb-2 font-italic ">ConsenSys</p>
<p>Joseph Lubin is a Co-Founder of Ethereum—the most superior advanced blockchain platform by size, functionality and application—and founder of ConsenSys, one of the largest and fastest-growing blockchain companies in the world.<br><br>
Named to CoinDesk’s “Most Influential in Blockchain,” Joseph co-founded the Ethereum Project and founded ConsenSys as a venture production studio focused on building developer tools and decentralized applications on the Ethereum platform.</p>
</div>
</div>
</div>
<div class="col-12 col-lg-6">
<div class="row align-items-start justify-content-center trufflecon-speakers featured">
<div class="col-6 col-md-4 mt-4">
<img class="img-fluid rounded-circle" src="https://avatars.sched.co/9/0b/4580015/avatar.jpg.320x320px.jpg?2fd" alt="Swetha Repakula" />
</div>
<div class="col-xs-12 col-md-8">
<h3 class="mb-1 mt-4">Swetha Repakula</h3>
<p class="mb-0">Hyperledger Fabric Open Source Developer</p>
<p class="mb-2 font-italic ">IBM</p>
<p>Swetha Repakula is a software engineer working in IBM’s Open Technologies division. Since late 2017, she has been working on Hyperledger Fabric, an open source blockchain platform on its EVM integration. Previously she was a full-time open source contributor for Cloud Foundry. Swetha holds a BS in electrical engineering and computer science from UC Berkeley.</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-12 col-lg-6">
<div class="row align-items-start justify-content-center trufflecon-speakers featured">
<div class="col-6 col-md-4 mt-4">
<img class="img-fluid rounded-circle" src="/img/trufflecon/2019speakers/chaitanya-konda_solution-architect_global-blockchain-innovation-at-ey.jpg" alt="Chaitanya Konda" />
</div>
<div class="col-xs-12 col-md-8">
<h3 class="mb-1 mt-4">Chaitanya Konda</h3>
<p class="mb-0">Solution Architect, Global Blockchain Innovation</p>
<p class="mb-2 font-italic ">Ernst and Young</p>
<p>Chaitanya leads the Nightfall project that enables tokenising and transferring assets privately on Ethereum. She works in the EY Blockchain R&D team working on projects such as tokenised Supply Chain with IoT and ERP integration, increasing the efficiency of transferring tokens privately using ZKP and otherwise. Prior to this role, she worked within the EY UK Financial Services practice handling projects under Data & Analytics and IT Advisory teams.</p>
</div>
</div>
</div>
<div class="col-12 col-lg-6">
<div class="row align-items-start justify-content-center trufflecon-speakers featured">
<div class="col-6 col-md-4 mt-4">
<img class="img-fluid rounded-circle" src="/img/trufflecon/2019speakers/KaranMotwaniHeadshot.png" alt="Karan Motwani" />
</div>
<div class="col-xs-12 col-md-8">
<h3 class="mb-1 mt-4">Karan Motwani</h3>
<p class="mb-0">Manager Application Development</p>
<p class="mb-2 font-italic ">Starbucks</p>
<p>Karan is an IT Leader with 19 years of experience in consulting, architecture, engineering, and strategic leadership roles. He has worked with companies from Europe, Latin America, Asia, Middle East and the United States on supply chain and finance solutions. From this experience, and hands-on Blockchain exposure, he brings an entrepreneurial perspective, and an ability to work across business and engineering on Blockchain application within Supply chain and Finance domains.</p>
</div>
</div>
</div>
</div>
</div>
</main>
<div class="triangle-tr cream"></div>
<main class="banner banner-light-cream pt-5 pb-5">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 class="link-markdown mb-4 mt-4 text-center"><a href="#speakers18" name="speakers18"><i class="fas fa-link"></i></a>TruffleCon Speakers, Presenters, and Experts</h1>
</div>
</div>
<div class="mt-4 mb-4"></div>
</div>
</main>
<main class="banner banner-light-cream pt-5 pb-5">
<div class="container" role="main">
<div class="trufflecon-speakers row mb-5">
<div class="col-6 col-lg-3 iso-item official">
<div class="position-relative">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/adrian-original.png" alt="Adrian Li" />
<img src="/img/trufflecon/2019speakers/truffle-icon1.svg" class="speaker-icon" style="max-width: 50px; border: 0;">
</div>
<h3 class="mb-1">Adrian Li</h3>
<p class="mb-0">Software Development Lead - Front-End</p>
<p class="mb-5 font-italic">Truffle</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<div class="position-relative">
<img class="rounded-circle mb-2 img-fluid" src="img/trufflecon/2019speakers/alan-krassowski-vp-of-technology-blockchain-at-kiva.jpg" alt="Alan Krassowski" />
</div>
<h3 class="mb-1">Alan Krassowski</h3>
<p class="mb-0">VP of Technology Blockchain</p>
<p class="mb-5 font-italic">Kiva</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/alejandro-banzas_product-lead-rif-directory-services-at-iov-labs.jpg" alt="Alejandro Banzas" />
<h3 class="mb-1">Alejandro Banzas</h3>
<p class="mb-0">Product Lead RIF Directory Services</p>
<p class="mb-5 font-italic">IOV Labs</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/alex-herrmann.jpg" alt="Alex Herrmann" />
<h3 class="mb-1">Alex Herrmann</h3>
<p class="mb-5 font-italic">gnosis</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/AliceTownes1.jpg" alt="Alice Townes" />
<h3 class="mb-1">Alice Townes</h3>
<p class="mb-0">Associate </p>
<p class="mb-5 font-italic">Perkins Coie, LLP</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="img/trufflecon/2019speakers/bstew-profile-1.jpeg" alt="Ben Stewart" />
<h3 class="mb-1">Ben Stewart</h3>
<p class="mb-0">Security Engineer</p>
<p class="mb-5 font-italic">Security Innovation</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="https://avatars.sched.co/3/31/8822152/avatar.jpg.320x320px.jpg?de2" alt="Bradley Mcdermott" />
<h3 class="mb-1">Bradley Mcdermott</h3>
<!-- <p class="mb-0">Developer Relations</p> -->
<p class="mb-5 font-italic">J.P. Morgan Chase</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/brantly_millegan_developer-relations-at-ethereum-name-service.jpg" alt="Brantly Millegan" />
<h3 class="mb-1">Brantly Millegan</h3>
<p class="mb-0">Developer Relations</p>
<p class="mb-5 font-italic">Ethereum Name Service</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/cal-evans.jpg" alt="Cal Evans" />
<h3 class="mb-1">Cal Evans</h3>
<p class="mb-0"></p>
<p class="mb-5 font-italic">Gresham International</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/caleteet.jpg" alt="Cale Teeter" />
<h3 class="mb-1">Cale Teeter</h3>
<p class="mb-0"></p>
<p class="mb-5 font-italic">Microsoft</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/chris-lewicki.jpg" alt="Chris Lewicki" />
<h3 class="mb-1">Chris Lewicki</h3>
<p class="mb-0">Co-Founder</p>
<p class="mb-5 font-italic">Kuiper</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/chris-segura.jpg" alt="Chris Segura" />
<h3 class="mb-1">Chris Segura</h3>
<p class="mb-0">Sr. Program Manager</p>
<p class="mb-5 font-italic">Microsoft</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/christian-crowley_ceo_at_alethio.jpg" alt="Christian Crowley" />
<h3 class="mb-1">Christian Crowley</h3>
<p class="mb-0">CEO</p>
<p class="mb-5 font-italic">Alethio</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="img/trufflecon/2019speakers/danny-pan-consultant-at-west-monroe-partners.jpg" alt="Danny Pan" />
<h3 class="mb-1">Danny Pan</h3>
<p class="mb-0">Consultant</p>
<p class="mb-5 font-italic">West Monroe Partners</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="img/trufflecon/2019speakers/david-burela_blockchain-engagement-lead_microsoft.jpg" alt="David Burela" />
<h3 class="mb-1">David Burela</h3>
<p class="mb-0">Blockchain Engagement Lead / Software Engineer</p>
<p class="mb-5 font-italic">Microsoft</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<div class="position-relative">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/david-clark-1.jpeg" alt="David Clark" />
<img src="/img/trufflecon/2019speakers/truffle-icon1.svg" class="speaker-icon" style="max-width: 50px; border: 0;">
</div>
<h3 class="mb-1">David Clark</h3>
<p class="mb-0">Global Partner Relations</p>
<p class="mb-5 font-italic">Truffle</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<div class="position-relative">
<img class="rounded-circle mb-2 img-fluid" src="https://avatars.sched.co/4/c1/8631805/avatar.jpg.320x320px.jpg?b50" alt="David Murdoch" />
<img src="/img/trufflecon/2019speakers/truffle-icon1.svg" class="speaker-icon" style="max-width: 50px; border: 0;">
</div>
<h3 class="mb-1">David Murdoch</h3>
<p class="mb-0">Software Development Lead</p>
<p class="mb-5 font-italic">Truffle</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="img/trufflecon/2019speakers/deepa-sathaye-software-engineer-at-fluidity.jpg" alt="Deepa Sathaye" />
<h3 class="mb-1">Deepa Sathaye</h3>
<p class="mb-0">Software Engineer</p>
<p class="mb-5 font-italic">Fluidity</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="img/trufflecon/2019speakers/eric-berry-founder-codefund.io.jpg" alt="Eric Berry" />
<h3 class="mb-1">Eric Berry</h3>
<p class="mb-0">Founder</p>
<p class="mb-5 font-italic">Codefund.io</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="img/trufflecon/2019speakers/erik-marks.jpg" alt="Erik Marks" />
<h3 class="mb-1">Erik Marks</h3>
<p class="mb-0">Software Engineer</p>
<p class="mb-5 font-italic">MetaMask</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/everett-hildenbrandt.jpg" alt="Everett Hildenbrandt" />
<h3 class="mb-1">Everett Hildenbrandt</h3>
<!-- <p class="mb-0">Software Engineer</p> -->
<p class="mb-5 font-italic">Runtime Verification, Inc.</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<div class="position-relative">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/fainaheadshot1.jpg" alt="Faina Shalts, Esq." />
<img src="/img/trufflecon/2019speakers/truffle-icon1.svg" class="speaker-icon" style="max-width: 50px; border: 0;">
</div>
<h3 class="mb-1">Faina Shalts, Esq.</h3>
<p class="mb-0">Blockchain Tools Engineer</p>
<p class="mb-5 font-italic">Truffle</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="img/trufflecon/2019speakers/felipe-faraggi-developer-evangelist-at-pegasys.jpg" alt="Felipe Faraggi" />
<h3 class="mb-1">Felipe Faraggi</h3>
<p class="mb-0">Developer Evangelist</p>
<p class="mb-5 font-italic">PegaSys</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/felix_leupold_software-engineer-gnosis.jpg" alt="Felix Leupold" />
<h3 class="mb-1">Felix Leupold</h3>
<p class="mb-0">Software Engineer</p>
<p class="mb-5 font-italic">Gnosis</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/ganesh-balakrishnan_chief-product-officer-of-blockchain-at-core-scientific.jpg" alt="Ganesh Balakrishnan" />
<h3 class="mb-1">Ganesh Balakrishnan</h3>
<p class="mb-0">Chief Product Officer of Blockchain</p>
<p class="mb-5 font-italic">Core Scientific</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/greg-fitzgerald.jpg" alt="Greg Fitzgerald" />
<h3 class="mb-1">Greg Fitzgerald</h3>
<p class="mb-0">Co-Founder & CTO</p>
<p class="mb-5 font-italic">Solana</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/greg-kapka-lead-ethereum-engineer-at-provable.jpg" alt="Greg Kapka" />
<h3 class="mb-1">Greg Kapka</h3>
<p class="mb-0">Lead Ethereum Engineer</p>
<p class="mb-5 font-italic">Provable</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="img/trufflecon/2019speakers/gregory-mccubbin-blockchain-developer-at-dapp-university.png" alt="Gregory McCubbin" />
<h3 class="mb-1">Gregory McCubbin</h3>
<p class="mb-0">Blockchain Developer</p>
<p class="mb-5 font-italic">Dapp University</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/grigore-rosu president-and-ceo-at-runtime-verification-inc.jpg" alt="Grigore Rosu" />
<h3 class="mb-1">Grigore Rosu</h3>
<p class="mb-0">President and CEO</p>
<p class="mb-5 font-italic">Runtime Verification, Inc.</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="https://avatars.sched.co/6/0d/8686183/avatar.jpg.320x320px.jpg?eb8" alt="Jason M. Anderson" />
<h3 class="mb-1">Jason M. Anderson</h3>
<p class="mb-0">Product Lead for Azure Blockchain Service</p>
<p class="mb-5 font-italic">Microsoft</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/jaycen-horton-co-founder-at-nori.jpg" alt="Jaycen Horton" />
<h3 class="mb-1">Jaycen Horton</h3>
<p class="mb-0">Co-Founder</p>
<p class="mb-5 font-italic">Nori</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="img/trufflecon/2019speakers/jenny-pollack-software-engineer-at-metamask.jpg" alt="Jenny Pollack" />
<h3 class="mb-1">Jenny Pollack</h3>
<p class="mb-0">Software Engineer</p>
<p class="mb-5 font-italic">MetaMask</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/joe-cutler-partner-perkins-coie-llp.jpg" alt="Joe Cutler" />
<h3 class="mb-1">Joe Cutler, ESQ.</h3>
<p class="mb-0">Partner</p>
<p class="mb-5 font-italic">Perkins Coie, LLP</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/jonathan-leslie-software-engineer-at-axoni.jpg" alt="Jonathan Leslie" />
<h3 class="mb-1">Jonathan Leslie</h3>
<p class="mb-0">Software Engineer</p>
<p class="mb-5 font-italic">Axoni</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<div class="position-relative">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/josh-1.jpg" alt="Josh Quintal" />
<img src="/img/trufflecon/2019speakers/truffle-icon1.svg" class="speaker-icon" style="max-width: 50px; border: 0;">
</div>
<h3 class="mb-1">Josh Quintal</h3>
<p class="mb-0">Head of Product & Design</p>
<p class="mb-5 font-italic">Truffle</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/joshua-mobley-software-engineer-at-kaleido.jpg" alt="Joshua Mobley" />
<h3 class="mb-1">Joshua Mobley</h3>
<p class="mb-0">Software Engineer</p>
<p class="mb-5 font-italic">Kaleido</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/josselin-feist-tob.png" alt="Josselin Feist" />
<h3 class="mb-1">Josselin Feist</h3>
<p class="mb-0">Senior Security Engineer</p>
<p class="mb-5 font-italic">Trail of Bits</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="https://avatars.sched.co/5/34/8635424/avatar.jpg.320x320px.jpg?68c" alt="Julien Klepatch" />
<h3 class="mb-1">Julien Klepatch</h3>
<p class="mb-0">Full Stack Ethereum / Solidity Software Engineer</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/julien-tregoat-from-thundercore.jpg" alt="Julien Tregoat" />
<h3 class="mb-1">Julien Tregoat</h3>
<p class="mb-5 font-italic">ThunderCore</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/justin-wu-founder-at-coinstate.png" alt="Justin Wu" />
<h3 class="mb-1">Justin Wu</h3>
<p class="mb-0">Founder</p>
<p class="mb-5 font-italic">CoinState</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/ken-anderson.jpg" alt="Ken Anderson" />
<h3 class="mb-1">Ken Anderson</h3>
<p class="mb-0">Chief Developer Advocate</p>
<p class="mb-5 font-italic">Hedera</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<div class="position-relative">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/kevin-bluer2.jpg" alt="Kevin Bluer" />
<img src="/img/trufflecon/2019speakers/truffle-icon1.svg" class="speaker-icon" style="max-width: 50px; border: 0;">
</div>
<h3 class="mb-1">Kevin Bluer</h3>
<p class="mb-0">Head of Curriculum & Training</p>
<p class="mb-5 font-italic">Truffle</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/kevin-owocki.jpg" alt="Kevin Owocki" />
<h3 class="mb-1">Kevin Owocki</h3>
<p class="mb-0">Founder</p>
<p class="mb-5 font-italic">GitCoin</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/kristy-leigh-anne-minehan-cto-at-core-scientific.jpg" alt="Kristy-Leigh Anne Minehan" />
<h3 class="mb-1">Kristy-Leigh Anne Minehan</h3>
<p class="mb-0">CTO</p>
<p class="mb-5 font-italic">Core Scientific</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/laura-jehl-partner-at-bakerhostetler.png" alt="Laura Jehl" />
<h3 class="mb-1">Laura Jehl, ESQ.</h3>
<p class="mb-0">Partner</p>
<p class="mb-5 font-italic">BakerHostetler</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="https://avatars.sched.co/8/e7/8822147/avatar.jpg.320x320px.jpg?2dd" alt="Libby Kent" />
<h3 class="mb-1">Libby Kent</h3>
<!-- <p class="mb-0">Partner</p> -->
<p class="mb-5 font-italic">J.P. Morgan Chase</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/marley-gray.jpg" alt="Marley Gray" />
<h3 class="mb-1">Marley Gray</h3>
<p class="mb-0">Principal Architect - Azure Blockchain</p>
<p class="mb-5 font-italic">Microsoft</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/michael-carter-principal-solutions-architect-blockchain-at-general-dynamics-it.jpg" alt="Michael Carter" />
<h3 class="mb-1">Michael Carter</h3>
<p class="mb-0">Principal Solutions Architect Blockchain</p>
<p class="mb-5 font-italic">General Dynamics IT</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/michael-lewellen-director-of-technology-at-tarski-technologies.jpg" alt="Michael Lewellen" />
<h3 class="mb-1">Michael Lewellen</h3>
<p class="mb-0">Director of Technology</p>
<p class="mb-5 font-italic">Tarski Technology</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<div class="position-relative">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/seese2.jpg" alt="Mike Seese" />
<img src="/img/trufflecon/2019speakers/truffle-icon1.svg" class="speaker-icon" style="max-width: 50px; border: 0;">
</div>
<h3 class="mb-1">Mike Seese</h3>
<p class="mb-0">Technical Lead for Truffle Teams</p>
<p class="mb-5 font-italic">Truffle</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<div class="position-relative">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/gnidan1.jpg" alt="Nick D'Andrea" />
<img src="/img/trufflecon/2019speakers/truffle-icon1.svg" class="speaker-icon" style="max-width: 50px; border: 0;">
</div>
<h3 class="mb-1">Nick D'Andrea</h3>
<p class="mb-0">Head of Engineering</p>
<p class="mb-5 font-italic">Truffle</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/nick-gaski-software-engineer-at-kaleido.png" alt="Nick Gaski" />
<h3 class="mb-1">Nick Gaski</h3>
<p class="mb-0">Client Enablement</p>
<p class="mb-5 font-italic">Kaleido</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<div class="position-relative">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/nick-p-square.jpg" alt="Nick Paterno" />
<img src="/img/trufflecon/2019speakers/truffle-icon1.svg" class="speaker-icon" style="max-width: 50px; border: 0;">
</div>
<h3 class="mb-1">Nick Paterno</h3>
<p class="mb-0">Blockchain Developer & Engineer</p>
<p class="mb-5 font-italic">Truffle</p>
</div>
<!--div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="img/trufflecon/2019speakers/omna.png" alt="Omna Toshniwal" />
<h3 class="mb-1">Omna Toshniwal</h3>
<p class="mb-0">Design Researcher</p>
<p class="mb-5 font-italic">MetaMask</p>
</div-->
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/patrick-gallagher-developer-at-terminal.jpg" alt="Patrick Gallagher" />
<h3 class="mb-1">Patrick Gallagher</h3>
<p class="mb-0">Developer</p>
<p class="mb-5 font-italic">Terminal</p>
</div>
<!--
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/patrick-south.jpg" alt="Patrick South" />
<h3 class="mb-1">Patrick South</h3>
<p class="mb-0">Vice President of Development</p>
<p class="mb-5 font-italic">Chamber of Digital Commerce</p>
</div>
-->
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/robert-a-musiala-jr-blockchain-counsel-at-baker-hostetler.jpg" alt="Robert A. Musiala Jr." />
<h3 class="mb-1">Robert A. Musiala Jr. Esq.</h3>
<p class="mb-0">Blockchain Counsel</p>
<p class="mb-5 font-italic">BakerHostetler</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/robert-magier-independent-consultant.jpg" alt="Robert Magier" />
<h3 class="mb-1">Robert Magier</h3>
<p class="mb-0">Independant Consultant</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/roman-storm.jpg" alt="Roman Storm" />
<h3 class="mb-1">Roman Storm</h3>
<p class="mb-0">Blockchain Consulting</p>
<p class="mb-5 font-italic">peppersec.com</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/ron-resnick_executive-director-at-eea.jpg" alt="Ron Resnick" />
<h3 class="mb-1">Ron Resnick</h3>
<p class="mb-0">Executive Director</p>
<p class="mb-5 font-italic">Enterprise Ethereum Alliance</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/rosco-kalis-software-engineer-at-bitcoin.com.jpg" alt="Rosco Kalis" />
<h3 class="mb-1">Rosco Kalis</h3>
<p class="mb-0">Software Engineer</p>
<p class="mb-5 font-italic">Bitcoin.com</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<div class="position-relative">
<img class="rounded-circle mb-2 img-fluid" src="https://avatars.sched.co/d/d1/7866663/avatar.jpg.320x320px.jpg?26f" alt="Scott Olson" />
<img src="/img/trufflecon/2019speakers/truffle-icon1.svg" class="speaker-icon" style="max-width: 50px; border: 0;">
</div>
<h3 class="mb-1">Scott Olson</h3>
<p class="mb-0">Director of Talent, Acquisition</p>
<p class="mb-5 font-italic">Truffle</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<div class="position-relative">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/shay-zee.jpg" alt="Shay Magro" />
<img src="/img/trufflecon/2019speakers/truffle-icon1.svg" class="speaker-icon" style="max-width: 50px; border: 0;">
</div>
<h3 class="mb-1">Shay Magro</h3>
<p class="mb-0">Director of UX/UI</p>
<p class="mb-5 font-italic">Truffle</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="img/trufflecon/2019speakers/shuvendu-lahiri-microsoft.jpg" alt="Shuvendu Lahiri" />
<h3 class="mb-1">Shuvendu Lahiri</h3>
<p class="mb-0">Microsoft Research, Principal Researcher</p>
<p class="mb-5 font-italic">Microsoft</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/thomas-hodges-integration-engineer-at-chainlink.jpg" alt="Thomas Hodges" />
<h3 class="mb-1">Thomas Hodges</h3>
<p class="mb-0">Integration Engineer</p>
<p class="mb-5 font-italic">Chainlink</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/tim-myers.png" alt="Tim Myers" />
<h3 class="mb-1">Tim Myers</h3>
<p class="mb-0">Senior Systems Engineer</p>
<p class="mb-5 font-italic">Infura</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/tom-lindeman-co-founder-at-consensys-diligence-and-mythx.png" alt="Tom Lindeman" />
<h3 class="mb-1">Tom Lindeman</h3>
<p class="mb-0">Co-Founder</p>
<p class="mb-5 font-italic">ConsenSys Diligence and MythX</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="https://avatars.sched.co/6/6c/8611826/avatar.jpg.320x320px.jpg?6c4" alt="Trent Shupe" />
<h3 class="mb-1">Trent Shupe</h3>
<p class="mb-0">Product Marketing Manager</p>
<p class="mb-5 font-italic">Kaleido</p>
</div>
<div class="col-6 col-lg-3 iso-item official">
<img class="rounded-circle mb-2 img-fluid" src="/img/trufflecon/2019speakers/whitney_griffith.jpg" alt="Whitney Griffith" />
<h3 class="mb-1">Whitney Griffith</h3>
<p class="mb-0">Commercial Software Engineer</p>
<p class="mb-5 font-italic">Microsoft</p>
</div>
</div>
</div>
</main>
<div class="triangle-br"></div>
<main class="banner banner-burnt-orange pt-5 pb-5">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 class="text-center mb-4" id="schedule">Schedule</h2>
</div>
<div class="col-md-12">
<div class="row">
<div class="col-md-12">
<!-- <h3 class="mb-0">Friday, Aug 2, 2019: Hands-On Workshops</h3>
<small class="mt-0 mb-4 choc">Microsoft Building 33 | 16070 NE 36th Way, Redmond, WA 98052</small>
<div class="mt-4 mb-4"></div>
<div class="row">
<div class="col-xs-6 col-sm-6 col-md-6 col-lg-5">9:00am - 12:30pm</div>
<div class="col-xs-6 col-sm-6 col-md-6 col-lg-7">Morning Workshops</div>
</div>
<div class="mt-4 mb-4 d-sm-none d-xs-none"></div>
<div class="row">
<div class="col-xs-6 col-sm-6 col-md-6 col-lg-5">12:30pm - 1:30pm</div>
<div class="col-xs-6 col-sm-6 col-md-6 col-lg-7">Break for Lunch</div>
</div>
<div class="mt-4 mb-4 d-sm-none d-xs-none"></div>
<div class="row">
<div class="col-xs-6 col-sm-6 col-md-6 col-lg-5">1:30pm - 4:00pm</div>
<div class="col-xs-6 col-sm-6 col-md-6 col-lg-7">Afternoon Workshops</div>
</div>
<div class="mt-4 mb-4 d-sm-none d-xs-none"></div>
<div class="row">
<div class="col-xs-6 col-sm-6 col-md-6 col-lg-5">4:00pm - 6:00pm</div>
<div class="col-xs-6 col-sm-6 col-md-6 col-lg-7">Office hours with workshop presenters</div>
</div>
<div class="mt-4 mb-4"></div>
<h3 class="mb-0">Saturday, Aug 3, 2019: Plenary Session & Breakout Sessions</h3>
<small class="mt-0 mb-4 choc">Microsoft Building 33 | 16070 NE 36th Way, Redmond, WA 98052</small>
<div class="mt-4 mb-4"></div>
<div class="row">
<div class="col-xs-6 col-sm-6 col-md-6 col-lg-5">9:00am - 12:30pm</div>
<div class="col-xs-6 col-sm-6 col-md-6 col-lg-7">Plenary Session & Hackathon Announced</div>
</div>
<div class="mt-4 mb-4 d-sm-none d-xs-none"></div>
<div class="row">
<div class="col-xs-6 col-sm-6 col-md-6 col-lg-5">12:30pm - 1:30pm</div>
<div class="col-xs-6 col-sm-6 col-md-6 col-lg-7">Break for Lunch</div>
</div>
<div class="mt-4 mb-4 d-sm-none d-xs-none"></div>
<div class="row">
<div class="col-xs-6 col-sm-6 col-md-6 col-lg-5">1:30pm - 4:00pm</div>
<div class="col-xs-6 col-sm-6 col-md-6 col-lg-7">Breakout Sessions, Lightning Talks, Panel Discussions, and Community Connections</div>
</div>
<div class="mt-4 mb-4 d-sm-none d-xs-none"></div>
<div class="row">