-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdb.json
More file actions
7851 lines (7851 loc) · 423 KB
/
db.json
File metadata and controls
7851 lines (7851 loc) · 423 KB
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
{
"speakers": [
{
"id": 1530,
"firstName": "Tammy",
"lastName": "Baker",
"email": "",
"phoneNumber": "",
"bio": "Tammy has held a number of executive and management roles over the past 15 years, including vice president of engineering Cantaloupe Systems, vice president of engineering at Untangle, Inc., and vice president of engineering at E-Color. More recently, Tammy is vice president of engineering and CSO for Cantaloupe Systems which was recently acquired by USA Technologies.",
"webSite": "https://www.linkedin.com/in/tammybaker/",
"imageUrl": "//ddrt7tzfkdwdf.cloudfront.net/attendeeimage/20181016014259-1530.jpg",
"allowAttendeeToEmailMe": true,
"company": "Code Camp",
"city": "x",
"state": "x",
"presentationLimit": 0,
"sessions": [
{
"id": 7448,
"title": "Ask the Expert: Q&A with Engineering Managers",
"description": "How do I handle an unreasonable boss? What if I don't trust my team to deliver good code? How can I improve your team's attitude about agile? Why do I have so many bugs???\n<br/><br/>\nIn this unscripted format, speakers from the Management and Agile tracks answer audience questions. Bring your toughest questions about agile, management, leadership, careers, terrible bosses and the pains of moving from Programmer to Manager. \n<br/><br/>\nFeeling shy? Email your question advance to Ron@RonLichty.com ",
"room": "Town Square B",
"logDate": "0001-01-01T00:00:00",
"startTime": "10:45 AM Sunday",
"startTimeDateTime": "0001-01-01T00:00:00",
"interestedCount": 0,
"planToAttendCount": 0,
"interested": false,
"willAttend": false,
"presenters": [
{
"id": 1530,
"firstName": "Tammy",
"lastName": "Baker",
"email": "",
"phoneNumber": "",
"bio": "Tammy has held a number of executive and management roles over the past 15 years, including vice president of engineering Cantaloupe Systems, vice president of engineering at Untangle, Inc., and vice president of engineering at E-Color. More recently, Tammy is vice president of engineering and CSO for Cantaloupe Systems which was recently acquired by USA Technologies.",
"webSite": "https://www.linkedin.com/in/tammybaker/",
"imageUrl": "//ddrt7tzfkdwdf.cloudfront.net/attendeeimage/20181016014259-1530.jpg",
"allowAttendeeToEmailMe": true,
"company": "Code Camp",
"city": "x",
"state": "x",
"presentationLimit": 0,
"sessions": [],
"allowHtml": true,
"facebookUrl": "",
"googlePlusUrl": "",
"linkedInUrl": "http://www.linkedin.com/in/tammybaker",
"twitterUrl": "http://twitter.com/tammybaker123",
"urlPostToken": "2018",
"bioShort": "Tammy has held a number of executive and management roles over the past 15 years.",
"isKeyNoteSpeaker": false,
"isWorkshopSpeaker": false
},
{
"id": 2920,
"firstName": "Ron",
"lastName": "Lichty",
"email": "",
"phoneNumber": "",
"bio": "<p>Ron Lichty has been managing and, more recently, consulting in managing software development and product organizations for over 25 years. Before that, as a programmer, he coded compiler code generators, was awarded patents for compression and security algorithms he designed and coded for embedded microcontroller devices, wrote two widely used programming texts, and developed the computer animation demo that Apple used to launch and sell a next-generation line of PCs. The primary focus of his consulting practice has mirrored what he did as a manager: untangling the knots in software development. As <a href=\"http://www.ronlichty.com\"target=_blank>Ron Lichty Consulting</a>, he takes on fractional Interim VP Engineering and Acting CTO roles, trains teams in scrum, transitions teams to agile, trains managers in managing software people and teams, and advises organizations and coaches teams to make their software development “hum.” His 450-page book, <a href=\"http://www.ManagingTheUnmanageable.net\"target=_blank><I>Managing the Unmanageable: Rules, Tools, and Insights for Managing Software People and Teams</I></a>, was recently released as video training - <a href=\" http://www.ManagingTheUnmanageable.net/video.html\"target=_blank><I>LiveLessons: Managing Software People and Teams</I></a> - both from Pearson and on O’Reilly’s Safari Network. He also co-authors the biannual <a href=\" http://www.ronlichty.com/study.html\"target=_blank><I>Study of Product Team Performance</I></a>.</p>",
"webSite": "www.ronlichty.com ",
"imageUrl": "//ddrt7tzfkdwdf.cloudfront.net/attendeeimage/20170526222329-2920.jpg",
"allowAttendeeToEmailMe": true,
"company": "Ron Lichty Consulting, Inc.",
"city": "San Francisco",
"state": "CA",
"presentationLimit": 0,
"sessions": [],
"allowHtml": true,
"facebookUrl": "http://www.facebook.com/RonLichty",
"googlePlusUrl": "https://plus.google.com/RonLichty/about",
"linkedInUrl": "http://www.linkedin.com/in/ronlichty",
"twitterUrl": "http://twitter.com/RonLichty",
"urlPostToken": "2018",
"bioShort": "Interim VP Eng. Transforming chaos to clarity. Author, Managing the Unmanageable (Addison Wesley) ",
"isKeyNoteSpeaker": false,
"isWorkshopSpeaker": false
},
{
"id": 18805,
"firstName": "Mickey W.",
"lastName": "Mantle",
"email": "",
"phoneNumber": "",
"bio": "Mickey has been developing software systems and products for over 40 years, as a systems programmer, Tech Lead, Manager, VP Engineering, CTO, COO, and now CEO/CTO of his own company. During this time he has contributed to several notable companies, including computer graphics pioneer Evans & Sutherland (E&S), Pixar, Broderbund Software, and Gracenote – always in a technical leadership role.\n\nHe continues developing software at Wanderful (see wanderfulstorybooks.com), developing and publishing Apps for iOS, Android, macOS, and Windows.\n\nWorking with co-author Ron Lichty, they wrote the book “Managing the Unmanageable: Rules, Tools, and Insights for Managing Software People and Teams”. Published by Addison Wesley, this book distills their experience of over 70 combined years developing software and managing programmers and has received many accolades including being favorably compared to The Mythical Man Month and Peopleware (see managingtheunmanageable.net).",
"webSite": "http://managingtheunmanageable.net",
"imageUrl": "//ddrt7tzfkdwdf.cloudfront.net/attendeeimage/20180821223136-18805.jpg",
"allowAttendeeToEmailMe": true,
"company": "Wanderful, Inc.",
"city": "Napa",
"state": "CA",
"presentationLimit": 0,
"sessions": [],
"allowHtml": true,
"facebookUrl": "http://www.facebook.com/MW Mantle",
"googlePlusUrl": "",
"linkedInUrl": "http://www.linkedin.com/in/linkedin.com/in/mmantle/",
"twitterUrl": "http://twitter.com/mwmantleCA",
"urlPostToken": "2018",
"bioShort": "Mickey has been developing software products for over 40 years – in a variety of leadership roles.",
"isKeyNoteSpeaker": false,
"isWorkshopSpeaker": false
}
],
"tags": [
{
"id": 544,
"tagName": "management",
"sessions": []
}
],
"allowHtml": true,
"kidOrProfessionalSession": "ProfessionalSession",
"kidSession": false,
"tagsResultCsv": "management",
"sessionLevelId": 2,
"sessionTimeDateTime": "2018-10-14T10:45:00",
"sessionUrl": "2018/ask-the-expert-qa-with-engineering-managers",
"sessionUrlPre": "/session/2018/ask-the-expert-qa-with-engineering-managers",
"sessionTrackId": 1097,
"sessionTrackName": "Management",
"workshop": false,
"sessionTimesId": 138,
"keynote": false,
"descriptionShort": "How do I handle an unreasonable boss? What if I...",
"speakersNamesCsv": "Tammy Baker,Ron Lichty,Mickey W. Mantle",
"sessionSlug": "ask-the-expert-qa-with-engineering-managers"
}
],
"allowHtml": true,
"facebookUrl": "",
"googlePlusUrl": "",
"linkedInUrl": "http://www.linkedin.com/in/tammybaker",
"twitterUrl": "http://twitter.com/tammybaker123",
"presenterUrl": "2018/tammy-baker-1530",
"urlPostToken": "2018",
"bioShort": "Tammy has held a number of executive and management roles over the past 15 years.",
"isKeyNoteSpeaker": false,
"isWorkshopSpeaker": false,
"speakerSequence": "zzz"
},
{
"id": 5996,
"firstName": "Craig",
"lastName": "Berntson",
"email": "",
"phoneNumber": "",
"bio": "Craig has a passion for community and helping other developers improve their skills. He writes the column \"Software Gardening\" in DotNet Curry Magazine and is the co-author of \"Continuous Integration in .NET\" available from Manning. He works as a Senior Software Engineer at HealthEquity.",
"webSite": "www.craigberntson.com",
"imageUrl": "//ddrt7tzfkdwdf.cloudfront.net/attendeeimage/20140717004052-5996.jpg",
"allowAttendeeToEmailMe": false,
"company": "HealthEquity",
"city": "Salt Lake City",
"state": "UT",
"presentationLimit": 0,
"sessions": [
{
"id": 7409,
"title": "Clean Architecture",
"description": "<p>We've heard about clean code for years, but what about clean architecture. In this session you will learn how to improve developer productivity by using clean architecture concepts. Topics to be discussed:<br />- Understand function, components, and data separation<br />- Determine what's important and what isn't<br />- Defining boundaries and layers<br />- Organizing components and services<br />- And more</p>",
"room": "Fireside C",
"logDate": "0001-01-01T00:00:00",
"startTime": "9:30 AM Saturday",
"startTimeDateTime": "0001-01-01T00:00:00",
"interestedCount": 0,
"planToAttendCount": 0,
"interested": false,
"willAttend": false,
"presenters": [
{
"id": 5996,
"firstName": "Craig",
"lastName": "Berntson",
"email": "",
"phoneNumber": "",
"bio": "Craig has a passion for community and helping other developers improve their skills. He writes the column \"Software Gardening\" in DotNet Curry Magazine and is the co-author of \"Continuous Integration in .NET\" available from Manning. He works as a Senior Software Engineer at HealthEquity.",
"webSite": "www.craigberntson.com",
"imageUrl": "//ddrt7tzfkdwdf.cloudfront.net/attendeeimage/20140717004052-5996.jpg",
"allowAttendeeToEmailMe": false,
"company": "HealthEquity",
"city": "Salt Lake City",
"state": "UT",
"presentationLimit": 0,
"sessions": [],
"allowHtml": false,
"facebookUrl": "http://www.facebook.com/craigber",
"googlePlusUrl": "",
"linkedInUrl": "http://www.linkedin.com/in/craigber",
"twitterUrl": "http://twitter.com/craigber",
"urlPostToken": "2018",
"bioShort": "Speaker, author, architect, and engineer. Currently he's a Senior Software Engineer at HealthEquity.",
"isKeyNoteSpeaker": false,
"isWorkshopSpeaker": false
}
],
"tags": [
{
"id": 44,
"tagName": "Architecture",
"sessions": []
},
{
"id": 945,
"tagName": "Modular Architecture",
"sessions": []
},
{
"id": 867,
"tagName": "Productivity",
"sessions": []
}
],
"allowHtml": true,
"kidOrProfessionalSession": "ProfessionalSession",
"kidSession": false,
"tagsResultCsv": "Architecture,Modular Architecture,Productivity",
"sessionLevelId": 3,
"sessionTimeDateTime": "2018-10-13T09:30:00",
"sessionUrl": "2018/clean-architecture",
"sessionUrlPre": "/session/2018/clean-architecture",
"sessionTrackId": 0,
"workshop": false,
"sessionTimesId": 131,
"keynote": false,
"descriptionShort": "<p>We've heard about clean code for years, but...",
"speakersNamesCsv": "Craig Berntson",
"sessionSlug": "clean-architecture"
}
],
"allowHtml": false,
"facebookUrl": "http://www.facebook.com/craigber",
"googlePlusUrl": "",
"linkedInUrl": "http://www.linkedin.com/in/craigber",
"twitterUrl": "http://twitter.com/craigber",
"presenterUrl": "2018/craig-berntson-5996",
"urlPostToken": "2018",
"bioShort": "Speaker, author, architect, and engineer. Currently he's a Senior Software Engineer at HealthEquity.",
"isKeyNoteSpeaker": false,
"isWorkshopSpeaker": false,
"speakerSequence": "zzz"
},
{
"id": 10803,
"firstName": "Eugene",
"lastName": "Chuvyrov",
"email": "",
"phoneNumber": "",
"bio": "Eugene Chuvyrov is a Senior Cloud Architect at Microsoft. He works directly with both startups and enterprises to enable their solutions in Microsoft cloud, and to make Azure better as a result of this work with partners. Over his tenure at Microsoft, his focus varied from modern DevOps, to enabling AI solutions in the cloud, to advising customers on creating Blockchain solutions in Azure. He is looking forward to sharing his knowledge from those engagements with the community.",
"webSite": "http://linkedin.com/in/eugenechuvyrov/",
"imageUrl": "//ddrt7tzfkdwdf.cloudfront.net/attendeeimage/20140829154826-10803.jpg",
"allowAttendeeToEmailMe": true,
"company": "Microsoft",
"city": "San Diego",
"state": "California",
"presentationLimit": 0,
"sessions": [
{
"id": 7444,
"title": "Are we there yet? A pragmatic look at quantum computing and Q# with Azure",
"description": "Like superintelligence, practical quantum computing appears to be half a decade away... every half decade. In this session, we'll take a look at the basic principles behind quantum computing, the whys behind its potential, as well as the history of breakthroughs and developments in that space. We'll make a lengthy detour into programming quantum computer emulators with Visual Studio, Q# and Azure. We'll finish up by looking at the most promising pathways for making quantum computing practical and review whether it can indeed render all current encryption schemes obsolete and become the quickest path towards superintelligence.",
"room": "Fireside B",
"logDate": "0001-01-01T00:00:00",
"startTime": "12:45 PM Sunday",
"startTimeDateTime": "0001-01-01T00:00:00",
"interestedCount": 0,
"planToAttendCount": 0,
"interested": false,
"willAttend": false,
"presenters": [
{
"id": 10803,
"firstName": "Eugene",
"lastName": "Chuvyrov",
"email": "",
"phoneNumber": "",
"bio": "Eugene Chuvyrov is a Senior Cloud Architect at Microsoft. He works directly with both startups and enterprises to enable their solutions in Microsoft cloud, and to make Azure better as a result of this work with partners. Over his tenure at Microsoft, his focus varied from modern DevOps, to enabling AI solutions in the cloud, to advising customers on creating Blockchain solutions in Azure. He is looking forward to sharing his knowledge from those engagements with the community.",
"webSite": "http://linkedin.com/in/eugenechuvyrov/",
"imageUrl": "//ddrt7tzfkdwdf.cloudfront.net/attendeeimage/20140829154826-10803.jpg",
"allowAttendeeToEmailMe": true,
"company": "Microsoft",
"city": "San Diego",
"state": "California",
"presentationLimit": 0,
"sessions": [],
"allowHtml": false,
"facebookUrl": "http://www.facebook.com/eugene.chuvyrov",
"googlePlusUrl": "",
"linkedInUrl": "http://www.linkedin.com/in/eugenechuvyrov",
"twitterUrl": "http://twitter.com/EugeneChuvyrov",
"urlPostToken": "2018",
"bioShort": "Cloud Architect at Microsoft focused on accelerating modern DevOps, Machine Learning and Blockchain.",
"isKeyNoteSpeaker": false,
"isWorkshopSpeaker": false
}
],
"tags": [
{
"id": 264,
"tagName": "Azure",
"sessions": []
},
{
"id": 2128,
"tagName": "Quantum",
"sessions": []
}
],
"allowHtml": false,
"kidOrProfessionalSession": "ProfessionalSession",
"kidSession": false,
"tagsResultCsv": "Azure,Quantum",
"sessionLevelId": 2,
"sessionTimeDateTime": "2018-10-14T12:45:00",
"sessionUrl": "2018/are-we-there-yet-a-pragmatic-look-at-quantum-computing-and-q-with-azure",
"sessionUrlPre": "/session/2018/are-we-there-yet-a-pragmatic-look-at-quantum-computing-and-q-with-azure",
"sessionTrackId": 0,
"workshop": false,
"sessionTimesId": 139,
"keynote": false,
"descriptionShort": "Like superintelligence, practical quantum...",
"speakersNamesCsv": "Eugene Chuvyrov",
"sessionSlug": "are-we-there-yet-a-pragmatic-look-at-quantum-computing-and-q-with-azure"
},
{
"id": 7460,
"title": "Microservices and Serverless Speaker Panel – The Road Ahead",
"description": "We have all heard for a while that microservices are the solution to all of our problems. Now serverless is emerging as an even smaller component of the new way of building applications piece by piece. In our zeal to adopt the latest in architectural approaches, have we given sufficient thought to where they are going or what comes next?\n<br/><br/>\nIf you are considering building an application with a microservice or serverless based architecture, come to this panel of experienced cloud developers and architects and learn what these technologies can do for you now, and what they will do in the future. Ask our panel questions on what works, what doesn't, and how to prepare today for the technology that's coming next.",
"room": "Town Square B",
"logDate": "0001-01-01T00:00:00",
"startTime": "9:15 AM Sunday",
"startTimeDateTime": "0001-01-01T00:00:00",
"interestedCount": 0,
"planToAttendCount": 0,
"interested": false,
"willAttend": false,
"presenters": [
{
"id": 10803,
"firstName": "Eugene",
"lastName": "Chuvyrov",
"email": "",
"phoneNumber": "",
"bio": "Eugene Chuvyrov is a Senior Cloud Architect at Microsoft. He works directly with both startups and enterprises to enable their solutions in Microsoft cloud, and to make Azure better as a result of this work with partners. Over his tenure at Microsoft, his focus varied from modern DevOps, to enabling AI solutions in the cloud, to advising customers on creating Blockchain solutions in Azure. He is looking forward to sharing his knowledge from those engagements with the community.",
"webSite": "http://linkedin.com/in/eugenechuvyrov/",
"imageUrl": "//ddrt7tzfkdwdf.cloudfront.net/attendeeimage/20140829154826-10803.jpg",
"allowAttendeeToEmailMe": true,
"company": "Microsoft",
"city": "San Diego",
"state": "California",
"presentationLimit": 0,
"sessions": [],
"allowHtml": false,
"facebookUrl": "http://www.facebook.com/eugene.chuvyrov",
"googlePlusUrl": "",
"linkedInUrl": "http://www.linkedin.com/in/eugenechuvyrov",
"twitterUrl": "http://twitter.com/EugeneChuvyrov",
"urlPostToken": "2018",
"bioShort": "Cloud Architect at Microsoft focused on accelerating modern DevOps, Machine Learning and Blockchain.",
"isKeyNoteSpeaker": false,
"isWorkshopSpeaker": false
},
{
"id": 1725,
"firstName": "Brad",
"lastName": "Irby",
"email": "",
"phoneNumber": "",
"bio": "Brad is an accomplished .NET software architect specializing in Domain Driven Design and Event Driven Architectures. Over his 30 year professional career, Brad has built web applications for Adidas, Kashi, Gap, Wells Fargo, Bank of America, Aptos, and many others. Brads specialty is migrating existing .NET applications to a DDD architecture and EDA without system downtime.\n\nBrad has been the organizer of the San Francisco and Silicon Valley .NET user groups, and is frequent speaker on technical software topics throughout the US, South America, and Europe.\n\nBrad has written a book on Reengineering .NET published by Adison Wesley.",
"webSite": "http://www.bradirby.com/",
"imageUrl": "//ddrt7tzfkdwdf.cloudfront.net/attendeeimage/20180529144429-1725.jpg",
"allowAttendeeToEmailMe": true,
"company": "Brad Irby Consulting LLC",
"city": "Buenos Aires",
"state": "Argentina",
"presentationLimit": 0,
"sessions": [],
"allowHtml": false,
"facebookUrl": "",
"googlePlusUrl": "",
"linkedInUrl": "http://www.linkedin.com/in/BradIrby",
"twitterUrl": "http://twitter.com/bradirby",
"urlPostToken": "2018",
"bioShort": "I help retail companies migrate Software Monoliths to microservices and Event Driven Architecture",
"isKeyNoteSpeaker": false,
"isWorkshopSpeaker": false
},
{
"id": 187,
"firstName": "Dave",
"lastName": "Nielsen",
"email": "",
"phoneNumber": "",
"bio": "As Head of Ecosystem Programs, Dave uses emerging technologies and open source projects like Microservices, Serverless & Kubernetes to bring the magic of Redis to the broader community. Dave has extensive ecosystem experience from his years of engagement in the web, cloud and big data trenches. Prior to Redis Labs, Dave led the relationship between Intel’s Deep Learning in Apache Spark project and public cloud providers; and at PayPal where he helped pioneer web api developer evangelism. ",
"webSite": "http://www.davenielsen.net",
"imageUrl": "//ddrt7tzfkdwdf.cloudfront.net/attendeeimage/20180609192813-187.jpg",
"allowAttendeeToEmailMe": true,
"company": "Intel",
"city": "Mountain View",
"state": "CA",
"presentationLimit": 0,
"sessions": [],
"allowHtml": false,
"facebookUrl": "http://www.facebook.com/dcnielsen",
"googlePlusUrl": "https://plus.google.com/115101010968107039270/about",
"linkedInUrl": "http://www.linkedin.com/in/dnielsen",
"twitterUrl": "http://twitter.com/davenielsen",
"urlPostToken": "2018",
"bioShort": "I head up ecosystem programs at Redis Labs. I'm also the co-founder of CloudCamp. ",
"isKeyNoteSpeaker": false,
"isWorkshopSpeaker": false
},
{
"id": 8590,
"firstName": "Chris",
"lastName": "Richardson",
"email": "",
"phoneNumber": "",
"bio": "\nChris Richardson is a developer and architect. He is a Java Champion, a JavaOne rock star and the author of POJOs in Action, which describes how to build enterprise Java applications with frameworks such as Spring and Hibernate. Chris was also the founder of the original CloudFoundry.com, an early Java PaaS for Amazon EC2. \n\nToday, he is a recognized thought leader in microservices and speaks regularly at international conferences. Chris is the creator of <a href=\"http://Microservices.io\">Microservices.io</a>, a pattern language for microservices, and is writing the book <a href=\"https://www.manning.com/books/microservices-patterns\">Microservice Patterns</a>, which is available as a Manning MEAP. He provides <a href=\"http://chrisrichardson.net/microserviceslanding.html\">microservices consulting and training</a> to organizations that are adopting the microservice architecture and is working on his third startup <a href=\"http://eventuate.io/\">Eventuate</a>, an application platform for developing transactional microservices. ",
"webSite": "http://learnmicroservices.io",
"imageUrl": "//ddrt7tzfkdwdf.cloudfront.net/attendeeimage/20130102000000-8590.jpg",
"allowAttendeeToEmailMe": true,
"company": "Eventuate, Inc",
"city": "Oakland",
"state": "CA",
"presentationLimit": 0,
"sessions": [],
"allowHtml": true,
"facebookUrl": "",
"googlePlusUrl": "",
"linkedInUrl": "",
"twitterUrl": "http://twitter.com/crichardson",
"urlPostToken": "2018",
"bioShort": "Founder of Eventuate, Author of POJOs in Action, creator of the original Cloud Foundry",
"isKeyNoteSpeaker": false,
"isWorkshopSpeaker": false
}
],
"tags": [
{
"id": 44,
"tagName": "Architecture",
"sessions": []
},
{
"id": 984,
"tagName": "microservices",
"sessions": []
},
{
"id": 945,
"tagName": "Modular Architecture",
"sessions": []
},
{
"id": 1066,
"tagName": "serverless",
"sessions": []
}
],
"allowHtml": true,
"kidOrProfessionalSession": "ProfessionalSession",
"kidSession": false,
"tagsResultCsv": "Architecture,microservices,Modular Architecture,serverless",
"sessionLevelId": 2,
"sessionTimeDateTime": "2018-10-14T09:15:00",
"sessionUrl": "2018/microservices-and-serverless-speaker-panel---the-road-ahead",
"sessionUrlPre": "/session/2018/microservices-and-serverless-speaker-panel---the-road-ahead",
"sessionTrackId": 1107,
"sessionTrackName": "Speaker Panels",
"workshop": false,
"sessionTimesId": 137,
"keynote": false,
"descriptionShort": "We have all heard for a while that microservices...",
"speakersNamesCsv": "Eugene Chuvyrov,Brad Irby,Dave Nielsen,Chris Richardson",
"sessionSlug": "microservices-and-serverless-speaker-panel---the-road-ahead"
}
],
"allowHtml": false,
"facebookUrl": "http://www.facebook.com/eugene.chuvyrov",
"googlePlusUrl": "",
"linkedInUrl": "http://www.linkedin.com/in/eugenechuvyrov",
"twitterUrl": "http://twitter.com/EugeneChuvyrov",
"presenterUrl": "2018/eugene-chuvyrov-10803",
"urlPostToken": "2018",
"bioShort": "Cloud Architect at Microsoft focused on accelerating modern DevOps, Machine Learning and Blockchain.",
"isKeyNoteSpeaker": false,
"isWorkshopSpeaker": false,
"speakerSequence": "zzzzzzzz"
},
{
"id": 1124,
"firstName": "Douglas",
"lastName": "Crockford",
"email": "",
"phoneNumber": "",
"bio": "Douglas Crockford discovered the JSON Data Interchange Format. He is also the author of _JavaScript: The Good Parts_. He has been called a guru, but he is actually more of a mahatma.",
"webSite": "http://crockford.com",
"imageUrl": "//ddrt7tzfkdwdf.cloudfront.net/attendeeimage/20131213212414-1124.jpg",
"allowAttendeeToEmailMe": true,
"company": "",
"city": "San Jose",
"state": "California",
"presentationLimit": 0,
"sessions": [
{
"id": 7417,
"title": "How JavaScript Works",
"description": "<table style=\"vertical-align: top;\">\n <tr>\n <td> </td>\n <td style=\"vertical-align: top;\">\n\n <iframe style=\"width:120px;height:240px;\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" frameborder=\"0\"\n src=\"//ws-na.amazon-adsystem.com/widgets/q?ServiceVersion=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace=US&source=ac&ref=tf_til&ad_type=product_link&tracking_id=petkelsblo-20&marketplace=amazon®ion=US&placement=1949815005&asins=1949815005&linkId=b7413dcbf9a83ca7ccc2368221171001&show_border=true&link_opens_in_new_window=true&price_color=333333&title_color=0066c0&bg_color=ffffff\">\n </iframe>\n <br/>\n <b>Buy the Book!</b>\n </td>\n <td> </td>\n <td>\n <p>Douglas Crockford is the author of <b>How JavaScript Works</b>, the shocking best seller that rips the\n lid off behind\n the scenes. In this light-hearted romp thru the world's most misunderstood programming language,\n Crockford reveals\n what is actually going on, and how we can use this to write better programs. </p>\n </td>\n </tr>\n</table>",
"room": "Town Square A",
"logDate": "0001-01-01T00:00:00",
"startTime": "9:30 AM Saturday",
"startTimeDateTime": "0001-01-01T00:00:00",
"interestedCount": 0,
"planToAttendCount": 0,
"interested": false,
"willAttend": false,
"presenters": [
{
"id": 1124,
"firstName": "Douglas",
"lastName": "Crockford",
"email": "",
"phoneNumber": "",
"bio": "Douglas Crockford discovered the JSON Data Interchange Format. He is also the author of _JavaScript: The Good Parts_. He has been called a guru, but he is actually more of a mahatma.",
"webSite": "http://crockford.com",
"imageUrl": "//ddrt7tzfkdwdf.cloudfront.net/attendeeimage/20131213212414-1124.jpg",
"allowAttendeeToEmailMe": true,
"company": "",
"city": "San Jose",
"state": "California",
"presentationLimit": 0,
"sessions": [],
"allowHtml": true,
"facebookUrl": "",
"googlePlusUrl": "https://plus.google.com/118095276221607585885/about",
"linkedInUrl": "",
"twitterUrl": "",
"urlPostToken": "2018",
"bioShort": "Douglas Crockford discovered the JSON Data Interchange Format. He is also the author of _JavaScript: The Good Parts_. He has been called a guru, but he is actually more of a mahatma.",
"isKeyNoteSpeaker": false,
"isWorkshopSpeaker": false
}
],
"tags": [
{
"id": 925,
"tagName": "JavaScript",
"sessions": []
},
{
"id": 73,
"tagName": "JSON",
"sessions": []
}
],
"allowHtml": true,
"kidOrProfessionalSession": "ProfessionalSession",
"kidSession": false,
"tagsResultCsv": "JavaScript,JSON",
"sessionLevelId": 1,
"sessionTimeDateTime": "2018-10-13T09:30:00",
"sessionUrl": "2018/how-javascript-works",
"sessionUrlPre": "/session/2018/how-javascript-works",
"sessionTrackId": 1099,
"sessionTrackName": "JavaScript",
"workshop": false,
"sessionTimesId": 131,
"keynote": false,
"videoUrl": "/VideoSession/2018/how-javascript-works",
"descriptionShort": "<table style=\"vertical-align: top;\">\n <tr>...",
"speakersNamesCsv": "Douglas Crockford",
"sessionSlug": "how-javascript-works"
},
{
"id": 7418,
"title": "Q&A With Douglas Crockford",
"description": "If you've never been to a Q&A session with Douglas Crockford, you are in for a treat. Ask anything you want, then be prepared for the answer. This is the follow on session to Douglas Crockford's first session where he talks about <b>How JavaScript Works</b> (his new book).",
"room": "Fireside A",
"logDate": "0001-01-01T00:00:00",
"startTime": "11:00 AM Saturday",
"startTimeDateTime": "0001-01-01T00:00:00",
"interestedCount": 0,
"planToAttendCount": 0,
"interested": false,
"willAttend": false,
"presenters": [
{
"id": 1124,
"firstName": "Douglas",
"lastName": "Crockford",
"email": "",
"phoneNumber": "",
"bio": "Douglas Crockford discovered the JSON Data Interchange Format. He is also the author of _JavaScript: The Good Parts_. He has been called a guru, but he is actually more of a mahatma.",
"webSite": "http://crockford.com",
"imageUrl": "//ddrt7tzfkdwdf.cloudfront.net/attendeeimage/20131213212414-1124.jpg",
"allowAttendeeToEmailMe": true,
"company": "",
"city": "San Jose",
"state": "California",
"presentationLimit": 0,
"sessions": [],
"allowHtml": true,
"facebookUrl": "",
"googlePlusUrl": "https://plus.google.com/118095276221607585885/about",
"linkedInUrl": "",
"twitterUrl": "",
"urlPostToken": "2018",
"bioShort": "Douglas Crockford discovered the JSON Data Interchange Format. He is also the author of _JavaScript: The Good Parts_. He has been called a guru, but he is actually more of a mahatma.",
"isKeyNoteSpeaker": false,
"isWorkshopSpeaker": false
}
],
"tags": [
{
"id": 925,
"tagName": "JavaScript",
"sessions": []
},
{
"id": 73,
"tagName": "JSON",
"sessions": []
}
],
"allowHtml": true,
"kidOrProfessionalSession": "ProfessionalSession",
"kidSession": false,
"tagsResultCsv": "JavaScript,JSON",
"sessionLevelId": 1,
"sessionTimeDateTime": "2018-10-13T11:00:00",
"sessionUrl": "2018/qa-with-douglas-crockford",
"sessionUrlPre": "/session/2018/qa-with-douglas-crockford",
"sessionTrackId": 1099,
"sessionTrackName": "JavaScript",
"workshop": false,
"sessionTimesId": 132,
"keynote": false,
"descriptionShort": "If you've never been to a Q&A session with Douglas...",
"speakersNamesCsv": "Douglas Crockford",
"sessionSlug": "qa-with-douglas-crockford"
},
{
"id": 7465,
"title": "Web Panel with Douglas Crockford, Steve Souders and Mike North",
"description": "Join this star filled panel, Douglas Crockford, Steve Souders and Mike North talk about the web. A better set of luminaries you will not find. Both Douglas Crockford and Steve Souders keynote the largest tech conferences in the world regularly, and Mike North a well known tech author who also leads developer training at LinkedIn.\n<br/><br/>\nKevin Nilson will moderate this much anticipated lively session right after lunch on Saturday on the main stage of Code Camp. Don't miss it!\n",
"room": "Town Square B",
"logDate": "0001-01-01T00:00:00",
"startTime": "1:00 PM Saturday",
"startTimeDateTime": "0001-01-01T00:00:00",
"interestedCount": 0,
"planToAttendCount": 0,
"interested": false,
"willAttend": false,
"presenters": [
{
"id": 1124,
"firstName": "Douglas",
"lastName": "Crockford",
"email": "",
"phoneNumber": "",
"bio": "Douglas Crockford discovered the JSON Data Interchange Format. He is also the author of _JavaScript: The Good Parts_. He has been called a guru, but he is actually more of a mahatma.",
"webSite": "http://crockford.com",
"imageUrl": "//ddrt7tzfkdwdf.cloudfront.net/attendeeimage/20131213212414-1124.jpg",
"allowAttendeeToEmailMe": true,
"company": "",
"city": "San Jose",
"state": "California",
"presentationLimit": 0,
"sessions": [],
"allowHtml": true,
"facebookUrl": "",
"googlePlusUrl": "https://plus.google.com/118095276221607585885/about",
"linkedInUrl": "",
"twitterUrl": "",
"urlPostToken": "2018",
"bioShort": "Douglas Crockford discovered the JSON Data Interchange Format. He is also the author of _JavaScript: The Good Parts_. He has been called a guru, but he is actually more of a mahatma.",
"isKeyNoteSpeaker": false,
"isWorkshopSpeaker": false
},
{
"id": 823,
"firstName": "Kevin",
"lastName": "Nilson",
"email": "",
"phoneNumber": "",
"bio": "Team Lead of the Chromecast Technical Solutions Engineer team, a Java Champion and three time JavaOne Rock Star Presenter. Kevin has spoken at conferences such as JavaOne, Devoxx, JAX, O'Reilly Fluent, Silicon Valley Code Camp, JAX, HTML5DevConf, On Android, NFJS SpringOne and AjaxWorld. Kevin is the co-author of Web 2.0 Fundamentals. In the past Kevin was an adjunct professor at the College of San Mateo. Kevin holds a MS and BS in Computer Science from Southern Illinois University. Kevin is the leader of the Silicon Valley JavaScript Meetup, Silicon Valley Java User Group, Silicon Valley Google Developer Group, and Devoxx4Kids Bay Area.",
"webSite": "http://www.javaclimber.com",
"imageUrl": "//ddrt7tzfkdwdf.cloudfront.net/attendeeimage/20170609222806-823.jpg",
"allowAttendeeToEmailMe": true,
"company": "Google",
"city": "Mountain View",
"state": "CA",
"presentationLimit": 0,
"sessions": [],
"allowHtml": false,
"facebookUrl": "http://www.facebook.com/javaclimber",
"googlePlusUrl": "https://plus.google.com/115904610891053142665/about",
"linkedInUrl": "http://www.linkedin.com/in/kevinnilson",
"twitterUrl": "http://twitter.com/javaclimber",
"urlPostToken": "2018",
"bioShort": "Chromecast Technical Solutions Engineering Lead at Google, Java Champion, 3 time JavaOne Rock Star",
"isKeyNoteSpeaker": false,
"isWorkshopSpeaker": false
},
{
"id": 39062,
"firstName": "Mike",
"lastName": "North",
"email": "",
"phoneNumber": "",
"bio": "Mike trains web development teams all over the world, at companies ranging from tiny stealth-mode startups to Silicon Valley tech giants. He’s currently a Frontend Masters instructor, a Staff Engineer on LinkedIn’s web frameworks team, and the owner of Mike Works, a training-focused consultancy.",
"webSite": "https://mike.works",
"imageUrl": "//ddrt7tzfkdwdf.cloudfront.net/attendeeimage/20170622194128-39062.jpg",
"allowAttendeeToEmailMe": true,
"company": "Mike Works, Inc.",
"city": "Seattle",
"state": "WA",
"presentationLimit": 0,
"sessions": [],
"allowHtml": false,
"facebookUrl": "http://www.facebook.com/mike.l.north",
"googlePlusUrl": "https://plus.google.com/117889563608304920256/about",
"linkedInUrl": "http://www.linkedin.com/in/northm",
"twitterUrl": "http://twitter.com/michaellnorth",
"urlPostToken": "2018",
"bioShort": "Global web technology speaker, author, educator and trainer.",
"isKeyNoteSpeaker": false,
"isWorkshopSpeaker": false
},
{
"id": 6548,
"firstName": "Steve",
"lastName": "Souders",
"email": "",
"phoneNumber": "",
"bio": "<p>Steve works at <a href=\"http://speedcurve.com/\">SpeedCurve</a> on the interplay between performance and design. He previously served as Google's Head Performance Engineer, Chief Performance Yahoo!, and Chief Performance Officer at <a href=\"http://www.fastly.com/\">Fastly</a>. Steve has pioneered much of the work in the world of web performance. He is the author of <a href=\"http://www.amazon.com/gp/product/0596529309?ie=UTF8&tag=stevsoud-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=0596529309\">High Performance Web Sites</a> and <a href=\"http://www.amazon.com/gp/product/0596522304?ie=UTF8&tag=stevsoud-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=0596522304\">Even Faster Web Sites</a>. He is the creator of many performance tools and services including <a href=\"http://developer.yahoo.com/yslow/\">YSlow</a>, <a href=\"http://httparchive.org/\">the HTTP Archive</a>, <a href=\"http://stevesouders.com/episodes/\">Episodes</a>, <a href=\"http://stevesouders.com/controljs/\">ControlJS</a>, and <a href=\"http://www.browserscope.org/\">Browserscope</a>. Steve taught CS193H: High Performance Web Sites at <a href=\"http://www.stanford.edu/\">Stanford</a> and serves as co-chair of <a href=\"http://velocityconf.com/\">Velocity</a>, the web performance and operations conference from O'Reilly.</p>\n",
"webSite": "http://stevesouders.com/",
"imageUrl": "//ddrt7tzfkdwdf.cloudfront.net/attendeeimage/20150401180921-6548.jpg",
"allowAttendeeToEmailMe": true,
"company": "SpeedCurver",
"city": "xx",
"state": "xx",
"presentationLimit": 0,
"sessions": [],
"allowHtml": true,
"facebookUrl": "",
"googlePlusUrl": "https://plus.google.com/114676337053000557002/about",
"linkedInUrl": "",
"twitterUrl": "http://twitter.com/Souders",
"urlPostToken": "2018",
"bioShort": "Steve works at SpeedCurve on the interplay between performance and design. ",
"isKeyNoteSpeaker": false,
"isWorkshopSpeaker": false
}
],
"tags": [
{
"id": 925,
"tagName": "JavaScript",
"sessions": []
},
{
"id": 2133,
"tagName": "Panel",
"sessions": []
},
{
"id": 852,
"tagName": "Web",
"sessions": []
},
{
"id": 168,
"tagName": "Web Performance",
"sessions": []
}
],
"allowHtml": true,
"kidOrProfessionalSession": "ProfessionalSession",
"kidSession": false,
"tagsResultCsv": "JavaScript,Panel,Web,Web Performance",
"sessionLevelId": 1,
"sessionTimeDateTime": "2018-10-13T13:00:00",
"sessionUrl": "2018/web-panel-with-douglas-crockford-steve-souders-and-mike-north",
"sessionUrlPre": "/session/2018/web-panel-with-douglas-crockford-steve-souders-and-mike-north",
"sessionTrackId": 1107,
"sessionTrackName": "Speaker Panels",
"workshop": false,
"sessionTimesId": 133,
"keynote": false,
"videoUrl": "/VideoSession/2018/web-panel-with-douglas-crockford-steve-souders-and-mike-north",
"descriptionShort": "Join this star filled panel, Douglas Crockford,...",
"speakersNamesCsv": "Douglas Crockford,Kevin Nilson,Mike North,Steve Souders",
"sessionSlug": "web-panel-with-douglas-crockford-steve-souders-and-mike-north"
}
],
"allowHtml": true,
"facebookUrl": "",
"googlePlusUrl": "https://plus.google.com/118095276221607585885/about",
"linkedInUrl": "",
"twitterUrl": "",
"presenterUrl": "2018/douglas-crockford-1124",
"urlPostToken": "2018",
"bioShort": "Douglas Crockford discovered the JSON Data Interchange Format. He is also the author of _JavaScript: The Good Parts_. He has been called a guru, but he is actually more of a mahatma.",
"isKeyNoteSpeaker": false,
"isWorkshopSpeaker": false,
"speakerSequence": "1"
},
{
"id": 41808,
"firstName": "Paul",
"lastName": "Everitt",
"email": "",
"phoneNumber": "",
"bio": "Paul is the PyCharm and WebStorm Developer Advocate at JetBrains. Before that, Paul was a partner at Agendaless Consulting and co-founder of Zope Corporation, taking the first open source application server through $14M of funding. Paul has bootstrapped both the Plone Foundation and the Python Software Foundation. Before that, Paul was an officer in the US Navy, starting www.navy.mil in 1993.",
"webSite": "http://www.pauleveritt.org/",
"imageUrl": "//ddrt7tzfkdwdf.cloudfront.net/attendeeimage/20170609223012-41808.jpg",
"allowAttendeeToEmailMe": true,
"company": "JetBrains, Inc.",
"city": "Fredericksburg",
"state": "VA",
"presentationLimit": 0,
"sessions": [
{
"id": 7394,
"title": "Productive React/TypeScript/TDD: Love Story from Hell",
"description": "React is the most popular frontend framework and TypeScript is one of the hottest languages. The combination? Common, but barely. With test-driven development? Thin ice.\n<br/>\nIn this hands-on session we write a simple React counter application in TypeScript. But with a different approach: instead of constantly reloading a browser, we write tests in Jest and only visit the browser as a final step. We also see how to put the WebStorm IDE to work to get the productivity benefits promised by TypeScript.",
"room": "Town Square C",
"logDate": "0001-01-01T00:00:00",
"startTime": "2:15 PM Saturday",
"startTimeDateTime": "0001-01-01T00:00:00",
"interestedCount": 0,
"planToAttendCount": 0,
"interested": false,
"willAttend": false,
"presenters": [
{
"id": 41808,
"firstName": "Paul",
"lastName": "Everitt",
"email": "",
"phoneNumber": "",
"bio": "Paul is the PyCharm and WebStorm Developer Advocate at JetBrains. Before that, Paul was a partner at Agendaless Consulting and co-founder of Zope Corporation, taking the first open source application server through $14M of funding. Paul has bootstrapped both the Plone Foundation and the Python Software Foundation. Before that, Paul was an officer in the US Navy, starting www.navy.mil in 1993.",
"webSite": "http://www.pauleveritt.org/",
"imageUrl": "//ddrt7tzfkdwdf.cloudfront.net/attendeeimage/20170609223012-41808.jpg",
"allowAttendeeToEmailMe": true,
"company": "JetBrains, Inc.",
"city": "Fredericksburg",
"state": "VA",
"presentationLimit": 0,
"sessions": [],
"allowHtml": false,
"facebookUrl": "",
"googlePlusUrl": "",
"linkedInUrl": "http://www.linkedin.com/in/paeveritt",
"twitterUrl": "http://twitter.com/paulweveritt",
"urlPostToken": "2018",
"bioShort": "Paul is the PyCharm and WebStorm Developer Advocate at JetBrains.",
"isKeyNoteSpeaker": false,
"isWorkshopSpeaker": false
}
],
"tags": [
{
"id": 925,
"tagName": "JavaScript",
"sessions": []
},
{
"id": 991,
"tagName": "React",
"sessions": []
},
{
"id": 319,
"tagName": "TDD",
"sessions": []
},
{
"id": 897,
"tagName": "TypeScript",
"sessions": []
}
],
"allowHtml": true,
"kidOrProfessionalSession": "ProfessionalSession",
"kidSession": false,
"tagsResultCsv": "JavaScript,React,TDD,TypeScript",
"sessionLevelId": 2,
"sessionTimeDateTime": "2018-10-13T14:15:00",
"sessionUrl": "2018/productive-reacttypescripttdd-love-story-from-hell",
"sessionUrlPre": "/session/2018/productive-reacttypescripttdd-love-story-from-hell",
"sessionTrackId": 1099,
"sessionTrackName": "JavaScript",
"workshop": false,
"sessionTimesId": 134,
"keynote": false,
"videoUrl": "/VideoSession/2018/productive-reacttypescripttdd-love-story-from-hell",
"descriptionShort": "React is the most popular frontend framework and...",
"speakersNamesCsv": "Paul Everitt",
"sessionSlug": "productive-reacttypescripttdd-love-story-from-hell"
}
],
"allowHtml": false,
"facebookUrl": "",
"googlePlusUrl": "",
"linkedInUrl": "http://www.linkedin.com/in/paeveritt",
"twitterUrl": "http://twitter.com/paulweveritt",
"presenterUrl": "2018/paul-everitt-41808",
"urlPostToken": "2018",
"bioShort": "Paul is the PyCharm and WebStorm Developer Advocate at JetBrains.",
"isKeyNoteSpeaker": false,
"isWorkshopSpeaker": false,
"speakerSequence": "zzzzzzzz"
},
{
"id": 1269,
"firstName": "Arun",
"lastName": "Gupta",
"email": "",
"phoneNumber": "",
"bio": "Arun Gupta is a Principal Open Source Technologist at Amazon Web Services. He has built and led developer communities for 12+ years at Sun, Oracle, Red Hat and Couchbase. He has deep expertise in leading cross-functional teams to develop and execute strategy, planning and execution of content, marketing campaigns, and programs. Prior to that he led engineering teams at Sun and is a founding member of the Java EE team.\n\nHe has extensive speaking experience in more than 40 countries on myriad topics and is a JavaOne Rock Star for four years in a row. Gupta also founded the Devoxx4Kids chapter in the US and continues to promote technology education among children. A prolific blogger, author of several books, an avid runner, a globe trotter, a Docker Captain, a Java Champion, a JUG leader, NetBeans Dream Team member, he is easily accessible at @arungupta.\n\n",
"webSite": "blog.arungupta.me",
"imageUrl": "//ddrt7tzfkdwdf.cloudfront.net/attendeeimage/20130102000000-1269.jpg",
"allowAttendeeToEmailMe": false,
"company": "Couchbase",
"city": "San Jose",
"state": "CA",
"presentationLimit": 0,
"sessions": [
{
"id": 7379,
"title": "Java developer’s journey in Kubernetes land",
"description": "Deploying your Java application in a Kubernetes cluster could feel like Alice in Wonderland. You keep going down the rabbit hole and don’t know how to make that ride comfortable. This no-slide and code-only session will explain how a Java application consisting of different microservices can be deployed in a Kubernetes cluster. Specifically, it will explain the following:\n\nShow a Java application with three microservices\nHow this application is packaged as a Docker image\nCreate Kubernetes manifests\nHow Helm charts are created and hosted in a Helm repository\nTest in a local environment\nAttach debugger\nInstall Istio in k8s, show service visibility\nInstall k8s on AWS\nMigrate application from a local cluster to a cluster on the Cloud\nSetup deployment pipeline using CodePipeline\nUse an Alexa skill to scale the application\nChange application, show A/B using Istio",
"room": "Fireside C",
"logDate": "0001-01-01T00:00:00",
"startTime": "2:15 PM Saturday",
"startTimeDateTime": "0001-01-01T00:00:00",
"interestedCount": 0,
"planToAttendCount": 0,
"interested": false,
"willAttend": false,
"presenters": [
{
"id": 1269,
"firstName": "Arun",
"lastName": "Gupta",
"email": "",
"phoneNumber": "",
"bio": "Arun Gupta is a Principal Open Source Technologist at Amazon Web Services. He has built and led developer communities for 12+ years at Sun, Oracle, Red Hat and Couchbase. He has deep expertise in leading cross-functional teams to develop and execute strategy, planning and execution of content, marketing campaigns, and programs. Prior to that he led engineering teams at Sun and is a founding member of the Java EE team.\n\nHe has extensive speaking experience in more than 40 countries on myriad topics and is a JavaOne Rock Star for four years in a row. Gupta also founded the Devoxx4Kids chapter in the US and continues to promote technology education among children. A prolific blogger, author of several books, an avid runner, a globe trotter, a Docker Captain, a Java Champion, a JUG leader, NetBeans Dream Team member, he is easily accessible at @arungupta.\n\n",
"webSite": "blog.arungupta.me",
"imageUrl": "//ddrt7tzfkdwdf.cloudfront.net/attendeeimage/20130102000000-1269.jpg",
"allowAttendeeToEmailMe": false,
"company": "Couchbase",
"city": "San Jose",
"state": "CA",
"presentationLimit": 0,
"sessions": [],
"allowHtml": false,
"facebookUrl": "",
"googlePlusUrl": "",
"linkedInUrl": "",
"twitterUrl": "http://twitter.com/arungupta",
"urlPostToken": "2018",
"bioShort": "Arun Gupta is a Principal Open Source Technologist at Amazon Web Services. ",
"isKeyNoteSpeaker": false,
"isWorkshopSpeaker": false
}
],
"tags": [
{
"id": 837,
"tagName": "Java",
"sessions": []
},
{
"id": 2087,
"tagName": "Kubernetes",
"sessions": []
}
],
"allowHtml": true,
"kidOrProfessionalSession": "ProfessionalSession",
"kidSession": false,
"tagsResultCsv": "Java,Kubernetes",
"sessionLevelId": 1,
"sessionTimeDateTime": "2018-10-13T14:15:00",
"sessionUrl": "2018/java-developers-journey-in-kubernetes-land",
"sessionUrlPre": "/session/2018/java-developers-journey-in-kubernetes-land",
"sessionTrackId": 1103,
"sessionTrackName": "Containers",
"workshop": false,
"sessionTimesId": 134,
"keynote": false,
"descriptionShort": "Deploying your Java application in a Kubernetes...",
"speakersNamesCsv": "Arun Gupta",
"sessionSlug": "java-developers-journey-in-kubernetes-land"
}