-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex-old.html
1850 lines (1810 loc) · 98.8 KB
/
index-old.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 lang="en">
<head>
<title>Hampton Roads DevFest</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="msvalidate.01" content="752D230AA25841CB1F4A26F85AD18EC3"/>
<meta name="description"
content="Hampton Roads DevFest is a technology conference focused on giving software engineers in the eastern Virginia region exposure to new technology innovations and practices.">
<meta name="keywords"
content="developer festival,conference,Virginia Beach,Norfolk,software engineer,programming,learning,education,code camp,devfest"/>
<meta name="robots" content="index,follow"/>
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<!--== CSS Files ==-->
<link href="css/bootstrap.css" rel="stylesheet" media="screen">
<link href="css/style.css" rel="stylesheet" media="screen">
<link href="css/animate.min.css" rel="stylesheet" media="screen">
<link href="css/font-awesome.css" rel="stylesheet" media="screen">
<link href="css/flexslider.css" rel="stylesheet" media="screen">
<link href="css/fancySelect.css" rel="stylesheet" media="screen">
<link href="css/owl.carousel.css" rel="stylesheet" media="screen">
<link href="css/responsive.css" rel="stylesheet" media="screen">
<!--<link href="css/tito.css" rel="stylesheet" media="screen">-->
<link rel="stylesheet" type="text/css" href='https://css.tito.io/v1.1'/>
<!--== Google Fonts ==-->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600,700,400italic' rel='stylesheet'
type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700' rel='stylesheet' type='text/css'>
<!-- ti.to ticket widget -->
<script src="https://js.tito.io/v1" async></script>
<!-- Facebook Pixel Code -->
<script>
!function (f, b, e, v, n, t, s) {
if (f.fbq) return;
n = f.fbq = function () {
n.callMethod ? n.callMethod.apply(n, arguments) : n.queue.push(arguments)
};
if (!f._fbq) f._fbq = n;
n.push = n;
n.loaded = !0;
n.version = '2.0';
n.queue = [];
t = b.createElement(e);
t.async = !0;
t.src = v;
s = b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t, s)
}(window,
document,
'script',
'//connect.facebook.net/en_US/fbevents.js');
fbq('init', '905799449509713');
fbq('track', "PageView");
</script>
<noscript>
<img height="1" width="1" style="display: none"
src="https://www.facebook.com/tr?id=905799449509713&ev=PageView&noscript=1"/>
</noscript>
<!-- End Facebook Pixel Code -->
<!-- Facebook Conversion Code for Key Page Views - Hampton Roads DevFest -->
<script>
(function () {
var _fbq = window._fbq || (window._fbq = []);
if (!_fbq.loaded) {
var fbds = document.createElement('script');
fbds.async = true;
fbds.src = '//connect.facebook.net/en_US/fbds.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(fbds, s);
_fbq.loaded = true;
}
})();
window._fbq = window._fbq || [];
window._fbq.push(['track', '6031223744448', {'value': '0.00', 'currency': 'USD'}]);
</script>
<noscript>
<img height="1" width="1" alt="" style="display: none"
src="https://www.facebook.com/tr?ev=6031223744448&cd[value]=0.00&cd[currency]=USD&noscript=1"/>
</noscript>
</head>
<body>
<div id="home"></div>
<header id="header" class="header" data-stellar-ratio="0.5">
<!--== Preloader ==-->
<div id="preloader">
<div class="preloader"></div>
</div>
<!--== Caption ==-->
<div class="header-caption" data-stellar-ratio="2">
<div class="container">
<div class="box">
<h1>Hampton Roads <br/>DevFest
</h1>
<span class="typed"></span>
</div>
</div>
</div>
<!--== Header Background ==-->
<div id="header-background" class="header-background">
<ul class="slides">
<li>
<img src="images/bg-slide-01.jpg" alt="Slide 1">
</li>
<li>
<img src="images/bg-slide-02.jpg" alt="Slide 2">
</li>
<li>
<img src="images/bg-slide-03.jpg" alt="Slide 3">
</li>
<li>
<img src="images/bg-slide-04.jpg" alt="Slide 3">
</li>
<li>
<img src="images/bg-slide-05.jpg" alt="Slide 3">
</li>
<li>
<img src="images/bg-slide-06.jpg" alt="Slide 3">
</li>
<li>
<img src="images/bg-slide-07.jpg" alt="Slide 3">
</li>
</ul>
</div>
</header>
<div id="navigation-wrap" class="navigation-wrap">
<div id="navigation" class="navigation">
<div class="container">
<nav class="navbar navbar-custom" role="navigation">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#menu">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="#register" class="register">Buy Tickets</a>
</div>
<!--== Site Menu ==-->
<div class="collapse navbar-collapse" id="menu">
<ul class="nav navbar-nav">
<li class="active">
<a href="#home">Home</a>
</li>
<li>
<a href="#news">News</a>
</li>
<li>
<a href="#schedule">Schedule</a>
</li>
<li>
<a href="#speakers">Speakers</a>
</li>
<li>
<a href="#location">Location</a>
</li>
<li>
<a href="#partners">Partners</a>
</li>
<li>
<a href="#register">FAQ</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
</div>
<div class="container content">
<!--===============================-->
<!--== About ======================-->
<!--===============================-->
<section id="about">
<div class="row">
<div class="col-sm-12 col-md-2">
<div class="logo-image">
<img src="images/devfest-logo-icon-185x151.png" alt="Hampton Roads DevFest">
</div>
</div>
<div class="col-sm-12 col-md-8">
<h4>Grow Your Knowledge, Sharpen Your Skills. DevFest is back for 2017!</h4>
<p>Hampton Roads DevFest is a technology conference on <strong>Friday, Nov. 10th</strong> focused on
giving software engineers in the region exposure to new innovations and best practices.
</p>
<p>This fun packed conference will showcase numerous topics relevant to software developers for
expanding your toolbox while networking with your peers. This year's conference will have a
dedicated geek out room to have fun with some toys!</p>
<p>This event is in coordination with Google's DevFest season and support.</p>
<img src="images/partners/google-developers-logo.png" alt="Google Developers" style="width: 100%"/>
<!--<h3>Checkout Our Keynote Interview!</h3>-->
<!--<iframe width="560" height="315" src="https://www.youtube.com/embed/J5vov9TuNOU" frameborder="0" allowfullscreen></iframe>-->
</div>
<div class="col-xs-12 col-md-2">
<div class="number wow bounceIn" data-wow-duration="0.8s" data-wow-delay="0.5s">
<b class="accent">150</b>
Attendees
</div>
<div class="number wow bounceIn" data-wow-duration="0.8s" data-wow-delay="0.5s">
<b class="accent">13</b>
Sessions
</div>
</div>
</div>
</section>
<!--==========-->
<!--===============================-->
<!--== News =======================-->
<!--===============================-->
<section id="news" class="wow bounceInUp" data-wow-duration="0.8s" data-wow-delay="0.1s">
<div class="row">
<div class="col-md-12">
<div class="section-header text-left">
<h2>Latest <b>news</b>
</h2>
<p>Below are a few of the latest happenings. Stay informed on <a
href="https://www.twitter.com/hrdevfest" target="_blank">Twitter</a> or in the hrdevfest
channel in the 757Dev slack.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<ul class="news-list">
<li class="news">
<span class="news-date">Nov 9</span>
<h4>Talk Reversi panelists revealed.</h4>
</li>
<li class="news">
<span class="news-date">Sep 28</span>
<h4>Speakers and Sessions determined.</h4>
</li>
<li class="news">
<span class="news-date">Sep 18</span>
<h4>Call for speakers has closes. Stay tuned for the lineup this week...</h4>
</li>
<li class="news">
<span class="news-date">Sep 15</span>
<h4>Ticket sales open.</h4>
</li>
<li class="news">
<span class="news-date">Sep 11</span>
<h4>Chesapeake Conference Center chosen as location.</h4>
</li>
<li class="news">
<span class="news-date">Aug 11</span>
<h4>Call for speakers opens.</h4>
</li>
</ul>
</div>
</div>
</section>
<!--==========-->
<!--===============================-->
<!--== Schedule ===================-->
<!--===============================-->
<section id="schedule" class="wow bounceInUp" data-wow-duration="0.8s" data-wow-delay="0.1s">
<div class="row">
<div class="col-sm-12">
<div class="section-header text-left">
<h2>The <b>schedule</b>
</h2>
<p>Friday, November 10th 8:00am - 5:30pm</p>
<!--<p>Stay tuned for session updates after the speaker order is chosen...</p>-->
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="content-tabs">
<ul class="nav nav-tabs">
<li class="active">
<a href="#tab1" data-toggle="tab">Room 1</a>
</li>
<li>
<a href="#tab2" data-toggle="tab">Room 2</a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane fade in active" id="tab1">
<ul class="accordion">
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
8<sup>00</sup>
</span>
<h4 class="accordion-title">Registration & Breakfast</h4>
</a>
<div class="accordion-body">
<p>
Registration for attendees and complimentary breakfast. Please bring your
ticket confirmation.
</p>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
9<sup>00</sup>
</span>
<div class="schedule-speaker">
<img src="images/speakers/kevin-curry.png" alt="Speaker">
</div>
<h4 class="accordion-title">Keynote - (Kevin Curry)</h4>
</a>
<div class="accordion-body">
<p>
Opening remarks for the conference start and keynote presentation by Kevin Curry.
</p>
<p>
Kevin is a native resident of Virginia Beach and a graduate of Virginia Tech (B.A. History '92, M.S. Computer Science '99) where he studied human-computer interaction in VR. He's a co-founder and former Chief Scientist at <a href="http://www.bridgeborn.com/">Bridgeborn</a>, and current a Managing Partner and Chief Technology Officer of <a href="https://www.comparityins.com/">Comparity</a>. Kevin is also an active volunteer for <a href="https://www.codeforamerica.org/">Code for America</a>, and co-organizes the local chapter <a href="http://www.code4hr.org/">Code for Hampton Roads</a>. He'll talk about why he codes for Hampton Roads and why you should use your skills to make your cities and communities better.
</p>
<a href="https://twitter.com/kmcurry" target="_blank">@kmcurry</a><br/>
<a href="https://www.linkedin.com/in/kevincurry"
target="_blank">LinkedIn</a><br/>
<a href="http://about.me/kevincurry" target="_blank">about.me</a>
<div class="schedule-speaker-list">
<b>Speakers:</b>
<div class="schedule-speaker">
<img src="images/speakers/kevin-curry.png" alt="Speaker">
<h4>Kevin Curry</h4>
</div>
</div>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
10<sup>00</sup>
</span>
<div class="schedule-speaker">
<img src="images/speakers/marla-schuchman.jpg" alt="Speaker">
</div>
<h4 class="accordion-title">Talk Reversi (Marla Schuchman)</h4>
</a>
<div class="accordion-body">
<p>
This talk involves a group of policy makers and other business leaders from
around the region invited for an open forum discussion where the audience is
asked the questions and the panel sits and listens.
The topic will focus on three items: jobs/employment conditions, regional
connectivity, and resources needed to grow/support the tech community.
</p>
<p>
<strong>Panelists:</strong> <em>Amber Boehnlein (Jefferson Labs),
Kevin Boger (Ferguson),
Drew Lumpkin (Senator Warner's Office),
Shakir Johnson (Newport News Economic Development),
Raymond White (Virginia Beach Economic Development)</em>
</p>
<p>
Marla Schuchman has spent nearly a decade assisting startups and technology
companies to launch new products and services.
She has worked with national and international companies including ARX
(acquired by Docusign), Wix, and Virginia Beach based 7 Cups of Tea.
Her consulting firm, Three Sheep, works with early-stage entrepreneurs and
small business owners on everything from prototyping to pitching investors.
Marla is deeply involved with regional efforts to facilitate new business
growth through startup pitch competitions, accelerator and incubator
programs.
She is a Mentor for The Founder's Institute at 1701 Virginia Beach, and
teaches at Thomas Nelson Community College and the Virginia Beach Public
Library.
Marla holds a Bachelors of Science degree in Communication Studies, and a
Masters of Science in Technology Management, both from NYU.
She lives in York County with her husband and their son.
</p>
<div class="schedule-speaker-list">
<b>Speakers:</b>
<div class="schedule-speaker">
<img src="images/speakers/marla-schuchman.jpg" alt="Speaker">
<h4>Marla Schuchman</h4>
</div>
<div class="schedule-speaker">
<img src="images/speakers/female-silhouette.jpg" alt="Speaker">
<h4>Amber Boehnlein</h4>
</div>
<div class="schedule-speaker">
<img src="images/speakers/male-silhouette.jpg" alt="Speaker">
<h4>Kevin Boger</h4>
</div>
<div class="schedule-speaker">
<img src="images/speakers/male-silhouette.jpg" alt="Speaker">
<h4>Drew Lumpkin</h4>
</div>
<div class="schedule-speaker">
<img src="images/speakers/male-silhouette.jpg" alt="Speaker">
<h4>Shakir Johnson</h4>
</div>
<div class="schedule-speaker">
<img src="images/speakers/male-silhouette.jpg" alt="Speaker">
<h4>Raymond White</h4>
</div>
</div>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
11<sup>00</sup>
</span>
<div class="schedule-speaker">
<img src="images/speakers/michael-rollins.jpg" alt="Speaker">
</div>
<h4 class="accordion-title">The Beauty of the Actor Pattern in Multi-threaded iOS (Mike Rollins)</h4>
</a>
<div class="accordion-body">
<p>
Threads in iOS can be a bear. But the adoption of the right pattern can help tame the beast.
At Flurry, we've used the Actor pattern to help us with the continual need to build bulletproof code without impeding on the needs of the developer.
</p>
<p>
About Mike: I have done it all, from backend work, web services, front end JS before the
great JS revolution (back in the days of ExtJS). I teethed on gov't
contracting here locally, then made the jump to Silicon Valley and Flurry as
a remote worker. Now, I'm a mobile engineer focusing on developer and
partner relations, a rare breed of engineer that speaks to the outside world
and loves every second of it.
</p>
<a href="https://twitter.com/rollinsio" target="_blank">@rollinsio</a><br/>
<a href="https://www.linkedin.com/in/rollinsmichael"
target="_blank">LinkedIn</a><br/>
<a href="http://rollins.io/" target="_blank">http://rollins.io/</a>
<div class="schedule-speaker-list">
<b>Speakers:</b>
<div class="schedule-speaker">
<img src="images/speakers/michael-rollins.jpg" alt="Speaker">
<h4>Michael Rollins</h4>
</div>
</div>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
12<sup>00</sup>
</span>
<h4 class="accordion-title">Lunch</h4>
</a>
<div class="accordion-body">
<p>
Complimentary lunch in the main conference area.
</p>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
1<sup>00</sup>
</span>
<div class="schedule-speaker">
<img src="images/speakers/stanley-zheng.jpg" alt="Speaker">
</div>
<h4 class="accordion-title">Leveraging Kubernetes for everyone (Stanley Zheng)</h4>
</a>
<div class="accordion-body">
<p>
Kuberetes is an container orchestration technology that can help you deliver services to your users faster and more robustly.
Home has been leveraging kubernetes to develop and run micro services. Kubernetes ecosystem is full of terminology and jargon but it still uses the same ways we been shipping software for years.
We will go over how to get started with running containers to going to production with kubernetes.
</p>
<p>
Stanley Zheng is a Software Developer from Norfolk, VA. His two main goto languages are JavaScript and Python.
Outside of code, he enjoys biking and practicing yoga. Currently, he's developer at homes.com where they're rebuilding their software stack in an exciting way!
</p>
<a href="https://twitter.com/stanzheng" target="_blank">@stanzheng</a><br/>
<a href="https://www.linkedin.com/in/stanley-zheng/" target="_blank">LinkedIn</a>
<div class="schedule-speaker-list">
<b>Speakers:</b>
<div class="schedule-speaker">
<img src="images/speakers/stanley-zheng.jpg" alt="Speaker">
<h4>Stanley Zheng</h4>
</div>
</div>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
2<sup>00</sup>
</span>
<div class="schedule-speaker">
<img src="images/speakers/robert-chrzanowski.jpg" alt="Speaker">
</div>
<h4 class="accordion-title">Writing Haskell in YOUR Favorite Language (Robert Chrzanowski)</h4>
</a>
<div class="accordion-body">
<p>
Ever wonder how to write pure programs that still do something useful other than warm the room?
Well, it's your lucky day; the Haskell programming language has you covered.
But you say you must use language X. No problem, I'll show you how to stay pure in your favorite language (Kotlin)!
</p>
<p>
Robert Chrzanowski is a mobile software engineer for Outsite Networks.
His passion is in learning new programming paradigms, climbing out of Turing tarpits and building robots.
He lives with is wife Michelle and cats Clover, Moe and Diablo.
</p>
<a href="https://twitter.com/Robert_Chrzanow" target="_blank">@Robert_Chrzanow</a><br/>
<a href="https://www.linkedin.com/in/robert-chrzanowski-a979a850/" target="_blank">LinkedIn</a>
<div class="schedule-speaker-list">
<b>Speakers:</b>
<div class="schedule-speaker">
<img src="images/speakers/robert-chrzanowski.jpg" alt="Speaker">
<h4>Robert Chrzanowski</h4>
</div>
</div>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
3<sup>00</sup>
</span>
<div class="schedule-speaker">
<img src="images/speakers/greg-norman.jpg" alt="Speaker">
</div>
<h4 class="accordion-title">Building Baymax - Creating a Health Care Companion with Google Assistant (Greg Norman)</h4>
</a>
<div class="accordion-body">
<p>
Home assistant devices like Amazon Alexa and Google Home are fun and useful, but also have the potential to reshape the lives of their users - especially those with physical impairments and health needs.
In this talk we'll look at the opportunities these devices offer to become more than a piece of hardware on a table, and how we can specifically leverage the Google Assistant platform to better understand ourselves.
</p>
<p>
Greg Norman is a web consultant and software developer with 19 years of experience, who builds awesome web apps and sites for clients while also hacking his own health in his free time. He focuses on helping clients make more money while also helping other developers figure out how to succeed in spite of adversity.
</p>
<a href="https://twitter.com/Raelshark" target="_blank">@raelshark</a>
<div class="schedule-speaker-list">
<b>Speakers:</b>
<div class="schedule-speaker">
<img src="images/speakers/greg-norman.jpg" alt="Speaker">
<h4>Greg Norman</h4>
</div>
</div>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
4<sup>00</sup>
</span>
<div class="schedule-speaker">
<img src="images/speakers/kevin-jones.jpg" alt="Speaker">
</div>
<h4 class="accordion-title">Building a career in security (Kevin Jones)</h4>
</a>
<div class="accordion-body">
<p>
Building a career in information security can be difficult. We'll discuss my adventure building a career in information security, what worked great for me, and what didn't work so great for me. Here we'll try and understand exactly what "security" is, and what options people have if they want to push their career in that direction.
</p>
<p>
Kevin Jones has been an Information Security developer and consultant for over 10 years. He has helped organizations build secure infrastructure, code analysis, and achieve compliance with the payment card industry, federal information processing standards, and others. He is also a Microsoft Developer MVP and has been involved in the development community with .NET, Security, and Ruby.
</p>
<a href="https://twitter.com/vcsjones" target="_blank">@vcsjones</a>
<!--<a href="http://www.seesharprun.net"-->
<!--target="_blank">http://www.seesharprun.net</a>-->
<div class="schedule-speaker-list">
<b>Speakers:</b>
<div class="schedule-speaker">
<img src="images/speakers/kevin-jones.jpg" alt="Speaker">
<h4>Kevin Jones</h4>
</div>
</div>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
5<sup>00</sup>
</span>
<h4 class="accordion-title">Closing remarks & Raffle</h4>
</a>
<div class="accordion-body">
<p>
Closing remarks for the conference end and raffle time! Remarks from swag
sponsor.
</p>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
5<sup>30</sup>
</span>
<h4 class="accordion-title">Happy Hour</h4>
</a>
<div class="accordion-body">
<p>
Happy Hour location TBD.
</p>
</div>
</li>
</ul>
</div>
<div class="tab-pane fade" id="tab2">
<ul class="accordion">
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
8<sup>00</sup>
</span>
<h4 class="accordion-title">Registration & Breakfast</h4>
</a>
<div class="accordion-body">
<p>
Registration for attendees and complimentary breakfast. Please bring your
ticket confirmation.
</p>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
9<sup>00</sup>
</span>
<div class="schedule-speaker">
<img src="images/speakers/kevin-curry.png" alt="Speaker">
</div>
<h4 class="accordion-title">Keynote - (Kevin Curry)</h4>
</a>
<div class="accordion-body">
<p>
Opening remarks for the conference start and keynote presentation by Kevin Curry.
</p>
<p>
Kevin is a native resident of Virginia Beach and a graduate of Virginia Tech (B.A. History '92, M.S. Computer Science '99) where he studied human-computer interaction in VR. He's a co-founder and former Chief Scientist at <a href="http://www.bridgeborn.com/">Bridgeborn</a>, and current a Managing Partner and Chief Technology Officer of <a href="https://www.comparityins.com/">Comparity</a>. Kevin is also an active volunteer for <a href="https://www.codeforamerica.org/">Code for America</a>, and co-organizes the local chapter <a href="http://www.code4hr.org/">Code for Hampton Roads</a>. He'll talk about why he codes for Hampton Roads and why you should use your skills to make your cities and communities better.
</p>
<a href="https://twitter.com/kmcurry" target="_blank">@kmcurry</a><br/>
<a href="https://www.linkedin.com/in/kevincurry"
target="_blank">LinkedIn</a><br/>
<a href="http://about.me/kevincurry" target="_blank">about.me</a>
<div class="schedule-speaker-list">
<b>Speakers:</b>
<div class="schedule-speaker">
<img src="images/speakers/kevin-curry.png" alt="Speaker">
<h4>Kevin Curry</h4>
</div>
</div>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
10<sup>00</sup>
</span>
<div class="schedule-speaker">
<img src="images/speakers/marla-schuchman.jpg" alt="Speaker">
</div>
<h4 class="accordion-title">Talk Reversi (Marla Schuchman)</h4>
</a>
<div class="accordion-body">
<p>
This talk involves a group of policy makers and other business leaders from
around the region invited for an open forum discussion where the audience is
asked the questions and the panel sits and listens.
The topic will focus on three items: jobs/employment conditions, regional
connectivity, and resources needed to grow/support the tech community.
</p>
<p>
<strong>Panelists:</strong> <em>Amber Boehnlein (Jefferson Labs),
Kevin Boger (Ferguson),
Drew Lumpkin (Senator Warner's Office),
Shakir Johnson (Newport News Economic Development),
Raymond White (Virginia Beach Economic Development)</em>
</p>
<p>
Marla Schuchman has spent nearly a decade assisting startups and technology
companies to launch new products and services.
She has worked with national and international companies including ARX
(acquired by Docusign), Wix, and Virginia Beach based 7 Cups of Tea.
Her consulting firm, Three Sheep, works with early-stage entrepreneurs and
small business owners on everything from prototyping to pitching investors.
Marla is deeply involved with regional efforts to facilitate new business
growth through startup pitch competitions, accelerator and incubator
programs.
She is a Mentor for The Founder's Institute at 1701 Virginia Beach, and
teaches at Thomas Nelson Community College and the Virginia Beach Public
Library.
Marla holds a Bachelors of Science degree in Communication Studies, and a
Masters of Science in Technology Management, both from NYU.
She lives in York County with her husband and their son.
</p>
<div class="schedule-speaker-list">
<b>Speakers:</b>
<div class="schedule-speaker">
<img src="images/speakers/marla-schuchman.jpg" alt="Speaker">
<h4>Marla Schuchman</h4>
</div>
<div class="schedule-speaker">
<img src="images/speakers/female-silhouette.jpg" alt="Speaker">
<h4>Amber Boehnlein</h4>
</div>
<div class="schedule-speaker">
<img src="images/speakers/male-silhouette.jpg" alt="Speaker">
<h4>Kevin Boger</h4>
</div>
<div class="schedule-speaker">
<img src="images/speakers/male-silhouette.jpg" alt="Speaker">
<h4>Drew Lumpkin</h4>
</div>
<div class="schedule-speaker">
<img src="images/speakers/male-silhouette.jpg" alt="Speaker">
<h4>Shakir Johnson</h4>
</div>
<div class="schedule-speaker">
<img src="images/speakers/male-silhouette.jpg" alt="Speaker">
<h4>Raymond White</h4>
</div>
</div>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
11<sup>00</sup>
</span>
<div class="schedule-speaker">
<img src="images/speakers/chida-sadayappan.jpg" alt="Speaker">
</div>
<h4 class="accordion-title">Machine Learning APIs (Chida Sadayappan)</h4>
</a>
<div class="accordion-body">
<p>
This session, gives an overview of the emerging Machine Learning concepts and how one can leverage Google Cloud APIs to quickly build applications.
</p>
<p>
Chida Sadayappan is a Technical Entrepreneur, currently manages an Artificial Intelligence And Machine Learning Stratup, Blitzar.Io. He successfully exited couple of technology companies in the past 12+ years of his entrepreneurial career.
</p>
<a href="https://twitter.com/schida" target="_blank">@schida</a><br/>
<a href="https://www.linkedin.com/in/schida/" target="_blank">LinkedIn</a>
<div class="schedule-speaker-list">
<b>Speakers:</b>
<div class="schedule-speaker">
<img src="images/speakers/chida-sadayappan.jpg" alt="Speaker">
<h4>Chida Sadayappan</h4>
</div>
</div>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
12<sup>00</sup>
</span>
<h4 class="accordion-title">Lunch</h4>
</a>
<div class="accordion-body">
<p>
Compimentary lunch in the main conference area.
</p>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
1<sup>00</sup>
</span>
<div class="schedule-speaker">
<img src="images/speakers/benjamin-earley.jpg" Speaker">
</div>
<h4 class="accordion-title">"Reactive" Robots With Android Things (Benjamin Early)</h4>
</a>
<div class="accordion-body">
<p>
Building a sumo bot using a Raspberry Pi 3, omni wheels, laser cutters, the Android IOT Platform, RXJava, & Kotlin.
</p>
<p>
I'm a software engineer currently developing for Android. I am particularly
passionate about the open web where people can share, collaborate, learn,
and teach freely with each other. Activities that interest me are games,
design, hanging out with friends, and finding ways to contribute and share
my skills with the community.
</p>
<a href="http://BenjaminEarley.com" target="_blank">http://BenjaminEarley.com</a>
<div class="schedule-speaker-list">
<b>Speakers:</b>
<div class="schedule-speaker">
<img src="images/speakers/benjamin-earley.jpg" alt="Speaker">
<h4>Benjamin Early</h4>
</div>
</div>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
2<sup>00</sup>
</span>
<div class="schedule-speaker">
<img src="images/speakers/daniel_worsnup.jpg" alt="Speaker">
</div>
<h4 class="accordion-title">Serverless Architecture - What, Why, and How? (Daniel Worsnup)</h4>
</a>
<div class="accordion-body">
<p>
Serverless is one of those new buzzwords that everyone seems to be throwing around. Is it really going to kill all other computing architectures? Is it just a new trend that will soon fade away and is not worth your time to learn? In this talk we will see what serverless architecture is, why it developed, and what problems it is intended to solve. It is important for all software developers to have a basic understanding of serverless computing because all major cloud providers (Google, Amazon, and Microsoft) are rolling out their own flavors of serverless architecture, and major tech companies are turning to the model to power various parts of the tech stack.
We will sample the power and convenience of serverless computing by developing a simple web application using AWS Lambda functions and a few other AWS services. We will see how Lambda is able to completely eliminate the need for explicitly defined and managed server instances. Finally, we will see how to utilize a platform like Serverless (https://serverless.com/) to remove your application’s dependence on a single cloud provider.
</p>
<p>
Daniel Worsnup is a software engineer at ForRent.com, a subsidiary of Dominion Enterprises in Norfolk, VA. As a core developer on the front end team, he has been integral in building ForRent’s new responsive web application, which helps millions of users per month find their next home. He is passionate about developing high-performance, scalable applications for the modern web. His prior professional experience includes front end engineering roles at several marketing agencies around the US and a startup in Winnipeg, ON. Daniel holds a B.Sc. in Computer Science from Bob Jones University in Greenville, SC.
</p>
<a href="https://twitter.com/worsnupd" target="_blank">@worsnupd</a><br/>
<a href="https://www.linkedin.com/in/worsnupd/" target="_blank">LinkedIn</a>
<div class="schedule-speaker-list">
<b>Speakers:</b>
<div class="schedule-speaker">
<img src="images/speakers/daniel_worsnup.jpg" alt="Speaker">
<h4>Daniel Worsnup</h4>
</div>
</div>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
3<sup>00</sup>
</span>
<div class="schedule-speaker">
<img src="images/speakers/jason-wilson.jpg" alt="Speaker">
</div>
<h4 class="accordion-title">Living on the Grid (Jason Wilson)</h4>
</a>
<div class="accordion-body">
<p>
CSS Grid affords us with native CSS tools to structure our layouts and control their behaviour in responsive environments. This talk will Introduce you to CSS grid and cover some of the amazing things you can accomplish with this new standard.
</p>
<p>
About Jason: I am a wearer of many hats. Presently a Business Analyst for Trader Interactive, I have been building frontend and backend projects for 17 years. My career journey has taken me through small and large companies and a detour into maritime service. In my free time I craft Minecraft worlds with my two children, dabble in freelance, and try to keep pace with the amazing new technologies and techniques available to help us build better experiences and communication online.
</p>
<a href="https://twitter.com/wilsonuponsea" target="_blank">@wilsonuponsea</a><br/>
<a href="https://www.wilsons.io/" target="_blank">wilsons.io</a>
<div class="schedule-speaker-list">
<b>Speakers:</b>
<div class="schedule-speaker">
<img src="images/speakers/jason-wilson.jpg" alt="Speaker">
<h4>Jason Wilson</h4>
</div>
</div>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
4<sup>00</sup>
</span>
<div class="schedule-speaker">
<img src="images/speakers/john-feminella.jpeg" alt="Speaker">
</div>
<h4 class="accordion-title">Building with Blockchains: Better Distributed Applications (John Feminella)</h4>
</a>
<div class="accordion-body">
<p>
Blockchains are a way to create decentralized, permissionless, immutable information — attributes that are highly relevant and valuable for distributed systems.
In this talk, we'll explain the core cryptographic fundamentals and distributed-systems properties that make the blockchain work. We'll rely particularly on examples from two of the most popular practical implementations, Bitcoin and Ethereum. By the end of the talk you should have a good understanding what kinds of applications are feasible to design with a blockchain, and the enormous potential that's enabled by one.
</p>
<p>
John Feminella is an avid technologist, occasional public speaker, and curiosity advocate. He serves as an advisor to Pivotal, where he works on helping enterprises transform the way they write, operate, and deploy software. He's also the cofounder of a tiny analytics monitoring and reporting startup named UpHex.
John lives in Charlottesville, VA and likes meta-jokes, milkshakes, and referring to himself in the third person in speaker bios.
</p>
<div class="schedule-speaker-list">
<b>Speakers:</b>
<div class="schedule-speaker">
<img src="images/speakers/john-feminella.jpeg" alt="Speaker">
<h4>John Feminella</h4>
</div>
</div>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
5<sup>00</sup>
</span>
<h4 class="accordion-title">Closing remarks & Raffle</h4>
</a>
<div class="accordion-body">
<p>
Closing remarks for the conference end and raffle time! Remarks from swag
sponsor.
</p>
</div>
</li>
<li>
<a class="accordion-heading">
<span class="schedule-time accent">
5<sup>30</sup>
</span>
<h4 class="accordion-title">Happy Hour</h4>
</a>
<div class="accordion-body">
<p>
Happy Hour location TBD.
</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!--==========-->
<!--===============================-->
<!--== Speakers ===================-->
<!--===============================-->
<section id="speakers" class="wow bounceInUp" data-wow-duration="0.8s" data-wow-delay="0.1s">
<div class="row">
<div class="col-sm-12">
<div class="section-header text-center">
<h2>Our <b>speakers</b>
</h2>
<p>The amazing people that are here to share with our community.</p>
<br/>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-md-3 ">
<div class="speaker">
<img src="images/speakers/benjamin-earley.jpg" alt="Benjamin Earley">
<div class="speaker-info">
<h3>
<b>Benjamin</b> Earley
</h3>
</div>
<ul class="speaker-contacts">
<li>
<a href="http://BenjaminEarley.com" class="fa fa-link" target="_blank"></a>
</li>
</ul>
</div>
</div>
<div class="col-sm-6 col-md-3 ">
<div class="speaker">
<img src="images/speakers/chida-sadayappan.jpg" alt="Chida Sadayappan">
<div class="speaker-info">
<h3>
<b>Chida</b> Sadayappan
</h3>
</div>
<ul class="speaker-contacts">
<li>
<a href="https://www.linkedin.com/in/schida" class="fa fa-linkedin" target="_blank"></a>
</li>
<li>
<a href="https://twitter.com/schida" class="fa fa-twitter" target="_blank"></a>
</li>
</ul>
</div>
</div>
<div class="col-sm-6 col-md-3 ">
<div class="speaker">
<img src="images/speakers/greg-norman.jpg" alt="Greg Norman">
<div class="speaker-info">
<h3>
<b>Greg</b> Norman
</h3>
</div>
<ul class="speaker-contacts">
<li>
<a href="https://twitter.com/raelshark" class="fa fa-twitter" target="_blank"></a>
</li>
<li>
<a href="https://www.linkedin.com/in/gregnorman/" class="fa fa-linkedin"
target="_blank"></a>
</li>
</ul>
</div>
</div>