forked from awsug/communityday.awsug.asia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2774 lines (2499 loc) · 119 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>AWS Community Day South Asia 2021</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8">
<link rel="apple-touch-icon" sizes="180x180" href="images/icons/apple-icon-180x180.png" />
<link rel="icon" type="image/png" sizes="32x32" href="images/icons/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="images/icons/favicon-16x16.png" />
<link rel="manifest" href="images/icons/manifest.json" />
<link rel="mask-icon" href="images/icons/safari-pinned-tab.svg" color="#5bbad5" />
<link rel="shortcut icon" href="images/icons/favicon.ico" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="msapplication-config" content="images/icons/browserconfig.xml" />
<meta name="theme-color" content="#ffffff" />
<meta property="og:url" content="https://communityday.awsug.asia" />
<meta property="og:type" content="website" />
<meta property="og:title" content="AWS Community Day South Asia 2021" />
<meta property="og:description"
content="AWS Community Day South Asia 2021 is being organized by AWS User Groups India, Nepal, Sri Lanka & Bangladesh. We're united by community-led learnings and diversified by the wide variety of tools and technologies closely knit with Amazon Web Services." />
<meta property="og:image" content="https://communityday.awsug.asia/images/ACD_Event_Logo_UG_S-Asia_Light_Background@1x_OG_image.png" />
<meta property="og:image:secure_url" content="https://communityday.awsug.asia/images/ACD_Event_Logo_UG_S-Asia_Light_Background@1x_OG_image_secure.png" />
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@awsug">
<meta name="twitter:creator" content="@awsugindia">
<meta name="twitter:title" content="AWS Community Day South Asia 2021">
<meta name="twitter:description"
content="AWS User Groups are volunteer driven, group of passionate Amazon Web Services (aka AWS) {Developers, Architects, Users, Evangelists} who meet to {share best practices, discuss up coming features, pit falls, etc}">
<meta name="twitter:image" content="https://communityday.awsug.asia/images/ACD_Event_Logo_UG_S-Asia_Light_Background@1x_OG_image_secure.png">
<!-- Google Tag Manager -->
<script>(function (w, d, s, l, i) {
w[l] = w[l] || []; w[l].push({
'gtm.start':
new Date().getTime(), event: 'gtm.js'
}); var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-5G9G3S9');</script>
<!-- End Google Tag Manager -->
<script src="https://code.jquery.com/jquery-3.1.1.min.js"
integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
<script type="text/javascript" src="js/site.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href="https://unpkg.com/ionicons@4.5.5/dist/css/ionicons.min.css" rel="stylesheet" />
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
<link rel="stylesheet" href="stylesheets/intlTelInput.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="stylesheets/style.css" />
<link rel="stylesheet" type="text/css" href="stylesheets/mystyles.css" />
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css" />
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.min.js"></script>
<script type="text/javascript"
src="//platform-api.sharethis.com/js/sharethis.js#property=5b63095a78eb8b00113e362f&product=inline-share-buttons"></script>
<link rel="manifest" href="/manifest.json" />
<script src="https://cdn.onesignal.com/sdks/OneSignalSDK.js" async=""></script>
<script>
window.OneSignal = window.OneSignal || [];
OneSignal.push(function () {
OneSignal.init({
appId: "ed024b29-85ee-4505-bc79-f2537c392f0c",
});
});
</script>
<!-- Facebook Pixel Code
<script>
!function (f, b, e, v, n, t, s) {
if (f.fbq) return; n = f.fbq = function () {
n.callMethod ?
n.callMethod.apply(n, arguments) : n.queue.push(arguments)
};
if (!f._fbq) f._fbq = n; n.push = n; n.loaded = !0; n.version = '2.0';
n.queue = []; t = b.createElement(e); t.async = !0;
t.src = v; s = b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t, s)
}(window, document, 'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '1112628635595414');
fbq('track', 'PageView');
</script>
<noscript>
<img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=1112628635595414&ev=PageView&noscript=1" /></noscript>
End Facebook Pixel Code -->
<style>
.iti--container {
z-index: 100000;
}
</style>
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5G9G3S9" height="0" width="0"
style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<div id="page">
<div class="section section-1 hdr" id="home">
<div class="content">
<div class="container">
<div>
<div wid="50%" class="right">
<div class="left_in">
<img src="images/acd-logo-light.png" />
<div class="txt">
<h4 class="headin-ttl">
22nd & 23rd Oct 2021
</h4>
<p>
With the combined power of AWS User Groups in India, Nepal, Sri Lanka & Bangladesh, we are back with
a bang to
host the most awaited event, AWS Community Day South Asia 2021, unveiling success stories, use cases
& much more
from industry leaders.
</p>
<!-- <div class="btn-register-section">
<button class="btn btn-outline" data-toggle="modal" data-target="#register" onclick="hide_referral()"> Register</button>
</div> -->
</div>
</div>
</div>
<div wid="50%" class="right">
<div class="gal flex-it col">
<div class="top f1 flex-it">
<div class="f2 ims im1"></div>
<div class="f1 ims im2"></div>
</div>
<div class="bot f1 flex-it">
<div class="f1 ims im3"></div>
<div class="f2 flex-it col">
<div class="f1 flex-it">
<div class="f1 ims im4"></div>
<div class="f1 ims im5"></div>
</div>
<div class="f1 ims im6"></div>
</div>
</div>
</div>
<div class="right_in">
<iframe width="560px" height="315px" id="livetrack" src="https://www.youtube.com/embed/Q4Wkfo5BXyo" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<div style="text-align: center;">
<button onclick='changeTrack("https://www.youtube.com/embed/Q4Wkfo5BXyo", "orange", "gray")' id="track1btn">Keynote & Track1</button>
<button onclick='changeTrack("https://www.youtube.com/embed/jVY8bE87i70", "gray", "orange")' style="background: gray;" id="track2btn">Track2</button>
</div>
<div style="text-align: center; padding: 5px 0px;">
Trouble playing videos? Click here for <a target="_blank" href="https://www.youtube.com/embed/Q4Wkfo5BXyo">Keynote/Track1</a>, for <a target="_blank" href="https://www.youtube.com/embed/jVY8bE87i70">Track2</a>
</div>
<!-- <div class="right_in">
<p class="awsugblr_logo">
<img src="./images/awsugs-light.png" />
</p>
<p class="enlarge">
India | Bangladesh | Nepal | Sri Lanka
</p> -->
<!-- <button class="white icon-grp rt" id="link">
EXPLORE 2020
<i class="icon large ion-md-play-circle"></i>
</button> -->
</div>
</div>
</div>
</div>
</div>
<div id="nav-bar">
<p id="toggle"><span></span></p>
<!-- <li class="spec">
<a class="buy-ticket-link disabled button" >Sold Out</a>
</li> -->
<ul>
<!-- <li>
<a href="#home" style="background-color: red; font-size: 2em; font-weight: bold;">LIVE</a>
</li> -->
<li>
<a href="#com_info">About Community Day</a>
</li>
<li>
<a href="#workshop">Workshops</a>
</li>
<li>
<a href="#agenda">Agenda</a>
</li>
<li>
<a href="#keynote">Keynote</a>
</li>
<li>
<a href="#speakers">Speakers</a>
</li>
<li>
<a href="#volunteers">Volunteers</a>
</li>
<li>
<a href="code-of-conduct.html" target="_blank">Code Of Conduct</a>
</li>
<li>
<a href="#subscribe" id="sub-button" class="sub-button">
<i class="icon large ion-md-notifications-outline"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="section section-2">
<div class="container flex-it">
<div class="f1 left" id="com_info">
<div class="left_in">
<h4 class="headin-ttl">
WHO ARE WE?
</h4>
<p>
<b>AWS User Groups</b>
are united by community-led learnings and
diversified by the wide variety of tools and technologies
closely knit with Amazon Web Services, cloud computing
technology, AWS design implementation and servicing, high
scalability / performance computing, production use cases of
AWS, blockchain, Artificial Intelligence and much more.
</p>
<p>
AWS Community Days are community-organized cloud education events, featuring technical discussions
and demos led by expert AWS users and industry leaders from around the world
</p>
<p>
Community-based learning is the best way to enhance the concepts
being taught by connecting with enthusiasts in person, thereby
sharing first-hand experiences and familiar, accessible
examples.
</p>
<p>
All skill levels are welcome to help accomplish our motto of
learning, sharing and networking. Let's join hands to empower
this tech community to make it bigger and better!
</p>
<!-- <p>
<center>
<a href="https://twitter.com/awsugindia" target="_blank">
<i class="fa fa-twitter" aria-hidden="true" style="color:orange;font-size:250%"></i> </a>
<a href="https://www.facebook.com/awsugindia" target="_blank">
<i class="fa fa-facebook" aria-hidden="true" style="font-size:250%;"></i> </a>
<a href="https://m.youtube.com/c/AWSUserGroupIndia" target="_blank">
<i class="fa fa-youtube" aria-hidden="true" style="color:orange;font-size:250%"></i> </a>
<a href="https://www.linkedin.com/company/awsugindia/" target="_blank">
<i class="fa fa-linkedin" aria-hidden="true" style="font-size:250%"></i> </a>
</center>
</p> -->
</div>
</div>
<div class="f1 right" id="even_info">
<div class="right_in">
<h4 class="heading-ttl">
What to expect from AWS Community Day?
</h4>
<ul class="circle">
<li>
Renew, revive & revitalize to exemplify your excitement about
the work you do
</li>
<li>
Learn industry trends and intricacies about innovative
implementations from AWS experts
</li>
<li>
Harness the power of networking with AWS users, DevOps,
developers & solutions architects
</li>
<li>
Network with fellow AWS veterans & techies during breaks
</li>
<li>
Novice to pioneer on relentless pursuit to learn can rejoice
the AWS offerings & success stories under one roof.
</li>
<li>Take helpful and valuable information back to business</li>
<li>
Gain visibility to get more publicity for your esteemed
organisation
</li>
<li>
Sporting chance for active participants to win AWS goodies
</li>
</ul>
</div>
<br /><b>Please read the
<a href="./code-of-conduct.html" target="_blank">Code of Conduct</a>
for this event</b>
</div>
</div>
</div>
<!-- <div class="section section-tickets text-center" id="ticktes">
<div class="container">
<h4 class="main-heading-ttl text-center">Register</h4>
<div class="row flex-it">
<div class="col-md-3">
<div class="card tick_conf with_icon border">
<h4 class="heading-ttl">Conference</h4>
<div class="bg_img"></div>
<p>Gives you access to the online conference on 22th October, 2021</p>
<div class="btn-register-section">
<button class="btn btn-outline" data-toggle="modal" data-target="#register"> Register</button>
</div>
</div>
</div>
</div>
</div> -->
<!-- <div class="section section-tickets text-center" id="ticktes">
<div class="container">
<h4 class="main-heading-ttl text-center">
<p>REGISTRATION</p>
</h4>
<div class="row flex-it">
<div class="col-md-4 col-md-offset-4">
<div class="card tick_conf with_icon border">
<h4 class="heading-ttl">Online Conference</h4>
<div class="bg_img"></div>
<p>Gives you access to the online conference on 22 October, 2021</p>
<button type="button" data-toggle="modal" data-target="#register" onclick="hide_referral()">Register</button>
</div>
</div>
</div>
</div>
</div> -->
<!-- <div class="section section-tickets text-center inv" id="workshop">
<div class="container">
<h4 class="main-heading-ttl text-center">
<p>Online Workshops</p>
</h4>
<div class="row flex-it">
<div class="col-md-4">
<div class="card tick_cp with_icon dark">
<h4 class="heading-ttl">Cloud Practitioner</h4>
<div class="bg_img"></div>
<p style="padding: 3% 15%;">Hands-on AWS Cloud Practitioner – Journey Towards Cloud!</p>
<button type="button" data-toggle="modal" data-target="#workshop_1">Register</button>
</div>
</div>
<div class="col-md-4">
<div class="card tick_work_3 with_icon dark">
<h4 class="heading-ttl">Serverless</h4>
<div class="bg_img"></div>
<p style="padding: 3% 15%;">Real-world Serverless Leave Approval Application on AWS</p>
<button type="button" data-toggle="modal" data-target="#workshop_2">Register</button>
</div>
</div>
<div class="col-md-4">
<div class="card tick_work_2 with_icon">
<h4 class="heading-ttl">AWS JAM</h4>
<div class="bg_img"></div>
<p style="padding: 3% 15%;">Scenario based real-world challenges<br/>Event by AWS</p> -->
<!-- <button type="button" data-toggle="modal" data-target="#workshop_3">TBD</button> -->
<!-- <button type="button">Announcing Soon</button>
</div>
</div>
</div>-->
<!-- workshop_modal Start
<div id="workshop_modal" class="modal fade fillo workshop_modal" role="dialog" tabindex="-1">
<div class="modal-dialog">
< Modal content >
< <div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="heading-ttl">
<p>Workshops [ALL THE WORKSHOPS ARE ONLINE]</p>
</h4>
</div>
<div class="modal-body">
<div id="page">
<div class="section section-tickets text-center inv">
<div class="container">
<h4 class="main-heading-ttl text-center workshop_title">Thank you for the registration.</h4>
<h4 class="main-heading-ttl text-center workshop_title">WE ALSO HAVE THREE AWESOME WORKSHOPS ON 17th OCT</h4>
<div class="row flex-it">
<div class="col-md-4">
<div class="card tick_work_1 with_icon dark">
<h4 class="heading-ttl">Containers</h4>
<div class="bg_img">
<img src="images/Amazon-Elastic-Container.png" class="img-responsive">
</div>
<p>Gets you access to Containers Workshop </p>
<button type="button" data-toggle="modal" data-target="">Sold Out</button>
<button type="button">Announcing Soon</button>
</div>
</div>
<div class="col-md-4">
<div class="card tick_work_2 with_icon dark">
<h4 class="heading-ttl">Machine Learning</h4>
<div class="bg_img"><img src="images/Machine-Learning.svg" class="img-responsive"></div>
<p>Gets you access to Machine Learning </p>
<button type="button" data-toggle="modal" data-target="">Sold Out</button>
<button type="button">Announcing Soon</button>
</div>
</div>
<div class="col-md-4">
<div class="card tick_work_3 with_icon">
<h4 class="heading-ttl">Serverless</h4>
<div class="bg_img"><img src="images/AWS-Lambda.svg" class="img-responsive"></div>
<p>Gets you access to Serverless workshop </p>
<button type="button" data-toggle="modal" data-target="">Sold Out</button>
<button type="button">Announcing Soon</button>
</div>
</div>
<div class="col-md-3">
<div class="card tick_work_4 with_icon dark">
<h4 class="heading-ttl">Alexa</h4>
<div class="bg_img"><img src="images/Amazon_Alexa.png" class="img-responsive"></div>
<p>Gets you access to Alexa Workshop </p>
<button type="button" data-toggle="modal" data-target="">Closed</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div> -->
<!-- workshop_modal Start -->
<div id="workshop_modal" class="modal fade fillo workshop_modal" role="dialog" tabindex="-1">
<div class="modal-dialog">
<!-- Modal content -->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="heading-ttl">
<p>REGISTRATION RECEIVED</p>
</h4>
</div>
<div class="modal-body">
<div id="page">
<div class="section section-tickets text-center inv">
<div class="container">
<h4 class="main-heading-ttl text-center workshop_title">Thank you for the registration!</h4>
<h3>Please check your email for additional information about the event.</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modals-->
<div id="workshop_1" class="modal fade fillo" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="heading-ttl">
<p>Hands-on AWS Cloud Practitioner – Journey Towards Cloud!</p>
</h4>
</div>
<div class="modal-body">
<div style="color: red; font-weight: bold; text-align: center;">NOTE: WORKSHOP WILL BE CONDUCTED ONLINE
</div>
<div style="color: red; text-align: center;">Those who attend the entire workshop, will get amazon vouchers
equivalent to the workshop ticket amount.</div><br>
<table class="table table-bordered">
<tr>
<th>Date</th>
<th>Duration</th>
</tr>
<tr>
<td>23rd Oct</td>
<td>9:00AM - 12:30PM IST (3 Hours 30 Mins)</td>
</tr>
</table>
<p class="heading-ttl small-head">Description</p>
<p>
<b> Speaker </b>: Chandra Lingam<br>
<b> Topic </b>: Hands-on AWS Cloud Practitioner – Journey Towards Cloud!
</p>
<p class="heading-ttl small-head">Objective</p>
<p>
Begin your AWS cloud journey by learning through hands-on labs based on the AWS Cloud Practitioner certification.
In this workshop, the speaker will guide the users through various practical lab based sessions on how to work with
AWS services.
</p>
<!-- <p class="text-danger">
Note: We will be using the AWS US region for the session.
</p> -->
<p class="heading-ttl small-head">Workshop Content:</p>
<ul class="workshops">
<li>Simple Storage Service (S3)
<ul>
<li>Introduction to Simple Storage Service (S3)</li>
<li>Lab - How to balance cost and performance with S3 Storage Classes</li>
<li>Lab - Host your static website using S3</li>
</ul>
</li>
<li>Virtual Private Cloud (VPC) and EC2
<ul>
<li>Introduction to Virtual Private Cloud (VPC)</li>
<li>EC2 Instance Families and Types</li>
<li>Lab - Launch Apache Web Server</li>
<li>Lab - Network ACL and Security Group Firewalls</li>
</ul>
</li>
<li>Elastic Load Balancing and Autoscaling
<ul>
<li>Introduction to Elastic Load Balancing (ELB)</li>
<li>Demo - How to build a highly available web application – Handling errors, Unhealthy instances, multi-AZ</li>
<li>Demo - How to scale application with traffic – Autoscaling</li>
<li>Lab - Deploy WordPress with Load Balancing, Auto Scaling, and RDS Database</li>
</ul>
</li>
<li>Q&A</li>
</ul>
<p class="heading-ttl small-head">Pre-requisites:</p>
<ul class="workshops">
<li>Active AWS Account</li>
<li>SSH Client like Putty or Mobaxterm</li>
</ul>
<!-- <p class="heading-ttl small-head">Pricing:</p>
<div class="table-responsive-md">
<table class="table table-bordered">
<thead class="table-head">
<tr>
<th>Service</th>
<th>Billing</th>
<th>Usage Cost</th>
</tr>
</thead>
<tbody>
<tr>
<td>Lex </td>
<td>No Cost</td>
<td>No Cost</td>
</tr>
<tr>
<td>S3</td>
<td>No Cost</td>
<td>No Cost</td>
</tr>
<tr>
<td>Pinpoint for SMS</td>
<td>Acquire Phone Number for Inbound SMS</td>
<td>Cost of sending US SMS</td>
</tr>
<tr>
<td>Amazon Connect for Call Center</td>
<td>Direct Inward Number</td>
<td></td>
</tr>
</tbody>
</table>
</div>
<div class="block">
<p>
<strong class="text-danger">
Note: Amazon Connect is not available for AISPL accounts, so we can not use it from the Indian
AWS account, but we will show the full integration and demo during the workshop.
</strong>
</p>
</div> -->
</div>
<div class="modal-footer">
<br>
<div class="row">
<!-- <div class="col-md-1">
</div> -->
<div class="col-md-2">
<img class="speakerImg" src="images\speakers\chandra_lingam.jpg" alt="speaker img">
</div>
<div class="col-md-3">
<div id="align1">
<h4 style="color:#ff9900">Founder at Cloud Wave LLC</h4>
<h4><a href="https://www.linkedin.com/in/chandra-mohan-lingam-935652123/" target="_blank">Chandra Lingam</a></h4>
<p><a href="https://www.cloudwavetraining.com/" target="_blank">Cloud Wave</a></p>
</div>
</div>
</div>
<br>
<hr>
<div class="foot-btn d-flex justify-content-center">
<!-- <a href="https://konfhub.com/acd-serverless" target="_blank" class="button" >Register</a> -->
<button type="button" data-toggle="modal" data-target="#RegisterIframe_1" onclick="cloudPractionerIframe()">Register</button>
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<!-- 2 -->
<div id="workshop_2" class="modal fade fillo" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="heading-ttl">
<p>Real-world Serverless Leave Approval Application on AWS</p>
</h4>
</div>
<div class="modal-body">
<div style="color: red; font-weight: bold; text-align: center;">NOTE: WORKSHOP WILL BE CONDUCTED ONLINE
</div>
<div style="color: red; text-align: center;">Those who attend the entire workshop, will get amazon vouchers
equivalent to the workshop ticket amount.</div><br>
<table class="table table-bordered">
<tr>
<th>Date</th>
<th>Duration</th>
</tr>
<tr>
<td>23rd Oct</td>
<td>9:30AM - 12:30PM IST (3 Hours)</td>
</tr>
</table>
<p class="heading-ttl small-head">Description</p>
<p>
<b> Speaker :</b> Sandeep Kumar P, Engineering Manager at AntStack <br>
<b> Topic :</b> Real-world Serverless Leave Approval Application on AWS.
</p>
<p class="heading-ttl small-head">Objective</p>
<p>
Building a real-world serverless application that leverages services like API Gateway,
Lambda, DynamoDB, Step functions, S3, IAM, etc., to handle and track leaves smoothly.
The user submits a leave request in his portal. The admin checks his portal and approves
the request. We will use S3 to host the website. The required APIs are configured via API Gateway.
We will use Lambda for our computing needs, and the leave application flow will be tracked
using the Step Function Workflow. All the transaction data will be stored in DynamoDB.
</p>
<p class="heading-ttl small-head">Workshop Content:</p>
<ul class="workshops">
<p><b>In this 3 hour long workshop, you will learn:</b></p><br>
<li>Learn to build real-world serverless app via.</li>
<li>Hosting React application on S3.</li>
<li>Configuring API Gateway to invoke Step Functions and Lambda.</li>
<li>Configuring DynamoDB Database, Lambda Functions, Step function workflows, IAM Roles, and Policies.</li>
</ul>
<p class="heading-ttl small-head">Session Pre-Requisites :</p>
<ul class="workshops">
<li>Active AWS Account</li>
<li>Basic programming knowledge on NodeJS</li>
<li>NodeJs Installed - <a href="https://nodejs.org/en/">https://nodejs.org/en/</a></li>
<li>Visual Studio Code - <a href="https://code.visualstudio.com/">https://code.visualstudio.com/</a></li>
</ul>
</div>
<div>
<img src=""></img>
</div>
<div class="modal-footer">
<br>
<div class="row">
<!-- <div class="col-md-1">
</div> -->
<div class="col-md-2">
<img class="speakerImg" src="images\speakers\sandeep_kumar.jpg" alt="speaker img">
</div>
<div class="col-md-3">
<div id="align">
<h4 style="color:#ff9900">Engineering Manager at AntStack</h4>
<h4><a href="https://www.linkedin.com/in/sandykumar93/" target="_blank">Sandeep Kumar P</a></h4>
<p><a href="https://www.antstack.io/" target="_blank">Antstack</a></p>
</div>
</div>
</div>
<br>
<hr>
<div class="foot-btn d-flex justify-content-center">
<!-- <a href="https://konfhub.com/acd-alexa" target="_blank" class="button" >Register</a> -->
<button type="button" data-toggle="modal" data-target="#RegisterIframe_2" onclick="serverlessIframe()">Register</button>
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<!-- 3 -->
<div id="workshop_3" class="modal fade fillo" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="heading-ttl">
<p>AWS JAM</p>
</h4>
</div>
<div class="modal-body">
<div style="color: red; font-weight: bold; text-align: center;">NOTE: WORKSHOP WILL BE CONDUCTED ONLINE
</div>
<div style="color: red; text-align: center;">Those who attend the entire workshop, will get amazon vouchers
equivalent to the workshop ticket amount.</div>
<table class="table table-bordered">
<tr>
<th>Date</th>
<th>Duration</th>
</tr>
<tr>
<td>23rd Oct, 9:00AM</td>
<td>4 Hours</td>
</tr>
</table>
<p class="heading-ttl small-head">Agenda</p>
<p>Put your skills to the test by solving challenges that emulate real AWS use-cases across a variety of subject matters.</p>
<p class="heading-ttl small-head">Description</p>
<p>A Jam is designed to challenge individuals across all technical skill levels. There will be some easy,
medium, and hard challenges across all different topics and technologies. For challenges that cover topics
that are new or too difficult for the user, the Jam platform offers clues to help the participants learn
best practices. Our public events are designed to be challenging while helping participants learn new skills.
For our private events, where we host a Jam for a specific customer, we work with the customer to determine
their expected outcomes and then select challenges that help them achieve it.
</p>
<p class="heading-ttl small-head">Objective:</p>
<ul class="workshops">
<li><b>Play</b>: <br/>Work to complete challenges across common AWS use-cases and operational tasks to earn points. Compete with rivals
for the coveted top place on the leaderboard. <br/><br/></li>
<li><b>Learn</b>: <br/>Advance your cloud adoption journey by solving challenges designed to teach AWS best practices around security,
migration, dev-ops, AI/ML, and more. Are you brand new to AWS? Or never used a specific AWS service before?
Clues are available to help navigate the challenges if needed. AWS experts are
also on hand to act as coaches, but the event promotes self-paced discovery and learning. <br/><br/></li>
<li><b>Validate</b>: <br/>Get points for solving challenges using AWS provided infrastructure according to established best practices.
Compare your performance against your peers! </li>
</ul>
<p class="heading-ttl small-head">Types of Jams</p>
<ul class="workshops">
<li><b>Security Jam</b>: <br/>This is a time boxed event where participants are working in teams to solve a number of security,
risk, and compliance scenarios. It allows you to learn new skills and practice current ones against a set of simulated
security incidents. Can you identify what caused the blues? What would you do differently? How can you architect multiple
AWS services to prevent it from happening again? The challenges are structured to accommodate AWS users of all levels and
since it is based in a specific room, we have AWS experts there that will help ramp up your security knowledge. All you
need to bring is your desire to learn and a laptop.<br/><br/></li>
<li><b>Jam Lounge</b>: <br/>This provides self-paced challenges that can be completed within the Jam Lounge or during breaks,
lunch, and even overnight. The challenges will help you learn new skills and practice current ones against simulated
environments. New challenges will appear throughout the event to drive participation over multiple day events and to
keep participants learning. The types of challenges that are used will depend on the event itself, but all infrastructure
will be provided and participants just need to bring a laptop.<br/><br/></li>
<li><b>Capture The Flag (CTF)</b>: <br/>There are two parts of this event that run simultaneous, a more traditional
jeopardy style part and a Castle Defense part. The jeopardy style part allows participants to work at their own
pace through a number of security challenges to identify a specific answer (flag). During the Castle Defense part,
participants will get a production workload that they will need to harden and then protect against a number of
security events that will occur throughout the CTF. Participants can work on both of these parts at their own pace
during the event.</li>
</ul>
<p class="heading-ttl small-head">Session Pre-Requisites :</p>
<ul class="workshops">
<li>Basic knowledge of AWS services.</li>
<li>Mandatory AWS JAM Account: <a href="https://jam.awsevents.com/register"target="_blank" >Register</a>. A secret key to
join the session will be provided on the day of the event.</li>
<li>SSH Software such as Putty/WinSCP/MobaXterm/Terminal with AWS CLI installed</li>
<li>You do NOT need an AWS Account. The login details will be provided to you on the day of the event. </li>
</ul>
</div>
<div>
<img src=""></img>
</div>
<div class="modal-footer">
<!-- <br>
<div class="row">
<div class="col-md-1">
</div>
<div class="col-md-2">
<img class="speakerImg" src="images\speakers\Jayesh.png" alt="speaker img">
</div>
<div class="col-md-3">
<div id="align">
<h4 style="color:#ff9900">AWS ML Hero</h4>
<h4><a href="https://www.linkedin.com/in/jayesh-ahire/" target="_blank">Jayesh Ahire</a></h4>
<p><a href="https://www.traceable.ai/" target="_blank">Traceable.ai</a></p>
</div>
</div>
<div class="col-md-2">
<img class="speakerImg" src="images\speakers\Sukanya.png" alt="speaker img">
</div>
<div class="col-md-3">
<div id="align">
<h4 style="color:#ff9900">AWS Community Leader</h4>
<h4><a href="https://www.linkedin.com/in/sukanyamandal" target="_blank">Sukanya Mandal</a></h4>
<p><a href="https://www.capgemini.com/" target="_blank">Capgemini</a></p>
</div>
</div>
</div>
<br>
<hr> -->
<div class="foot-btn d-flex justify-content-center">
<button type="button" data-toggle="modal" data-target="#RegisterIframe_3" onclick="jamIframe()">Register</button>
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<!-- <div class="section section-talk text-center hide" id="cfp">
<div class="section section-4 inv" id="cfp">
<div class="container">
<div class="sponsors">
<h4 class="main-heading-ttl text-center white-text">Call For Papers</h4>
<div class="container">
<img src="images/bgda.svg">
<div class="cfp">
<h4 class="main-heading-ttl">Submit a talk <br /> <a>Your Talk</a></h4>
</div>
</div>
</div> -->
<!-- <div class="section section-3 inv" id="venues">
<div class="container flex-it">
<div class="left f1 flex-it">
<h4 class="headin-ttl">
Venues
</h4>
<div class="left_in f1">
<div id="map"></div>
</div>
</div>
<div class="right f1">
<div class="right_in">
<div class="ven-1 ven active" data-lat="12.9767814" data-lng="77.6197088" data-label="Conrad India">
<div class="rand_cls">
<span class="date_ori">27th July 2019</span>
<h4 class="headin-ttl">Conference</h4>
</div>
<ul>
<li><b>Conrad India,</b></li>
<li>25/3, Kensington Rd, Someshwarpura,</li>
<li>Ulsoor, India,</li>
<li>Karnataka 560008</li>
</ul>
</div>
<div class="ven-2 ven" data-lat="12.9502273" data-lng="77.6967477" data-label="Radisson Blu">
<div class="rand_cls">
<span class="date_ori">26th July 2019</span>
<h4 class="headin-ttl">Workshop</h4>
</div>
<ul>
<li><b>Radisson Blu India Outer Ring Road,</b></li>
<li>90-4, Sarjapur Outer Ring Rd,</li>
<li>Marathahalli, India,</li>
<li>Karnataka 560037</li>
</ul>
</div>
<div class="marked"></div>
</div>
</div>
</div>
</div> -->
<div class="section section-4 inv" id="agenda">
<div class="container">
<div class="sponsors">
<h4 class="main-heading-ttl text-center white-text">Agenda</h4>
<div class="text-center agenda">
<div class="table">
<div class="thead">
<div class="tr">
<div class="th idx">
<div>
<p>Time (IST)</p>
</div>
</div>
<div class="th" colspan="4">
<div>
<p>Track 1</p>
</div>
</div>
<div class="th" colspan="4">
<div>
<p>Track 2</p>
</div>
</div>
</div>
</div>
<div class="tbody">
<!-- <div class="tr">
<div class="td idx">
<div>
</div>
</div>
<div class="td" colspan="4">
<div>
<p><a target="_blank" href="https://www.youtube.com/embed/P5FsXl3wxvk">Watch on YouTube</a></p>
</div>
</div>
<div class="td" colspan="4">
<div>
<p><a target="_blank" href="https://www.youtube.com/embed/N2I8a9jzixY">Watch on YouTube</a></p>
</div>
</div>
</div> -->
<div class="tr">
<div class="td idx">
<div>
<p>9:30 AM - 9:40 AM (IST)</p>
</div>
</div>
<div class="td" colspan="4">
<div>
<p>Welcome Note</p>
</div>
</div>
</div>
<div class="tr">
<div class="td idx">
<div>
<p>9:40 AM - 10:00 AM</p>
</div>
</div>
<div class="td" colspan="4">
<div>
<p>Quiz 1</p>
</div>
</div>
</div>
<div class="tr">
<div class="td idx">
<div>
<p>10:00 AM - 10:15 AM</p>
</div>
</div>
<div class="td" colspan="4">
<div>
<p>Keynote - 1 </p>
<p><a target="_blank" href="https://www.linkedin.com/in/puneetchandok/">Puneet Chandok</a></p>
</div>
</div>
</div>
<div class="tr">
<div class="td idx">