-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathspeakers.json
7502 lines (7502 loc) · 276 KB
/
speakers.json
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
[
{
"id": "83fd871a-3bbe-4d41-92a4-9443e7c66c5f",
"firstName": "Aaron",
"lastName": "McClennen",
"fullName": "Aaron McClennen",
"bio": "A 27 year java veteran. I wrote my first java program in java 1.0 when AWT on the mac and unix were different.\r\nSince that time I have written uncounted lines of java code, and rewritten most of them.\r\nWhen I first read Fowlers Refactoring my life changed for the better as I realized there was a safe way to fix code that no longer suited.\r\n",
"tagLine": "Front line java engineer - AT&T",
"profilePicture": "https://sessionize.com/image/c79c-400o400o1-GGqVTaPoA7VxKDtAgUGNsh.jpg",
"sessions": [
{
"id": 743493,
"name": "OG Refactoring (Observing Gamma): Patterns to Refactor Towards"
}
],
"isTopSpeaker": false,
"links": [],
"questionAnswers": [
{
"id": 81698,
"question": "Company",
"questionType": "Short_Text",
"answer": "ATT",
"sort": 17,
"answerExtra": null
},
{
"id": 81702,
"question": "Twitter handle with @ ex: @prpatel",
"questionType": "Short_Text",
"answer": "NA",
"sort": 21,
"answerExtra": null
},
{
"id": 81705,
"question": "LinkedIn URL",
"questionType": "Short_Text",
"answer": "NA",
"sort": 22,
"answerExtra": null
}
],
"categories": []
},
{
"id": "bceafbd1-53f7-4888-a891-72955eab9077",
"firstName": "Aaron",
"lastName": "Williams",
"fullName": "Aaron Williams",
"bio": "Aaron is a Senior Engineer- Developer Advocate and Community Manager for Ampere Computing and runs the AArch64 Server community (bit.ly/ampComm). He has held similar roles for various ASF and LF projects, including LF Edge. He worked as a software engineer at SAP working on many projects, including the Electric Vehicles and IoT groups. He has a passion for hardware sustainability and IoT.",
"tagLine": "Sr. Software Engineer, Developer Relations",
"profilePicture": "https://sessionize.com/image/5049-400o400o1-DMEkpZocrUoAFXjfWtvf7o.png",
"sessions": [
{
"id": 750836,
"name": "AMP-ing Your Java with AArch64/Arm64 Servers"
}
],
"isTopSpeaker": false,
"links": [
{
"title": "Twitter",
"url": "https://twitter.com/aarondonw",
"linkType": "Twitter"
},
{
"title": "LinkedIn",
"url": "https://www.linkedin.com/in/aaron-don-williams/",
"linkType": "LinkedIn"
}
],
"questionAnswers": [
{
"id": 81698,
"question": "Company",
"questionType": "Short_Text",
"answer": "Ampere Computing",
"sort": 17,
"answerExtra": null
},
{
"id": 81702,
"question": "Twitter handle with @ ex: @prpatel",
"questionType": "Short_Text",
"answer": "@aarondonw",
"sort": 21,
"answerExtra": null
},
{
"id": 81705,
"question": "LinkedIn URL",
"questionType": "Short_Text",
"answer": "https://www.linkedin.com/in/aaron-don-williams/",
"sort": 22,
"answerExtra": null
}
],
"categories": []
},
{
"id": "f309415d-e050-4c6a-912e-55030a999d12",
"firstName": "Abel",
"lastName": "Fresnillo Silva",
"fullName": "Abel Fresnillo Silva",
"bio": "Abel is a solutions architect and agile enthusiast with experience in multiple business domains, including: Banking, insurance, retail, insurance, manufacturing and energy. I enjoy learning and understanding how technology can significantly impact and influence the success of organizations. He is passionate about finding the best solution for a given business problem, always considering all the different trade-offs, design techniques, technologies and tools.",
"tagLine": "Senior Solutions Architect at Amazon Web Services",
"profilePicture": "https://sessionize.com/image/e782-400o400o1-RkRwYeXx9DVu6ww3nDeNAL.jpg",
"sessions": [
{
"id": 753141,
"name": "Optimize cold starts for Java functions using AWS Lambda SnapStart"
}
],
"isTopSpeaker": false,
"links": [
{
"title": "Twitter",
"url": "https://twitter.com/abel_fresnillo",
"linkType": "Twitter"
},
{
"title": "LinkedIn",
"url": "https://www.linkedin.com/in/abel-fresnillo-silva-90a55a78/",
"linkType": "LinkedIn"
}
],
"questionAnswers": [
{
"id": 81698,
"question": "Company",
"questionType": "Short_Text",
"answer": "Amazon Web Services",
"sort": 17,
"answerExtra": null
},
{
"id": 81702,
"question": "Twitter handle with @ ex: @prpatel",
"questionType": "Short_Text",
"answer": "@abel_fresnillo",
"sort": 21,
"answerExtra": null
},
{
"id": 81705,
"question": "LinkedIn URL",
"questionType": "Short_Text",
"answer": "https://www.linkedin.com/in/abel-fresnillo",
"sort": 22,
"answerExtra": null
}
],
"categories": []
},
{
"id": "46d17ddc-1a74-4d59-8906-d6246ac498d4",
"firstName": "Ajuna",
"lastName": "Kyaruzi",
"fullName": "Ajuna Kyaruzi",
"bio": "Ajuna Kyaruzi works in Developer Relations at Datadog and cares about using software to help people sustainably run large-scale systems, focusing on Incident Managements and SLOs. She loves community building and volunteers with multiple mentorship programs aimed at helping early career folks break into tech, and ensuring they have successful careers. Previously she worked at Google as a Software Engineer on Google Maps and as a Site Reliability Engineer on Google Cloud.",
"tagLine": "SRE & DevOps Advocate",
"profilePicture": "https://sessionize.com/image/89ec-400o400o1-TwmcAYuwCHzji6m2hLjgRT.jpg",
"sessions": [
{
"id": 751868,
"name": "Delivery Engineering"
}
],
"isTopSpeaker": false,
"links": [
{
"title": "X (Twitter)",
"url": "https://twitter.com/ajunaky",
"linkType": "Twitter"
},
{
"title": "LinkedIn",
"url": "https://linkedin.com/in/ajuna",
"linkType": "LinkedIn"
}
],
"questionAnswers": [
{
"id": 81698,
"question": "Company",
"questionType": "Short_Text",
"answer": "Datadog",
"sort": 17,
"answerExtra": null
},
{
"id": 81702,
"question": "Twitter handle with @ ex: @prpatel",
"questionType": "Short_Text",
"answer": "ajunaky",
"sort": 21,
"answerExtra": null
},
{
"id": 81705,
"question": "LinkedIn URL",
"questionType": "Short_Text",
"answer": "LinkedIn.com/in/ajuna",
"sort": 22,
"answerExtra": null
}
],
"categories": []
},
{
"id": "06008a63-f49b-451e-b0ae-44ccaf9bf0cc",
"firstName": "Akula",
"lastName": "Harshitha",
"fullName": "Akula Harshitha",
"bio": "Computer Science graduate from GVPCOE Vizag, working as a Software Developer at IBM. Currently I work with WebSphere eXtreme Scale, which is a usecase of In Memory Data Grid. I'm focused on building applications using various programming languages and frameworks. I’m passionate about problem-solving, optimizing code, and staying up-to-date with the latest industry trends. In my free time, I enjoy exploring new technologies and expanding my skillset.",
"tagLine": "IBM Software Developer",
"profilePicture": "https://sessionize.com/image/b31b-400o400o1-DWbKNkYyZkXASm7QJj7Nvz.jpg",
"sessions": [
{
"id": 750567,
"name": "Are you crazy? hosting 25 years old java code on a brand-new cloud?"
}
],
"isTopSpeaker": false,
"links": [],
"questionAnswers": [
{
"id": 81698,
"question": "Company",
"questionType": "Short_Text",
"answer": "IBM",
"sort": 17,
"answerExtra": null
},
{
"id": 81702,
"question": "Twitter handle with @ ex: @prpatel",
"questionType": "Short_Text",
"answer": "@harshi567",
"sort": 21,
"answerExtra": null
},
{
"id": 81705,
"question": "LinkedIn URL",
"questionType": "Short_Text",
"answer": "https://www.linkedin.com/in/akula-venkata-harshitha-513b9a1b4/",
"sort": 22,
"answerExtra": null
}
],
"categories": []
},
{
"id": "5c386803-b673-4259-a6ce-d85e1fd0a016",
"firstName": "Alex",
"lastName": "Riviere",
"fullName": "Alex Riviere",
"bio": "Alex Riviere is a Senior Frontend Developer for Nexcor Technologies and a Co-Organizer for the Atlanta Vue.js Meetup.",
"tagLine": "Co-Organizer for Atlanta Vue.js Meetup",
"profilePicture": "https://sessionize.com/image/2a67-400o400o1-Gvb6U4BXbHxWHRApqyTe58.jpg",
"sessions": [
{
"id": 749192,
"name": "Fresh Hot CSS Features!"
}
],
"isTopSpeaker": false,
"links": [
{
"title": "X (Twitter)",
"url": "https://twitter.com/fimion",
"linkType": "Twitter"
}
],
"questionAnswers": [
{
"id": 81698,
"question": "Company",
"questionType": "Short_Text",
"answer": "Nexcor Technologies",
"sort": 17,
"answerExtra": null
},
{
"id": 81702,
"question": "Twitter handle with @ ex: @prpatel",
"questionType": "Short_Text",
"answer": "@fimion",
"sort": 21,
"answerExtra": null
},
{
"id": 81705,
"question": "LinkedIn URL",
"questionType": "Short_Text",
"answer": "https://www.linkedin.com/in/fimion/",
"sort": 22,
"answerExtra": null
}
],
"categories": []
},
{
"id": "dedbce11-34e0-466e-a5cb-ea585688d106",
"firstName": "Alex",
"lastName": "Soto",
"fullName": "Alex Soto",
"bio": "Alex Soto is a Director of Developer Experience at Red Hat. He is passionate about the Java world, software automation and he believes in the open-source software model. Alex is the co-author of Testing Java Microservice, Quarkus cookbook, Kubernetes Secrets Management, GitOps cookbook, and RHCE Ansible Automation Study Guide books and contributor to several open-source projects. A Java Champion since 2017, he is also an international speaker and teacher at Salle URL University. You can follow him on Twitter (@alexsotob) to stay tuned to what’s going on in Kubernetes and Java world.",
"tagLine": "Director of Developer Experience at Red Hat",
"profilePicture": "https://sessionize.com/image/08e3-400o400o1-Vj8VMmiq2VU3Yx7YUohwhj.jpg",
"sessions": [
{
"id": 740910,
"name": "Embracing the Hybrid Cloud: Unlocking Success with Open Source Technologies"
}
],
"isTopSpeaker": false,
"links": [
{
"title": "X (Twitter)",
"url": "https://twitter.com/alexsotob",
"linkType": "Twitter"
},
{
"title": "LinkedIn",
"url": "https://www.linkedin.com/in/asotobu/",
"linkType": "LinkedIn"
}
],
"questionAnswers": [
{
"id": 81698,
"question": "Company",
"questionType": "Short_Text",
"answer": "Red Hat",
"sort": 17,
"answerExtra": null
},
{
"id": 81702,
"question": "Twitter handle with @ ex: @prpatel",
"questionType": "Short_Text",
"answer": "@alexsotob",
"sort": 21,
"answerExtra": null
},
{
"id": 81705,
"question": "LinkedIn URL",
"questionType": "Short_Text",
"answer": "https://www.linkedin.com/in/asotobu/",
"sort": 22,
"answerExtra": null
}
],
"categories": []
},
{
"id": "6899d8db-4ad2-4599-934a-08d37dcc250e",
"firstName": "Amy",
"lastName": "Russ",
"fullName": "Amy Russ",
"bio": "Amy Russ is currently the Vice President of Customer Analytics at Synchrony. She has over 11 years of experience as a data professional, having had the pleasure of seeing data move from being cool in Microsoft Access to the current 4th Industrial Revolution. Additionally, she also excels at being able to explain complex topics to individuals at all levels. Outside of data, Amy enjoys using her hands to create. She is currently exploring pottery (both hand-building and using the wheel) and baking (similar to low-code data analytics/science, minimal ingredient baking recipes are one of her current obsessions).",
"tagLine": "Vice President, Synchrony Financial",
"profilePicture": "https://sessionize.com/image/be0f-400o400o1-MKecLHdhjvaErkwXmkF1B.png",
"sessions": [
{
"id": 746227,
"name": "Don't Call it a Comeback: SQL in Cloud AI and ML"
}
],
"isTopSpeaker": false,
"links": [
{
"title": "LinkedIn",
"url": "https://www.linkedin.com/in/amymruss",
"linkType": "LinkedIn"
}
],
"questionAnswers": [
{
"id": 81698,
"question": "Company",
"questionType": "Short_Text",
"answer": "Synchrony Financial",
"sort": 17,
"answerExtra": null
},
{
"id": 81702,
"question": "Twitter handle with @ ex: @prpatel",
"questionType": "Short_Text",
"answer": "N/A",
"sort": 21,
"answerExtra": null
},
{
"id": 81705,
"question": "LinkedIn URL",
"questionType": "Short_Text",
"answer": "https://www.linkedin.com/in/amymruss",
"sort": 22,
"answerExtra": null
}
],
"categories": []
},
{
"id": "912ee409-63c5-40c5-82ec-aabe804f526c",
"firstName": "Anamika",
"lastName": "Roychowdhury",
"fullName": "Anamika Roychowdhury",
"bio": "Anamika Roychowdhury is a Lead Engineer at IBM India Software Lab, where she spearheads the development and support of IBM's Distributed Cache Solution, WebSphere eXtreme Scale. She provides expert guidance to numerous enterprise customers to effectively configure and manage distributed cache and resolves production anomalies in mission critical workloads. \r\nAnamika's 11 years of career journey spans prestigious organizations including American Express, Siemens R&D, and Wipro Technologies, encompassing diverse technology sectors. Her expertise includes distributed caching algorithms, memory efficiency enhancements and enterprise workload optimization. Her passion for emerging technologies and their transformative impact on our world has been a constant driving force.\r\nShe has completed her master's in computer science from IIIT, Bangalore.",
"tagLine": "Leading the development and support of IBM's IMDG solution WebSphere eXtreme Scale team, IBM India Software Lab",
"profilePicture": "https://sessionize.com/image/b96c-400o400o1-XryYG9zqtvDXjWHNMLywZw.jpg",
"sessions": [
{
"id": 750629,
"name": "Unveiling the Magical Power of Java Virtual Threads"
}
],
"isTopSpeaker": false,
"links": [],
"questionAnswers": [
{
"id": 81698,
"question": "Company",
"questionType": "Short_Text",
"answer": "IBM",
"sort": 17,
"answerExtra": null
},
{
"id": 81702,
"question": "Twitter handle with @ ex: @prpatel",
"questionType": "Short_Text",
"answer": "@anamro35",
"sort": 21,
"answerExtra": null
},
{
"id": 81705,
"question": "LinkedIn URL",
"questionType": "Short_Text",
"answer": "https://www.linkedin.com/in/anamika-roychowdhury-43885a71/",
"sort": 22,
"answerExtra": null
}
],
"categories": []
},
{
"id": "4bcfc433-e955-43c9-b2e2-0d689a7794af",
"firstName": "Anca",
"lastName": "Ghenade",
"fullName": "Anca Ghenade",
"bio": "With seven years of experience as a developer, I’ve transitioned into the developer advocate role. Freshly based in San Francisco, I’m always running—both literally and figuratively—to keep pace with and explore the latest in tech.",
"tagLine": "Developer Advocate",
"profilePicture": "https://sessionize.com/image/b633-400o400o1-4rnXjDUsiKNt8RTEBp6FQV.jpg",
"sessions": [
{
"id": 754051,
"name": "Cloud Integration Testing Made Easy for Your Java Apps"
}
],
"isTopSpeaker": false,
"links": [
{
"title": "X (Twitter)",
"url": "https://twitter.com/tinyg210",
"linkType": "Twitter"
},
{
"title": "LinkedIn",
"url": "https://www.linkedin.com/in/anca-ghenade/",
"linkType": "LinkedIn"
}
],
"questionAnswers": [
{
"id": 81698,
"question": "Company",
"questionType": "Short_Text",
"answer": "LocalStack",
"sort": 17,
"answerExtra": null
},
{
"id": 81702,
"question": "Twitter handle with @ ex: @prpatel",
"questionType": "Short_Text",
"answer": "@tinyg210",
"sort": 21,
"answerExtra": null
},
{
"id": 81705,
"question": "LinkedIn URL",
"questionType": "Short_Text",
"answer": "https://www.linkedin.com/in/anca-ghenade/",
"sort": 22,
"answerExtra": null
}
],
"categories": []
},
{
"id": "720cdc7d-0ae6-44d3-af2a-eebc0a086508",
"firstName": "Andres",
"lastName": "Almiray",
"fullName": "Andres Almiray",
"bio": "Andres is a Java/Groovy developer and a Java Champion Alumni, Developer Advocate for the Database Group At Oracle, with more than 2 decades of experience in software design and development. He has been involved in web and desktop application development since the early days of Java. Andres is a true believer in open source and has participated on popular projects like Groovy, Griffon, and DbUnit, as well as starting his own projects. Founding member of the Griffon framework and Hackergarten community event. Author of JReleaser. You can find him on twitter too as @aalmiray. He likes to spend time with his beloved wife, Ixchel, when not hacking around.",
"tagLine": "Seasoned Sourceror",
"profilePicture": "https://sessionize.com/image/5dab-400o400o1-YGt5m7v9F1XRMaWb8uE9Qu.jpg",
"sessions": [
{
"id": 741181,
"name": "Setting up data driven tests with Java tools"
},
{
"id": 741176,
"name": "Going beyond ORMs"
}
],
"isTopSpeaker": false,
"links": [
{
"title": "X (Twitter)",
"url": "https://twitter.com/aalmiray",
"linkType": "Twitter"
},
{
"title": "LinkedIn",
"url": "https://www.linkedin.com/in/aalmiray/",
"linkType": "LinkedIn"
}
],
"questionAnswers": [
{
"id": 81698,
"question": "Company",
"questionType": "Short_Text",
"answer": "Oracle",
"sort": 17,
"answerExtra": null
},
{
"id": 81702,
"question": "Twitter handle with @ ex: @prpatel",
"questionType": "Short_Text",
"answer": "@aalmiray",
"sort": 21,
"answerExtra": null
},
{
"id": 81705,
"question": "LinkedIn URL",
"questionType": "Short_Text",
"answer": "https://www.linkedin.com/in/aalmiray",
"sort": 22,
"answerExtra": null
}
],
"categories": []
},
{
"id": "ddb5faab-b590-4335-bf3f-67ca1f5b2005",
"firstName": "Andrew",
"lastName": "Madson",
"fullName": "Andrew Madson",
"bio": "Andrew Madson is a Data Analytics, Data Science, and AI Evangelist at Dremio, where he leverages his extensive expertise in data analytics, machine learning, and artificial intelligence to drive innovation and educate the wider community. With a strong academic background, including multiple master's degrees in data analytics and business management, Andrew deeply understands the technical intricacies involved in data-driven decision-making.\r\n\r\nAndrew's career is marked by impactful roles at prominent organizations. He served as the Senior Director of Data Analytics & AI at Arizona State University, where he streamlined analytics processes and significantly enhanced team productivity. At LPL Financial, he played a pivotal role in creating a substantial strategic budget and led enterprise-wide initiatives. His tenure at MassMutual involved leading data projects across diverse teams and countries, managing a significant budget, and leading data privacy initiatives.\r\n\r\nAndrew's technical ability is further exemplified by his experience at JP Morgan Chase, where he led data analytics, machine learning, and AI projects for Global Wealth Supervision. He spearheaded innovative AI solutions, including a real-time communication monitoring system and predictive models for advisor retention. His ability to automate processes and lead diverse teams of technical experts underscores his leadership and technical acumen.\r\n\r\nIn addition to his technical expertise, Andrew is a seasoned public speaker and educator. He has served as an adjunct instructor and faculty member at various universities, including Trine University, Grand Canyon University, Southern New Hampshire University, Western Governors University, Maryville University, and Indianapolis University. His ability to communicate complex technical concepts in an accessible manner makes him a sought-after speaker and thought leader in the data science community.\r\n\r\nAndrew's current role as an Evangelist at Dremio allows him to combine his passion for data science with his exceptional communication skills. He actively engages with the wider community, sharing his knowledge and insights to empower organizations to harness the full potential of their data.",
"tagLine": "Dremio | Data Science, AI, and Analytics Evangelist",
"profilePicture": "https://sessionize.com/image/3a48-400o400o1-SE5SCTEqiQ4hGBpEAaoV5v.jpg",
"sessions": [
{
"id": 747322,
"name": "AI Ready Data with Apache Iceberg: Unifying, Controlling, and Optimizing Your Data for Effective AI"
}
],
"isTopSpeaker": false,
"links": [
{
"title": "LinkedIn",
"url": "https://www.linkedin.com/in/andrew-madson/",
"linkType": "LinkedIn"
}
],
"questionAnswers": [
{
"id": 81698,
"question": "Company",
"questionType": "Short_Text",
"answer": "Dremio",
"sort": 17,
"answerExtra": null
},
{
"id": 81702,
"question": "Twitter handle with @ ex: @prpatel",
"questionType": "Short_Text",
"answer": "NA",
"sort": 21,
"answerExtra": null
},
{
"id": 81705,
"question": "LinkedIn URL",
"questionType": "Short_Text",
"answer": "https://www.linkedin.com/in/andrew-madson/",
"sort": 22,
"answerExtra": null
}
],
"categories": []
},
{
"id": "7a260dc7-19c8-4f8a-a299-66c70d91f4c4",
"firstName": "Andrus",
"lastName": "Adamchik",
"fullName": "Andrus Adamchik",
"bio": "Andrus is a passionate open-source developer and a member of the Apache Software Foundation. He started programming in Java back in 1998, and since then founded a number of open-source projects: Apache Cayenne - a developer-friendly ORM, Bootique.io - a lightweight Java app platform, Agrest.io - a framework for dynamic REST services, and DFLib - DataFrame structure for Java. In his day job, Andrus is an IT entrepreneur, running a software company called ObjectStyle.",
"tagLine": "Founder and CEO of ObjectStyle, open-source developer",
"profilePicture": "https://sessionize.com/image/bf6c-400o400o1-YUuVFyXFfjX7P9C5fJxtPL.jpg",
"sessions": [
{
"id": 754668,
"name": "DataFrame - a Swiss Army Knife of Java Data Processing"
}
],
"isTopSpeaker": false,
"links": [
{
"title": "X (Twitter)",
"url": "https://twitter.com/andrus_a",
"linkType": "Twitter"
},
{
"title": "LinkedIn",
"url": "https://www.linkedin.com/in/andrus-adamchik/",
"linkType": "LinkedIn"
}
],
"questionAnswers": [
{
"id": 81698,
"question": "Company",
"questionType": "Short_Text",
"answer": "ObjectStyle",
"sort": 17,
"answerExtra": null
},
{
"id": 81702,
"question": "Twitter handle with @ ex: @prpatel",
"questionType": "Short_Text",
"answer": "@andrus_a",
"sort": 21,
"answerExtra": null
},
{
"id": 81705,
"question": "LinkedIn URL",
"questionType": "Short_Text",
"answer": "https://www.linkedin.com/in/andrus-adamchik-87126/",
"sort": 22,
"answerExtra": null
}
],
"categories": []
},
{
"id": "ca26f6b4-6211-4491-a8f3-d090c2390c8c",
"firstName": "Annelore",
"lastName": "Egger",
"fullName": "Annelore Egger",
"bio": "I've been a software developer for 5 years and find it very important to share knowledge so the whole community can profit from it. With combining our knowledge we can achieve more together. ",
"tagLine": "Software Engineer, OpenValue Switzerland",
"profilePicture": "https://sessionize.com/image/4d84-400o400o1-h5FPyV5esyw4Uo6VWWwk3d.jpg",
"sessions": [
{
"id": 751190,
"name": "Taking Shortcuts Beyond Your IDE"
}
],
"isTopSpeaker": false,
"links": [
{
"title": "X (Twitter)",
"url": "https://x.com/AnneloreEgger",
"linkType": "Twitter"
},
{
"title": "LinkedIn",
"url": "https://www.linkedin.com/in/annelore-egger-244879188/",
"linkType": "LinkedIn"
}
],
"questionAnswers": [
{
"id": 81698,
"question": "Company",
"questionType": "Short_Text",
"answer": "OpenValue Switzerland",
"sort": 17,
"answerExtra": null
},
{
"id": 81702,
"question": "Twitter handle with @ ex: @prpatel",
"questionType": "Short_Text",
"answer": "@anneloreegger",
"sort": 21,
"answerExtra": null
},
{
"id": 81705,
"question": "LinkedIn URL",
"questionType": "Short_Text",
"answer": "https://www.linkedin.com/in/annelore-egger-244879188?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
"sort": 22,
"answerExtra": null
}
],
"categories": []
},
{
"id": "02757751-2055-43a0-afb7-a8654d46bffe",
"firstName": "Ashwin",
"lastName": "M S",
"fullName": "Ashwin M S",
"bio": "Ashwin M S is working as a Software Developer at IBM as a part of the WebSphere team. He pursued his B.Tech Degree in Computer Science and Engineering and graduated in 2023. He was an active student member of his IEEE Student Branch and served as a Technical Coordinator during his final year of education. ",
"tagLine": "IBM, Software Developer ",
"profilePicture": "https://sessionize.com/image/4db7-400o400o1-Lnnsv3952rqqrXxQe3yAJZ.jpg",
"sessions": [
{
"id": 751261,
"name": "Concurrency redefined: what’s new in Jakarta Concurrency 3.1"
}
],
"isTopSpeaker": false,
"links": [
{
"title": "LinkedIn",
"url": "https://www.linkedin.com/in/ashwin-ms",
"linkType": "LinkedIn"
}
],
"questionAnswers": [
{
"id": 81698,
"question": "Company",
"questionType": "Short_Text",
"answer": "IBM ",
"sort": 17,
"answerExtra": null
},
{
"id": 81702,
"question": "Twitter handle with @ ex: @prpatel",
"questionType": "Short_Text",
"answer": "@AshwinMS1703",
"sort": 21,
"answerExtra": null
},
{
"id": 81705,
"question": "LinkedIn URL",
"questionType": "Short_Text",
"answer": "www.linkedin.com/in/ashwin-ms",
"sort": 22,
"answerExtra": null
}
],
"categories": []
},
{
"id": "4c3fdc08-0216-46a1-a36f-a1b6abe6315f",
"firstName": "Barry",
"lastName": "Burd",
"fullName": "Barry Burd",
"bio": "Barry Burd is a Mathematics and Computer Science Professor at Drew University in Madison, New Jersey, US. He's the author of twelve books, including \"Java For Dummies,\" \"Quantum Computing Algorithms,\" and an upcoming book on the Internet of Things. In 2020, he was named a Java Champion.",
"tagLine": "Professor at Drew University",
"profilePicture": "https://sessionize.com/image/653c-400o400o1-BuZokXgB6nXrJiEr2dSfQX.jpg",
"sessions": [
{
"id": 751799,
"name": "Java and the Internet of Things"
}
],
"isTopSpeaker": false,
"links": [
{
"title": "X (Twitter)",
"url": "https://twitter.com/allmycode",
"linkType": "Twitter"
},
{
"title": "LinkedIn",
"url": "https://www.linkedin.com/in/barry-burd/",
"linkType": "LinkedIn"
}
],
"questionAnswers": [
{
"id": 81698,
"question": "Company",
"questionType": "Short_Text",
"answer": "Drew University",
"sort": 17,
"answerExtra": null
},
{
"id": 81702,
"question": "Twitter handle with @ ex: @prpatel",
"questionType": "Short_Text",
"answer": "@allmycode",
"sort": 21,
"answerExtra": null
},
{
"id": 81705,
"question": "LinkedIn URL",
"questionType": "Short_Text",
"answer": "https://www.linkedin.com/in/barry-burd",
"sort": 22,
"answerExtra": null
}
],
"categories": []
},
{
"id": "1708bdeb-e8d9-4628-a147-e9878198c900",
"firstName": "Baruch",
"lastName": "Sadogursky",
"fullName": "Baruch Sadogursky",
"bio": "Baruch Sadogursky (@jbaruch) did Java before it had generics, DevOps before there was Docker, and DevRel before it had a name. He started DevRel at JFrog when it was ten people and took it all the way to a successful $6B IPO by helping engineers solve problems. Now Baruch keeps helping engineers solve problems but also helps companies help engineers solve problems. He is a co-author of the \"Liquid Software\" and \"DevOps Tools for Java Developers\" books, serves on multiple conference program committees, and regularly speaks at numerous most prestigious industry conferences, including Kubecon, JavaOne (RIP), Devoxx, QCon, DevRelCon, DevOpsDays (all over), DevOops (not a typo) and others. After a tenure of eleven years in JFrog DevRel, Baruch is the Principal Developer Productivity Engineering Advocate at Gradle. ",
"tagLine": "Principal Developer Productivity Engineering Advocate, Gradle ",
"profilePicture": "https://sessionize.com/image/6857-400o400o1-JXocy3YoRTEqmNrjJd2d7Y.png",
"sessions": [
{
"id": 750765,
"name": "Technical Enshittification: Why Everything in IT is Horrible Right Now and How to Fix It"
}
],
"isTopSpeaker": false,
"links": [
{
"title": "X (Twitter)",
"url": "http://twitter.com/jbaruch",
"linkType": "Twitter"
},
{
"title": "LinkedIn",
"url": "https://www.linkedin.com/in/jbaruch/",
"linkType": "LinkedIn"
}
],
"questionAnswers": [
{
"id": 81698,
"question": "Company",
"questionType": "Short_Text",
"answer": "Gradle",
"sort": 17,
"answerExtra": null
},
{
"id": 81702,
"question": "Twitter handle with @ ex: @prpatel",
"questionType": "Short_Text",
"answer": "@jbaruch",
"sort": 21,
"answerExtra": null
},
{
"id": 81705,
"question": "LinkedIn URL",
"questionType": "Short_Text",
"answer": "https://www.linkedin.com/in/jbaruch/",
"sort": 22,
"answerExtra": null
}
],
"categories": []
},
{
"id": "79e95ec4-23ec-48ec-9046-98d3e1776283",
"firstName": "Bazlur",
"lastName": "Rahman",
"fullName": "Bazlur Rahman",
"bio": "A N M Bazlur Rahman is a Software Engineer with over a decade of specialized experience in Java and related technologies. His expertise has been formally recognized through the prestigious title of Java Champion. Beyond his professional commitments, Mr. Rahman is deeply involved in community outreach and education. He is the founder and current moderator of the Java User Group in Bangladesh, where he has organized educational meetups and conferences since 2013.\r\n\r\nIn the past two years, Mr. Rahman has been an active speaker at various international conferences and Java user groups. His talks have often focused on specialized topics such as concurrency and virtual threads. In addition to his community work, Mr. Rahman also serves as an editor for Java Queue at InfoQ and Foojay.io, both of which are leading platforms for technology content. Notably, he has authored five books on the Java programming language in Bengali, three of which have become best sellers in Bangladesh. \r\n\r\nHe is currently writing a new book with O'Reilly titled \"Modern Concurrency in Java\". \r\nhttps://learning.oreilly.com/library/view/modern-concurrency-in/9781098165406/\r\n\r\n",
"tagLine": "Java Champion 🏆 Empowering Developers through Speaking 🗣️ Writing ✍️ Mentoring 🤝 & Community Building 🌍 Published Author 📖 Contributing Editor at InfoQ and Foojay.IO",
"profilePicture": "https://sessionize.com/image/cf20-400o400o1-w15zxmEaPXC9jyJKvYWZzC.jpg",
"sessions": [
{
"id": 751660,
"name": "Java + LLMs: A hands-on guide to building LLM Apps in Java with JakartaEE"
}
],
"isTopSpeaker": false,
"links": [
{
"title": "X (Twitter)",
"url": "https://twitter.com/bazlur_rahman",
"linkType": "Twitter"
},
{
"title": "LinkedIn",
"url": "https://www.linkedin.com/in/bazlur/",
"linkType": "LinkedIn"
}
],
"questionAnswers": [
{
"id": 81698,
"question": "Company",
"questionType": "Short_Text",
"answer": "Canada",
"sort": 17,
"answerExtra": null
},
{
"id": 81702,
"question": "Twitter handle with @ ex: @prpatel",
"questionType": "Short_Text",
"answer": "@bazlur_rahman",
"sort": 21,
"answerExtra": null
},
{
"id": 81705,
"question": "LinkedIn URL",
"questionType": "Short_Text",
"answer": "https://www.linkedin.com/in/bazlur/",
"sort": 22,
"answerExtra": null
}
],
"categories": []
},
{
"id": "34b5127e-3fb1-4506-813a-3cd68f86bf22",
"firstName": "Ben",
"lastName": "Westmoreland",
"fullName": "Ben Westmoreland",
"bio": "The future of IT is in the AI innovations in the cloud. ☁️ My overall goal is to enable complex solutions to maximize the benefits and outcomes for organizations. Providing innovative solutions while controlling costs is my passion and highest value.\r\n\r\nI am an innovative thought leader that provides organizational leadership focused on taking on challenging initiatives. Actually, I am driven by complex challenges. I am most effective in up front project architecture, strategy, and planning, then leading projects to completion with the delivery teams. I enjoy building both technology strategy and the teams to provide effective results. I am seasoned in breaking down complex solutions and workloads into smaller and more manageable components. I can go on and on about common keywords here like domain driven design, microservices, design patterns, observability, cloud enablement, IaaS, PaaS, IaC, CaC, CI/CD, DevSecOps, automation, Azure, GCP, and AWS. However, the point being is that I have experienced the wrong and right ways to approach large solutions. I know to use what technology, where to use it, and the level of teams to get the job done most effectively. Also, I have learned from project mistakes and failures. I strive to iteratively improve myself, my teams, my projects ,and the organizations that I am working with.\r\n\r\nI am a humble technologist with a passion for serving my clients. I am the neighborhood and family \"IT Guy\". Also, I love to assist with local non-profits. I am a loving father with a wonderful wife and twin boys. Lastly, I am Linux hobbyist and huge into saltwater fishing.",
"tagLine": "Empowering Organizations on their Innovation Journey",
"profilePicture": "https://sessionize.com/image/fc91-400o400o1-DXzv2g3SsjKjESYZkE44Yc.jpg",
"sessions": [
{
"id": 751195,
"name": "REST vs GraphQL vs gRPC"
}
],
"isTopSpeaker": false,
"links": [
{
"title": "LinkedIn",
"url": "https://www.linkedin.com/in/btwestmo/",
"linkType": "LinkedIn"
}
],
"questionAnswers": [
{
"id": 81698,
"question": "Company",
"questionType": "Short_Text",
"answer": "Insight ",
"sort": 17,
"answerExtra": null
},
{
"id": 81702,
"question": "Twitter handle with @ ex: @prpatel",
"questionType": "Short_Text",
"answer": "btwestmo",
"sort": 21,
"answerExtra": null
},
{
"id": 81705,
"question": "LinkedIn URL",
"questionType": "Short_Text",
"answer": "https://www.linkedin.com/in/btwestmo/",
"sort": 22,
"answerExtra": null
}
],
"categories": []
},
{
"id": "6f426cb0-6261-4f79-b726-b7ffc3b028ff",
"firstName": "Billy",
"lastName": "Korando",
"fullName": "Billy Korando",
"bio": "Billy is a Java Developer Advocate with the Java Platform Group at Oracle. With over a decade of experience in Java, Billy brings a passion for helping developers find ways to reduce tedious work, such as project initiation, deployment, testing, and validation, through automation and adopting the latest features and tools in the Java ecosystem. Outside of work, Billy enjoys traveling, playing kickball, and cheering on the Kansas City Chiefs. Billy also co-organizes the Kansas City Java users group. ",
"tagLine": "Java Developer Advocate",
"profilePicture": "https://sessionize.com/image/a3ad-400o400o1-35ppNMVjk7tRjTToBVm3S4.jpg",