-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
2846 lines (2620 loc) · 122 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 India 2022</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/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png" />
<link rel="manifest" href="images/site.webmanifest" />
<link rel="mask-icon" href="images/safari-pinned-tab.svg" color="#5bbad5" />
<link rel="shortcut icon" href="images/favicon.ico" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="msapplication-config" content="images/browserconfig.xml" />
<meta name="theme-color" content="#ffffff" />
<meta property="og:url" content="https://communityday.awsug.in" />
<meta property="og:type" content="website" />
<meta property="og:title" content="AWS Community Day India 2022" />
<meta property="og:description"
content="AWS Community Day India 2022 is being organized by AWS User Group India. 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="/images/awscommunityday-blacknwhite.png" />
<meta property="og:image:secure_url" content="https://communityday.awsug.in/images/aws-india-group.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 Users Group India">
<meta name="twitter:description"
content="AWS User Group India is 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} in India.">
<meta name="twitter:image" content="https://communityday.awsug.in/images/aws-india-group.png">
<script src="https://code.jquery.com/jquery-3.1.1.min.js"
integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href="https://unpkg.com/[email protected]/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" href="2018/assets/css/style1.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/[email protected]/slick/slick.css" />
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected]/slick/slick.min.js"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-171268306-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-171268306-1');
</script>
<!-- This line is required for side sharethis-inline-share-buttons -->
<script type="text/javascript"
src="https://platform-api.sharethis.com/js/sharethis.js#property=630e27bafd193a0013760206&product=sticky-share-buttons"></script>
<link rel="manifest" href="/manifest.json" />
<script src="https://cdn.onesignal.com/sdks/OneSignalSDK.js" async=""></script>
<script>
var OneSignal = window.OneSignal || [];
OneSignal.push(function () {
OneSignal.init({
appId: "b3f01cfa-1a70-4f46-9dd1-202a1ae14385",
});
});
</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 -->
</head>
<body>
<div id="page">
<div class="section section-1 hdr" id="home">
<div class="content">
<div class="container">
<div>
<div wid="50%" class="left">
<div class="left_in">
<img src="images/community-day-logo-2022.png" />
<div class="txt">
<h4 class="headin-ttl">
11th & 12th Nov 2022
</h4>
<p>
AWS User Groups in India are back with a bang to
host the most awaited event, AWS Community Day India
2022, 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"> 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="450px" height="350px" id="livetrack" src="https://www.youtube.com/embed/NyxZHZhE0M8" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<!-- <iframe width="450px" height="350px" id="livetrack" src="https://www.youtube.com/embed/P5FsXl3wxvk" 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/NyxZHZhE0M8", "orange", "gray")' id="track1btn">Keynote/Track1</button>
<button onclick='changeTrack("https://www.youtube.com/embed/yVNIbFVeM1Y", "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/watch?v=NyxZHZhE0M8" style="color: orange;">Keynote/Track1</a>, for <a target="_blank" href="https://www.youtube.com/watch?v=yVNIbFVeM1Y" style="color: orange;">Track2</a>
</div>
</div>
<!-- <div class="right_in">
<p class="awsugblr_logo">
<img src="./images/awsugblr_logo.png" />
</p>
<p class="enlarge">
Thanks <img src="images/heart.svg" alt="Thanks heart" class="w-32px"> everyone for making last
Community Day
<img src="images/balloon.svg" alt="Celebrate" class="w-32px"> a huge
success
</p>
<button class="white icon-grp rt" id="link">
EXPLORE 2018
<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</a>
</li>
<!-- <li>
<a href="#cfp">CFP</a>
</li> -->
<!-- <li>
<a href="#venues">Venues</a>
</li> -->
<li>
<a href="#agenda">Agenda</a>
</li>
<li>
<a href="#workshop">Workshops</a>
</li>
<li>
<a href="#hackathon">Hackathon</a>
</li>
<li>
<a href="#sponsors">Sponsors</a>
</li>
<li>
<a href="#communityPartners">Community Partners</a>
</li>
<li>
<a href="#speakers">Speakers</a>
</li>
<li>
<a href="photobooth.html">Photobooth</a>
</li>
<!-- <li>
<a href="https://blog.awsug.in" target="_blank" rel="noopener noreferrer">Blog</a>
</li> -->
<li>
<a href="#volunteers">Volunteers</a>
</li>
<li>
<a href="code-of-conduct.html">Code Of Conduct</a>
</li>
<!-- <li>
<a href="https://communityday.awsug.in/2018" target="_blank">Community Day 2018</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 Group India</b>
is a volunteer based group that is 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.
</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://meetup.com/awsugblr/" target="_blank">
<i class="fa fa-meetup" aria-hidden="true" style="font-size:250%;"></i> </a> -->
<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>
<!-- <a href="https://go.awsug.in/slack" target="_blank">
<i class="fa fa-slack" aria-hidden="true" style="color:orange;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 sold">
<h4 class="heading-ttl">Conference</h4>
<div class="bg_img"></div>
<p>Gives you access to the conference on 27th July, 2019</p>
</div>
</div>
<div class="col-md-3">
<div class="card tick_work_1 with_icon border dark sold">
<h4 class="heading-ttl">Serverless Workshop</h4>
<div class="bg_img"></div>
<p>Gets you access to Serverless Workshop on 26th July, 2019</p>
</div>
</div>
<div class="col-md-3 ">
<div class="card tick_work_2 with_icon border sold">
<h4 class="heading-ttl">Deep learning workshop</h4>
<div class="bg_img"></div>
<p>Gets you access to Deep learning workshop on 26th July, 2019</p>
</div>
</div>
<div class="col-md-3 ">
<div class="card combo with_icon border dark sold">
<h4 class="heading-ttl">Combo</h4>
<div class="bg_img"></div>
<p>Gives you access to conference and any one workshop</p>
</div>
</div>
</div>
<div class="buy-wrapper row flex-it">
<div class="f1">
<a class="button large buy-ticket-link disabled">Buy Tickets</a>
</div>
</div>
</div>
</div> -->
<!-- <button onClick=xyz()>Click</button> -->
<!-- this modal pops up after successfull registration -->
<!-- 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 inv">
<div class="container">
<h4 class="main-heading-ttl text-center workshop_title">Thank you registering for the event!</h4>
<h5 style="font-size: 18px;line-height:1.5em; padding-bottom:10px">You have successfully registered for the first day of the event (11th November 2022). A confirmation email has been sent to you, and the streaming details will be communicated closer to the event.</h5>
<h5 style="font-size: 18px;line-height:1.5em">You can also be a part of this amazing event in the following ways:</h5>
<ol>
<li>
<h5 style="font-size: 18px;line-height:1.5em">Spread the word about the event - participate in the <span><a href="https://referral.konfhub.com/acd-2022/referral" target="_blank" style="color:#ff9900">referral contest</a></span> and stand a chance to win Amazon vouchers! You can share the unique referral link sent to you in the confirmation email.</h5>
</li>
<li>
<h5 style="font-size: 18px;line-height:1.5em">Help enhance the events & developer community's experience - particpate in the AWSomeify <span><a href="https://awsomeify.devpost.com/" target="_blank" style="color:#ff9900">Hackathon</a></span> and stand a chance to win a prize pool of 70,000 INR!
</li>
<li>
<h5 style="font-size: 18px;line-height:1.5em">Get hands-on with AWS - want to get your hands dirty and learn how to build production world applications with all the best practices? Learn from the experts during the workshop on the second day (12th November):</h5>
</li>
</ol>
<div class="row flex-it">
<div class="col-md-4 col-sm-12 col-xs-12">
<div class="card tick_work_1 with_icon dark" style="padding:16px 15px 12px 15px">
<h4 class="heading-ttl" style="font-size:14px">Build your own Serverless Food Delivery App in 3 hours!</h4>
<div class="bg_img"></div>
<!-- <p> Leverage AWS Serverless services to build a simple food delivery app in less than 3 hours! </p> -->
<button type="button" data-toggle="modal" data-target="#serverless">Details</button>
</div>
</div>
<div class="col-md-4 col-sm-12 col-xs-12">
<div class="card tick_work_2 with_icon dark" style="padding:16px 15px 12px 15px">
<h4 class="heading-ttl" style="font-size:14px">Data and Analytics Engineering Workshop</h4>
<div class="bg_img"></div>
<!-- <p>Generate Insight by Breaking Data Silos on AWS </p> -->
<button type="button" data-toggle="modal" data-target="#data-anlytics">Details</button>
</div>
</div>
<div class="col-md-4 col-sm-12 col-xs-12">
<div class="card tick_work_3 with_icon dark" style="padding:16px 15px 12px 15px">
<h4 class="heading-ttl" style="font-size:14px">AWS Workshop for AI/ML </h4>
<div class="bg_img"></div>
<!-- <p>Using Amazon SageMaker to Train & Deploy ScikitLearn ML Model and Integrate to API Gateway using AWS
Lambda Function </p> -->
<button type="button" data-toggle="modal" data-target="#aiml">Details</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>
<!-- 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>Serverless Bot for Web Chat, SMS and Phone Calls</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>17th Oct, 2:00PM</td>
<td>4 Hours</td>
</tr>
</table>
<p class="heading-ttl small-head">Description</p>
<p>
<b> Speakers </b>:
<li>Prashanth HN</li>
<li>Dhaval Nagar</li>
</p>
<p class="heading-ttl small-head">Objective</p>
<p>
Get hands-on experience in building a Serverless application using AWS Services. In this session, we will
create a Centralized Bot using AWS Lex that can be initiated via SMS (Amazon Pinpoint), Web (AWS S3), or
Phone Calls (Amazon Connect).
</p>
<p class="text-danger">
Note: We will be using the AWS US region for the session.
</p>
<p class="heading-ttl small-head">AWS Serverless Services:</p>
<ul class="modal-ul">
<li>Lex</li>
<li>Pinpoint</li>
<li>SNS</li>
<li>S3</li>
<li>DynamoDB</li>
<li>Amazon Connect</li>
<li>Serverless Framework</li>
</ul>
<p class="heading-ttl small-head">Workshop Content:</p>
<ul class="modal-ul">
<li>Setup Lex Bot, Build, and Test</li>
<li>Integrate Bot with Website hosted on S3 and test from Browser</li>
<li>Integrate Bot with Pinpoint SMS and test from User Phone</li>
<li>Integrate Bot with Amazon Connect and test using a Phone Call</li>
</ul>
<p class="heading-ttl small-head">Pre-requisites:</p>
<ul class="modal-ul">
<li>Active Internet Connection</li>
<li>Active AWS Account</li>
<li>Basic understanding of AWS Services like IAM, S3, Lambda, and DynamoDB</li>
<li>There will be a minimum charge as we will need to acquire SMS Long-code.</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>
<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\prashanth_hn.jpg" alt="speaker img">
</div>
<div class="col-md-3">
<div id="align1">
<h4 style="color:#ff9900">AWS Serverless Hero</h4>
<h4><a href="https://www.linkedin.com/in/hnprashanth/" target="_blank">Prashanth HN</a></h4>
<p><a href="https://antstack.io/" target="_blank">antstack.io</a></p>
</div>
</div>
<div class="col-md-2">
<img class="speakerImg" src="images\speakers\Dhaval.png" alt="speaker img">
</div>
<div class="col-md-3">
<div id="align">
<h4 style="color:#ff9900">AWS Serverless Hero</h4>
<h4><a href="https://www.linkedin.com/in/dhavaln/" target="_blank">Dhaval Nagar</a>
</h4>
<p><a href="https://appgambit.com" target="_blank">AppGambit</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">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>Alexa Workshop</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>17th Oct, 2:00PM</td>
<td>4 Hours</td>
</tr>
</table>
<p class="heading-ttl small-head">Description</p>
<p>
<b> Speaker :</b> Karthik Ragubathy, Solutions Architect with the Alexa team <br>
<b> Topic :</b> Building an Engaging Voice Game on Alexa <br>
<b> Agenda :</b>In this workshop, Karthik Ragubathy, Solutions Architect with the Alexa team will walk us
through the dynamics of building an engaging voice-first game on Alexa.
</p>
<p class="heading-ttl small-head">Workshop Content:</p>
<ul class="modal-ul">
<p><b>In this 4 hour long workshop, you will learn:</b></p>
<li>How to come up with an engaging voice-first game idea for Alexa</li>
<li>Applying concepts of situational design to build storyboards</li>
<li>Leveraging the power of databases and gamification through Leaderboards</li>
<li>Designing Multimodal experiences on Screen-enabled Alexa Devices like FireTV, Echo Show 5</li>
</ul>
<p class="heading-ttl small-head">Session Pre-Requisites :</p>
<ul class="modal-ul">
<li>Knowledge of NodeJS / Any other programming language. We will use NodeJS for this workshop, but you
will have Python code-samples as well to follow along.</li>
<li>Knowledge of Basic Alexa terminology (Slots, Intents etc) : Learn this by Building your first Alexa
Skill – <a href="https://alexa.design/cakewalk" target="_blank">https://alexa.design/cakewalk</a></p>
</li>
</ul>
<p class="heading-ttl small-head">Technical Resources :</p>
<ul class="modal-ul">
<li>Alexa Developer Console</li>
<li>AWS Services : AWS Lambda, S3, DynamoDB, Cloudwatch and Cloudformation</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\karthik.jpg" alt="speaker img">
</div>
<div class="col-md-3">
<div id="align">
<h4 style="color:#ff9900">Solutions Architect with the Alexa team</h4>
<h4><a href="https://in.linkedin.com/in/pkarthikr" target="_blank">Karthik
Ragubathy</a></h4>
<p><a href="https://www.amazon.com/" target="_blank">Amazon</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">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>Machine Learning</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>17th Oct, 2:00PM</td>
<td>4 Hours</td>
</tr>
</table>
<p class="heading-ttl small-head">Description</p>
<p>
<b> Speakers </b>:
<li>Jayesh Ahire (AWS ML Hero)</li>
<li>Sukanya Mandal (AWS reInvent 2019 Diversity Scholarship Winner)</li><br>
<b> Agenda :</b> In this workshop, you will learn cloud-based machine learning (ML) solutions on the AWS
platform. You will learn about the basics of Machine Learning on cloud, Implementing end to end ML
pipeline using Amazon SageMaker and applied use cases using AWS AI services focusing on NLP and CV.
</p>
<p class="heading-ttl small-head">Objective:</p>
<ul class="modal-ul">
<li>Introduction to Machine Learning</li>
<li>Amazon SageMaker & AWS AI Services</li>
<li>Hands-on Labs: AWS AI Services</li>
<li>Design & Implementation: Build, train and deploy using Sagemaker</li>
<li>Applied use-case (NLP & CV)</li>
</ul>
<p class="heading-ttl small-head">Intended Audience:</p>
<ul class="modal-ul">
<li>Anyone who is passionate about Machine Learning, and wondering how to get started</li>
<li>If you are new to machine learning, this might be a good starting point</li>
<li>Developers who want to understand concepts behind machine learning and how to implement a machine
learning solution on AWS</li>
</ul>
<p class="heading-ttl small-head">Session Pre-Requisites :</p>
<ul class="modal-ul">
<li>Basic understanding of machine learning processes</li>
<li>Basic knowledge of Python</li>
</ul>
<p class="heading-ttl small-head">Technical Resources :</p>
<ul class="modal-ul">
<li>Amazon Sagemaker</li>
<li>AWS AI services. </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">
<!-- <a href="https://konfhub.com/acd-ml" target="_blank" class="button" >Register</a> -->
<!-- <button type="button" data-toggle="modal" data-target="#RegisterIframe_3">Register</button> -->
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<!-- 4 -->
<div id="workshop_4" 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>Containers</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>17th Oct, 2:00PM</td>
<td>4 Hours</td>
</tr>
</table>
<p class="heading-ttl small-head">Description</p>
<p>
<b> Speakers </b>:
<li>Sandip Das ( AWS Container Hero)</li>
<li>Dipali Kulshrestha (AWS Community Leader)</li><br>
<b> Topic : </b>Microservices Deployment With AWS ECS
</p>
<b> Agenda :</b>In this workshop, we will cover how to containerize and deploy Microservices in AWS ECS</p>
<p class="heading-ttl small-head">Objective:</p>
<ul class="modal-ul">
<p><b>In this 4 hour long workshop, you will learn:</b></p>
<li>Containerize Applications and upload docker image in AWS ECR</li>
<li>Create ECS Cluster</li>
<li>Task Definition (with with an image from ECR and from DockerHub)</li>
<li>Running / Scheduling standalone Task</li>
<li>Configuring and running Services with Load balancing and Auto Scaling (including Capacity Provider)
</li>
<li>Advance Auto Scaling with ECS</li>
<li>Running Tasks and services with fargate</li>
<li>Using ECS CLI / copilot</li>
</ul>
<p class="heading-ttl small-head">Session Pre-Requisites :</p>
<ul class="modal-ul">
<li>Active Internet Connection</li>
<li>Active AWS Account</li>
<li>Basic understanding of Containerization and AWS Services like IAM, EC2 </li>
<li>Basic knowledge of NodeJs/ any programming languages, in demo application we will use NodeJs</li>
</ul>
<p class="heading-ttl small-head">Technical Resources :</p>
<ul class="modal-ul">
<li>AWS Services : AWS EC2, ECR, ECS, Fargate, App Mesh, Code CodeBuild</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\sandipdas.jpeg" alt="speaker img">
</div>
<div class="col-md-3">
<div id="align">
<h4 style="color:#ff9900">AWS Container Hero</h4>
<h4><a href="https://www.linkedin.com/in/sandip-das-developer/" target="_blank">Sandip Das</a></h4>
<p><a href="" target="_blank"></a></p>
</div>
</div>
<div class="col-md-2">
<img class="speakerImg" src="images\speakers\Dipali.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/dipalik/" target="_blank">Dipali Kulshrestha</a></h4>
<p><a href="https://www.rbs.in/" target="_blank">Royal Bank of Scotland</a></p>
</div>
</div>
</div>
<br>
<hr>
<div class="foot-btn d-flex justify-content-center">
<!-- <a href="https://konfhub.com/acd-containers" target="_blank" class="button" >Register</a> -->
<!-- <button type="button" data-toggle="modal" class="button" data-target="#RegisterIframe_4">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="container">
<img src="images/bgda.svg">
<div class="cfp">
<h4 class="main-heading-ttl">Submit a talk</h4>
<h4>Thank you for the overwhelming response. CFPs are now closed.</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-6 inv" id="Speakers" style="background-color: #eeeeee; color: #000000">
<h4 id="Keynote_Speakers" class="main-heading-ttl text-center" style="color:#232f3e;"> Keynote Speaker</h4><hr>
<div class="container">
<div>
<div class="container" style="padding:10px">
<div class="col-md-4 col-sm-12" style="margin-right:20px">
<div class="lb-grid lb-row lb-row-max-large lb-snap lb-gutter-mid">
<div class="lb-tiny-24 lb-mid-6">
<figure class="lb-img">
<div>
<img class="speakers-img" alt="Jeff Barr" title="Jeff Barr" src="images/speakers/key_note_speaker.JPG" style="border-radius: 25px;">
</div>
</figure>
</div>
</div>
</div>
<div class="col-md-7 col-sm-12">
<div class="my-5">
<h3 style="color: #555">A Cloud Odyssey by Rohini Gaonkar </h3>
</div>