This repository has been archived by the owner on Apr 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
deep-learning-workshop.html
1763 lines (1661 loc) · 71.4 KB
/
deep-learning-workshop.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>
<head>
<title>AWS Community Day Bengaluru 2019</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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.awsugblr.in" />
<meta property="og:type" content="website" />
<meta property="og:title" content="AWS Community Day Bengaluru 2019" />
<meta property="og:description" content="AWS Community Day Bengaluru 2019 is being organized by AWS User Group Bengaluru (AWSUGBLR). 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.awsugblr.in/images/community-day-logo-sq.png" />
<meta property="og:image:secure_url" content="https://communityday.awsugblr.in/images/community-day-logo-sq.png" />
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@awsugblr">
<meta name="twitter:creator" content="@SathyaBhat">
<meta name="twitter:title" content="AWS Users Group Bengaluru">
<meta name="twitter:description" content="AWSUGBLR 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 Bengaluru.">
<meta name="twitter:image" content="https://communityday.awsugblr.in/images/community-day-logo-sq.png">
<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://maxcdn.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 rel="stylesheet" href="https://maxcdn.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/[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-123754553-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-123754553-1");
</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>
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/logo.png" />
<div class="txt">
<h4 class="headin-ttl">
26th & 27th July 2019, Bengaluru
</h4>
<p>
AWS User Group Bengaluru (AWSUGBLR) is back with a bang to
host the most awaited event, AWS Community Day Bengaluru
2019, unveiling success stories, use cases & much more
from industry leaders.
</p>
</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">
<p class="awsugblr_logo">
<img src="./images/awsugblr_logo.png"/>
</p>
<p class="enlarge">
Thanks ❤️ everyone for making last Community Day 🎈 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" >Buy Tickets @ Early Bird Price</a>
</li>
<ul>
<li>
<a href="#com_info">About Community Day</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="#sponsors">Sponsors</a>
</li>
<li>
<a href="#speakers">Speakers</a>
</li>
<li>
<a href="#volunteers">Volunteers</a>
</li>
<li>
<a href="https://communityday.awsugblr.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><a href="https://meetup.com/awsugblr" target="_blank">AWS User Group Bengaluru (AWSUGBLR)</a></b>
is a Bengaluru based group 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 skills 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/awsugblr/" target="_blank">
<i class="fa fa-twitter" aria-hidden="true" style="color:orange;font-size:250%"></i> </a>
<a href="https://facebook.com/awsugblr/" target="_blank">
<i class="fa fa-facebook" aria-hidden="true" style="font-size:250%;"></i> </a>
<a href="https://t.me/awsugblr/" target="_blank">
<i class="fa fa-telegram" aria-hidden="true" style="color:orange;font-size:250%"></i> </a>
<a href="https://linkedin.com/in/awsugblr/" target="_blank">
<i class="fa fa-linkedin" aria-hidden="true" style="font-size:250%"></i> </a>
<a href="https://go.awsugblr.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 500+ 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">Buy Tickets</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 conference on 27th July, 2019</p>
</div>
</div>
<div class="col-md-3">
<div class="card tick_work_1 with_icon border dark">
<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">
<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">
<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">Buy Tickets</a>
</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 on AWS</p>
</h4>
</div>
<div class="modal-body">
<p>Hands-on Workshop on Developing AWSome App - a Serverless Food-delivery Application</p>
<p class="heading-ttl small-head">Abstract:</p>
<p>Get hands-on experience with AWS and serverless applications in this workshop conducted by experts from
AWS. </p>
<p>In this workshop you'll deploy a simple web application that enables users to request food from the
AWSome Food
website using services like <strong>AWS Lambda, Amazon API Gateway, Amazon S3, Amazon DynamoDB, AWS Step
Functions and
Amazon Cognito. </strong></p>
<p>
With the knowledge from the workshop, you can build and deploy your own serverless applications using
these services
for common use cases like web applications, analytics, and more.
</p>
<p class="heading-ttl small-head">Format:</p>
<p>
Full-day hands-on workshop (yes, do bring your laptops)</p>
<p class="heading-ttl small-head">Application – Technical Description:</p>
<p>
The application will present users with an HTML & JS based user interface for ordering food items and
indicating the
location where they would like the food to be delivered. The interface on the backend with a RESTful web
service will
submit the request and find and dispatch food to the requester’s location. The application will also
provide
facilities for users to register with the service and log in before ordering food.</p>
<p>
The application architecture uses S3 hosts static web resources including HTML, CSS, JavaScript, and image
files which
are loaded in the user's browser. JavaScript executed in the browser sends and receives data from a
backend API built
using Lambda & Step Functions and API Gateway. Amazon Cognito provides user management and authentication
functions to
secure the backend API. Finally, DynamoDB provides a persistence layer where data can be stored by the
API's Lambda
function.</p>
<p class="heading-ttl small-head">Pre-requisites:</p>
<ul>
<li><strong>AWS Account:</strong> In order to complete this workshop you'll need an AWS Account with
access to create
AWS IAM, S3, DynamoDB,
Lambda, Step Functions, API Gateway and Cognito resources. All of the resources you will launch as part
of this
workshop
are eligible for the AWS free tier if your account is less than 12 months old. See the <a
href="https://aws.amazon.com/free/" target="_blank">AWS Free Tier page</a> for more
details.</li>
<li><strong>Essential JavaScript, HTML/CSS & Python knowledge:</strong> The front-end used JS and HTML/CSS
and the
backend code is written in
Python; hence working knowledge is needed on these languages for this workshop.</li>
</ul>
<div class="wid">
<p class="text-center heading-ttl small-head">Agenda:</p>
<div class="block">
<p><strong>Session 1: Getting Started with Serverless Development</strong></p>
<ul>
<li>
Essentials of serverless development
</li>
<li>
Introduction to the essential AWS services used in this workshop and how they relate to each other:
AWS Lambda,
Amazon API Gateway, Amazon S3, Amazon DynamoDB, AWS Step Functions and Amazon Cognito.
</li>
<li>
Hands-on: Clone the GitHub repo for the “AWSome Food” application
</li>
</ul>
</div>
<div class="block">
<p><strong>Session 2: Static Website Hosting</strong></p>
<ul>
<li>
How to use S3 for static website hosting
</li>
<li>
Hands-on: Create an S3 bucket, upload content, add a bucket policy to allow public reads, and enable
website
hosting; validate the hosted website
</li>
</ul>
</div>
<div class="block">
<p><strong>Session 3: User Management</strong></p>
<ul>
<li>
How to perform user authentication and registration with Amazon Cognito User Pools
</li>
<li>
Hands-on: Create an Amazon Cognito user pool, add an application client, updating the Config.js file
in your
website
bucket, and validate the implementation.
</li>
</ul>
</div>
<div class="block">
<p class="text-center"><strong>Lunch break </strong></p>
</div>
<div class="block">
<p><strong>Session 4: Serverless Service Backend </strong></p>
<ul>
<li>
How to use AWS Lambda, Step Functions, and Amazon DynamoDB to build a backend process for handling
requests from
your
web application.
</li>
<li>
Hands-on: Create DynamoDB table, create an IAM role for the lambda and step functions, create
lambdas for
handing
requests; validate implementation
</li>
</ul>
</div>
<div class="block">
<p><strong>Session 5: RESTful APIs with AWS Lambda and Amazon API Gateway</strong></p>
<ul>
<li>How to use API Gateway to expose the created lambda and step functions as a RESTful API.
</li>
<li>Hands-on: Create a new REST API, create a Cognito User Pools Authorizer, create a new resource and
method,
deploy your
API, update the website config; validate the implementation.</li>
</ul>
</div>
<div class="block">
<p><strong>Session 6: Putting things together and next steps</strong></p>
<ul>
<li>How to test the implementation & perform load testing</li>
<li>How to monitor the application, logging, debugging, etc</li>
<li>Wrap-up and key takeaways</li>
</ul>
</div>
</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\madhu.jpg" alt="speaker img">
</div>
<div class="col-md-3">
<div id="align">
<h4 style="color:#ff9900">Workshop Trainer</h4>
<h4><a href="https://www.linkedin.com/in/madhusudanshekar/" target="_blank">Madhusudhan Shekar</a></h4>
<p><a href="https://aws.amazon.com/" target="_blank">AWS</a></p>
</div>
</div>
<div class="col-md-2">
<img class="speakerImg" src="images/srushith.jpg" alt="speaker img">
</div>
<div class="col-md-3">
<div id="align1">
<h4 style="color:#ff9900">Supporting Trainer <br /><small>(Hands-on labs)</small></h4>
<h4><a href="https://www.linkedin.com/in/srushith/" target="_blank">Srushith R</a></h4>
<p style="margin-top:-1px;"> <a href="https://konfhub.com/" target="_blank">KonfHub</a></p>
</div>
</div>
</div>
<br>
<hr>
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<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>Deep Learning on AWS</p>
</h4>
</div>
<div class="modal-body">
<p>Learn about cloud-based Deep Learning solutions on AWS</p>
<p class="heading-ttl small-head">Description</p>
<p>
In this one-day course, you will learn cloud-based deep learning (DL)
solutions on the AWS platform. You will learn how to run your models on the
cloud using Amazon EC2‒based deep learning Amazon Machine Image (AMI) and
Apache MXNet on AWS frameworks. In addition, you will learn how to use
Amazon SageMaker and deploy your deep learning models using AWS services
like AWS Lambda and Amazon Elastic Container Service (Amazon ECS)—all while
designing intelligent systems on AWS.
</p>
<div class="wid">
<p class="text-center heading-ttl small-head">Intended Audience</p>
<div class="block">
<p>
<strong>This course is intended for:</strong>
</p>
<ul>
<li>
Developers who are responsible for developing deep learning
applications
</li>
<li>
Developers who want to understand concepts behind deep learning and
how to implement a deep learning solution on AWS
</li>
</ul>
</div>
<p class="text-center heading-ttl small-head">Course Objectives</p>
<div class="block">
<p><strong>In this course, you will learn how to: </strong></p>
<ul>
<li>
Define machine learning (ML) and deep learning
</li>
<li>
Identify the concepts in a deep learning ecosystem
</li>
<li>
Leverage Amazon SageMaker and MXNet programming frameworks for deep
learning workloads
</li>
<li>Fit AWS solutions for deep learning deployments</li>
</ul>
</div>
<p class="text-center heading-ttl small-head">Prerequisites</p>
<div class="block">
<p>
<strong>We recommend that attendees of this course have the following
prerequisites:</strong>
</p>
<ul>
<li>
Basic understanding of machine learning processes
</li>
<li>
Basic understanding of AWS core services like Amazon EC2 and knowledge
of AWS SDKs
</li>
<li>
Basic knowledge of a scripting language, such as Python
</li>
</ul>
</div>
<p class="text-center heading-ttl small-head">Delivery Method</p>
<div class="block">
<p>
<strong>This course is delivered through a mix of:</strong>
</p>
<ul>
<li>
Classroom training
</li>
<li>
Hands-on labs
</li>
</ul>
</div>
<p class="text-center heading-ttl small-head">Hands-on Activity</p>
<div class="block">
<p>
<strong>This course allows you to test new skills and apply knowledge to your
working environment through a variety of practical exercises.
</strong>
</p>
</div>
</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\hemanth.jpg" alt="speaker img">
</div>
<div class="col-md-3">
<div id="align">
<h4 style="color:#ff9900">Technical Trainer</h4>
<h4 ><a href="https://www.linkedin.com/in/hemant-gahankari-57a1909/" target="_blank">Hemanth Gahankari</a></h4>
<p><a href="https://aws.amazon.com/aispl/" target="_blank">AISPL</a></p>
</div>
</div>
<div class="col-md-2">
<img class="speakerImg" src="images/Shinduri.png" alt="speaker img">
</div>
<div class="col-md-3">
<div id="align1">
<h4 style="color:#ff9900">Technical Trainer</h4>
<h4 ><a href="https://www.linkedin.com/in/shinduri-ks-5142a7156/" target="_blank">Shinduri KS</a></h4>
<p><a href="https://aws.amazon.com/aispl/" target="_blank">AISPL</a></p>
</div>
</div>
</div>
<br>
<hr>
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</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 Bengaluru">
<div class="rand_cls">
<span class="date_ori">27th July 2019</span>
<h4 class="headin-ttl">Conference</h4>
</div>
<ul>
<li><b>Conrad Bengaluru,</b></li>
<li>25/3, Kensington Rd, Someshwarpura,</li>
<li>Ulsoor, Bengaluru,</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 Bengaluru Outer Ring Road,</b></li>
<li>90-4, Sarjapur Outer Ring Rd,</li>
<li>Marathahalli, Bengaluru,</li>
<li>Karnataka 560037</li>
</ul>
</div>
<div class="marked"></div>
</div>
</div>
</div>
</div>
<div class="section section-4" id="agenda">
<div class="container">
<div class="sponsors">
<h4 class="main-heading-ttl text-center">Agenda</h4>
<div class="text-center agenda">
<div class="table">
<div class="thead">
<div class="tr">
<div class="th idx">
<div>
<p>Time</p>
</div>
</div>
<div class="th">
<div>
<p>Track 1</p>
</div>
</div>
<div class="th">
<div>
<p>Track 2</p>
</div>
</div>
<div class="th">
<div>
<p>Track 3</p>
</div>
</div>
<div class="th">
<div>
<p>Track 4</p>
</div>
</div>
</div>
</div>
<div class="tbody">
<div class="tr">
<div class="td idx">
<div>
<p>8:00 AM - 9:00 AM</p>
</div>
</div>
<div class="td" colspan="4">
<div>
<p>Check-In and Networking</p>
</div>
</div>
</div>
<div class="tr ">
<div class="td idx">
<div>
<p>9:00 AM - 9:30 AM</p>
</div>
</div>
<div class="td" colspan="4">
<div>
<p>Keynote: Embracing Full-stack Serverless. A new paradigm, <a href="https://www.linkedin.com/in/gerard-sans/?originalSubdomain=uk"> Gerard Sans, Developer Advocate, AWS</a></p>
</div>
</div>
</div>
<div class="tr">
<div class="td idx">
<div>
<p>9:30 AM - 10:00 AM</p>
</div>
</div>
<div class="td" colspan="4">
<div>
<p> Presentation by JFrog</p>
</div>
</div>
</div>
<div class="tr">
<div class="td idx">
<div>
<p>10:00 AM - 10:30 AM</p>
</div>
</div>
<div class="td" colspan="4">
<div>
<p>Presentation by Amazon Alexa</p>
</div>
</div>
</div>
<div class="tr">
<div class="td idx">
<div>
<p>10:30 AM - 11:00 AM</p>
</div>
</div>
<div class="td" colspan="4">
<div>
<p>Presentation by Freshworks</p>
</div>
</div>
</div>
<div class="tr gap">
<div class="td idx">
<div>
<p>11:00 AM - 11:30 AM</p>
</div>
</div>
<div class="td" colspan="4">
<div>
<p> Tea Break</p>
</div>
</div>
</div>
<div class="tr">
<div class="td idx">
<div>
<p>11:30 AM - 11:50 AM</p>
</div>
</div>
<div class="td">
<div>
<p>Serverless Architecture : The future of Cloud Computing</p>
<p> <a href="https://www.linkedin.com/in/palanisamy/" target="_blank"> Palanisamy Chellappan,Enterprise Architect, Brillio </a></p>
</div>
</div>
<div class="td">
<div>
<p>Building a search experience live with App Search</p>
<p><a href="https://www.linkedin.com/in/aravindputrevu" target="_blank"> Aravind Putrevu, Developer Advocate, Elastic </a></p>
</div>
</div>
<div class="td">
<div>
<p>
From One to Many: Slack's transition away from a single AWS account
</p>
<p>Andrew Martin, Senior Cloud Engineer, Slack</p>
</div>
</div>
<div class="td">
<div>
<p>Diversity Program: Practical tactics for achieving full potential in your career</p>
<p><a href="https://www.linkedin.com/in/diana-cruz-solash-4452336/" target="_blank">Diana Cruz Solash, VP Inclusion and Diversity, Infor</a></p>
<p> Moderated by <a href="https://www.linkedin.com/in/bhuvanas" target="_blank"> Bhuvaneswari Subramani, AWS re:Invent Diversity Scholarship Recipient </a></p>
</div>
</div>
</div>
<div class="tr">
<div class="td idx">
<div>
<p>12:00 PM - 12:20 PM</p>
</div>
</div>
<div class="td">
<div>
<p>Building voice-driven apps for Alexa.</p>
<p><a href="https://www.linkedin.com/in/saifurrahmanmohsin" target="_blank"> Saifur Rahman Mohsin, Developer, Web, Mobile and Voice Driven Apps </a></p>
</div>
</div>
<div class="td">
<div>
<p>
What's New - "An AWS server-less backed platform for latest news on
product releases."
</p>
<p><a href="https://www.linkedin.com/in/krishna-chaitanya-sadhu-38487532/" target="_blank"> Krishna Chaitanya Sadhu, Architect, Infor India Pvt Ltd. </a></p>
</div>
</div>
<div class="td">
<div>
<p>Lot of learns from on-prem migration to AWS</p>
<p><a href="https://www.linkedin.com/in/gangireddy-danamreddy-465675148" target="_blank"> Gangireddy D, SRE, Knolskape </a></p>
</div>
</div>
<div class="td">
<div>
<p>Diversity Program: Exploring opportunities with communities for a successful career</p>
<p><a href="https://www.linkedin.com/in/shwetha-lakshman-rao-a4a59015/" target="_blank">Shwetha Lakshman Rao, Sr. MTS , VMware software India & City Director - Women Who Code Bangalore </a></p>
<p> Moderated by <a href="https://www.linkedin.com/in/bhuvanas" target="_blank"> Bhuvaneswari Subramani, AWS re:Invent Diversity Scholarship Recipient </a></p>
</div>
</div>
</div>
<div class="tr gap">
<div class="td idx">
<div>
<p>12:20 PM - 1:30 PM</p>
</div>
</div>
<div class="td" colspan="4">
<div>
<p>Lunch</p>
</div>
</div>
</div>
<div class="tr">
<div class="td idx">
<div>
<p>1:30 PM - 2:10 PM</p>
</div>
</div>
<div class="td">
<div>
<p>Plant Monitoring & Automatically Water System using AWS IoT.</p>
<p><a href="https://www.linkedin.com/in/sekharrangam/" target="_blank"> Sekhar Rangam, Manager - Sr. Technical Architect, BRIDGEi2i Analytics Solutions </a></p>
</div>
</div>
<div class="td">
<div>
<p>
Making Lambda simpler for data scientists.
</p>
<p><a href="https://linkedin.com/in/palnabarun" target="_blank"> Nabarun Pal, Platform Engineer, Rorodata </a></p>
</div>
</div>
<div class="td">
<div>
<p>
Lets Talk AI with the Avengers - Building a Conversational AI
Assistant with AWS Lambda and Google Home.
</p>
<p><a href="https://www.linkedin.com/in/divyakrishnamurthi/" target="_blank"> Divya Krishnamurthi, Practice Manager, Akamai Technologies </a></p>
</div>
</div>
<div class="td">
<div>
<p>
Building Efficient, Scalable and Resilient Front-end logging service
with AWS.
</p>
<p><a href="https://www.linkedin.com/in/kokilavani-kathiresan" target="_blank"> Kokilavani Kathiresan, Software Developer, Intuit </a></p>
<p><a href="https://www.linkedin.com/in/ravikumar-kotha-33251518" target="_blank"> Ravikumar Kota, Software Developer, Intuit </a></p>
<p><a href="https://www.linkedin.com/in/shailja-agarwala-4a588185" target="_blank"> Shailja Agarwala, Software Developer, Intuit</a></p>
</div>
</div>
</div>
<div class="tr">
<div class="td idx">
<div>
<p>2:20 PM - 3:00 PM</p>
</div>
</div>
<div class="td">
<div>
<p>
Leveraging Machine Learning to Reduce Mean Time to Identify and
Resolve Issues when handling Systems/Applications at Scale.
</p>
<p><a href="https://www.linkedin.com/in/paulrajesh/" target="_blank"> Paul Rajesh, Director India Sales, Sumo Logic</a></p>
</div>
</div>
<div class="td">
<div>
<p>
Refactoring to Serverless -- Translating common application
architecture patterns to serverless on AWS.
</p>
<p><a href="https://www.linkedin.com/in/hnprashanth/" target="_blank"> Prashanth HN, Co-Founder, WheelsBox.com </a></p>
<p><a href="https://www.linkedin.com/in/adithyakreddy/" target="_blank"> Aditya Reddy, Software Developer, Branch Insurance </a></p>
</div>
</div>
<div class="td">
<div>
<p>
Complex architectures for authentication and authorization on AWS.
</p>
<p><a href="https://aws.amazon.com/developer/community/heroes/boyan-dimitrov/" target="_blank"> Boyan Dimitrov, AWS Community Hero, Germany </a></p>
</div>
</div>
<div class="td">
<div>
<p>Our journey with AWS from 0(ZERO) orders to 6 digit mark.</p>
<p><a href="https://www.linkedin.com/in/praneshvittal/" target="_blank"> Pranesh Vittal, Database Architect, Medlife.com </a></p>
<p><a href="https://www.linkedin.com/in/girish-g-4a334715/" target="_blank"> Girish Gajendra, Principal Engineer, Medlife.com </a></p>
</div>
</div>