-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathevents.json
6612 lines (6612 loc) · 292 KB
/
events.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
[
{
"groupId": null,
"groupName": "All",
"sessions": [
{
"questionAnswers": [],
"id": "24d930a2-7178-4726-ab11-239015702332",
"title": "Registration and breakfast",
"description": null,
"startsAt": "2025-03-04T07:30:00",
"endsAt": "2025-03-04T09:00:00",
"isServiceSession": true,
"isPlenumSession": true,
"speakers": [],
"categories": [],
"roomId": 53138,
"room": "Architecture",
"liveUrl": null,
"recordingUrl": null,
"status": null,
"isInformed": false,
"isConfirmed": false
},
{
"questionAnswers": [],
"id": "88f90b8c-b2aa-4436-bc81-133985c5e2a3",
"title": "Workshop (on 400 level)",
"description": null,
"startsAt": "2025-03-04T09:00:00",
"endsAt": "2025-03-04T17:05:00",
"isServiceSession": true,
"isPlenumSession": false,
"speakers": [],
"categories": [],
"roomId": 58709,
"room": "Keynote",
"liveUrl": null,
"recordingUrl": null,
"status": null,
"isInformed": false,
"isConfirmed": false
},
{
"questionAnswers": [],
"id": "751412",
"title": "Practical AI Lab for Enterprise Java Developers: From Zero to Hero",
"description": "This hands-on workshop is designed to equip enterprise Java developers with the essential skills and knowledge needed to harness the power of artificial intelligence in their projects. Developers learn:\r\n\r\nHow to modernize and deploy Java AI-infused applications across teams using internal developer portals\r\n\r\nUnderstand developer AI concepts like prompt engineering, application testing, applying RAG patterns, observing AI-infused applications, and using tools/agents\r\n\r\nExperiment with models and applications directly on the desktop with AI-focused local development tools\r\n\r\nBuilding AI applications with S/W templates and deploying to Kubernetes\r\n\r\nEasy fine-tuning of base models using open source tools",
"startsAt": "2025-03-04T09:00:00",
"endsAt": "2025-03-04T17:05:00",
"isServiceSession": false,
"isPlenumSession": false,
"speakers": [
{
"id": "4b82436a-947c-45bb-9d5d-3b94c02c8faa",
"name": "Daniel Oh"
},
{
"id": "6f672350-1c71-4a6e-a382-2b1db6e631fd",
"name": "Eric Deandrea"
},
{
"id": "b9f343b4-5370-4839-bd53-572b0322882e",
"name": "James Falkner"
}
],
"categories": [
{
"id": 81703,
"name": "Track",
"categoryItems": [
{
"id": 290615,
"name": "Artificial Intelligence"
}
],
"sort": 0
},
{
"id": 81704,
"name": "Session Format",
"categoryItems": [
{
"id": 290620,
"name": "workshop"
}
],
"sort": 1
}
],
"roomId": 58710,
"room": "Tech Leadership",
"liveUrl": null,
"recordingUrl": null,
"status": "Accepted",
"isInformed": true,
"isConfirmed": true
},
{
"questionAnswers": [],
"id": "751053",
"title": "Migration Engineering with OpenRewrite: The Recipe for Success",
"description": "How adaptable is your technology stack to changes in business requirements, technological advancements, and the availability of new and better tools? When you can more easily secure, upgrade, move, or modernize your code, that means you can adapt quickly and efficiently to changes in technology and markets. That’s what Migration Engineering is all about—and what we’ll be exploring in this workshop.\r\n\r\nWe’ll discuss and demonstrate how to create custom recipes using OpenRewrite, an open source auto-refactoring tool that enables large-scale code analysis and transformations. You’ll learn the make-up of recipes as we walk through a number of examples, then we’ll demonstrate how to write code search and transformation actions that are custom to your organization. We will assemble these recipes with the visitor pattern, and show how to stitch recipes together with YAML, with Refaster-style templates, with Semgrep matchers, etc. We’ll also show how Generative AI can be applied to accelerate recipe development. \r\n\r\nThis is a comprehensive look at all kinds of recipe development that will enable you to come away fully equipped to plan and exercise large-scale code transformations in your organization.",
"startsAt": "2025-03-04T09:00:00",
"endsAt": "2025-03-04T17:05:00",
"isServiceSession": false,
"isPlenumSession": false,
"speakers": [
{
"id": "4c5e0fa5-266a-40aa-b27b-c72bc1ce7f9a",
"name": "Jonathan Schneider"
}
],
"categories": [
{
"id": 81703,
"name": "Track",
"categoryItems": [
{
"id": 290603,
"name": "Architecture"
}
],
"sort": 0
},
{
"id": 81704,
"name": "Session Format",
"categoryItems": [
{
"id": 290620,
"name": "workshop"
}
],
"sort": 1
}
],
"roomId": 53138,
"room": "Architecture",
"liveUrl": null,
"recordingUrl": null,
"status": "Accepted",
"isInformed": true,
"isConfirmed": true
},
{
"questionAnswers": [],
"id": "754716",
"title": "Stream Processing As You’ve Never Seen Before (Seriously): Apache Flink for Java Developers",
"description": "You were tasked with building a real-time platform, but traditional tools couldn’t handle the massive data streams, leading to lagging performance and frustrated users. Deadlines were looming, and the team needed a breakthrough.\r\n\r\nAnd when you learned about Apache Flink.\r\n\r\nWe’ll explore how the DataStream API allowed efficient real-time data processing and how the Table API and SQL features simplified complex queries with familiar syntax. Testing became more straightforward, and managing the application state was no longer a headache.\r\n\r\nYou’ll learn:\r\n\r\n\t•\tHarnessing the DataStream API: Process unbounded data streams efficiently to make your applications more responsive.\r\n\t•\tUnlocking Table API and SQL: Use SQL queries within Flink to simplify data processing tasks without learning new languages.\r\n\t•\tEffective Testing Strategies: Implement best practices for testing Flink applications to ensure your code is robust and reliable.\r\n\t•\tStateful Stream Processing: Manage application state effectively for complex event processing and real-time analytics.\r\n\r\nBy the end of this talk, you’ll be equipped to tackle real-time data challenges. Whether you are building analytics dashboards, event-driven systems, or handling data streams, Apache Flink can be the game-changer you’ve been searching for.",
"startsAt": "2025-03-04T09:00:00",
"endsAt": "2025-03-04T17:05:00",
"isServiceSession": false,
"isPlenumSession": false,
"speakers": [
{
"id": "4f858987-1a60-4da8-a4a2-045824a496c7",
"name": "Viktor Gamov"
},
{
"id": "81c2a2e6-f9f4-4acf-abf3-d6a26409bc30",
"name": "Sandon Jacobs"
}
],
"categories": [
{
"id": 81703,
"name": "Track",
"categoryItems": [
{
"id": 290607,
"name": "Frameworks"
}
],
"sort": 0
},
{
"id": 81704,
"name": "Session Format",
"categoryItems": [
{
"id": 290620,
"name": "workshop"
}
],
"sort": 1
}
],
"roomId": 53139,
"room": "AI",
"liveUrl": null,
"recordingUrl": null,
"status": "Accepted",
"isInformed": true,
"isConfirmed": true
},
{
"questionAnswers": [],
"id": "744151",
"title": "Developer To Architect",
"description": "Becoming a software architect is a longed-for career upgrade for many software developers. While the job title suggests a work day focused on technical decision-making, the reality is quite different. In this workshop, software architect Nathaniel Schutta constructs a real world job description in which communication trumps coding.\r\n\r\nDiscover the skill sets needed to juggle multiple priorities, meetings, and time demandsLearn why your best team leadership tool is not a hammer, but a shared cup of coffeeHear the best ways to give and take criticismUnderstand the necessity of writing effective email and formal architecture documentsGet tips for delivering confident career-building presentations to any audienceReview essential techniques for stakeholder management and relationship buildingExplore the critical needs for architecture reviews and an effective process for conducting themThrough lecture and small group exercises, Nathaniel will help you understand what it means to be a successful architect. Working through various problems, attendees will have opportunities to think through architectural decisions and patterns, discuss the importance of non functional requirements and why architects cannot afford to practice resume driven design.",
"startsAt": "2025-03-04T09:00:00",
"endsAt": "2025-03-04T17:05:00",
"isServiceSession": false,
"isPlenumSession": false,
"speakers": [
{
"id": "1f3fa71c-0021-4d6e-af47-0013ecbaeb33",
"name": "Nathaniel Schutta"
}
],
"categories": [
{
"id": 81703,
"name": "Track",
"categoryItems": [
{
"id": 290603,
"name": "Architecture"
}
],
"sort": 0
},
{
"id": 81704,
"name": "Session Format",
"categoryItems": [
{
"id": 290620,
"name": "workshop"
}
],
"sort": 1
}
],
"roomId": 53140,
"room": "Cloud Native",
"liveUrl": null,
"recordingUrl": null,
"status": "Accepted",
"isInformed": true,
"isConfirmed": true
},
{
"questionAnswers": [],
"id": "754852",
"title": "AI-Driven Development: Enhancing Java with the latest AI Innovations",
"description": "This hands-on workshopn will dive deep into how to build and maintain a Java codebase using AI. I’ll share insights and experience on the best ways to work with AI when building, updating, and deploying java applications. Whether you're an experienced developer looking to broaden your horizons or just curious about the latest in AI, this session will engage and inspire.",
"startsAt": "2025-03-04T09:00:00",
"endsAt": "2025-03-04T17:05:00",
"isServiceSession": false,
"isPlenumSession": false,
"speakers": [
{
"id": "f412fe67-9886-458b-ab9d-8e7f578bd742",
"name": "Brian Benz"
}
],
"categories": [
{
"id": 81703,
"name": "Track",
"categoryItems": [
{
"id": 290615,
"name": "Artificial Intelligence"
}
],
"sort": 0
},
{
"id": 81704,
"name": "Session Format",
"categoryItems": [
{
"id": 290620,
"name": "workshop"
}
],
"sort": 1
}
],
"roomId": 58711,
"room": "Cloud Tech",
"liveUrl": null,
"recordingUrl": null,
"status": "Accepted",
"isInformed": true,
"isConfirmed": true
},
{
"questionAnswers": [],
"id": "a54587eb-7be5-4c1b-843c-91a92818ec6a",
"title": "Registration and breakfast",
"description": null,
"startsAt": "2025-03-05T07:30:00",
"endsAt": "2025-03-05T09:00:00",
"isServiceSession": true,
"isPlenumSession": true,
"speakers": [],
"categories": [],
"roomId": 58709,
"room": "Keynote",
"liveUrl": null,
"recordingUrl": null,
"status": null,
"isInformed": false,
"isConfirmed": false
},
{
"questionAnswers": [],
"id": "c36440b9-6e42-4c24-81be-16ae1f9cbf02",
"title": "Opening keynote",
"description": null,
"startsAt": "2025-03-05T09:00:00",
"endsAt": "2025-03-05T10:00:00",
"isServiceSession": true,
"isPlenumSession": false,
"speakers": [],
"categories": [],
"roomId": 58709,
"room": "Keynote",
"liveUrl": null,
"recordingUrl": null,
"status": null,
"isInformed": false,
"isConfirmed": false
},
{
"questionAnswers": [],
"id": "741822",
"title": "Building 10x Organizations with Internal Developer Portals",
"description": "Developer Experience is Dead! Long Live Developer Experience!\r\n\r\nIn this keynote style session, we’ll take a detailed, granular look at the barriers to productivity faced by developers today. 10x developers may be a myth, but 10x organizations are very real, as proven by the influential study performed in the 1980s, ‘The Coding War Games.’\r\n\r\nRight now, here in early 2024, we seem to be experiencing YAPP (Yet Another Productivity Philosophy), and that philosophy is converging on developer experience or ‘DevEx.’ It seems that with every new method we invent for the delivery of products, whether physical or virtual, we reinvent productivity productivity philosophies to go alongside them.\r\n\r\nWe have no need to reinvent another productivity approach when effective solutions such as internal developer portals already exist. As business leaders, we just need to invest in and create urgency behind these solutions today, so that we don’t find ourselves having the same discussion again in a decade.\r\n",
"startsAt": "2025-03-05T10:00:00",
"endsAt": "2025-03-05T11:00:00",
"isServiceSession": false,
"isPlenumSession": false,
"speakers": [
{
"id": "38263e70-6aee-44ff-a2d3-c7d42141cc50",
"name": "Justin Reock"
}
],
"categories": [
{
"id": 81703,
"name": "Track",
"categoryItems": [
{
"id": 302778,
"name": "Tech Leadership"
}
],
"sort": 0
},
{
"id": 81704,
"name": "Session Format",
"categoryItems": [
{
"id": 290619,
"name": "session"
}
],
"sort": 1
}
],
"roomId": 58710,
"room": "Tech Leadership",
"liveUrl": null,
"recordingUrl": null,
"status": "Accepted",
"isInformed": true,
"isConfirmed": true
},
{
"questionAnswers": [],
"id": "732429",
"title": "CQRS meets modern Java",
"description": "Command Query Responsibility Segregation (CQRS) is a proven design pattern that enables the clear separation of data changes (commands) and data queries (queries). This separation allows these responsibilities to be scaled and optimized independently. The application code is also structured more understandably, which improves maintainability.\r\n\r\nThis talk will deepen our understanding of the practical implementation of the CQRS principles using modern Java language features such as records, sealed classes, switch expressions, and pattern matching. An example application will demonstrate how the theoretical foundations of CQRS can be applied in practice and how this affects application design while increasing data access efficiency.",
"startsAt": "2025-03-05T10:00:00",
"endsAt": "2025-03-05T11:00:00",
"isServiceSession": false,
"isPlenumSession": false,
"speakers": [
{
"id": "8d6bb73e-5451-4e33-a0ab-7b7ffc37a52e",
"name": "Simon Martinelli"
}
],
"categories": [
{
"id": 81703,
"name": "Track",
"categoryItems": [
{
"id": 290603,
"name": "Architecture"
}
],
"sort": 0
},
{
"id": 81704,
"name": "Session Format",
"categoryItems": [
{
"id": 290619,
"name": "session"
}
],
"sort": 1
}
],
"roomId": 53138,
"room": "Architecture",
"liveUrl": null,
"recordingUrl": null,
"status": "Accepted",
"isInformed": true,
"isConfirmed": true
},
{
"questionAnswers": [],
"id": "734451",
"title": "TDD & generative AI - a perfect pairing?",
"description": "In this talk we will dive into the question whether generative AI can generate working code when we only provide test cases. So we take the main principle from TDD: we write the tests up front. Then we use a generative AI to create the code. If you wrote the tests correctly and they all pass, you should have a working prototype. Even better, if the tests pass and you trust the tests, the code is production ready!\r\n\r\nWith some live coding, we will explore this idea together. Furthermore we will take a look at the implications of this paradigm shift. After attending you should be able to apply this technique to your own project.",
"startsAt": "2025-03-05T10:00:00",
"endsAt": "2025-03-05T11:00:00",
"isServiceSession": false,
"isPlenumSession": false,
"speakers": [
{
"id": "d7af9489-53b9-48ae-837e-0b2f403c6461",
"name": "Bouke Nijhuis"
}
],
"categories": [
{
"id": 81703,
"name": "Track",
"categoryItems": [
{
"id": 290615,
"name": "Artificial Intelligence"
}
],
"sort": 0
},
{
"id": 81704,
"name": "Session Format",
"categoryItems": [
{
"id": 290619,
"name": "session"
}
],
"sort": 1
}
],
"roomId": 53139,
"room": "AI",
"liveUrl": null,
"recordingUrl": null,
"status": "Accepted",
"isInformed": true,
"isConfirmed": true
},
{
"questionAnswers": [],
"id": "734811",
"title": "Create AI-Infused Java Apps with LangChain4j",
"description": "Generative AI has taken the world by storm over the last year, and it seems like every executive leader out there is telling us “regular” Java application developers to “add AI” to our applications. Does that mean we need to drop everything we’ve built and become data scientists instead now?\r\n\r\nFortunately, we can infuse AI models built by actual AI experts into our applications fairly straightforwardly, thanks to some new projects. We promise it’s not as complicated as you might think! Thanks to the ease of use and superb developer experience of Quarkus and the nice AI integration capabilities that the LangChain4j libraries offer, it becomes trivial to start working with AI and make your stakeholders happy :)\r\n\r\nIn this session, you’ll explore a variety of AI capabilities. We’ll start from the Quarkus DevUI where you can try out AI models even before writing any code. Then we’ll get our hands dirty with some code and exploring LangChain4j features such as prompting, chaining, and preserving state; agents and function-calling; enriching your AI model’s knowledge with your documents using retrieval augmented generation (RAG); and discovering ways to run (and train) models locally using tools like Ollama and/or Podman AI Lab. In addition, we’ll look at the AI integration's observability and fault tolerance and compile the app to a native binary. Maybe we’ll even try some new features, such as generating images or audio!\r\n\r\nCome to this session to learn how to build AI-infused applications in Java from the actual Quarkus experts and engineers working on the Quarkus LangChain4j extensions. This is also an opportunity to provide feedback to the maintainers of these projects and contribute back to the community.",
"startsAt": "2025-03-05T10:00:00",
"endsAt": "2025-03-05T11:00:00",
"isServiceSession": false,
"isPlenumSession": false,
"speakers": [
{
"id": "a4305a38-d462-482b-9e4a-536eb74ec63c",
"name": "Kevin Dubois"
},
{
"id": "4b82436a-947c-45bb-9d5d-3b94c02c8faa",
"name": "Daniel Oh"
}
],
"categories": [
{
"id": 81703,
"name": "Track",
"categoryItems": [
{
"id": 290614,
"name": "Cloud Native"
}
],
"sort": 0
},
{
"id": 81704,
"name": "Session Format",
"categoryItems": [
{
"id": 290619,
"name": "session"
}
],
"sort": 1
}
],
"roomId": 53140,
"room": "Cloud Native",
"liveUrl": null,
"recordingUrl": null,
"status": "Accepted",
"isInformed": true,
"isConfirmed": true
},
{
"questionAnswers": [],
"id": "752303",
"title": "Backstage Software Templates for Java Developers",
"description": "As a Java developer you might have a hard time accepting the limitations that you feel being introduced into your development cycles. Let's look at the positives and learn everything important to know to turn Backstag's software templates into a helpful tool you can use to elevate the platform experience for all developers. ",
"startsAt": "2025-03-05T10:00:00",
"endsAt": "2025-03-05T11:00:00",
"isServiceSession": false,
"isPlenumSession": false,
"speakers": [
{
"id": "b4ec38ee-2a62-40f0-85ab-2b4811d2f380",
"name": "Markus Eisele"
}
],
"categories": [
{
"id": 81703,
"name": "Track",
"categoryItems": [
{
"id": 290605,
"name": "Cloud Technology"
}
],
"sort": 0
},
{
"id": 81704,
"name": "Session Format",
"categoryItems": [
{
"id": 290619,
"name": "session"
}
],
"sort": 1
}
],
"roomId": 58711,
"room": "Cloud Tech",
"liveUrl": null,
"recordingUrl": null,
"status": "Accepted",
"isInformed": true,
"isConfirmed": true
},
{
"questionAnswers": [],
"id": "754668",
"title": "DataFrame - a Swiss Army Knife of Java Data Processing",
"description": "Can we use big data techniques without big data infrastructure? As Java developers, we deal with data processing all the time: analyzing app logs, extracting data from Excel, copying tables between databases, to give some examples. Yet, the “standard” Java falls short in processing capabilities compared to more complex and heavy tools like Spark or Flink.\r\n\r\nThis talk is about “DataFrame” - a 2-dimensional in-memory table structure that provides filtering, column / row operations, joins, aggregations, window functions, etc. I will use an open source DFLib library (https://dflib.org) and a Jupyter notebook to demonstrate how to do data processing and visualization in a Java app with DataFrames without much fuss.\r\n",
"startsAt": "2025-03-05T10:00:00",
"endsAt": "2025-03-05T11:00:00",
"isServiceSession": false,
"isPlenumSession": false,
"speakers": [
{
"id": "7a260dc7-19c8-4f8a-a299-66c70d91f4c4",
"name": "Andrus Adamchik"
}
],
"categories": [
{
"id": 81703,
"name": "Track",
"categoryItems": [
{
"id": 290606,
"name": "Core Java"
}
],
"sort": 0
},
{
"id": 81704,
"name": "Session Format",
"categoryItems": [
{
"id": 290619,
"name": "session"
}
],
"sort": 1
}
],
"roomId": 58701,
"room": "Core Java",
"liveUrl": null,
"recordingUrl": null,
"status": "Accepted",
"isInformed": true,
"isConfirmed": true
},
{
"questionAnswers": [],
"id": "761780",
"title": "API Toolbox with Spring",
"description": "Have you ever wondered what options are available in the Spring ecosystem to help developers define and build APIs? What protocols and serialization libraries are supported?\r\n\r\nIn this talk, we will go over what options are available to Spring Developers to build APIs. We will cover traditional HTTP APIs as well as alternative protocols for messaging and streaming APIs. We will introduce other projects from the Spring portfolio such as Spring Data and Spring Cloud that can enhance developer productivity in creating APIs and developer experience while consuming them.",
"startsAt": "2025-03-05T10:00:00",
"endsAt": "2025-03-05T11:00:00",
"isServiceSession": false,
"isPlenumSession": false,
"speakers": [
{
"id": "bdcf9fac-1a10-416b-9dc9-be50b718e9af",
"name": "Spencer Gibb"
}
],
"categories": [
{
"id": 81703,
"name": "Track",
"categoryItems": [
{
"id": 290607,
"name": "Frameworks"
}
],
"sort": 0
},
{
"id": 81704,
"name": "Session Format",
"categoryItems": [
{
"id": 290619,
"name": "session"
}
],
"sort": 1
}
],
"roomId": 58702,
"room": "Frameworks",
"liveUrl": null,
"recordingUrl": null,
"status": "Accepted",
"isInformed": true,
"isConfirmed": true
},
{
"questionAnswers": [],
"id": "753362",
"title": "30 Years of Java - How Did We Get Here?",
"description": "May 23rd, 1995, saw the launch of not just a new programming language but an entire development and deployment platform. Initially targeted at the brand-new world of browsers and the World Wide Web, it quickly became the de facto standard for internet-scale enterprise applications.\r\n\r\nRemarkably, thirty years later, it is still always in the top three most popular languages in use by developers.\r\n\r\nHow did this happen?\r\n\r\nIn this session, we’ll take a whirlwind tour of the history of Java, recalling many of the milestones along the way.\r\n\r\nI started working for Sun Microsystems in February 1996, roughly the same week JDK 1.0 was launched. Through fourteen years at Sun, five at Oracle and nine at Azul, I’ll bring plenty of anecdotes (and some souvenirs). Be prepared for some serious developer nostalgia!\r\n",
"startsAt": "2025-03-05T10:00:00",
"endsAt": "2025-03-05T11:00:00",
"isServiceSession": false,
"isPlenumSession": false,
"speakers": [
{
"id": "709043d1-5754-4459-a8d5-6dd2f5619874",
"name": "Simon Ritter"
}
],
"categories": [
{
"id": 81703,
"name": "Track",
"categoryItems": [
{
"id": 290608,
"name": "Java Platform"
}
],
"sort": 0
},
{
"id": 81704,
"name": "Session Format",
"categoryItems": [
{
"id": 290619,
"name": "session"
}
],
"sort": 1
}
],
"roomId": 58703,
"room": "Java Platform",
"liveUrl": null,
"recordingUrl": null,
"status": "Accepted",
"isInformed": true,
"isConfirmed": true
},
{
"questionAnswers": [],
"id": "751868",
"title": "Delivery Engineering",
"description": "Just as food delivery has evolved and become ubiquitous, the Software Delivery Lifecycle has also made leaps and bounds. We get there by shifting left and taking a platform centric approach.\r\n\r\nIn this session join us as we discuss modern software delivery, ways that Datadog has implemented SDLC internally and enable our user’s production of high-quality software with higher velocity.",
"startsAt": "2025-03-05T10:00:00",
"endsAt": "2025-03-05T11:00:00",
"isServiceSession": false,
"isPlenumSession": false,
"speakers": [
{
"id": "46d17ddc-1a74-4d59-8906-d6246ac498d4",
"name": "Ajuna Kyaruzi"
}
],
"categories": [
{
"id": 81703,
"name": "Track",
"categoryItems": [
{
"id": 290609,
"name": "Practices and other tech"
}
],
"sort": 0
},
{
"id": 81704,
"name": "Session Format",
"categoryItems": [
{
"id": 290619,
"name": "session"
}
],
"sort": 1
}
],
"roomId": 58704,
"room": "Practices",
"liveUrl": null,
"recordingUrl": null,
"status": "Accepted",
"isInformed": true,
"isConfirmed": true
},
{
"questionAnswers": [],
"id": "753084",
"title": "Securing the Digital Landscape: A Deep Dive into OWASP Top 10 for Applications, APIs, and LLMs",
"description": "Join us for an immersive journey into the heart of modern cybersecurity challenges. In this groundbreaking talk, we delve into the intricacies of securing your digital assets with a focus on three critical domains: applications, APIs, and Large Language Models (LLMs).\r\n\r\nAs developers and architects, you understand the paramount importance of safeguarding your systems against evolving threats. Our session offers an exclusive opportunity to explore the industry-standard OWASP Top 10 vulnerabilities tailored specifically to your domain.\r\n\r\nUncover the vulnerabilities lurking within your applications, APIs, and LLMs, and gain invaluable insights into mitigating risks and fortifying your defenses. Through live demonstrations and real-world examples, you'll witness firsthand the impact of security breaches and learn proactive strategies to combat them.\r\n\r\nWhether you're a seasoned architect seeking to fortify your organization's security posture or a developer striving to build resilient systems, this talk equips you with the knowledge and tools essential for navigating the complex landscape of cybersecurity.\r\n\r\nAgenda\r\n\r\nOWASP Top 10 Overview\r\n\r\nIntroduction to OWASP\r\nSignificance of OWASP Top 10\r\nOverview of OWASP Top 10 for Applications, APIs, and LLMs\r\nOWASP Top 10 for Application Security\r\n\r\nPresentation: Common Vulnerabilities and Mitigation Strategies\r\nDemonstration: Live Examples of Application Security Vulnerabilities\r\nOWASP Top 10 for API Security\r\n\r\nPresentation: Key Challenges in API Security and Best Practices\r\nDemonstration: Illustration of API Security Vulnerabilities and Attacks\r\nOWASP Top 10 for LLM Applications (Large Language Models)\r\n\r\nPresentation: Unique Security Concerns in LLM Applications\r\nDemonstration: Showcase of LLM Security Vulnerabilities and Risks\r\nQ&A and Discussion\r\n\r\nOpen Floor for Questions and Discussion\r\nConclusion\r\n\r\nSummary of Key Takeaways\r\nCall to Action: Implementing Security Best Practices",
"startsAt": "2025-03-05T10:00:00",
"endsAt": "2025-03-05T11:00:00",
"isServiceSession": false,
"isPlenumSession": false,
"speakers": [
{
"id": "32cb0f88-b1ad-44c2-8860-86a5ac46c59a",
"name": "Rohit Bhardwaj"
}
],
"categories": [
{
"id": 81703,
"name": "Track",
"categoryItems": [
{
"id": 290610,
"name": "Security"
}
],
"sort": 0
},
{
"id": 81704,
"name": "Session Format",
"categoryItems": [
{
"id": 290619,
"name": "session"
}
],
"sort": 1
}
],
"roomId": 58705,
"room": "Security",
"liveUrl": null,
"recordingUrl": null,
"status": "Accepted",
"isInformed": true,
"isConfirmed": true
},
{
"questionAnswers": [],
"id": "751190",
"title": "Taking Shortcuts Beyond Your IDE",
"description": "Taking shortcuts in software development is often perceived as risky, but it does not have to be. In this talk, I will show you how adopting smart shortcuts can enhance your productivity without sacrificing code quality. While IDE shortcuts are just the beginning, we will explore ways to streamline your workflow across the entire development process. From key combinations to advanced automation techniques like code generation, I will demonstrate how you can optimize your time and enjoy coding more. Whether you are a seasoned developer or just starting, this talk will help you identify areas where you can work faster and smarter. By the end, you will be equipped with practical strategies to always be on the lookout for opportunities to improve your workflow.",
"startsAt": "2025-03-05T10:00:00",
"endsAt": "2025-03-05T11:00:00",
"isServiceSession": false,
"isPlenumSession": false,
"speakers": [
{
"id": "ca26f6b4-6211-4491-a8f3-d090c2390c8c",
"name": "Annelore Egger"
}
],
"categories": [
{
"id": 81703,
"name": "Track",
"categoryItems": [
{
"id": 290611,
"name": "Tools and techniques"
}
],
"sort": 0
},
{
"id": 81704,
"name": "Session Format",
"categoryItems": [
{
"id": 290619,
"name": "session"
}
],
"sort": 1
}
],
"roomId": 58706,
"room": "Tools and Techniques",
"liveUrl": null,
"recordingUrl": null,
"status": "Accepted",
"isInformed": true,
"isConfirmed": true
},
{
"questionAnswers": [],
"id": "752387",
"title": "Typescript Deep Dive",
"description": "Mapped types, template literals, conditional types with infer: oh my! Come to this talk if you already understand how to use typescript day to day, but want to take a deeper dive and understand the more advanced topics in Typescript through real world examples and usecases.",
"startsAt": "2025-03-05T10:00:00",
"endsAt": "2025-03-05T11:00:00",
"isServiceSession": false,
"isPlenumSession": false,
"speakers": [
{
"id": "76cd083c-68f1-46b7-8a4e-9dd9d6d6fd08",
"name": "Waller Goble"
}
],
"categories": [
{
"id": 81703,
"name": "Track",
"categoryItems": [
{
"id": 290612,
"name": "Web and Front-end"
}
],
"sort": 0
},
{
"id": 81704,
"name": "Session Format",
"categoryItems": [
{
"id": 290619,
"name": "session"
}
],
"sort": 1
}
],
"roomId": 58707,
"room": "Web and front-end",
"liveUrl": null,
"recordingUrl": null,
"status": "Accepted",
"isInformed": true,
"isConfirmed": false
},
{
"questionAnswers": [],
"id": "750246",
"title": "A Developer's Guide to Jakarta EE 11",
"description": "Since its introduction in 2018 as Jakarta EE, the platform has evolved from: Jakarta EE 8, an open-source version of Java EE 8; to Jakarta EE 9, the \"big bang\" release; to Jakarta EE 10 that introduced the Core Profile.\r\n\r\nAnd now, Jakarta EE 11, released on { month}, { day }, 2024, focuses on productivity and innovation and delivers: updates to 16 specifications; introduces a new specification, Jakarta Data; and sets the baseline to Java 21, the latest LTS release.\r\n\r\nThis presentation will provide a brief history of JavaEE/Jakarta EE, what's new in Jakarta EE 11, and a review of new and updated specifications with working example applications.\r\n",
"startsAt": "2025-03-05T10:00:00",
"endsAt": "2025-03-05T11:00:00",
"isServiceSession": false,
"isPlenumSession": false,
"speakers": [
{
"id": "9820a802-240a-4fc0-9541-36ff1c2f760b",
"name": "Michael Redlich"
}
],
"categories": [
{
"id": 81703,
"name": "Track",
"categoryItems": [
{
"id": 290617,
"name": "JakartaEE"
}
],
"sort": 0
},
{
"id": 81704,
"name": "Session Format",
"categoryItems": [
{
"id": 290619,
"name": "session"
}
],
"sort": 1
}
],
"roomId": 58708,
"room": "JakarataEE",
"liveUrl": null,
"recordingUrl": null,
"status": "Accepted",
"isInformed": true,
"isConfirmed": true
},
{
"questionAnswers": [],
"id": "35b93832-1f7c-4421-b198-bd4f2719a9df",
"title": "Morning Break",
"description": null,
"startsAt": "2025-03-05T11:00:00",
"endsAt": "2025-03-05T11:30:00",
"isServiceSession": true,
"isPlenumSession": true,
"speakers": [],
"categories": [],
"roomId": 58709,
"room": "Keynote",
"liveUrl": null,
"recordingUrl": null,
"status": null,
"isInformed": false,
"isConfirmed": false
},
{
"questionAnswers": [],
"id": "754870",
"title": "Starting with Java in 2025",
"description": "Java is dead. Despite of hearing that a lot, Java is a modern language with impressive new features. We will demo how easy is to start with Java in 2025 and showcase the amazing features available to developers",
"startsAt": "2025-03-05T11:30:00",
"endsAt": "2025-03-05T12:30:00",
"isServiceSession": false,
"isPlenumSession": false,
"speakers": [
{
"id": "8983937d-7fc9-4cb4-bdcf-ce009d874531",
"name": "Rodrigo Graciano"
},
{
"id": "ab1b8b69-f449-4df9-b391-243a391b9d01",
"name": "Chandra Guntur"
}
],
"categories": [
{
"id": 81703,
"name": "Track",
"categoryItems": [
{
"id": 302778,
"name": "Tech Leadership"
}
],
"sort": 0
},
{
"id": 81704,
"name": "Session Format",
"categoryItems": [
{
"id": 290619,
"name": "session"