-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.json
1024 lines (1020 loc) · 54 KB
/
data.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": "Singapore",
"Latitude": 1.282387,
"Longitude": 103.850243,
"Address": "1 Marina Blvd, <br/> #22-01 One Marina Boulevard <br/> Singapore 018989"
},
"Social": {
"Meetup": "http://www.meetup.com/mssgug/",
"Facebook": "https://www.facebook.com/singaporepowershell/",
"Twitter": "http://www.twitter.com/psconfasia"
},
"Callout": {
"Text": "",
"Link": "",
"Type": "info"
},
"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": "~/images/milton.jpg",
"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/2018Website/blob/master/Pictures/sebastian.jpg?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": "Benjamin Hodge",
"Description": "Benjamin Hodge has built and managed innovative technical teams across multiple regions for some of the worlds best Security and Network Start-ups.",
"ImageUrl": "~/images/ben.jpg",
"Social": {
"Email": "[email protected]"
}
},
{
"Name": "Matthew Hitchcock",
"Description": "Matt is a Former PowerShell MVP and is a driving force behind the PowerShell Asia Conference ",
"ImageUrl": "~/images/matthnew.jpg",
"Social": {
"Email": "[email protected]"
}
},
{
"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": "Sapien",
"Image": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/SAPIEN.png?raw=true",
"Link": "https://www.sapien.com/",
"Category": ""
},
{
"Name": "Rubrik",
"Image": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/Rubrik.png?raw=true",
"Link": "https://www.rubrik.com/",
"Category": ""
},
{
"Name": "VMware",
"Image": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/VMware.jpg?raw=true",
"Link": "https://www.vmware.com/sg.html",
"Category": ""
},
{
"Name": "SystemFrontier",
"Image": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/systemfrontier.png?raw=true",
"Link": "https://systemfrontier.com/solutions/powershell/",
"Category": ""
},
{
"Name": "Packt Publications",
"Image": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/Packt.png?raw=true",
"Link": "https://www.packtpub.com/",
"Category": ""
},
{
"Name": "NetAssist Services Pte Ltd",
"Image": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/NA.jpg?raw=true",
"Link": "https://www.netassist.com.sg/",
"Category": ""
},
{
"Name": "Manning Publications",
"Image": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/Manninglogo.png?raw=true",
"Link": "https://www.manning.com/",
"Category": ""
}
],
"Prizes": [
],
"Tracks": [
{
"Day": "Workshop Agenda 18 October 2018 [Optional]",
"Name": "Workshop DSC Track",
"Sessions": [
{
"SessionId": "DSC1",
"Time": "8:30 AM - 9:00 AM",
"Title": "An intro to Configuration Management",
"Speaker": {
"Name": "Steven Murawski",
"Description": "Steven is a Lead Cloud Ops Advocate at Microsoft. Steven focuses on DevOps, SRE, Cloud Native, and Linux scenarios with Azure. Steven is an active member of the Chef and WinOps communities and a maintainer for several open source projects.",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/stevenmurawski.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/StevenMurawski"
}
}
},
{
"SessionId": "DSC2",
"Time": "9:15 AM - 12:00 PM",
"Title": "Solving Your Problems with Custom DSC Resource",
"Speaker": {
"Name": "Jason Yoder",
"Description": "Jason Yoder is a Microsoft Certified Trainer and international conference speaker who has delivered over 100 PowerShell class 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/2018Website/blob/master/Pictures/Jason1.png?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/JasonYoder_MCT"
}
}
},
{
"SessionId": "Common1",
"Time": "12:00 PM - 13:00 PM",
"Title": "Lunch"
},
{
"SessionId": "DSC3",
"Time": "13:00 PM - 14:00 PM",
"Title": "Your first DSC Pull server",
"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/2018Website/blob/master/Pictures/BenGelens.png?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/bgelens"
}
}
},
{
"SessionId": "DSC4",
"Time": "14:15 PM - 15:45 PM",
"Title": "Operation Validation",
"Speaker": {
"Name": "Ravikanth Chaganti",
"Description": "Ravikanth is the founder and editor of the PowerShell Magazine. He is a multi-year recipient of Microsoft MVP award and works at Dell EMC as a Senior Principal Systems Engineer. He blogs at http://www.ravichaganti.com/blog",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/ravi.jpeg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/ravikanth"
}
}
},
{
"SessionId": "Common2",
"Time": "15:45 PM - 16:15 PM",
"Title": "Break"
},
{
"SessionId": "DSC5",
"Time": "16:15 PM - 17:45 PM",
"Title": "An advanced DSC configuration pipeline overview",
"Speaker": {
"Name": "Raimund Andree",
"Description": "Microsoft Premire Field Engineer focusing mainly on PowerShell, DevOps and DSC.",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/raimund.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/raimundandree"
}
}
},
{
"SessionId": "Common3",
"Time": "17:45 PM - 18:00 PM",
"Title": "Closing Session"
}
]
},
{
"Day": "18 October 2018",
"Name": "Workshop PowerShell Track",
"Sessions": [
{
"SessionId": "Work1",
"Time": "8:30 AM - 9:00 AM",
"Title": "Creating GUI Application with PowerShell Studio",
"Speaker": {
"Name": "Maximo Trinidad",
"Description": "Recently joined SAPIENS Technologies as their Technology Evangelist for their PowerShell and Scripting Tools line of products. Involved with SQL Server Technologies, and Microsoft Cloud Technologies. Microsoft PowerShell MVP since 2009, MVP SAPIEN Technologies, and IDERA ACE 2017. Active Florida speaker at SQLSaturday, IT Pro and .NET camps events.",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/MaximoTrinidad.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/MaxTrinidad"
}
}
},
{
"SessionId": "Work2",
"Time": "9:15 AM - 12:00 PM",
"Title": "Creating GUI Application with PowerShell Studio",
"Speaker": {
"Name": "Maximo Trinidad",
"Description": "Recently joined SAPIENS Technologies as their Technology Evangelist for their PowerShell and Scripting Tools line of products. Involved with SQL Server Technologies, and Microsoft Cloud Technologies. Microsoft PowerShell MVP since 2009, MVP SAPIEN Technologies, and IDERA ACE 2017. Active Florida speaker at SQLSaturday, IT Pro and .NET camps events.",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/MaximoTrinidad.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/MaxTrinidad"
}
}
},
{
"SessionId": "Common1",
"Time": "12:00 PM - 13:00 PM",
"Title": "Lunch"
},
{
"SessionId": "Work3",
"Time": "13:00 PM - 14:00 PM",
"Title": "Build up your PowerShell knowledge, Shell-by-Shell",
"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": "Work4",
"Time": "14:15 PM - 15:45 PM",
"Title": "Build up your PowerShell knowledge, Shell-by-Shell",
"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": "15:45 PM - 16:15 PM",
"Title": "Break"
},
{
"SessionId": "Work5",
"Time": "16:15 PM - 17:45 PM",
"Title": "Build up your PowerShell knowledge, Shell-by-Shell",
"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": "Common3",
"Time": "17:45 PM - 18:00 PM",
"Title": "Closing Session"
}
]
}
],
"Tracks1": [
{
"Day": "19 October 2018",
"Name": "CloudyDevOps",
"Sessions": [
{
"SessionId": "Common1",
"Time": "9:00 AM - 9:45 AM",
"Title": "KeyNote",
"Speaker": {
"Name": "Jeffrey Snover",
"Description": "Jeffrey Snover: Microsoft Technical Fellow / Chief Architect for Azure Storage & Cloud/ Azure Stack Architect / PowerShell Inventor / Science geek.",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/jsnover.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/jsnover"
}
}
},
{
"SessionId": "Common2",
"Time": "10:00 AM - 10:45 AM",
"Title": "Introducing Site Reliability Engineering",
"Speaker": {
"Name": "Steven Murawski",
"Description": "Steven is a Lead Cloud Ops Advocate at Microsoft. Steven focuses on DevOps, SRE, Cloud Native, and Linux scenarios with Azure. Steven is an active member of the Chef and WinOps communities and a maintainer for several open source projects.",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/stevenmurawski.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/StevenMurawski"
}
}
},
{
"SessionId": "IOT01",
"Time": "11:00 AM - 11:45 AM",
"Title": "PowerShell IoT: A new frontier for PowerShell, live coding included",
"Speaker": {
"Name": "Tyler Leonhardt",
"Description": "Tyler is a developer on the PowerShell team at Microsoft. He's the current maintainer of the VSCode extension and PowerShell Editor Services and also one of the developers who work on PowerShell IoT - the module for interacting with sensors and devices like the Raspberry Pi. He's a developer experience nut, loves coffee and loves to customize mechanical keyboards.",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/TylerLeonhardt.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/TylerLeonhardt"
}
}
},
{
"SessionId": "Common3",
"Time": "12:00 PM - 01:00 PM",
"Title": "Lunch"
},
{
"SessionId": "IOT02",
"Time": "01:00 PM - 01:45 PM",
"Title": "Developing Serverless Applications with Azure Functions",
"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": {
"Twitter": "http://www.twitter.com/jaap_brasser"
}
}
},
{
"SessionId": "IOT3",
"Time": "2:00 PM - 2:45 PM",
"Title": "A Coolblue CI/CD Story",
"Speaker": {
"Name": "Pat Hermens",
"Description": "Development Manager at @Coolblue_NL. Husband + father of 2 amazing kids. A loud Aussie that's been living in NL for a few years (& still learning Dutch)",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/phermens.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/phermens"
}
}
},
{
"SessionId": "Common4",
"Time": "3:00 PM - 3:15 PM",
"Title": "Break"
},
{
"SessionId": "IOT4",
"Time": "3:15 PM - 4:00 PM",
"Title": "Deploying complex applications with Intune, PowerShell, and VSTS Package Manager.",
"Speaker": {
"Name": "Steven Hosking",
"Description": "Having spent over 15 years in the IT industry primarily supporting and managing System Centre products, Steven Hosking has continually been proven as passionate subject matter expert. He is the founder of the Sydney System Centre and Infrastructure group, where he leads the community in exploring the Microsoft System Centre suite of products.",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/svenvan.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/onpremcloudguy "
}
}
},
{
"SessionId": "IOT5",
"Time": "4:15 PM - 5:00 PM",
"Title": "PowerShell for SharePoint Online - Making SharePoint Admins feel loved again",
"Speaker": {
"Name": "Rick Taylor",
"Description": "Rick is a SharePoint architect and has assisted numerous, large companies in their implementations including the US Air Force, Charles Schwab, and Nestle. He is a former Microsoft engineer and has worked on the SharePoint Engineering team as well as the OpsCon division dealing with ITSM and Governance. He is a published author, co-author, and contributing author. His influence within the MCT and SharePoint communities facilitated his being selected to present at the first MCT Community Summit held in Zurich, Switzerland. Rick is currently a DevOps Engineer for ZAACT. Rick currently resides in the Phoenix, AZ area where he is an avid triathlete (Clydesdale class), and active in the Boy Scouts of America",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/RickTaylor.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/slkrck"
}
}
},
{
"SessionId": "IOT6",
"Time": "5:15 PM - 6:00 PM",
"Title": "Azure Cloud Shell - A browser-based shell experience to manage Azure from anywhere",
"Speaker": {
"Name": "BingFeng Li",
"Description": "Senior Software Developer on the PowerShell team. Currently working on PowerShell experience in Azure CloudShell; Previous Owner of Lync PowerShell & Remoting in O365 group. Bingfeng is also a mother of two kids and a Chinese Zither player.",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/Bingfeng.jpg?raw=true",
"Social":{
"Twitter":""
}
}
},
{
"SessionId": "Common5",
"Time": "6:05 PM - 6:15 PM",
"Title": "Day Close-up"
}
]
},
{
"Day": "19 October 2018",
"Name": "DSC, Conf mgmt & Bi",
"Sessions": [
{
"SessionId": "Common1",
"Time": "9:00 AM - 9:45 AM",
"Title": "KeyNote",
"Speaker": {
"Name": "Jeffrey Snover",
"Description": "Jeffrey Snover: Microsoft Technical Fellow / Chief Architect for Azure Storage & Cloud/ Azure Stack Architect / PowerShell Inventor / Science geek.",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/jsnover.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/jsnover"
}
}
},
{
"SessionId": "Common2",
"Time": "10:00 AM - 10:45 AM",
"Title": ""
},
{
"SessionId": "SEC01",
"Time": "11:00 AM - 11:45 AM",
"Title": "The DSC Pull Server Reloaded",
"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/2018Website/blob/master/Pictures/BenGelens.png?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/bgelens"
}
}
},
{
"SessionId": "Common3",
"Time": "12:00 PM - 01:00 PM",
"Title": "Lunch"
},
{
"SessionId": "SEC02",
"Time": "01:00 PM - 01:45 PM",
"Title": "Getting started with integration of PowerShell and Power BI.",
"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/2018Website/blob/master/Pictures/AlexHolmeset.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/AlexHolmeset"
}
}
},
{
"SessionId": "SEC03",
"Time": "2:00 PM - 2:45 PM",
"Title": "Connecting Services with APIs",
"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": {
"Twitter": "http://www.twitter.com/jaap_brasser"
}
}
},
{
"SessionId": "Common4",
"Time": "3:00 PM - 3:15 PM",
"Title": "Break"
},
{
"SessionId": "SEC04",
"Time": "3:15 PM - 4:00 PM",
"Title": "Security and Compliance – on-prem and in the cloud – using PowerShell and Systems Manager",
"Speaker": {
"Name": "Narayanan (Nana) Lakshmanan",
"Description": "Narayanan (Nana) Lakshmanan is a Software Development Manager with AWS Systems Manager. Before joining AWS, he was a Principal Software Engineering Manager in the Cloud and Enterprise Division at Microsoft where he shipped software as part of Windows Server, Microsoft Azure and open source projects in Github. Nana was part of the PowerShell team since v1.0 until joining Amazon. He has worked in PowerShell DSC, DSC Resource Kit, PowerShell workflows and remoting.",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/nana.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/NanaLakshmanan"
}
}
},
{
"SessionId": "SEC05",
"Time": "4:15 PM - 5:00 PM",
"Title": "PowerShell, .NET and the Serverless Architecture",
"Speaker": {
"Name": "Kenneth Hansen",
"Description": "Kenneth Hansen is a Principal Program Manager for AWS .NET Dev and PowerShell experience. Prior to AWS, Kenneth helped create PowerShell from the first Monad days to PowerShell 6 on Open Source; working both as both a technical contributor and team leader. He remains a member of the PowerShell Governance board. Prior to PowerShell, Kenneth worked on IP Telephony, BackOffice, Exchange Apps, and Provisioning. Kenneth also led software development at MasPar, a manufacturer of Massively Parallel Computers and even earlier worked in various startup tool and compiler teams.",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/kenneth.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/KhansenHansen"
}
}
},
{
"SessionId": "SEC06",
"Time": "5:15 PM - 6:00 PM",
"Title": "Monitoring 101 with Windows and PowerShell",
"Speaker": {
"Name": "Matthew Hodgkins",
"Description": "Principal Engineer working at one of the largest retailers in the Netherlands and Belgium. Lover of DevOps, Automation and Belgium beer. Originally from Sydney, Australia.",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/MattHodge.JPG?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/MattHodge"
}
}
},
{
"SessionId": "Common5",
"Time": "6:05 PM - 6:15 PM",
"Title": "Day Close-up"
}
]
},
{
"Day": "19 October 2018",
"Name": "PowerShell Deep dive",
"Sessions": [
{
"SessionId": "Common1",
"Time": "9:00 AM - 9:45 AM",
"Title": "KeyNote",
"Speaker": {
"Name": "Jeffrey Snover",
"Description": "Jeffrey Snover: Microsoft Technical Fellow / Chief Architect for Azure Storage & Cloud/ Azure Stack Architect / PowerShell Inventor / Science geek.",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/jsnover.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/jsnover"
}
}
},
{
"SessionId": "Common2",
"Time": "10:00 AM - 10:45 AM",
"Title": ""
},
{
"SessionId": "GEn01",
"Time": "11:00 AM - 11:45 AM",
"Title": "Building Better Bricks: Module Design and Development Best Practices",
"Speaker": {
"Name": "Chris Gardner",
"Description": "Chris Gardner is a DevOps and ALM consultant with over 4 years' experience working with PowerShell. He has recently been focusing on using DSC to configure Windows for a variety of purposes, particularly when provisioning dev/test environments in Azure.",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/ChrisGardner.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/halbaradkenafin"
}
}
},
{
"SessionId": "Common3",
"Time": "12:00 PM - 01:00 PM",
"Title": "Lunch"
},
{
"SessionId": "GEn02",
"Time": "01:00 PM - 01:45 PM",
"Title": "Introduction to 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/2018Website/blob/master/Pictures/JakubJares.jpeg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/nohwnd"
}
}
},
{
"SessionId": "GEn03",
"Time": "2:00 PM - 2:45 PM",
"Title": "Beyond Pester 101: Applying testing principles to PowerShell",
"Speaker": {
"Name": "Glenn Sarti",
"Description": "Windows Software and Infrastructure Developer. With a penchant for DevOps, Puppet, Neo4j or anything Windows related.",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/glennsarti.jpeg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/glennsarti"
}
}
},
{
"SessionId": "Common4",
"Time": "3:00 PM - 3:15 PM",
"Title": "Break"
},
{
"SessionId": "GEn04",
"Time": "3:15 PM - 4:00 PM",
"Title": "Manage your heterogeneous environments with PowerShell Core",
"Speaker": {
"Name": "Steve Lee",
"Description": "Principal Software Engineer Manager of Windows PowerShell, PowerShell Core, PSScriptAnalyzer, and PSEditorServices. Steve is a Poker Enthusiast at Microsoft",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/SteveL.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/Steve_MSFT"
}
}
},
{
"SessionId": "GEn05",
"Time": "4:15 PM - 5:00 PM",
"Title": "PowerShell for the Masses",
"Speaker": {
"Name": "Jason Yoder",
"Description": "Jason Yoder is a Microsoft Certified Trainer and international conference speaker who has delivered over 100 PowerShell class 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/2018Website/blob/master/Pictures/Jason1.png?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/JasonYoder_MCT"
}
}
},
{
"SessionId": "GEn06",
"Time": "5:15 PM - 6:00 PM",
"Title": "Securely Scripting PowerShell",
"Speaker": {
"Name": "Jeffery 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/2018Website/blob/master/Pictures/JeffHicks.png?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/JeffHicks"
}
}
},
{
"SessionId": "Common5",
"Time": "6:05 PM - 6:15 PM",
"Title": "Day Close-up"
}
]
}
],
"Tracks2": [
{
"Day": "20 October 2018",
"Name": "CloudyDevOps",
"Sessions": [
{
"SessionId": "DEV01",
"Time": "9:00 AM - 9:45 AM",
"Title": "PowerShell Engine Internals",
"Speaker": {
"Name": "Dongbo Wang",
"Description": "Senior Software Developer on the PowerShell team and a maintainer of the GitHub PowerShell repository.",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/Dongbo.JPG?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/T800PS"
}
}
},
{
"SessionId": "DEV02",
"Time": "10:00 AM - 10:45 AM",
"Title": "PowerShell with Microsoft Teams",
"Speaker": {
"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": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/sen.jpg?raw=true",
"Social": {
"Blog": "http://altfo.wordpress.com",
"Twitter": "http://www.twitter.com/altfo"
}
}
},
{
"SessionId": "DEV03",
"Time": "11:00 AM - 11:45 PM",
"Title": "Creating a complete pipeline in as few questions as possible.",
"Speaker": {
"Name": "Pat Hermens",
"Description": "Development Manager at @Coolblue_NL. Husband + father of 2 amazing kids. A loud Aussie that's been living in NL for a few years (& still learning Dutch)",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/phermens.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/phermens"
}
}
},
{
"SessionId": "Common2",
"Time": "12:00 PM - 01:00 PM",
"Title": "Lunch"
},
{
"SessionId": "DEV04",
"Time": "01:00 PM - 01:45 PM",
"Title": "Get control of your Git: Managing PS module binaries using VSTS CI/CD and package management",
"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/2018Website/blob/master/Pictures/adammurray.jpeg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/muzzar78"
}
}
},
{
"SessionId": "DEV05",
"Time": "2:00 PM - 2:45 PM",
"Title": "State of PowerShell – Now and Future",
"Speaker": {
"Name": "Hemant Mahawar",
"Description": "Principal PM Manager on the PowerShell team. Leads PowerShell PM team that owns PowerShell Core, PowerShell Gallery, PowerShell in Cloud Shell, PowerShell Editor Services, Windows port of OpenSSH, Windows PowerShell and other PowerShell features. Over the past decade, Hemant has been responsible for various PowerShell features across its multiple releases.",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/HemantM.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/HemanMahawar"
}
}
},
{
"SessionId": "Common3",
"Time": "3:00 PM - 3:30 PM",
"Title": "Break"
},
{
"SessionId": "DEV06",
"Time": "3:30 PM - 4:15 PM",
"Title": "From Swagger to PS Module, Lesson learned",
"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/2018Website/blob/master/Pictures/KyleRuddy.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/kmruddy"
}
}
},
{
"SessionId": "DEV07",
"Time": "4:30 PM - 5:15 PM",
"Title": "Cross-platform Azure PowerShell: A peek under the covers",
"Speaker":{
"Name":"Mark Cowlishaw",
"Description":"Mark is a Principal Software Engineer on the Azure Team at Microsoft, working on Azure PowerShell. Mark has been working on PowerShell cmdlets and cross-platform tools and libraries for Azure for the last several years. Mark has an amazing Wife and Daughter and has a passion for Hiking and the outdoors in general.",
"ImageUrl":"https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/MarkC.jpg?raw=true",
"Social":{
"Github":"https://github.com/markcowl"
}
}
},
{
"SessionId": "Common4",
"Time": "5:30 PM - 6:00 PM",
"Title": "Closing Panel / Session"
}
]
},
{
"Day": "20 October 2018",
"Name": "DSC, Conf mgmt & Bi",
"Sessions": [
{
"SessionId": "SEC01",
"Time": "9:00 AM - 9:45 AM",
"Title": "Visualizing PowerShell output automatically in Power BI.",
"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/2018Website/blob/master/Pictures/AlexHolmeset.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/AlexHolmeset"
}
}
},
{
"SessionId": "SEC02",
"Time": "10:00 AM - 10:45 AM",
"Title": "Lab automation with Docker on Windows and Linux",
"Speaker": {
"Name": "Raimund Andrée",
"Description": "Microsoft Premire Field Engineer focusing mainly on PowerShell, DevOps and DSC.",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/raimund.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/raimundandree"
}
}
},
{
"SessionId": "SEC03",
"Time": "11:00 AM - 11:45 PM",
"Title": "Build Your Own API BYOA - PowerShell for automation as service",
"Speaker": {
"Name": "Ravikanth Chaganti",
"Description": "Ravikanth is the founder and editor of the PowerShell Magazine. He is a multi-year recipient of Microsoft MVP award and works at Dell EMC as a Senior Principal Systems Engineer. He blogs at http://www.ravichaganti.com/blog",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/ravi.jpeg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/ravikanth"
}
}
},
{
"SessionId": "Common2",
"Time": "12:00 PM - 01:00 PM",
"Title": "Lunch"
},
{
"SessionId": "SEC04",
"Time": "01:00 PM - 01:45 PM",
"Title": "",
"Speaker": {
"Name": "",
"Description": "",
"ImageUrl": "",
"Social": {
"Twitter": ""
}
}
},
{
"SessionId": "SEC05",
"Time": "2:00 PM - 2:45 PM",
"Title": "Trend Analysis of SQL Server Logs using PowerShell!",
"Speaker": {
"Name": "Dharmendra Keshari",
"Description": "Dharmendra Keshari is a SQL Server enthusiasts currently working as Senior Database Administrator for Micron Technology, Inc, Singapore. He is so much fascinated by Database engine and its complexities, he made it as part and parcel of his life. Dharmendra likes working on Database internals, SQL Server memory and has good knowledge on performance troubleshooting of SQL Server. He is an avid, regular mentor on social media, helping several enthusiast in solving problems related to Database management. As a active member of SQL Server community, Dharmendra leads Singapore SQL Server Pass Chapter (User group). He continues to deliver sessions across the globe educating people on Microsoft Data Platform and blogs at http://www.dharmendrakeshari.com/",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/Dharmendra.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/Sachit_Keshari"
}
}
},
{
"SessionId": "Common3",
"Time": "3:00 PM - 3:30 PM",
"Title": "Break"
},
{
"SessionId": "SEC06",
"Time": "3:30 PM - 4:15 PM",
"Title": "Infrastructure validation using Pester",
"Speaker": {
"Name": "Irwin Strachan",
"Description": "Irwin Strachan is a technical consultant at OLGREEN and passionately curious about PowerShell, Automation and Microsoft-based technologies.",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/IrwinStrachan.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/IrwinStrachan"
}
}
},
{
"SessionId": "SEC07",
"Time": "4:30 PM - 5:15 PM",
"Title": "PowerShell Core working with SQL Server Management Objects (SMO) Cross-platform",
"Speaker": {
"Name": "Maximo Trinidad",
"Description": "Recently joined SAPIENS Technologies as their Technology Evangelist for their PowerShell and Scripting Tools line of products. Involved with SQL Server Technologies, and Microsoft Cloud Technologies. Microsoft PowerShell MVP since 2009, MVP SAPIEN Technologies, and IDERA ACE 2017. Active Florida speaker at SQLSaturday, IT Pro and .NET camps events. ",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/MaximoTrinidad.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/MaxTrinidad"
}
}
},
{
"SessionId": "Common4",
"Time": "5:30 PM - 6:00 PM",
"Title": "Closing Panel / Session"
}
]
},
{
"Day": "20 October 2018",
"Name": "PowerShell Deep dive",
"Sessions": [
{
"SessionId": "GEN01",
"Time": "9:00 AM - 9:45 AM",
"Title": "Carpe Shell : A PowerShell Workday",
"Speaker": {
"Name": "Jeffery 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/2018Website/blob/master/Pictures/JeffHicks.png?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/JeffHicks"
}
}
},
{
"SessionId": "GEN02",
"Time": "10:00 AM - 10:45 AM",
"Title": "PowerShell Classes for Ops transitioning to Dev",
"Speaker": {
"Name": "Irwin Strachan",
"Description": "Irwin Strachan is a technical consultant at OLGREEN and passionately curious about PowerShell, Automation and Microsoft-based technologies.",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/IrwinStrachan.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/IrwinStrachan"
}
}
},
{
"SessionId": "GEN03",
"Time": "11:00 AM - 11:45 PM",
"Title": "Migrate Windows PowerShell modules using PowerShell Standard to support cross-platform",
"Speaker": {
"Name": "BingFeng Li",
"Description": "Senior Software Developer on the PowerShell team. Currently working on PowerShell experience in Azure CloudShell; Previous Owner of Lync PowerShell & Remoting in O365 group. Bingfeng is also a mother of two kids and a Chinese Zither player.",
"ImageUrl": "https://github.com/PowerShellAsia/2018Website/blob/master/Pictures/Bingfeng.jpg?raw=true",
"Social": {
"Twitter": ""
}
}
},
{
"SessionId": "Common2",
"Time": "12:00 PM - 01:00 PM",
"Title": "Lunch"
},
{
"SessionId": "GEN04",
"Time": "01:00 PM - 01:45 PM",
"Title": "How do I test that?",
"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/2018Website/blob/master/Pictures/JakubJares.jpeg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/nohwnd"
}
}
},
{
"SessionId": "GEN05",
"Time": "2:00 PM - 2:45 PM",
"Title": "When every nano second counts",
"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/2018Website/blob/master/Pictures/Miriam.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/iisresetme"
}
}
},
{
"SessionId": "Common3",
"Time": "3:00 PM - 3:30 PM",
"Title": "Break"
},
{
"SessionId": "GEN06",
"Time": "3:30 PM - 4:15 PM",
"Title": "Logging in a DevOps world",
"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/2018Website/blob/master/Pictures/FredWeinmann.jpg?raw=true",
"Social": {
"Twitter": "http://www.twitter.com/FredWeinmann"
}