forked from nodeday/nodeday.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1198 lines (734 loc) · 34 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
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 class="no-js" lang="en-us">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>NodeDay</title>
<link rel="stylesheet" href="2015-condenast/css/bootstrap.min.css">
<link rel="stylesheet" href="2015-condenast/css/app.css" type="text/css" />
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="2015-condenast/js/html5shiv.min.js"></script>
<script src="2015-condenast/js/respond.min.js"></script>
<![endif]-->
</head>
<body data-spy="scroll" data-target=".topMenu" id="home">
<header role="navigation" class="navbar navbar-fixed-top">
<div class="wrapper">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">
<img src="2015-condenast/img/logo.svg" alt="nodeday">
</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="#about">About</a>
</li>
<li><a href="#topics">Presentations</a>
</li>
<li><a href="#codeofconduct">Code of conduct</a>
</li>
<li><a href="#location">Location</a>
</li>
<li><a href="/2014-intuit/">Previous nodeday</a>
</li>
</ul>
</div>
</div>
</header>
<section id="hero">
<div class="wrapper">
<div class="row">
<div class="col-xs-12">
<h1 class="splash">
<img src="2015-condenast/img/hero2015.svg" alt="nodeday">
</h1>
<div class="tagline">A Node.js conference<br> by the enterprise, for the enterprise</div>
<div class="date">April 28, 2015</div>
</div>
</div>
</div>
</section>
<section id="about" aria-labelledby="aboutLabel">
<div class="wrapper">
<div class="row">
<div class="col-xs-12">
<h2>About nodeday 2015</h2>
<p>
nodeday is a Node.js conference by the enterprise, for the enterprise. Now in its second year,
this one-day industry conference brings together people from companies that have adopted or are
planning to adopt Node.js, and focuses on the issues that these companies face. It gives
participants a forum to discuss and share their experiences with Node.js, share advice, tips and
tricks, and drive forward both the technology and the community.
<br>
Come join us at the No. 1 World Trade Centre on April 28, 2015 -
<a class="same-color" href="https://ti.to/node-day-2015/node-day-new-york/with/udwwbu3-n9q" target="_blank">register here</a>
</p>
<h4 class="well well-sm well-about text-left"><b>Please enter through the North Lobby on Vesey St. From there you will be directed to the location. We advise you to travel light, all bags need to be scanned and we only have access to one scanner for the event so the less bags the better!</b></h4>
</div>
</div>
</div>
</section>
<!-- <section id="feed" aria-labelledby="feedLabel">
<div class="wrapper">
<h2 id="feedLabel">Live Feed</h2>
</div>
<div class="wrapper">
<div class="twitter-feed">
<a class="twitter-timeline" href="https://twitter.com/hashtag/nodeday" data-widget-id="538075583293706241" data-chrome="hoheader noborders transparent">#nodeday Tweets</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div>
</div>
</section> -->
<section id="topics" aria-labelledby="topicsLabel">
<div class="wrapper">
<h2 id="topicsLabel">Topics and Agenda</h2>
<h4 class="well well-sm text-center"><em>More speakers to be announced</em></h4>
</div>
<div class="topic topic-talk">
<div class="wrapper">
<div class="row">
<div class="col-sm-2 time">
9:00-10:00AM
<!--<div class="icon enterprise"></div>-->
</div>
<div class="col-sm-8">
<h3 class="title">Registration</h3>
<p class="abstract">
</p>
<p class="link">
</p>
<p class="link">
</p>
<p class="bio">
</p>
</div>
<div class="col-sm-2 col-xs-12">
<div class="speaker row">
<div class="speaker-image col-sm-12 col-xs-6">
</div>
<div class="speaker-info col-sm-12 col-xs-6">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="topic topic-talk">
<div class="wrapper">
<div class="row">
<div class="col-sm-2 time">
10:15-10:30AM
</div>
<div class="col-sm-8">
<h3 class="title">Welcome</h3>
<p class="abstract">
</p>
<p class="link">
</p>
<p class="link">
</p>
<p class="bio">
<b>About Edward</b> Ed is the VP of Engineering at Condé Nast where along with Paul Fryzel
led the adoption of Node.js across the organization starting with the creation of a content
API and platform built entirely with Node. Prior to Condé Nast he spent a number of years
working at startups as well as large companies creating products and platforms. He studied
Electrical and Computer Engineering and Computer Science at Carnegie Mellon.
</p>
</div>
<div class="col-sm-2">
<div class="row speaker">
<div class="col-sm-12 col-xs-6 speaker-image">
<div class="hexagon-1" id="edward_cudahy"><div class="hexagon-2"><div class="hexagon-3"></div></div></div>
</div>
<div class="col-sm-12 col-xs-6 speaker-info">
<p class="speaker-name">Edward Cudahy</p>
<p class="speaker-occupation"><br />Conde Nast</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="topic topic-talk">
<div class="wrapper">
<div class="row">
<div class="col-sm-2 time">
10:30-11:00AM
<!--<div class="icon core"></div>-->
</div>
<div class="col-sm-8">
<h3 class="title">Keynote</h3>
<h4>Keynote from API Platform</h4>
<p class="abstract">
</p>
<p class="link">
</p>
<p class="link">
</p>
<p class="bio">
<b>About Josh</b> Josh first started using Node.js in 2010 under the training of substack. After
working for various startups across the country, he now builds Node.js content APIs to power such
Condé Nast brands as Vanity Fair and CN Traveler. His best-known modules are ecstatic and hoarders.
</p>
<p class="bio">
<b>About Ryan</b> Ryan helps Condè Nast build internal tools and APIs for brands like GQ, Vanity
Fair, and Epicurious. Prior to Condè Nast, he worked at Razorfish for several years building systems
for Mercedes-Benz and Carnival Cruise Lines. He studied Computer Science at Georgia Tech.
</p>
</div>
<div class="col-sm-2">
<h5>Participants:</h5>
<div class="row speaker">
<div class="col-sm-12 col-xs-6 speaker-image">
<div class="hexagon-1" id="josh_holbrook"><div class="hexagon-2"><div class="hexagon-3"></div></div></div>
</div>
<div class="col-sm-12 col-xs-6 speaker-info">
<p class="speaker-name">Josh Holbrook</p>
<p class="speaker-occupation"><br />Condé Nast</p>
</div>
</div>
<div class="row speaker">
<div class="col-sm-12 col-xs-6 speaker-image">
<div class="hexagon-1" id="ryan_juang"><div class="hexagon-2"><div class="hexagon-3"></div></div></div>
</div>
<div class="col-sm-12 col-xs-6 speaker-info">
<p class="speaker-name">Ryan Juang</p>
<p class="speaker-occupation"><br />Condè Nast</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="topic topic-talk">
<div class="wrapper">
<div class="row">
<div class="col-sm-2 time">
11:00-11:45AM
</div>
<div class="col-sm-8">
<h3 class="title">Panel Discussion</h3>
<h4>Node.js and the Future of Media</h4>
<p class="abstract">
</p>
<p class="link">
</p>
<p class="link">
</p>
<p class="bio">
<b>About Edward</b> Ed is the VP of Engineering at Condé Nast where along with Paul Fryzel
led the adoption of Node.js across the organization starting with the creation of a content
API and platform built entirely with Node. Prior to Condé Nast he spent a number of years
working at startups as well as large companies creating products and platforms. He studied
Electrical and Computer Engineering and Computer Science at Carnegie Mellon.
</p>
<p class="bio">
<b>About Scott</b> Scott has been a web developer, lead, and architect for over ten years.
Most of that time was spent creating APIs, libraries, and frameworks. His current role at
Dow Jones is focused on building automated deployment pipelines and e2e testing strategies.
He has been writing production apps in Node.js since 0.4.5 and toying with it even longer.
The rest of his time is spent with his two little girls and amazing wife, or skiing, or both.
</p>
<p class="bio">
<b>About Wayne</b> Wayne Warner is a Senior Software Engineer and technical lead for
Bloomberg's flagship consumer website - Bloomberg.com. He is the author of an open source
isomorphic JavaScript framework called Brisket(TM). Bloomberg uses Brisket to rapidly develop
several products including Bloomberg.com, Bloombergpolitics.com, and BloombergView.com
</p>
<p class="bio">
<b>About Chris</b> Chris Williams (@voodootikigod) is co-founder and CTO of Emerging Technology
Advisors (ETA). He is the creator of JSConf and RobotsConf. He is the godfather of the Nodebots and
NodeCopter movements and is an avid explorer of the improbable. He is the moderator of the Node.js
Advisory Board and keeper of the peace within (Node|io).js land. He also likes craft beer.
</p>
</div>
<div class="col-sm-2">
<h5>Participants:</h5>
<div class="row speaker">
<div class="col-sm-12 col-xs-6 speaker-image">
<div class="hexagon-1" id="edward_cudahy"><div class="hexagon-2"><div class="hexagon-3"></div></div></div>
</div>
<div class="col-sm-12 col-xs-6 speaker-info">
<p class="speaker-name">Edward Cudahy</p>
<p class="speaker-occupation"><br />Conde Nast</p>
</div>
</div>
<div class="row speaker">
<div class="col-sm-12 col-xs-6 speaker-image">
<div class="hexagon-1" id="scott_rahner"><div class="hexagon-2"><div class="hexagon-3"></div></div></div>
</div>
<div class="col-sm-12 col-xs-6 speaker-info">
<p class="speaker-name">Scott Rahner</p>
<p class="speaker-occupation"><br/>Dow Jones</p>
</div>
</div>
<div class="row speaker">
<div class="col-sm-12 col-xs-6 speaker-image">
<div class="hexagon-1" id="wayne_warner"><div class="hexagon-2"><div class="hexagon-3"></div></div></div>
</div>
<div class="col-sm-12 col-xs-6 speaker-info">
<p class="speaker-name">Wayne Warner</p>
<p class="speaker-occupation">Engineer<br/>Bloomberg</p>
</div>
</div>
<div class="row speaker">
<div class="col-sm-12 col-xs-6 speaker-image">
<div class="hexagon-1" id="chris_williams"><div class="hexagon-2"><div class="hexagon-3"></div></div></div>
</div>
<div class="col-sm-12 col-xs-6 speaker-info">
<p class="speaker-name">Chris Williams</p>
<p class="speaker-occupation">CTO<br />ETA</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="topic topic-talk">
<div class="wrapper">
<div class="row">
<div class="col-sm-2 time">
12:00-12:30PM
</div>
<div class="col-sm-8">
<h3 class="title">The evolution of modularity</h3>
<p class="abstract">
</p>
<p class="link">
</p>
<p class="link">
</p>
<p class="bio">
<b>About Lin</b> Lin Clark is the Dev Star at npm, Inc. Prior to npm, she was a researcher at DERI
Galway, one of the world's leading Web Science research institutes, and was core module maintainer on
a CMS which powers an estimated 8% of all CMS-driven sites. She has been involved in W3C
standardization efforts and many open source projects across different ecosystems.
</p>
</div>
<div class="col-sm-2">
<div class="row speaker">
<div class="col-sm-12 col-xs-6 speaker-image">
<div class="hexagon-1" id="lin_clark"><div class="hexagon-2"><div class="hexagon-3"></div></div></div>
</div>
<div class="col-sm-12 col-xs-6 speaker-info">
<p class="speaker-name">Lin Clark</p>
<p class="speaker-occupation">Dev Star<br />npm</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="topic topic-talk">
<div class="wrapper">
<div class="row">
<div class="col-sm-2 time">
12:30-13:45PM
<!--<div class="icon enterprise"></div>-->
</div>
<div class="col-sm-8">
<h3 class="title">Lunch</h3>
<!--<h3 class="title">Richard Rodger</h3>-->
<p class="abstract">
</p>
<p class="link">
</p>
<p class="link">
</p>
<p class="bio">
</p>
</div>
<div class="col-sm-2 col-xs-12">
<div class="speaker row">
<div class="speaker-image col-sm-12 col-xs-6">
</div>
<div class="speaker-info col-sm-12 col-xs-6">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="topic topic-talk">
<div class="wrapper">
<div class="row">
<div class="col-sm-2 time">
13:45-14:00PM
</div>
<div class="col-sm-8">
<h3 class="title">Node and io.js</h3>
<p class="abstract">
</p>
<p class="link">
</p>
<p class="bio">
<b>About Mikeal</b> JS Community Organizer. Evangelist at Modulus.
</p>
</div>
<div class="col-sm-2">
<div class="row speaker">
<div class="col-sm-12 col-xs-6 speaker-image">
<div class="hexagon-1" id="mikeal_rogers"><div class="hexagon-2"><div class="hexagon-3"></div></div></div>
</div>
<div class="col-sm-12 col-xs-6 speaker-info">
<p class="speaker-name">Mikeal Rogers</p>
<p class="speaker-occupation">Evangelist<br />Modulus</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="topic topic-talk">
<div class="wrapper">
<div class="row">
<div class="col-sm-2 time">
14:00-14:40PM
</div>
<div class="col-sm-8">
<h3 class="title">Panel discussion</h3>
<h4>Node & IoT</h4>
<p class="abstract">
</p>
<p class="link">
</p>
<p class="bio">
<b>About Matteo</b> Matteo is a software engineer and internet of things (IoT) expert with
a passion for coding, distributed architectures and agile methodologies. He has worked with
a wide range of technologies (Java, Ruby, Javascript, Node.js, Objective-C) in a variety of
fields. Matteo is the author of the Node.js MQTT Broker, Mosca, the LevelGraph database, and
is co-author of the book Javascript: Best Practices (FAG, Milan). In 2014, Matteo completed
his Ph.D. with a thesis entitled 'Application Platforms for the Internet of Things: Theory,
Architecture, Protocols, Data Formats and Privacy'. Matteo is also an experienced conference
speaker on the above topics. In his spare time, he builds and contributes to open source
software (see his github profile https://github.com/mcollina) and sails the Sirocco.
</p>
<p class="bio">
<b>About Matt</b> Matthew Podwysocki is a Principal Software Engineer at Microsoft working with the
DX/TED group. He is currently working on the reactive extensions for all languages including
JavaScript, .NET, Ruby and Python, as well as working on building the internet of things in Node.js.
He is a speaker, podcaster, conference organizer, and in his spare time helps with STEM efforts,
teaching the next generation of software and hardware developers.
</p>
<p class="bio">
<b>About Emily</b> Emily Rose is a transhumanist with a passion for queer cyborg artistry. They are
currently experimenting with ambient intelligence, adaptive automation, and evolving interfaces. Emily
is a world-class speaker who has brought humor and enlightenment to audiences across the globe.
Original NodeBots curator, founder of DanceJS, and one of the most interesting individuals in the
known universe; Emily is an unnatural force of pure, unbridled creativity. Currently at spark.io
</p>
<p class="bio">
<b>About Colin</b> For the past two years, Colin has lead the littleBits engineering team.
Most recently, as littleBits' cloud platform lead, he spearheaded littleBits' newly announced
cloudBit, which allows anyone to turn any object into an internet-connected smart device – no
soldering, wiring or programming required. Prior to his work at littleBits, Colin was the
founder of Montreal-based Stresslimit Design for over a decade. From his years of experience
in the technology industry, Colin can speak to the importance of interconnectivity, the
relationship between hardware and software, the growing trend of IoT and his personal
experiences with building software and prototyping tools for IoT.
</p>
</div>
<div class="col-sm-2">
<h5>Participants:</h5>
<div class="row speaker">
<div class="col-sm-12 col-xs-6 speaker-image">
<div class="hexagon-1" id="matteo">
<div class="hexagon-2">
<div class="hexagon-3"></div>
</div>
</div>
</div>
<div class="col-sm-12 col-xs-6 speaker-info">
<p class="speaker-name">Matteo Collina</p>
<p class="speaker-occupation">Architect<br/>Nearform</p>
</div>
</div>
<div class="row speaker">
<div class="col-sm-12 col-xs-6 speaker-image">
<div class="hexagon-1" id="matt_podwysocki">
<div class="hexagon-2">
<div class="hexagon-3"></div>
</div>
</div>
</div>
<div class="col-sm-12 col-xs-6 speaker-info">
<p class="speaker-name">Matt Podwysocki</p>
<p class="speaker-occupation"><br/>Microsoft</p>
</div>
</div>
<div class="row speaker">
<div class="col-sm-12 col-xs-6 speaker-image">
<div class="hexagon-1" id="emily_rose">
<div class="hexagon-2">
<div class="hexagon-3"></div>
</div>
</div>
</div>
<div class="col-sm-12 col-xs-6 speaker-info">
<p class="speaker-name">Emily Rose</p>
<p class="speaker-occupation"><br/>spark.io</p>
</div>
</div>
<div class="row speaker">
<div class="col-sm-12 col-xs-6 speaker-image">
<div class="hexagon-1" id="colin_vernon">
<div class="hexagon-2">
<div class="hexagon-3"></div>
</div>
</div>
</div>
<div class="col-sm-12 col-xs-6 speaker-info">
<p class="speaker-name">Colin Vernon</p>
<p class="speaker-occupation"><br/>LittleBits</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="topic topic-talk">
<div class="wrapper">
<div class="row">
<div class="col-sm-2 time">
14:55-15:25PM
<!--<div class="icon enterprise"></div>-->
</div>
<div class="col-sm-8">
<h3 class="title">Richard Rodger</h3>
<!--<h3 class="title">Richard Rodger</h3>-->
<p class="abstract">
</p>
<p class="link">
</p>
<p class="link">
</p>
<p class="bio">
<b>About Richard</b> Richard Rodger is co-founder and chief technical officer (CTO) of nearForm,
a Node.js consultancy that builds large-scale enterprise systems. He is an internationally
recognized thought leader and speaker on Node.js and microservices. He is also author of Mobile
Application Development in the Cloud (Wiley, 2012), and former CTO of FeedHenry, a mobile
applications platform that was recently acquired by RedHat. Richard is creator of a number of
open source tools, including Senecajs.org and Nodezoo.com.
Richard is a regular contributor to the Sunday Business Post newspaper in Ireland, and holds
degrees in Mathematics and Philosophy, and Computer Science.
</p>
</div>
<div class="col-sm-2 col-xs-12">
<div class="speaker row">
<div class="speaker-image col-sm-12 col-xs-6">
<div class="hexagon-1" id="richard_rodger">
<div class="hexagon-2">
<div class="hexagon-3"></div>
</div>
</div>
</div>
<div class="speaker-info col-sm-12 col-xs-6">
<p class="speaker-name">Richard Rodger</p>
<p class="speaker-occupation">CTO<br/>nearForm</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="topic topic-talk">
<div class="wrapper">
<div class="row">
<div class="col-sm-2 time">
15:30-16:10PM
</div>
<div class="col-sm-8">
<h3 class="title">Panel discussion</h3>
<h4>Enterprise Adoption: Lessons Learned</h4>
<p class="abstract">
</p>
<p class="link">
</p>
<p class="link">
</p>
<p class="bio">
<b>About Robert</b> Robert is a Director of Engineering at Ancestry.com, the top genealogy company in
the world. His current focus is the adoption of emerging technologies and architecture such as Node.js
and Docker. He is passionate about solving big problems to create a better world with a focus on
agility, emotion and passion.
</p>
<p class="bio">
<b>About Jean-Charles</b> Engineering Architect at PayPal through acquisition (formerly of Where, LLC).<br>
I work on open-source for PayPal.<br>
I am the lead maintainer of kraken-js—PayPal's open-source web application framework for Node.js.
Since the end of 2013, all greenfield web application development at PayPal is built on kraken-js.
</p>
<p class="bio">
<b>About Travell</b> Travell is a CTO at Fidelity Investments and a leading evangelist for
the widespread adoption of Node.js within the organization. He delivered Fidsafe, a virtual
safe deposit box to market for the organization and is now applying Node and other JavaScript
technologies to more core offerings. Travell has over ten years of experience building systems
for financial services. He holds a B.S. in Computer Science from MIT and an M.S. in Business
from BU.
</p>
<p class="bio">
<b>About Cian</b> Cian O'Maidin is the co-founder and visionary CEO behind nearForm. Very early on he saw how Node.js could help the world work in a better way and is committed to making that happen through nearForm. He is an established Entrepreneur, Node Community Leader, the Creator of NodeDublin and now the Curator of NodeConf.EU. In 2012 Cian was voted amongst the most influential leaders in Irish technology.
</p>
</div>
<div class="col-sm-2">
<h5>Participants:</h5>
<div class="row speaker">
<div class="col-sm-12 col-xs-6 speaker-image">
<div class="hexagon-1" id="robert_schultz"><div class="hexagon-2"><div class="hexagon-3"></div></div></div>
</div>
<div class="col-sm-12 col-xs-6 speaker-info">
<p class="speaker-name">Robert Schultz</p>
<p class="speaker-occupation"><br />Ancestry</p>
</div>
</div>
<div class="row speaker">
<div class="col-sm-12 col-xs-6 speaker-image">
<div class="hexagon-1" id="jean_charles"><div class="hexagon-2"><div class="hexagon-3"></div></div></div>
</div>
<div class="col-sm-12 col-xs-6 speaker-info">
<p class="speaker-name">Jean-Charles Sisk</p>
<p class="speaker-occupation"><br />PayPal</p>
</div>
</div>
<div class="row speaker">
<div class="col-sm-12 col-xs-6 speaker-image">
<div class="hexagon-1" id="travell_perkins"><div class="hexagon-2"><div class="hexagon-3"></div></div></div>
</div>
<div class="col-sm-12 col-xs-6 speaker-info">
<p class="speaker-name">Travell Perkins</p>
<p class="speaker-occupation">CTO<br />Fidelity</p>
</div>
</div>
<div class="row speaker">
<div class="col-sm-12 col-xs-6 speaker-image">
<div class="hexagon-1" id="cian"><div class="hexagon-2"><div class="hexagon-3"></div></div></div>
</div>