-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
960 lines (877 loc) · 53.9 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
<!doctype html>
<!--[if lt IE 7]><html lang="en" class="no-js ie6"><![endif]-->
<!--[if IE 7]><html lang="en" class="no-js ie7"><![endif]-->
<!--[if IE 8]><html lang="en" class="no-js ie8"><![endif]-->
<!--[if gt IE 8]><!-->
<html lang="en" class="no-js">
<!--<![endif]-->
<head>
<meta charset="UTF-8">
<title>Brisbane Azure Bootcamp</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<link rel="shortcut icon" href="favicon.png">
<!-- Bootstrap 3.3.2 -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/animate.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/slick.css">
<link rel="stylesheet" href="assets/js/rs-plugin/css/settings.css">
<link rel="stylesheet" href="assets/css/styles.css">
<script type="text/javascript" src="assets/js/modernizr.custom.32033.js"></script>
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="pre-loader">
<div class="load-con">
<img src="assets/img/freeze/gab.png" class="animated fadeInDown" alt="">
<div class="spinner">
<div class="bounce1"></div>
<div class="bounce2"></div>
<div class="bounce3"></div>
</div>
</div>
</div>
<header>
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="fa fa-bars fa-lg"></span>
</button>
<a class="navbar-brand" href="http://global.azurebootcamp.net/">
<img src="assets/img/freeze/gabi.png" alt="" class="logo">
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li><a href="#about">about</a>
</li>
<li><a href="#features">agenda</a>
</li>
<li><a href="#reviews">speakers</a>
</li>
<li><a href="#requirements">pre-reqs</a>
</li>
<li><a href="#screens">sponsors</a>
</li>
<li><a href="#demo">swag</a>
</li>
<li><a href="#getApp" class="getApp">locate</a>
</li>
<!-- <li><a href="#support">contact</a> -->
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-->
</nav>
<!--RevSlider-->
<div class="tp-banner-container">
<div class="tp-banner">
<ul>
<!-- SLIDE -->
<li data-transition="fade" data-slotamount="7" data-masterspeed="1500">
<!-- MAIN IMAGE -->
<img src="assets/img/transparent.png" alt="slidebg1" data-bgfit="cover" data-bgposition="left top"
data-bgrepeat="no-repeat">
<!-- LAYERS -->
<!-- LAYER NR. 1 -->
<div class="tp-caption lfl fadeout hidden-xs" data-x="left" data-y="top" data-hoffset="30"
data-voffset="450" data-speed="500" data-start="700" data-easing="Power4.easeOut">
<!--<img src="assets/img/freeze/brisbane_city.jpg" alt="">-->
<!-- <img src="assets/img/freeze/Slides/hand-freeze.png" alt=""> -->
</div>
<div class="tp-caption lfl fadeout visible-xs" data-x="left" data-y="top" data-hoffset="700"
data-voffset="420" data-speed="500" data-start="700" data-easing="Power4.easeOut">
<!--<img src="assets/img/freeze/brisbane_city.jpg" alt="">-->
</div>
<div class="tp-caption large_white_bold sft" data-x="550" data-y="center" data-hoffset="0"
data-voffset="-80" data-speed="500" data-start="200" data-easing="Power4.easeOut">
Brisbane
</div><br />
<div class="tp-caption large_white_light sfr" data-x="550" data-y="center" data-hoffset="0"
data-voffset="0" data-speed="500" data-start="400" data-easing="Power4.easeOut">
Global Azure Bootcamp
</div>
<div class="tp-caption large_white_light sfb" data-x="550" data-y="center" data-hoffset="0"
data-voffset="80" data-speed="1000" data-start="500" data-easing="Power4.easeOut">
2019
</div>
<div class="tp-caption sfb hidden-xs" data-x="550" data-y="center" data-hoffset="0"
data-voffset="160" data-speed="1000" data-start="700" data-easing="Power4.easeOut">
<a href="#about" class="btn btn-primary inverse btn-lg">LEARN MORE</a>
</div>
<div class="tp-caption sfr hidden-xs" data-x="730" data-y="center" data-hoffset="0"
data-voffset="160" data-speed="1500" data-start="900" data-easing="Power4.easeOut">
<a href="https://www.meetup.com/Brisbane-Azure-User-Group/events/258725136/" target="new"
class="btn btn-default btn-lg">Register</a>
</div>
</li>
</ul>
</div>
</div>
</header>
<div class="wrapper">
<section id="about">
<div class="container">
<div class="section-heading scrollpoint sp-effect3">
<h1>About</h1>
<div class="divider"></div>
<p> Saturday, 27 April 2019 from 8:30 AM to 5:00 PM</p>
<p>One day event where everyone, globally, talks about the expanding universe of Microsoft Azure!</p>
</div>
<div class="row">
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="about-item scrollpoint sp-effect2">
<i class="fa fa-cloud fa-2x"></i>
<h3>Deep Dive Sessions</h3>
<p>One full day of deep dive sessions on Microsoft Azure for Developers and IT Pro's
delivered by the experts to get you started on complex
topics like Azure AD integration, data analytics, bots, iPaaS, and more!</p>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="about-item scrollpoint sp-effect5">
<i class="fa fa-usd fa-2x"></i>
<h3>Free Registration</h3>
<p>Entry to this event is totally free! What's more? There will be SWAG and prizes from our
sponsors! But you <i>must</i>
<a href="https://www.meetup.com/Brisbane-Azure-User-Group/events/258725136/" target="new">register</a>
to reserve your seat!</p>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="about-item scrollpoint sp-effect1">
<i class="fa fa-graduation-cap fa-2x"></i>
<h3>Discuss with Experts</h3>
<p>Have questions, need to discuss your technical issues, or looking for some advice? Do
attend and speak to the experts.</p>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="about-item scrollpoint sp-effect5">
<i class="fa fa-users fa-2x"></i>
<h3>Social Connect</h3>
<p>Catch up with all the Azure people in Brisbane. Exchange ideas, stories, contact
details, etc.</p>
<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
</div>
</div>
</div>
</div>
</section>
<section id="features">
<div class="container">
<div class="section-heading scrollpoint sp-effect3">
<h1>Agenda</h1>
<div class="divider"></div>
<p>Learn more about this feature packed event</p>
</div>
<div class="row">
<div class="col-md-4 col-sm-4 scrollpoint sp-effect1">
<div class="media text-left feature">
<a class="pull-right" href="#">
<!-- <i class="fa fa-envelope fa-2x"></i> -->
</a>
<div class="media-body text-left">
<h3>08:30-09:00 - Meet & Greet</h3>
<h4>Pick up your name badge!</h4>
</div>
</div>
<div class="media text-left feature">
<a class="pull-right" href="#">
<!-- <i class="fa fa-envelope fa-2x"></i> -->
</a>
<div class="media-body text-left">
<h3>09:00-09:10 - Welcome</h3>
<!--<h4 >Welcome message (video)</h4>-->
<h4>Introduction & Logistics</h4>
Damien Berry / Todd Whitehead (Organisers)
</div>
</div>
<div class="media text-left feature">
<div class="media-body text-left">
<h3>09:10-10:15 - Keynote</h3>
<a class="pull-right" href="#sessions">
<span class="fa fa-info-circle fa-2x"></span>
</a>
<h4>Building a Complex Demo in Azure Using Azure Pipelines</h4>
Damian Brady<br>(Cloud DevOps Advocate at Microsoft)
</div>
</div>
<div class="media text-left feature">
<a class="pull-right" href="#">
<!-- <i class="fa fa-envelope fa-2x"></i> -->
</a>
<div class="media-body text-left">
<h3>10:15-10:30 - Morning Tea</h3>
<h4>Light refreshments</h4>
</div>
</div>
<div class="media text-left feature">
<div class="media-body text-left">
<h3>10:30-11:15 - Session 1</h3>
<a class="pull-right" href="#sessions">
<span class="fa fa-info-circle fa-2x"></span>
</a>
<h4>Internet of Stranger Things</h4>
Todd Whitehead (CSA, Microsoft)
</div>
</div>
<div class="media text-left feature">
<div class="media-body text-left">
<h3>11:15-12:00 - Session 2</h3>
<a class="pull-right" href="#sessions">
<span class="fa fa-info-circle fa-2x"></span>
</a>
<h4>Getting Started with Cosmos DB & EF Core</h4>
Thiago Passos (Solution Architect, SSW)
</div>
</div>
</div>
<div class="col-md-4 col-sm-4">
<img src="assets/img/freeze/gab.png" class="img-responsive scrollpoint sp-effect5" alt="">
<div class="media text-left feature" align="middle">
<!--<a class="pull-right" href="#">-->
<!--</a>-->
<br><br>
<div class="media-body text-center">
<i class="fa fa-cutlery fa-2x"></i>
<h3>12:00-13:00 - Lunch</h3>
<h4>Food will be served</h4>
Vegetarian options included.
</div>
</div>
<div class="media text-left feature" align="middle">
<br><br>
<div class="media-body text-center">
<i class="fa fa-flask fa-2x"></i>
<h3>Throughout the Day</h3>
<h4>Hands-On Labs</h4>
Available in a separate room.
</div>
</div>
</div>
<div class="col-md-4 col-sm-4 scrollpoint sp-effect2">
<div class="media text-left feature">
<div class="media-body text-left">
<h3>13:00-13:45 - Session 3</h3>
<a class="pull-right" href="#sessions">
<span class="fa fa-info-circle fa-2x"></span>
</a>
<h4>Starting with Azure Cognitive Services</h4>
David Alzamendi<br> (Data Analytics & Cloud Consultant, WardyIT)
</div>
</div>
<div class="media text-left feature">
<div class="media-body text-left">
<h3>13:45-14:30 - Session 4</h3>
<a class="pull-right" href="#sessions">
<span class="fa fa-info-circle fa-2x"></span>
</a>
<h4>How to Tame a Penguin - Master Linux with Azure</h4>
Brendan Richards (Snr Software Architect, SSW)
</div>
</div>
<div class="media text-left feature">
<a class="pull-right" href="#">
<!-- <i class="fa fa-envelope fa-2x"></i> -->
</a>
<div class="media-body text-left">
<h3>14:30-15:15 - Session 5</h3>
<a class="pull-right" href="#sessions">
<span class="fa fa-info-circle fa-2x"></span>
</a>
<h4>Real-Time Face Recognition with Microsoft Cognitive Services</h4>
Jernej Kavka (Snr Software Architect, SSW)
</div>
</div>
<div class="media text-left feature">
<a class="pull-right" href="#">
<!-- <i class="fa fa-envelope fa-2x"></i> -->
</a>
<div class="media-body text-left">
<h3>15:15-15:30 - Afternoon Tea</h3>
<h4>Light refreshments</h4>
</div>
</div>
<div class="media text-left feature">
<div class="media-body text-left">
<h3>15:30-16:15 - Session 6</h3>
<a class="pull-right" href="#sessions">
<span class="fa fa-info-circle fa-2x"></span>
</a>
<h4>Building Event-Driven Integration Architectures</h4>
Dan Toomey (Microsoft Azure MVP)
</div>
</div>
<div class="media text-left feature">
<a class="pull-right" href="#">
<!-- <i class="fa fa-envelope fa-2x"></i> -->
</a>
<div class="media-body text-left">
<h3>16:30-17:00 - Wrap-up</h3>
<h4>Closing & Prizes Giveaway</h4>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="sessions">
<div class="container">
<div class="section-heading scrollpoint sp-effect3">
<h1>Session Info</h1>
<div class="divider"></div>
<p>What you'll be listening to</p>
</div>
<div class="row">
<!-- COLUMN ONE -->
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="about-item scrollpoint sp-effect2">
<i class="fa fa-cloud fa-2x"></i>
<h3>Keynote - Damian Brady</h3>
<h6><i>Building a Complex Demo in Azure Using Azure Pipelines</i></h6>
<p id="keynote-desc">
As a Cloud Advocate at Microsoft, I deliver a lot of talks at conferences - often the same talk over and over again. And just like all software projects, building, deploying, and supporting a complex application can be challenging. DevOps to the rescue!
</p><p>
In this session, I'll walk through the process of building a repeatable demo in Azure using Azure Pipelines. I'll talk about the application itself, the complexity of the environment, and the challenges with automation. Along the way, I'll highlight particular sticking points for improving DevOps in any software project, and discuss how Microsoft solves a lot of these problems internally.
</p><p>
Come and see how an application with 15+ moving parts can be rebuilt from scratch with a couple of clicks, and how you can apply those techniques to your own software.
</p>
</div>
</div>
<!-- COLUMN TWO -->
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="about-item scrollpoint sp-effect5">
<i class="fa fa-cloud fa-2x"></i>
<h3>Session 1 - Todd Whitehead </h3>
<h6><i>Internet of Stranger Things</i></h6>
<p>Azure has become an IoT Powerhouse and this session will examine and demo those capabilities. The demo will include a Stranger things inspired wall that combined low power hardware, Azure IoT Platform and containerised AI to allow communication with another dimension without chopping wholes in the wall.
</p>
</div>
<div class="about-item scrollpoint sp-effect5">
<h3>Session 2 - Thiago Passos </h3>
<h6><i>Getting Started wiwth Cosmos DB & EF Core</i></h6>
<p>Cosmos DB is great and awesomely fast. Wouldn't be even more amazing if we could use our beloved entity framework to manage it? Let see how we can wire it up and get started
</p>
</div>
</div>
<!-- COLUMN THREE -->
<div class="col-md-3 col-sm-3 col-xs-6">
<!--
<div class="about-item scrollpoint sp-effect5">
<i class="fa fa-cloud fa-2x"></i>
<h3>Session 3 - Robert Crane</h3>
<h6><i>Active Directory Integration to On-Prem</i></h6>
<p>Session details TBA.</p>
</div>
-->
<div class="about-item scrollpoint sp-effect5">
<i class="fa fa-cloud fa-2x"></i>
<h3>Session 3 - David Alzamendi </h3>
<h6><i>Starting with Azure Cognitive Services</i></h6>
<p>
Do you want to learn more about the Cognitive Services offering? What is Artificial Intelligence as a Service? Trying to save time building and training models?
</p><p>
This session is for you and will provide the answers to each of these questions. Using Azure Cognitive Services, you will learn how to empower your business with AIaaS (Artificial Intelligence as a Service) models that are ready for consumption. I will also include some demos using some of these services.
</p>
</div>
<div class="about-item scrollpoint sp-effect5">
<h3>Session 4 - Brendan Richards </h3>
<h6><i>How to Tame a Penguin - Master Linux with Azure</i></h6>
<p>
"Microsoft Heart Linux" is a big statement backed up by exciting software releases that give the .Net developer more choices than ever before. But how to get started? Brendan is a former Linux fundamentalist turned .Net Developer and this this talk will cover an essential introduction to Linux, package management and command-line basics - before going on to deploy Linux-based Azure resources.
</p>
</div>
</div>
<!-- COLUMN FOUR -->
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="about-item scrollpoint sp-effect5">
<i class="fa fa-cloud fa-2x"></i>
<h3>Session 5 - Jernev Kavka </h3>
<h6><i>Real-Time Face Recognition with Microsoft Cognitive Services</i></h6>
<p>
This session is all about Microsoft Face API in practice!
</p><p>
JK the man behind sswSophie.com will cover what it means to use Microsoft Cognitive Services in real-time, why offline detection libraries are essential and why you should use infrared and depth cameras like Kinect and Intel RealSense in your applications.
</p>
</div>
<div class="about-item scrollpoint sp-effect5">
<!--<i class="fa fa-cloud fa-2x"></i>-->
<h3>Session 6 - Dan Toomey </h3>
<h6><i>Building Event-Driven Integration Architectures</i></h6>
<p>
This session will discuss the benefits of event-driven application design in a cloud-connected world, and how to leverage reactive programming on platforms such as Azure Event Grid to build extensible and resilient distributed architectures that scale.
</p>
</div>
</div>
</div>
</div>
</section>
<section id="reviews">
<div class="container">
<div class="section-heading inverse scrollpoint sp-effect3">
<h1>Speakers</h1>
<div class="divider"></div>
<p>Who's doing the talking</p>
</div>
<div class="row">
<div class="col-md-10 col-md-push-1 scrollpoint sp-effect3">
<div class="review-filtering">
<div class="review rollitin">
<div class="row">
<div class="col-md-2">
<div class="review-person">
<img src="assets/img/freeze/DamianBrady.jpg" alt="" class="img-responsive">
</div>
</div>
<div class="col-md-10">
<div class="review-comment">
<h3>Damian Brady</h3>
<h3>Cloud DevOps Advocate at Microsoft</h3>
<p>
I'm a Cloud Developer Advocate for Microsoft with a specialty in
DevOps. After spending 2017 in Toronto Canada I'm now back in sunny
Australia, based in Newcastle.
Formerly a dev at Octopus Deploy (https://octopus.com) and a Microsoft
MVP, I have a background in software development and consulting in a
broad range of industries. In Australia, I co-organised the Brisbane
.Net User Group, and launched the now annual DDD Brisbane
(http://dddbrisbane.com) conference.
I regularly speak at conferences, User Groups, and other events around
the world, and I'm an occasional guest on various podcasts like .NET
Rocks (https://dotnetrocks.com) and Hanselminutes
(https://hanselminutes.com).
Most of the time you'll find me talking to developers and IT Pros to
help them get the most out of their DevOps strategies.
I also have my own Microsoft Channel 9 show - "The DevOps Lab"
(https://aka.ms/devopslab). Check it out for real-world guidance on
implementing DevOps in your organisation!
</p>
</div>
</div>
</div>
</div>
<div class="review rollitin">
<div class="row">
<div class="col-md-2">
<div class="review-person">
<img src="assets/img/freeze/TodWhitehead.jpg" alt="" class="img-responsive">
</div>
</div>
<div class="col-md-10">
<div class="review-comment">
<h3>Todd Whitehead</h3>
<h3>Cloud Solution Architect at Microsoft</h3>
<p>
Todd is a Cloud Solution Architect at Microsoft focusing on helping
customers to design and implement world class cloud solutions on Azure.
His experience was honed as a developer and architect and now spend his
days focusing on leveraging the power of Azure cloud services to show
how to
write the least amount of code possible to deliver the desired
outcomes.
</p>
</div>
</div>
</div>
</div>
<div class="review rollitin">
<div class="row">
<div class="col-md-2">
<div class="review-person">
<img src="assets/img/freeze/ThiagoPassos.jpg" alt="" class="img-responsive">
</div>
</div>
<div class="col-md-10">
<div class="review-comment">
<h3>Thiago Passos</h3>
<h3>Solution Architect</h3>
<p>
Thiago Passos is passionate about technology, learning new skills and sharing what he’s learnt over the years. He's got over 15 years of experience, especially within the Microsoft stack. He’s a solution architect by day, blogger and meetup organizer by night. He’s specialized in .NET Core, Angular and Azure.
</p>
</div>
</div>
</div>
</div>
<div class="review rollitin">
<div class="row">
<div class="col-md-2">
<div class="review-person">
<img src="assets/img/freeze/DavidAlzamendi.jpg" alt="" class="img-responsive">
</div>
</div>
<div class="col-md-10">
<div class="review-comment">
<h3>David Alzamendi</h3>
<h3>Data Analytics & Cloud Consultant</h3>
<p>
Delivering Business Intelligence and Data Analytics Solutions with On-Premises and Cloud technologies since 2011, David Alzamendi is a Microsoft Certified Solutions Expert and event speaker who solves problems with best practice procedures and the latest technology. David is passionate about the positive impact data can have on our lives, businesses, economy and the environment. He prides himself on using his creativity and optimism to solve what others thought impossible.
</p>
</div>
</div>
</div>
</div>
<div class="review rollitin">
<div class="row">
<div class="col-md-2">
<div class="review-person">
<img src="assets/img/freeze/BrendanRichards.jpg" alt="" class="img-responsive">
</div>
</div>
<div class="col-md-10">
<div class="review-comment">
<h3>Brendan Richards</h3>
<h3>Senior Software Architect</h3>
<p>
Brendan is a Solution Architect at SSW Brisbane and has been delivering successful web projects across diverse platforms and technologies since 1999.</p>
<p>He currently spends most of his day coding for clients with occasional breaks to deliver training SSW FirebootCamp or speak at .Net User Groups and Hackdays.</p>
<p>A few of his favorite things include Linux, Open Source, .NET Core, Angular, ngrx and Elastic Search.</p>
</div>
</div>
</div>
</div>
<div class="review rollitin">
<div class="row">
<div class="col-md-2">
<div class="review-person">
<img src="assets/img/freeze/JernejKavka.jpg" alt="" class="img-responsive">
</div>
</div>
<div class="col-md-10">
<div class="review-comment">
<h3>Jernej Kavka</h3>
<h3>Senior Software Architect</h3>
<p>
With around 10 years of experience in software engineering Jernej has worked on full-stack .Net development, mobile applications, and Microsoft Cognitive Services. He worked on some of Australia's largest corporates with great customer satisfaction.
</p>
</div>
</div>
</div>
</div>
<div class="review rollitin">
<div class="row">
<div class="col-md-2">
<div class="review-person">
<img src="assets/img/freeze/DanToomey.jpg" alt="" class="img-responsive">
</div>
</div>
<div class="col-md-10">
<div class="review-comment">
<h3>Dan Toomey</h3>
<h3>Senior Integration Specialist at Deloitte</h3>
<p>
Dan is a Senior Integration Specialist for Deloitte as well as a Microsoft Azure
MVP, a Microsoft Certified Solution Expert
in Cloud Platform (MCSE), a Microsoft Certified Azure Developer (MCPD),
and a Microsoft Certified Technical
Specialist (MCTS) in BizTalk Server 2010. He’s also a Microsoft
Certified Trainer (MCT) and a published Pluralsight
author. He is a frequent speaker at Australian community events,
including the Brisbane Azure User Group , the Global Integration Bootcamp, the Global Azure
Bootcamp, Xamarin Dev Days, and the
Brisbane BizTalk User Group which he founded in 2005. He has also
presented twice at INTEGRATE in London and several times at Microsoft Ignite in Australia.
</p>
</div>
</div>
</div>
</div>
<!-- <div class="review rollitin">
<div class="row">
<div class="col-md-2">
<div class="review-person">
<img src="assets/img/freeze/TodWhitehead.jpg" alt="" class="img-responsive">
</div>
</div>
<div class="col-md-10">
<div class="review-comment">
<h3>Speaker Name</h3>
<h3>Speaker Role</h3>
<p>
Blurb
</p>
</div>
</div>
</div>
</div>
<div class="review rollitin">
<div class="row">
<div class="col-md-2">
<div class="review-person">
<img src="assets/img/freeze/TodWhitehead.jpg" alt="" class="img-responsive">
</div>
</div>
<div class="col-md-10">
<div class="review-comment">
<h3>Speaker Name</h3>
<h3>Speaker Role</h3>
<p>
Blurb
</p>
</div>
</div>
</div>
</div> -->
</div>
</div>
</div>
</div>
</section>
<section id="requirements">
<div class="container">
<div class="section-heading scrollpoint sp-effect3">
<h1>Prerequisites</h1>
<div class="divider"></div>
<p>What you need to bring with you</p>
</div>
<div class="row">
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="about-item scrollpoint sp-effect2">
<i class="fa fa-laptop fa-2x"></i>
<h3>Laptop Computer</h3>
<p>With Visual Studio installed. Don't forget to bring your power cord!</p>
<h5><i>Optional if not doing the labs</i></h5>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="about-item scrollpoint sp-effect5">
<i class="fa fa-cloud fa-2x"></i>
<h3>Azure Subscription</h3>
<p>Sign up in advance for a <a href="https://azure.microsoft.com/en-us/free/">trial
subscription</a>, in case you don't have one through MSDN. </p>
<h5><i>Optional if not doing the labs</i></h5>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="about-item scrollpoint sp-effect1">
<i class="fa fa-cog fa-2x"></i>
<h3>Latest Azure SDK</h3>
<p>Download and install from <a href="https://azure.microsoft.com/en-au/downloads/">here</a>.
<strong>Please do this in advance!</strong></p>
<h5><i>Optional if not doing the labs</i></h5>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="about-item scrollpoint sp-effect5">
<i class="fa fa-graduation-cap fa-2x"></i>
<h3>Workout Gear</h3>
<p>...for your brain! Prepare to be boggled by the power of Azure!</p>
<h5><i>Caffeination will be provided</i></h5>
<!-- <br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
-->
</div>
</div>
</div>
</div>
</section>
<section id="screens">
<div class="container">
<div class="section-heading scrollpoint sp-effect3">
<h1>Sponsors</h1>
<div class="divider"></div>
<p>See who's supporting this great event </p>
</div>
<!-- <div class="filter scrollpoint sp-effect3">
<a href="javascript:void(0)" class="button js-filter-all active">All Screens</a>
<a href="javascript:void(0)" class="button js-filter-one">User Access</a>
<a href="javascript:void(0)" class="button js-filter-two">Social Network</a>
<a href="javascript:void(0)" class="button js-filter-three">Media Players</a>
</div> -->
<div class="slider scrollpoint sp-effect5">
<div class="col-md-4 col-sm-6 col-xs-6" align="center">
<a href="https://www.exclaim-it.com.au/" target="_blank">
<img style="max-height:10" src="assets/img/freeze/ExclaimIT_250x170.png" alt="ExclaimIT">
</a>
</div>
<div class="col-md-4 col-sm-6 col-xs-6" align="center">
<a href="https://www.red-gate.com/" target="_blank">
<img style="max-height:10" src="assets/img/freeze/redgate_250x170.png" alt="RedGate">
</a>
</div>
<div class="col-md-4 col-sm-6 col-xs-6" align="center">
<a href="https://www.techsmith.com/" target="_blank">
<img style="height:200" src="assets/img/freeze/TechSmith_250x170.png" alt="TechSmith">
</a>
</div>
<div class="col-md-12 col-sm-12 col-xs-12" align="center">
<p></p>
</div>
<div class="col-md-4 col-sm-6 col-xs-6" align="center">
<a href="https://www.microsoft.com/en-au/" target="_blank">
<img style="height:250" src="assets/img/freeze/Microsoft_250x170.png" alt="Microsoft">
</a>
</div>
<div class="col-md-4 col-sm-6 col-xs-6" align="center">
<a href="https://www.codify.com/" target="_blank">
<img style="height:250" src="assets/img/freeze/Codify_250x170.png" alt="Codify">
</a>
</div>
<div class="col-md-4 col-sm-6 col-xs-6" align="center">
<a href="https://www.meetup.com/Brisbane-Azure-User-Group/" target="_blank">
<img style="height:250" src="assets/img/freeze/BAUG_250x170.jpg" alt="Brisbane Azure User Group">
</a>
</div>
<div class="col-md-12 col-sm-12 col-xs-12" align="center">
<p></p>
</div>
<!-- <div class="col-md-4 col-sm-6 col-xs-6" align="center">
<a href="https://www.wardyit.com/" target="_blank">
<img style="height:200" src="assets/img/freeze/WardyIT_250x170.png" alt="WardyIT">
</a>
</div>
<div class="col-md-4 col-sm-6 col-xs-6" align="center">
<a href="http://www.asposeptyltd.com/" target="_blank">
<img style="height:200" src="assets/img/freeze/Aspose-Logo_250x170.png" alt="Aspose">
</a>
</div>
<div class="col-md-12 col-sm-12 col-xs-12" align="center">
<p></p>
</div>
<div class="col-md-12 col-sm-12 col-xs-12" align="center">
<a href="https://tv.ssw.com/" target="_blank">
<img style="height:200" src="assets/img/freeze/SSWTV_250x170.png" alt="TechSmith">
</a>
</div> -->
<div class="col-md-12 col-sm-12 col-xs-12" align="center">
<br>
<p>View information about the global sponsors <a href="https://global.azurebootcamp.net/sponsors/">here</a>.</p>
</div>
</div>
</section>
<section id="demo">
<div class="container">
<div class="section-heading scrollpoint sp-effect3">
<h1>Swag</h1>
<div class="divider"></div>
<p style="color:grey">There will be multiple prizes and giveaways.</p>
</div>
</div>
</section>
<section id="getApp">
<div class="container-fluid" style="margin:0px;">
<div class="section-heading inverse scrollpoint sp-effect3">
<h1>Where Are We?</h1>
<div class="divider"></div>
<p><b>Microsoft</b><br>Level 27<br>400 George Street<br>Brisbane, QLD 4000</p>
</div>
<div class="row">
<div class="col-md-12">
<div class="platforms">
<a href="http://translink.com.au/" class="btn btn-primary inverse scrollpoint sp-effect1"
target="_blank">
<i class="fa fa-train fa-3x pull-left"></i>
<span>Catch the</span><br>
<b>Train</b>
</a>
<a href="http://translink.com.au/" class="btn btn-primary inverse scrollpoint sp-effect2"
target="_blank">
<i class="fa fa-bus fa-3x pull-left"></i>
<span>Catch the</span><br>
<b>Bus</b>
</a>
</div>
<div style="vertical-align: bottom; text-align: center;">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2104.9252493436306!2d153.0192369327359!3d-27.46775896234946!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x6b915a0403c2a74b%3A0xaadc72fb1f27ba4!2sMicrosoft+Australia!5e0!3m2!1sen!2sau!4v1455253269209" width="600" height="300" frameborder="0" style="border:0" allowfullscreen></iframe>
<!--<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d1770.1656852439594!2d153.0333723375928!3d-27.45894123730174!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x6b9159f3542896ff%3A0xb6e9b92530522240!2sStartup+Precinct%2C+Level+2%2C+315+Brunswick+Street%2C+Fortitude+Valley+QLD+4006!5e0!3m2!1sen!2sau!4v1524005495549" width="600" height="450" frameborder="0" style="border:0" allowfullscreen></iframe>-->
</div>
</div>
</div>
</div>
</section>
<!--
<section id="support" class="doublediagonal">
<div class="container">
<div class="section-heading scrollpoint sp-effect3">
<h1>How can we help</h1>
<div class="divider"></div>
<p>For more info and support, contact us!</p>
</div>
<div class="row">
<div class="col-md-12">
<div class="row">
<div class="col-md-4 col-sm-4 contact-details scrollpoint sp-effect2">
<div class="media">
<a class="pull-left" href="#" >
<i class="fa fa-map-marker fa-2x"></i>
</a>
<div class="media-body">
<h4 class="media-heading">4, Some street, California, USA</h4>
</div>
</div>
<div class="media">
<a class="pull-left" href="#" >
<i class="fa fa-envelope fa-2x"></i>
</a>
<div class="media-body">
<h4 class="media-heading">
<a href="mailto:[email protected]">[email protected]</a>
</h4>
</div>
</div>
<div class="media">
<a class="pull-left" href="#" >
<i class="fa fa-phone fa-2x"></i>
</a>
<div class="media-body">
<h4 class="media-heading">+1 234 567890</h4>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
-->
<footer>
<div class="container">
<a href="http://global.azurebootcamp.net/" class="scrollpoint sp-effect3" target="_blank">
<img src="assets/img/freeze/gab.png" alt="" class="logo">
</a>
<div class="social">
<a href="http://twitter.com/share?url=http://brisbane.azurebootcamp.net/&text=Home+" class="scrollpoint sp-effect3"
target="_blank"><i class="fa fa-twitter fa-lg"></i></a>
<a href="https://plus.google.com/share?url=http://brisbane.azurebootcamp.net/" class="scrollpoint sp-effect3"
target="_blank"><i class="fa fa-google-plus fa-lg"></i></a>
<a href="http://www.facebook.com/sharer.php?u=http://brisbane.azurebootcamp.net/" class="scrollpoint sp-effect3"
target="_blank"><i class="fa fa-facebook fa-lg"></i></a>
</div>
<div class="rights">
Designed by Damien Berry
<p />
Inspired by Punit Ganshani's <a href="http://singapore.azurebootcamp.net/" target="_blank">singapore.azurebootcamp</a>
<p />
Hosted on <a href="//azure.microsoft.com/en-us/" target="_blank">Microsoft Azure</a>
<p />
<p>Template by <a href="http://www.scoopthemes.com" target="_blank">ScoopThemes</a></p>
</div>
</div>
</footer>
</div>
<script src="assets/js/jquery-1.11.1.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/slick.min.js"></script>
<script src="assets/js/placeholdem.min.js"></script>
<script src="assets/js/rs-plugin/js/jquery.themepunch.plugins.min.js"></script>
<script src="assets/js/rs-plugin/js/jquery.themepunch.revolution.min.js"></script>
<script src="assets/js/waypoints.min.js"></script>
<script src="assets/js/scripts.js"></script>
<script>
$(document).ready(function () {
appMaster.preLoader();
});
$(document).ready(function () {
$('[data-toggle="popover"]').popover();
});
</script>
</body>
</html>