-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdatav1.json
1075 lines (1072 loc) · 60.9 KB
/
datav1.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"Location": {
"Name": "India",
"Latitude": 1.3301512,
"Longitude": 103.9103661,
"Address": "33, Prestige Business Park, Marathaahlli <br/> Sarjapur Outer Ring Rd, Bellandur, Bellandur Amanikere, <br/> Karnataka 560103, India"
},
"Social": {
"Meetup": "http://www.meetup.com/mssgug/",
"Facebook": "https://www.facebook.com/singaporepowershell/",
"Twitter": "http://www.twitter.com/psconfasia"
},
"Callout": {
"Text": "Attending from Overseas, Buy ticket ONLY for 2 Conference Days here",
"Link": "https://www.paypal.me/miltongoh/USD87",
"Type": "warning"
},
"Campaigns": [
{
"Text": "Survey",
"Link": "#"
}
],
"Organizers": [
{
"Name": "Milton Goh",
"Description": "Microsoft CDM MVP. Milton is the industry hybrid guy who loves getting involve with hybrid stuffs. He started off as a Software Developer in Visual Basic programming in his career.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/milton2.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/miltongoh"
}
},
{
"Name": "Sebastian Szumigalski",
"Description": "Microsoft CDM MVP. With passion for automation and new Technologys. Helping to drive PowerShell community in Asia. Owner of PowerShell User Group in Manila and Yangon",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/sebastian.jpeg?raw=true",
"Social": {
"Blog": "szumigalski.com",
"Twitter": "http://www.twitter.com/szumigalskis"
}
},
{
"Name": "Jaap Brasser",
"Description": "Jaap is a Cloud and Automation Engineer and CDM MVP with a big passion for scripting and automation. As an IT professional Jaap is part of several professional communities, speaks & organizes technical events and writes articles on a variety of subjects on his personal blog and other websites or magazines.",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/Jaap.jpg?raw=true",
"Social": {
"Blog": "jaapbrasser.com",
"Twitter": "http://www.twitter.com/jaap_brasser",
"Github": "github.com/jaapbrasser"
}
},
{
"Name": "Gael Colas",
"Description": "Gael is Cloud and Automation consultant based in London, UK, also ScrumMaster (CSM) and a fervent DevOps enthusiast, recipient of the Microsoft MVP award. I have extended experience in Infrastructure Operations for Financial Services, supporting critical platforms, tight security constraints and Cloud/PaaS/IaaS automation.",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/gael.jpeg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/gaelcolas"
}
},
{
"Name": "Ravikanth Chaganti",
"Description": "Ravikanth is an automation fanatic and technologist working on Cloud and related technologies. He is a multi-year recepient of the Microsoft MVP award. Ravikanth is a Senior Principal Engineer at Dell EMC and works on Virtualization architectues based on Microsoft Hyper-V and VMware vSphere. Ravikanth is a published author and a well-known speaker in the PowerShell community. He leads the Bangalore IT Pro and PowerShell Bangalore user groups. Ravikanth is the founder and editor of PowerShellMagazine.Com and DiveIntotheCloud.Com sites.",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/ravi.jpeg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/ravikanth"
}
},
{
"Name": "Chendrayan Venkatesan",
"Description": "Chendrayan Venkatesan a.k.a Chen V is an automation enthusiast, speaker, Microsoft Community Contributor, TechNet Wiki Ninja, blogger, author of [Windows PowerShell 5.0 for .NET Developers](https://www.packtpub.com/networking-and-servers/windows-powershell-net-developers-second-edition) and a fun loving person. Chen V use PowerShell at work place to create a positive impact and urge to align with quality of work. One who loves connecting with people to learn and share technical contents. Current Role: Automation Lead Engineer.Location: India, Bangalore.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/chendra.jpg?raw=true",
"Social": {
"Blog": "",
"Twitter": "http://www.twitter.com/ChendrayanV"
}
},
{
"Name": "Prateek Singh",
"Description": "Prateek Singh is an Infrastructure developer who specializes in Infrastructure Automation with PowerShell. He is author of 'PowerShell Guide to Python', and contributing author to 'The PowerShell Conference' book. Prateek is a frequent open-source community contributor and his blog was recognized among the Top 50 PowerShell blogs in the world in the year 2017 and 2018. Prateek also writes on websites such as 4SysOps.com, IPSwitch.com and TechTarget.com and runs a YouTube Channel dedicated to PowerShell, Cloud, and Automation.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/pratek.jpeg?raw=true",
"Social": {
"Blog": "",
"Twitter": "http://www.twitter.com/SinghPrateik"
}
},
{
"Name": "Ajay Kakkar",
"Description": "Ajay is Microsoft Most Valuable Professional with diversified IT industry experience in end to end solution designing, engineering, enterprise architecture, presales, consulting, technical advisory, transition and transformation, project management, building, mentoring & managing technology teams. He is a blogger, and speaker in many forums (Microsoft conferences and local user groups) across the country for end-user, infrastructure and cloud technologies. He has also reviewed Microsoft Press books in the past.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/AK.jpg?raw=true",
"Social": {
"Blog": "",
"Twitter": ""
}
},
{
"Name": "Alok Agrawal",
"Description": "Alok is technology evangelist, he has spent two decades in solution consulting and architectures. He’s the founder managing partner for Tecoholic, focuses on learning enablement and cloud consulting to enhance business productivity. With cloud security in mind, helps organizations with compliance, governance and best practice adaption. In the past, he’s helped large enterprises for many years optimizing the business productivity in his varies roles in architecture, practice management and global portfolio management.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/Alok.jpeg?raw=true",
"Social": {
"Blog": "",
"Twitter": ""
}
},
{
"Name": "Senthamil Selvan",
"Description": "Microsoft Windows Dev MVP. Have experience in developing apps for windows platform. Developed several UWP apps and currently working on HoloLens apps.",
"ImageUrl": "~/images/sen.jpg",
"Social": {
"Blog": "http://altfo.wordpress.com",
"Twitter": "http://www.twitter.com/altfo"
}
}
],
"Sponsors": [
{
"Name": "",
"Image": "",
"Link": "",
"Category": ""
}
],
"Prizes": [
],
"Tracks": [
{
"Day": "19 September 2019",
"Name": "DSC",
"Sessions": [
{
"SessionId": "DSC1",
"Time": "9:00 AM - 10:30 AM",
"Title": "The DSC project blueprint or how to start a DSC project the right way",
"Speaker": {
"Name": "Raimund Andree",
"Description": "Microsoft Premire Field Engineer focusing mainly on PowerShell, DevOps and DSC.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/raimund.jpg?raw=true",
"Social": {
"Twitter": "https://twitter.com/raimundandree"
}
}
},
{
"SessionId": "Common1",
"Time": "10:30 AM - 10:45 AM",
"Title": "Break"
},
{
"SessionId": "DSC2",
"Time": "10:45 AM - 12:30 PM",
"Title": "The DSC project blueprint or how to start a DSC project the right way",
"Speaker": {
"Name": "Raimund Andree",
"Description": "Microsoft Premire Field Engineer focusing mainly on PowerShell, DevOps and DSC.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/raimund.jpg?raw=true",
"Social": {
"Twitter": "https://twitter.com/raimundandree"
}
}
},
{
"SessionId": "Common2",
"Time": "12:30 PM - 13:30 PM",
"Title": "Lunch"
},
{
"SessionId": "DSC3",
"Time": "13:30 PM - 15:00 PM",
"Title": "The DSC project blueprint or how to start a DSC project the right way",
"Speaker": {
"Name": "Raimund Andree",
"Description": "Microsoft Premire Field Engineer focusing mainly on PowerShell, DevOps and DSC.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/raimund.jpg?raw=true",
"Social": {
"Twitter": "https://twitter.com/raimundandree"
}
}
},
{
"SessionId": "Common3",
"Time": "15:00 PM - 15:15 PM",
"Title": "Break"
},
{
"SessionId": "DSC4",
"Time": "15:15 PM - 17:00 PM",
"Title": "The DSC project blueprint or how to start a DSC project the right way",
"Speaker": {
"Name": "Raimund Andree",
"Description": "Microsoft Premire Field Engineer focusing mainly on PowerShell, DevOps and DSC.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/raimund.jpg?raw=true",
"Social": {
"Twitter": "https://twitter.com/raimundandree"
}
}
}
]
},
{
"Day": "19 September 2019",
"Name": "PowerShell",
"Sessions": [
{
"SessionId": "PowerShell1",
"Time": "9:00 AM - 10:30 AM",
"Title": "Zero to Hero – The Fundamentals of PowerShell",
"Speaker": {
"Name": "Jason Yoder",
"Description": "Jason Yoder is a Microsoft Certified Trainer and international conference speaker who has delivered over 100 PowerShell classes worldwide. Jason combines his experience as a Network Administrator, his education as a Computer Scientist, and as an MCSE to show his students how to develop real solutions to real problems using Windows PowerShell. Jason is the Author of Advanced Windows PowerShell Scripting video training series with O'Reilly media and the Technical Reviewer for Microsoft's official instructor led PowerShell Training.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/Jason1.png?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/JasonYoder_MCT"
}
}
},
{
"SessionId": "Common1",
"Time": "10:30 AM - 10:45 AM",
"Title": "Break"
},
{
"SessionId": "PowerShell2",
"Time": "10:45 AM - 12:30 PM",
"Title": "Zero to Hero – The Fundamentals of PowerShell",
"Speaker": {
"Name": "Jason Yoder",
"Description": "Jason Yoder is a Microsoft Certified Trainer and international conference speaker who has delivered over 100 PowerShell classes worldwide. Jason combines his experience as a Network Administrator, his education as a Computer Scientist, and as an MCSE to show his students how to develop real solutions to real problems using Windows PowerShell. Jason is the Author of Advanced Windows PowerShell Scripting video training series with O'Reilly media and the Technical Reviewer for Microsoft's official instructor led PowerShell Training.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/Jason1.png?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/JasonYoder_MCT"
}
}
},
{
"SessionId": "Common2",
"Time": "12:30 PM - 13:30 PM",
"Title": "Lunch"
},
{
"SessionId": "PowerShell3",
"Time": "13:30 PM - 15:00 PM",
"Title": "Zero to Hero – The Fundamentals of PowerShell",
"Speaker": {
"Name": "Jason Yoder",
"Description": "Jason Yoder is a Microsoft Certified Trainer and international conference speaker who has delivered over 100 PowerShell classes worldwide. Jason combines his experience as a Network Administrator, his education as a Computer Scientist, and as an MCSE to show his students how to develop real solutions to real problems using Windows PowerShell. Jason is the Author of Advanced Windows PowerShell Scripting video training series with O'Reilly media and the Technical Reviewer for Microsoft's official instructor led PowerShell Training.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/Jason1.png?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/JasonYoder_MCT"
}
}
},
{
"SessionId": "Common3",
"Time": "15:00 PM - 15:15 PM",
"Title": "Break"
},
{
"SessionId": "PowerShell4",
"Time": "15:15 PM - 17:00 PM",
"Title": "Zero to Hero – The Fundamentals of PowerShell",
"Speaker": {
"Name": "Jason Yoder",
"Description": "Jason Yoder is a Microsoft Certified Trainer and international conference speaker who has delivered over 100 PowerShell classes worldwide. Jason combines his experience as a Network Administrator, his education as a Computer Scientist, and as an MCSE to show his students how to develop real solutions to real problems using Windows PowerShell. Jason is the Author of Advanced Windows PowerShell Scripting video training series with O'Reilly media and the Technical Reviewer for Microsoft's official instructor led PowerShell Training.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/Jason1.png?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/JasonYoder_MCT"
}
}
}
]
},
{
"Day": "19 September 2019",
"Name": "PowerCLI & Pester",
"Sessions": [
{
"SessionId": "PowerCLI1",
"Time": "9:00 AM - 10:30 AM",
"Title": "PowerCLI – From Beginner to Advanced",
"Speaker": {
"Name": " Kyle Ruddy",
"Description": "Kyle Ruddy is a Senior Technical Marketing Engineer working for VMware R&D in the Cloud Platform Business Unit. Kyle currently focuses on vSphere automation and the associated automation frameworks including all things API, CLI, and SDK. Kyle can be found blogging on VMware blogs, http://blogs.vmware.com/vSphere and http://blogs.vmware.com/PowerCLI, and his personal blog, http://www.thatcouldbeaproblem.com",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/KyleRuddy.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/kmruddy"
}
}
},
{
"SessionId": "Common1",
"Time": "10:30 AM - 10:45 AM",
"Title": "Break"
},
{
"SessionId": "PowerCLI2",
"Time": "10:45 AM - 12:30 PM",
"Title": "PowerCLI – From Beginner to Advanced",
"Speaker": {
"Name": "Luc Dekens",
"Description": "Luc is a long-term vExpert and MVP. He has done sessions at VMworld (US & EMEA), at several PowerShell conferences (PowerShell & DevOps Summit, PSConfEU, Tuga IT) and at several European VMUGs. Luc is also the co-author of the PowerCLI Reference ed 1 & 2.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/LucDekens.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/LucD22"
}
}
},
{
"SessionId": "Common2",
"Time": "12:30 PM - 13:30 PM",
"Title": "Lunch"
},
{
"SessionId": "PowerCLI3",
"Time": "13:30 PM - 15:00 PM",
"Title": "TDD with Pester",
"Speaker": {
"Name": "Jakub Jares",
"Description": "Jakub is one of the owners of the Pester project, and he've been doing testing in PowerShell since before it was cool. He has several years of administrative experience mostly in banking environment, where He discovered Pester and started using it to test my own projects. Two years ago, he moved to development, and so he can hopefully offer insight from the admin as well as developer point of view. he is also a Microsoft MVP for the past 4 years",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/JakubJares.jpeg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/nohwnd"
}
}
},
{
"SessionId": "Common3",
"Time": "15:00 PM - 15:15 PM",
"Title": "Break"
},
{
"SessionId": "PowerCLI4",
"Time": "15:15 PM - 17:00 PM",
"Title": "TDD with Pester",
"Speaker": {
"Name": "Jakub Jares",
"Description": "Jakub is one of the owners of the Pester project, and he've been doing testing in PowerShell since before it was cool. He has several years of administrative experience mostly in banking environment, where He discovered Pester and started using it to test my own projects. Two years ago, he moved to development, and so he can hopefully offer insight from the admin as well as developer point of view. he is also a Microsoft MVP for the past 4 years",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/JakubJares.jpeg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/nohwnd"
}
}
}
]
}
],
"Tracks1": [
{
"Day": "20 September 2019",
"Name": "Cloud",
"Sessions": [
{
"SessionId": "Common1",
"Time": "9:00 AM - 10:00 AM",
"Title": "KeyNote",
"Speaker": {
"Name": "",
"Description": "",
"ImageUrl": "",
"Social": {
"Twitter": ""
}
}
},
{
"SessionId": "Cloud1",
"Time": "10:15 AM - 11:00 AM",
"Title": "Getting started with Graph API and PowerShell",
"Speaker": {
"Name": "Alexander Holmeset",
"Description": "Alexander Holmeset is Cloud Consultant at CloudWay. He currently blogs at skype4bworld.com. He is very passionate about unified communication and automation. He has an extensive background from customer care and have an eye for understanding what the end user needs. Experienced with international spread videoconference systems, IP Telephony, end user training/support and advanced troubleshooting. Alexander´s focus is everything Skype for Business, Office 365 and automation with PowerShell. He will strive to deliver stable and user-friendly solutions that meets customer requirements and help them start taking use of the advantages in Office 365. Certified in ITIL Foundation framework and is an MCSE Productivity. His motto is: If you are going to do something more than once, then automate it.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/AlexHolmeset.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/AlexHolmeset"
}
}
},
{
"SessionId": "Cloud2",
"Time": "11:15 AM - 12:00 PM",
"Title": "Polaris + PSHTML - PSFabric | PowerShell Community Projects",
"Speaker": {
"Name": "Chendrayan Venkatesan",
"Description": "Chendrayan Venkatesan a.k.a Chen V is an automation enthusiast, speaker, Microsoft Community Contributor, TechNet Wiki Ninja, blogger, author of [Windows PowerShell 5.0 for .NET Developers](https://www.packtpub.com/networking-and-servers/windows-powershell-net-developers-second-edition) and a fun loving person. Chen V use PowerShell at work place to create a positive impact and urge to align with quality of work. One who loves connecting with people to learn and share technical contents. Current Role: Automation Lead Engineer.Location: India, Bangalore.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/chendra.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/ChendrayanV"
}
}
},
{
"SessionId": "Common2",
"Time": "12:00 PM - 01:00 PM",
"Title": "Lunch"
},
{
"SessionId": "Cloud3",
"Time": "1:00 PM - 1:45 PM",
"Title": "Extending PowerShell Types and Formats",
"Speaker": {
"Name": "Jeffrey Hicks",
"Description": "Jeffery Hicks is an IT veteran with almost 30 years of experience, much of it spent as an IT infrastructure consultant specializing in Microsoft server technologies with an emphasis in automation and efficiency. He is a multi-year recipient of the Microsoft MVP Award. He works today as an independent author, teacher and consultant. Jeff has taught and presented on PowerShell and the benefits of automation to IT Pros worldwide. He has authored and co-authored a number of books, writes for numerous online sites and print publications, is a contributing editor at Petri.com, a Pluralsight author, and a frequent speaker at technology conferences and user groups.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/JeffHicks.png?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/JeffHicks"
}
}
},
{
"SessionId": "Cloud4",
"Time": "2:00 PM - 2:45 PM",
"Title": "Real world REST API building with PowerShell in Azure Functions: Terraform Registry!",
"Speaker": {
"Name": "Ben Gelens",
"Description": "Ben is a technician in heart and soul. He likes working with cutting-edge technology and implementing innovative solutions, often before the technology has commoditized. His strength is that he can automate almost anything. Ben transitioned from a traditional infrastructure consultant / engineer to a DevOps and Cloud focused consultant / engineer. Ben is an active IT community participant and speaker and has been awarded the Microsoft MVP (Most Valuable Professional) award for his contributions.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/BenGelens.png?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/bgelens"
}
}
},
{
"SessionId": "Common3",
"Time": "2:45 PM - 3:00 PM",
"Title": "Break"
},
{
"SessionId": "Cloud5",
"Time": "3:00 PM - 3:45 PM",
"Title": "",
"Speaker": {
"Name": "",
"Description": "",
"ImageUrl": "",
"Social": {
"Twitter": ""
}
}
},
{
"SessionId": "Cloud6",
"Time": "4:00 PM - 4:45 PM",
"Title": "dbachecks - The PowerShell Module to validate your SQL Estate",
"Speaker": {
"Name": "Rob Sewell",
"Description": "Rob is a SQL Server DBA with a passion for PowerShell, Azure, Automation, and SQL (PaaS geddit?). He is a Cloud and Datacenter MVP and an officer for the PASS PowerShell VG and has spoken at and volunteered at many events. He is a member of the committee that organises SQL Saturday Exeter, PSDay.uk and also the European PowerShell Conference. He is a proud supporter of the SQL and PowerShell communities. He relishes sharing and learning and can be found doing both via Twitter and his blog. He spends most of his time looking at a screen and loves to solve problems. He knows that looking at a screen so much is bad for him because his wife tells him so. Thus, you can find him on the cricket field in the summer and flying a drone in the winter. He has a fabulous beard",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/RobSewell.png?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/sqldbawithbeard"
}
}
},
{
"SessionId": "Cloud7",
"Time": "5:00 PM - 5:45 PM",
"Title": "",
"Speaker": {
"Name": "",
"Description": "",
"ImageUrl": "",
"Social": {
"Twitter": ""
}
}
}
]
},
{
"Day": "20 September 2019",
"Name": "DevOps",
"Sessions": [
{
"SessionId": "Common1",
"Time": "9:00 AM - 10:00 AM",
"Title": "KeyNote",
"Speaker": {
"Name": "",
"Description": "",
"ImageUrl": "",
"Social": {
"Twitter": ""
}
}
},
{
"SessionId": "DevOps1",
"Time": "10:15 AM - 11:00 AM",
"Title": "Better Ops Together: Practical PowerShell Pair Programming Patterns and Practices with VS Code",
"Speaker": {
"Name": "Mark Kraus",
"Description": "Mark Kraus is a Senior Systems Engineer at LinkedIn specializing in hybrid cloud Infrastructure as Code. He is a Former Microsoft MVP, PowerShell Core Project Collaborator, a heavy contributor to the Web Cmdlets code for PowerShell core, and a [opensource author & contributor](https://github.com/markekraus) to many PowerShell projects. He is the author of [Get-PowerShellBlog](https://get-powershellblog.blogspot.com/), a regular in [/r/PowerShell](https://www.reddit.com/r/PowerShell/), and can often be found on the [PoshCode Slack](http://poshcode.org/).",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/markkraus.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/markekraus"
}
}
},
{
"SessionId": "DevOps2",
"Time": "11:15 AM - 12:00 PM",
"Title": "",
"Speaker": {
"Name": "",
"Description": "",
"ImageUrl": "",
"Social": {
"Twitter": ""
}
}
},
{
"SessionId": "Common2",
"Time": "12:00 PM - 01:00 PM",
"Title": "Lunch"
},
{
"SessionId": "DevOps3",
"Time": "1:00 PM - 1:45 PM",
"Title": "WebAPI's with PowerShell in Docker. Who saysI'm not real dev?",
"Speaker": {
"Name": "Ryan Bartram",
"Description": "Trained by the great ninja cat. I hope I can pass on some of his wisdom to you Ryan works as a Automation engineer at itnetX AG, a consulting and engineering company located in Switzerland. Ryan helps companies to transform their business by automating thier business processes and streamlining thier IT. Ryan is focused on Microsoft Technologies, especially Microsoft Cloud Platform based Microsoft System Center, Microsoft Virtualization and Microsoft Azure. If you want to know more about Ryan, check out his blog: www.dftai.ch and remember, don't forget to automate it",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/ryan.jpeg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/rd_bartram"
}
}
},
{
"SessionId": "DevOps4",
"Time": "2:00 PM - 2:45 PM",
"Title": "Making your work visible - Including telemetry in your PowerShell modules",
"Speaker": {
"Name": "Jan-Hendrik Peters",
"Description": "Having worked at an international grocery chain for 4 years where I automated the deployment of over 20.000 nodes, I quickly developed my love for PowerShell, Desired State Configuration and automation in general. As a Microsoft, Premier Field Engineer I now help my customers adopt a DevOps style. This includes introducing DSC into their environment, developing release pipelines and generally automating things.",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/JanPeters.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/NyanHP"
}
}
},
{
"SessionId": "Common3",
"Time": "2:45 PM - 3:00 PM",
"Title": "Break"
},
{
"SessionId": "DevOps5",
"Time": "3:00 PM - 3:45 PM",
"Title": "Pester internals and concepts",
"Speaker": {
"Name": "Jakub Jares",
"Description": "Jakub is one of the owners of the Pester project, and he've been doing testing in PowerShell since before it was cool. He has several years of administrative experience mostly in banking environment, where He discovered Pester and started using it to test my own projects. Two years ago, he moved to development, and so he can hopefully offer insight from the admin as well as developer point of view. he is also a Microsoft MVP for the past 4 years",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/JakubJares.jpeg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/nohwnd"
}
}
},
{
"SessionId": "DevOps6",
"Time": "4:00 PM - 4:45 PM",
"Title": "PowerShell Anywhere - Azure Cloud Shell",
"Speaker": {
"Name": "Adam Murray",
"Description": "I am a doer, an optimist, and a technologist. With 20 years of experience in corporate IT and one start-up behind me, I've recently embarked on my second start-up, Tikabu, which provides premium consulting services in secure DevOps. Focusing on clients with a predominantly Microsoft technology stack, we help our customers become more agile at delivering solutions to their customers. I've been passionate about PowerShell since its beta days. I recognised the potential and flexibility it gave me compared with the tools I started out with in automation, such as Kix and VBScript. Today, I remain a staunch PowerShell devotee; I’ve presented on the scripting language at user groups and am a two-time winner of the Quest PowerPack Challenge. PowerShell has become an integral part of the solutions that I develop day to day. Throughout my career, I’ve served in both technical and people-management positions across the financial sector. My electrical-engineering degree has provided a strong foundation for the analytical and troubleshooting talents necessary for a successful IT career, and my MBA and additional continuing education have given me a broader and more well-informed business outlook. My ongoing thirst for technical knowledge has led to a thorough understanding of technology at all levels. More than just a vocation, technology is my passion both in and out of the workplace.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/adammurray.jpeg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/muzzar78"
}
}
},
{
"SessionId": "DevOps7",
"Time": "5:00 PM - 5:45 PM",
"Title": "Say no to RDP! Can we? PowerShell to the rescue!",
"Speaker": {
"Name": "David O'Brien",
"Description": "David recently started his own company focusing mainly on Microsoft stacks in the cloud, training individuals and companies in all things Microsoft Azure and Azure DevOps, and also still doing hands-on consulting and infracoding. He has held a Microsoft MVP award for 5 years including the prestigious MVP for Azure. A co-organiser of the Melbourne Microsoft Cloud and Datacentre meetup he also regularly speaks at international conferences and combines his interest to travel the world with his passion to share IT stories with the community. David's personal blog can be found on [https://david-obrien.net](https://david-obrien.net) . In addition to blogging he has also published online training courses on Pluralsight and 'A Cloud Guru'.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/david.jpeg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/david_obrien"
}
}
}
]
},
{
"Day": "20 September 2019",
"Name": "PowerShell",
"Sessions": [
{
"SessionId": "Common1",
"Time": "9:00 AM - 10:00 AM",
"Title": "KeyNote",
"Speaker": {
"Name": "",
"Description": "",
"ImageUrl": "",
"Social": {
"Twitter": ""
}
}
},
{
"SessionId": "PowerShell1",
"Time": "10:15 AM - 11:00 AM",
"Title": "Visualize and Document Infrastructure with PowerShell",
"Speaker": {
"Name": "Prateek Singh",
"Description": "Prateek Singh is an Infrastructure developer who specializes in Infrastructure Automation with PowerShell. He is author of 'PowerShell Guide to Python', and contributing author to 'The PowerShell Conference' book. Prateek is a frequent open-source community contributor and his blog was recognized among the Top 50 PowerShell blogs in the world in the year 2017 and 2018. Prateek also writes on websites such as 4SysOps.com, IPSwitch.com and TechTarget.com and runs a YouTube Channel dedicated to PowerShell, Cloud, and Automation.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/pratek.jpeg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/SinghPrateik"
}
}
},
{
"SessionId": "PowerShell2",
"Time": "11:15 AM - 12:00 PM",
"Title": "Become the Remoting Master",
"Speaker": {
"Name": "Jason Yoder",
"Description": "Jason Yoder is a Microsoft Certified Trainer and international conference speaker who has delivered over 100 PowerShell classes worldwide. Jason combines his experience as a Network Administrator, his education as a Computer Scientist, and as an MCSE to show his students how to develop real solutions to real problems using Windows PowerShell. Jason is the Author of Advanced Windows PowerShell Scripting video training series with O'Reilly media and the Technical Reviewer for Microsoft's official instructor led PowerShell Training.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/Jason1.png?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/JasonYoder_MCT"
}
}
},
{
"SessionId": "Common2",
"Time": "12:00 PM - 01:00 PM",
"Title": "Lunch"
},
{
"SessionId": "PowerShell3",
"Time": "1:00 PM - 1:45 PM",
"Title": "The State of PowerShell",
"Speaker": {
"Name": "Sydney Smith",
"Description": "Sydney is a Program Manager on the PowerShell Team. Among other things she focuses on the PowerShell editing experience, the PowerShell extension in VSCode, PowerShell Gallery and, PowerShell Get.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/sydneysmith.jpg?raw=true",
"Social": {
"Twitter": ""
}
}
},
{
"SessionId": "PowerShell4",
"Time": "2:00 PM - 2:45 PM",
"Title": "Building a Serverless Compliance in a DevOps World",
"Speaker": {
"Name": "Aditya Patwardhan",
"Description": "Aditya has been working in the management space for over a decade. He has worked on Background Intelligent Transfer Service (BITS), Windows Management Instrumentation and now on PowerShell. He is a maintainer of PowerShell repository on GitHub and his recent work has been with build and infrastructure improvements. He also owns the PowerShell help system and also a maintainer on PlatyPS repository.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/Aditya.jpg?raw=true",
"Social": {
"Twitter": ""
}
}
},
{
"SessionId": "Common3",
"Time": "2:45 PM - 3:00 PM",
"Title": "Break"
},
{
"SessionId": "PowerShell5",
"Time": "3:00 PM - 3:45 PM",
"Title": "vSphere Security Compliance in a DevOps World",
"Speaker": {
"Name": " Kyle Ruddy",
"Description": "Kyle Ruddy is a Senior Technical Marketing Engineer working for VMware R&D in the Cloud Platform Business Unit. Kyle currently focuses on vSphere automation and the associated automation frameworks including all things API, CLI, and SDK. Kyle can be found blogging on VMware blogs, http://blogs.vmware.com/vSphere and http://blogs.vmware.com/PowerCLI, and his personal blog, http://www.thatcouldbeaproblem.com",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/KyleRuddy.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/kmruddy"
}
}
},
{
"SessionId": "PowerShell6",
"Time": "4:00 PM - 4:45 PM",
"Title": "Keep on Running: Runspaces in the Wild",
"Speaker": {
"Name": "Friedrich Weinmann",
"Description": "An IT analyst/administrator, performing a wide variety of tasks, using PowerShell wherever possible. Also, by hobby a developer and scripter, for the fun of it.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/FredWeinmann.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/FredWeinmann"
}
}
},
{
"SessionId": "PowerShell7",
"Time": "5:00 PM - 5:45 PM",
"Title": "'Now you have two problems!' - RegEx for PowerShellies",
"Speaker": {
"Name": "Mathias R. Jessen",
"Description": "Amateur PowerShell Aficionado and a huge fan of type inference, working professionally as a Microsoft Systems Administrator with a focus on Active Directory and Security. Speaker at PSConfAsia 2016 ",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/mathias.jpeg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/iisresetme"
}
}
}
]
}
],
"Tracks2": [
{
"Day": "21 September 2019",
"Name": "Cloud",
"Sessions": [
{
"SessionId": "Common1",
"Time": "9:00 AM - 10:00 AM",
"Title": "KeyNote",
"Speaker": {
"Name": "",
"Description": "",
"ImageUrl": "",
"Social": {
"Twitter": ""
}
}
},
{
"SessionId": "Cloud1",
"Time": "10:15 AM - 11:00 AM",
"Title": "",
"Speaker": {
"Name": "",
"Description": "",
"ImageUrl": "",
"Social": {
"Twitter": ""
}
}
},
{
"SessionId": "Cloud2",
"Time": "11:15 AM - 12:00 PM",
"Title": "Mastering VSCode - The modern tool for next-gen engineer",
"Speaker": {
"Name": "Jaap Brasser",
"Description": "Jaap is a Cloud and Automation Engineer and CDM MVP with a big passion for scripting and automation. As an IT professional Jaap is part of several professional communities, speaks & organizes technical events and writes articles on a variety of subjects on his personal blog and other websites or magazines.",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/Jaap.jpg?raw=true",
"Social": {
"Blog": "jaapbrasser.com",
"Twitter": "http://www.twitter.com/jaap_brasser",
"Github": "github.com/jaapbrasser"
}
}
},
{
"SessionId": "Common2",
"Time": "12:00 PM - 01:00 PM",
"Title": "Lunch"
},
{
"SessionId": "Cloud3",
"Time": "1:00 PM - 1:45 PM",
"Title": "PowerShell based APIs - on kubernetes!",
"Speaker": {
"Name": "David O'Brien",
"Description": "David recently started his own company focusing mainly on Microsoft stacks in the cloud, training individuals and companies in all things Microsoft Azure and Azure DevOps, and also still doing hands-on consulting and infracoding. He has held a Microsoft MVP award for 5 years including the prestigious MVP for Azure. A co-organiser of the Melbourne Microsoft Cloud and Datacentre meetup he also regularly speaks at international conferences and combines his interest to travel the world with his passion to share IT stories with the community. David's personal blog can be found on [https://david-obrien.net](https://david-obrien.net) . In addition to blogging he has also published online training courses on Pluralsight and 'A Cloud Guru'.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/david.jpeg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/david_obrien"
}
}
},
{
"SessionId": "Cloud4",
"Time": "2:00 PM - 2:45 PM",
"Title": "Using PowerShell in Azure Functions",
"Speaker": {
"Name": "Chendrayan Venkatesan",
"Description": "Chendrayan Venkatesan a.k.a Chen V is an automation enthusiast, speaker, Microsoft Community Contributor, TechNet Wiki Ninja, blogger, author of [Windows PowerShell 5.0 for .NET Developers](https://www.packtpub.com/networking-and-servers/windows-powershell-net-developers-second-edition) and a fun loving person. Chen V use PowerShell at work place to create a positive impact and urge to align with quality of work. One who loves connecting with people to learn and share technical contents. Current Role: Automation Lead Engineer.Location: India, Bangalore.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/chendra.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/ChendrayanV"
}
}
},
{
"SessionId": "Common3",
"Time": "2:45 PM - 3:00 PM",
"Title": "Break"
},
{
"SessionId": "Cloud5",
"Time": "3:00 PM - 3:45 PM",
"Title": "",
"Speaker": {
"Name": "",
"Description": "",
"ImageUrl": "",
"Social": {
"Twitter": ""
}
}
},
{
"SessionId": "Cloud6",
"Time": "4:00 PM - 4:45 PM",
"Title": "Cross-platform Scripting with VS Code and PSSA",
"Speaker": {
"Name": "Robert Holt",
"Description": "Rob joined the PowerShell team full time in 2018 and primarily works on the PowerShell module system, PowerShell language engine, and the PowerShell Extension for VSCode, while also dabbling in PSScriptAnalyzer. His recent work has included enabling support of Windows PowerShell modules in PowerShell 6 and creating the compatibility checking rules in PSScriptAnalyzer. Rob is also a functional programming enthusiast and is particularly interested in programming languages and compilers.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/robholt.jpg?raw=true",
"Social": {
"Twitter": ""
}
}
},
{
"SessionId": "Cloud7",
"Time": "5:00 PM - 5:45 PM",
"Title": "PSCache - simple strategies for magnificent performance ",
"Speaker": {
"Name": "Mathias R. Jessen",
"Description": "Amateur PowerShell Aficionado and a huge fan of type inference, working professionally as a Microsoft Systems Administrator with a focus on Active Directory and Security. Speaker at PSConfAsia 2016",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/mathias.jpeg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/iisresetme"
}
}
}
]
},
{
"Day": "21 September 2019",
"Name": "DevOps",
"Sessions": [
{
"SessionId": "Common1",
"Time": "9:00 AM - 10:00 AM",
"Title": "KeyNote",
"Speaker": {
"Name": "",
"Description": "",
"ImageUrl": "",
"Social": {
"Twitter": ""
}
}
},
{
"SessionId": "DevOps1",
"Time": "10:15 AM - 11:00 AM",
"Title": "Ansible module development using PowerShell",
"Speaker": {
"Name": "Prasoon Karunan V",
"Description": "Prasoon Karunan V (a.k.a kvprasoon) is a Software Technologist at Philips focusing on Infrastructure automation with PowerShell and ansible. He is a Moderator @ PowerShell.org and volunteer at [The DevOps Collective](devopscollective.org). Prasoon is a frequent contributor to PowerShell Core and is part of PowerShell User Group, Bangalore from 2015.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/PS.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/prasoonkarunan"
}
}
},
{
"SessionId": "DevOps2",
"Time": "11:15 AM - 12:00 PM",
"Title": "Manage vSphere with PowerCLI DSC Resources, Finally!",
"Speaker": {
"Name": "Luc Dekens",
"Description": "Luc is a long-term vExpert and MVP. He has done sessions at VMworld (US & EMEA), at several PowerShell conferences (PowerShell & DevOps Summit, PSConfEU, Tuga IT) and at several European VMUGs. Luc is also the co-author of the PowerCLI Reference ed 1 & 2.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/LucDekens.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/LucD22"
}
}
},
{
"SessionId": "Common2",
"Time": "12:00 PM - 01:00 PM",
"Title": "Lunch"
},
{
"SessionId": "DevOps3",
"Time": "1:00 PM - 1:45 PM",
"Title": "Is your DSC environment secure? Probably not",
"Speaker": {
"Name": "Ryan Bartram",
"Description": "Trained by the great ninja cat. I hope I can pass on some of his wisdom to you Ryan works as a Automation engineer at itnetX AG, a consulting and engineering company located in Switzerland. Ryan helps companies to transform their business by automating thier business processes and streamlining thier IT. Ryan is focused on Microsoft Technologies, especially Microsoft Cloud Platform based Microsoft System Center, Microsoft Virtualization and Microsoft Azure. If you want to know more about Ryan, check out his blog: www.dftai.ch and remember, don't forget to automate it",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/ryan.jpeg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/rd_bartram"
}
}
},
{
"SessionId": "DevOps4",
"Time": "2:00 PM - 2:45 PM",
"Title": "Managing Teams using Graph API",
"Speaker": {
"Name": "Alexander Holmeset",
"Description": "Alexander Holmeset is Cloud Consultant at CloudWay. He currently blogs at skype4bworld.com. He is very passionate about unified communication and automation. He has an extensive background from customer care and have an eye for understanding what the end user needs. Experienced with international spread videoconference systems, IP Telephony, end user training/support and advanced troubleshooting. Alexander´s focus is everything Skype for Business, Office 365 and automation with PowerShell. He will strive to deliver stable and user-friendly solutions that meets customer requirements and help them start taking use of the advantages in Office 365. Certified in ITIL Foundation framework and is an MCSE Productivity. His motto is: If you are going to do something more than once, then automate it.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/AlexHolmeset.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/AlexHolmeset"
}
}
},
{
"SessionId": "Common3",
"Time": "2:45 PM - 3:00 PM",
"Title": "Break"
},
{
"SessionId": "DevOps5",
"Time": "3:00 PM - 3:45 PM",
"Title": "PowerShell in CI/CD Pipelines",
"Speaker": {
"Name": "Aditya Patwardhan",
"Description": "Aditya has been working in the management space for over a decade. He has worked on Background Intelligent Transfer Service (BITS), Windows Management Instrumentation and now on PowerShell. He is a maintainer of PowerShell repository on GitHub and his recent work has been with build and infrastructure improvements. He also owns the PowerShell help system and also a maintainer on PlatyPS repository.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/Aditya.jpg?raw=true",
"Social": {
"Twitter": ""
}
}
},
{
"SessionId": "DevOps6",
"Time": "4:00 PM - 4:45 PM",
"Title": "Power of the Console - Cognitive abilities to colorful Graphs and Grids",
"Speaker": {
"Name": "Prateek Singh",
"Description": "Prateek Singh is an Infrastructure developer who specializes in Infrastructure Automation with PowerShell. He is author of 'PowerShell Guide to Python', and contributing author to 'The PowerShell Conference' book. Prateek is a frequent open-source community contributor and his blog was recognized among the Top 50 PowerShell blogs in the world in the year 2017 and 2018. Prateek also writes on websites such as 4SysOps.com, IPSwitch.com and TechTarget.com and runs a YouTube Channel dedicated to PowerShell, Cloud, and Automation.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/pratek.jpeg?raw=true",
"Social": {
"Blog": "",
"Twitter": "http://www.twitter.com/SinghPrateik"
}
}
},
{
"SessionId": "DevOps7",
"Time": "5:00 PM - 5:45 PM",
"Title": "Build PowerShell solutions using Azure DevOps pipelines + Azure Devops Pipelines using powershell",
"Speaker": {
"Name": "Girish",
"Description": "Girish have more than 10 years of software development experience as a developer, architect and consultant. Girish is expert in DevOps,Continuous Delivery and ALM in microsoft stack, he is passionate to learn new technologies.",
"ImageUrl": "",
"Social": {
"Twitter": "http://www.twitter.com/girishtweek"
}
}
}
]
},
{
"Day": "21 September 2019",
"Name": "PowerShell",
"Sessions": [
{
"SessionId": "Common1",
"Time": "9:00 AM - 10:00 AM",
"Title": "KeyNote",
"Speaker": {
"Name": "",
"Description": "",
"ImageUrl": "",
"Social": {
"Twitter": ""
}
}
},
{
"SessionId": "PowerShell1",
"Time": "10:15 AM - 11:00 AM",
"Title": "PowerShell Module Internals: From Manifest to Memory",
"Speaker": {
"Name": "Robert Holt",
"Description": "Rob joined the PowerShell team full time in 2018 and primarily works on the PowerShell module system, PowerShell language engine, and the PowerShell Extension for VSCode, while also dabbling in PSScriptAnalyzer. His recent work has included enabling support of Windows PowerShell modules in PowerShell 6 and creating the compatibility checking rules in PSScriptAnalyzer. Rob is also a functional programming enthusiast and is particularly interested in programming languages and compilers.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/robholt.jpg?raw=true",
"Social": {
"Twitter": ""
}
}
},
{
"SessionId": "PowerShell2",
"Time": "11:15 AM - 12:00 PM",
"Title": "PowerShell + AutoRest + Swagger = Instant Modules",
"Speaker": {
"Name": "Adam Murray",
"Description": "I am a doer, an optimist, and a technologist. With 20 years of experience in corporate IT and one start-up behind me, I've recently embarked on my second start-up, Tikabu, which provides premium consulting services in secure DevOps. Focusing on clients with a predominantly Microsoft technology stack, we help our customers become more agile at delivering solutions to their customers. I've been passionate about PowerShell since its beta days. I recognised the potential and flexibility it gave me compared with the tools I started out with in automation, such as Kix and VBScript. Today, I remain a staunch PowerShell devotee; I’ve presented on the scripting language at user groups and am a two-time winner of the Quest PowerPack Challenge. PowerShell has become an integral part of the solutions that I develop day to day. Throughout my career, I’ve served in both technical and people-management positions across the financial sector. My electrical-engineering degree has provided a strong foundation for the analytical and troubleshooting talents necessary for a successful IT career, and my MBA and additional continuing education have given me a broader and more well-informed business outlook. My ongoing thirst for technical knowledge has led to a thorough understanding of technology at all levels. More than just a vocation, technology is my passion both in and out of the workplace.",
"ImageUrl": "https://github.com/PowerShellAsia/PSConfAsia2019/blob/master/Pictures/adammurray.jpeg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/muzzar78"
}
}
},
{
"SessionId": "Common2",
"Time": "12:00 PM - 01:00 PM",
"Title": "Lunch"