-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpeople.json
1332 lines (1274 loc) · 34.5 KB
/
people.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
{
"Adina Rahim": {
"interests": [
"Python (programming language)",
"R (programming language)",
"SQL",
"Pandas (software)",
"TensorFlow",
"Scikit-learn",
"Machine Learning",
"Data Science",
"Data Mining",
"Association Rule Learning",
"Sequential Pattern Mining",
"Link Analysis",
"TrustRank",
"WebSpam",
"Text mining",
"Recommender Systems",
"Alexa Skills"
]
},
"Catherine McGuire": {
"interests": [
"Python (programming language)",
"LaTeX",
"Machine learning",
"Natural language processing",
"Markdown",
"Plotly",
"Pandas (software)",
"Streamlit (software)",
"Git",
"GitHub",
"Agile software development",
"Trello",
"R (programming language)",
"Shiny (software)",
"Artifical Intelligence",
"Data Science",
"Data analysis",
"Data visualization",
"Jupyter Notebook",
"Astrophysics",
"Django",
"Wagtail (CMS)",
"Bootstrap (front-end framework)",
"Microsoft Windows",
"Windows Subsystem for Linux",
"Bash (Unix shell)"
]
},
"Carri King": {
"interests":[
"Sensor networks",
"Internet of things",
"Microcontrollers",
"Arduino",
"ESP32",
"MQTT",
"RabbitMQ",
"Neo4J",
"MinIO",
"MySQL",
"Keycloak",
"Kubernetes",
"Docker",
"JSON",
"JavaScript",
"REST",
"Cloud computing",
"Emscripten",
"WebAssembly",
"WebGL",
"WebXR",
"Three.js",
"WebSocket",
"Virtual reality",
"Augmented reality",
"Mixed reality",
"Extended reality",
"Wearable computing",
"Cyber-physical system",
"Head-mounted display",
"Cave automatic virtual environment",
"HoloLens",
"HTC Vive",
"Oculus Quest",
"OpenGL",
"Shaders",
"GLSL",
"CUDA",
"NVIDIA Quadro Plex",
"OpenCL",
"General-purpose computing on graphics processing units",
"WxWidgets",
"Qt (software)",
"Visualization",
"Volume rendering",
"Point cloud",
"Real-time computer graphics",
"Computer graphics lighting",
"CAD",
"Product lifecycle management",
"Digital twin",
"Procedural generation",
"Collision detection",
"Actor model",
"Message passing",
"Distributed computing",
"Concurrent computing",
"Parallel computing",
"Spatial computing",
"Multithreading",
"Real-time networking",
"Distributed database",
"Data transformation",
"Metaverse",
"Scene graph",
"C++",
"Python",
"C",
"Code optimization",
"Profiling",
"Windows SDK",
"CMake",
"Visual Studio",
"Conda",
"Linux",
"Emacs",
"Microsoft Windows",
"Make (software)",
"Agile software development",
"Scrum",
"Jira",
"Trello",
"Confluence",
"Git",
"Apache Subversion",
"Software product management",
"Code review",
"Software design",
"Software testing",
"Software architecture",
"Service-oriented architecture",
"Design patterns",
"Geographic information system",
"Geospatial data",
"GDAL",
"PROJ",
"Aerial photography",
"Digital elevation model",
"Remote sensing",
"Multispectral imaging",
"QGIS",
"Shapefile",
"Web Map Service",
"Web Feature Service",
"MilSim"
]
},
"Chandima Samarakoon" : {
"interests": [
"React",
"Agile software development",
"Natural Language Processing",
"Project management",
"SQL",
"Visual Studio",
"JSON",
"Java (programming language)",
"HTML",
"Python (programming language)",
"Arduino",
"Web development",
"PHP",
"JavaScript",
"Node js",
"Jira",
"Model View Controller",
"Java Spring",
"Angular (web framework)",
"Amazon Web Services"
]
},
"Phil Bradbury": {
"interests": [
"ASP.NET",
"Agile software development",
"C Sharp (programming language)",
"Project management",
"SQL",
"Visual Studio",
"JSON",
"Less (style sheet language)",
"HTML",
"Database Design",
"JQuery",
"Web development",
"XML",
"Xamarin.Forms",
"Mobile app development",
"Jira",
"Model View Controller",
"Blazor"
]
},
"Patricia Barnby": {
"interests": [
"Java (programming language)",
"Internet of things",
"Smartwatch",
"Software design",
"Jira",
"Trello",
"Xamarin",
"Android SDK",
"XCode",
"ASP.NET",
"Business analysis",
"Software testing",
"Version control",
"C Sharp (programming language)",
"Git",
"Project management",
"SQL",
"MySQL",
"Eclipse (software)",
"Visual Studio"
],
"technologies": [
"Contact Patricia for RSE projects involving mobile apps"
]
},
"Donal Fellows": {
"interests": [
"Java (programming language)",
"Python (programming language)",
"Tcl",
"C (programming language)",
"C++",
"Git",
"Fossil",
"GitHub",
"Manycore processor",
"Web service",
"Representational state transfer",
"Workflow management system",
"Eclipse (software)",
"Apache Maven",
"Object-oriented analysis and design",
"Service-oriented architecture",
"Compiler",
"Embedded system",
"Continuous integration"
]
},
"Josh Woodcock": {
"interests": [
"Virtual reality",
"Augmented reality",
"Mixed reality",
"HoloLens",
"HTC Vive",
"Oculus Rift",
"Oculus Quest",
"Leap Motion",
"Virtual Reality Toolkit (software)",
"Unity (game engine)",
"Web development",
"Web scraping",
"Scripting",
"DevOps",
"Django (web framework)",
"Wagtail (CMS)",
"Flask (web framework)",
"Mobile app development",
"Ionic",
"Cordova",
"Angular JS",
"Android (operating system)",
"iOS",
"Python (programming language)",
"TypeScript",
"Markdown",
"JavaScript",
"C Sharp (programming language)",
"Data science",
"Data visualization",
"Plotly",
"Interaction design",
"Linux",
"Microsoft Windows",
"macOS",
"Version Control",
"Git",
"Bash (Unix shell)",
"Virtualization",
"Windows Subsystem for Linux",
"VS Code",
"Web accessibility",
"The Carpentries",
"ArcGIS"
]
},
"Theresa Teng": {
"interests": [
"ASP.NET MVC",
"Agile software development",
"Blazor",
"Business analysis",
"C Sharp (programming language)",
"Database Design",
"Django (web framework)",
"JavaScript",
"Microsoft SQL Server",
"Project management",
"PostgreSQL",
"SQL",
"Visual Studio",
"Wagtail (CMS)",
"Web application",
"Web development"
]
},
"Anja Le_Blanc": {
"interests": [
"Agile software development",
"Cloud computing",
"Test-driven development",
"Project management",
"Software testing",
"Version control",
"Web application",
"Java (programming language)",
"C (programming language)",
"AngularJS",
"Angular (web framework)",
"JavaScript",
"TypeScript",
"Python (programming language)",
"Bash (Unix shell)",
"Jakarta Server Pages",
"SQL",
"Linux",
"HPC",
"Microsoft Windows",
"Git",
"Apache Tomcat",
"Apache HTTP Server",
"Eclipse (software)",
"VirtualBox",
"Microsoft Azure",
"Amazon Web Services"
],
"technologies": [
"Contact Anja for Application Support and Training"
]
},
"Tony Evans": {
"interests": [
"Web development",
"Web search engine",
"Data cluster",
"Python (programming language)",
"Amazon Web Services",
"Google APIs",
"Search engine optimization",
"Text mining",
"PHP",
"MATLAB",
"Java (programming language)",
"HTML",
"Cascading Style Sheets",
"Linux",
"EPOC",
"Symbian",
"macOS",
"JavaScript",
"Zend",
"Adobe Dreamweaver",
"Eclipse (software)"
]
},
"Ian Hinder": {
"interests": [
"Agile software development",
"Amazon Web Services",
"Ansible (software)",
"Astrophysics",
"Automatic programming",
"Bash (Unix shell)",
"C (programming language)",
"C++",
"Cloud computing",
"Computational fluid dynamics",
"Computational physics",
"Continuous integration",
"DevOps",
"Docker (software)",
"Emacs",
"Free and open-source software",
"General relativity",
"General-purpose computing on graphics processing units",
"Git",
"GitHub Actions",
"GitHub",
"HPC",
"High-performance computing",
"Infrastructure as code",
"Jenkins (software)",
"Jira",
"LaTeX",
"Let's Encrypt",
"Libvirt",
"Linux",
"MPI",
"Markdown",
"Mathematical model",
"Middleware",
"NVIDIA CUDA",
"Numerical methods",
"OpenMP",
"OpenMP",
"Optimization",
"Pandas (software)",
"ParaView",
"Parallel computing",
"Partial differential equation",
"Physics",
"Project Jupyter",
"Project management",
"Proxmox Virtual Environment",
"Python (programming language)",
"Reproducibility",
"Scientific workflow system",
"Slurm Workload Manager",
"Software testing",
"Streamlit (software)",
"System administrator",
"Test-driven development",
"Version Control",
"Version control",
"Virtualization",
"VisIt",
"Visualization",
"Wolfram Mathematica",
"ZFS",
"macOS"
]
},
"Gerard Capes": {
"interests":[
"High-performance computing",
"Instructor-led training",
"The Carpentries",
"LaTeX",
"MATLAB",
"Python (programming language)",
"Git",
"Fortran",
"Make (software)",
"Bash (Unix shell)",
"Machine Learning",
"Data Science",
"Agile software development",
"FastAPI",
"Markdown",
"Github",
"Artificial intelligence",
"Message Passing Interface"
]
},
"Douglas Lowe": {
"interests":[
"Atmospheric chemistry",
"Chemical transport model",
"Weather Research and Forecasting Model",
"Kinetic PreProcessor",
"Numerical software",
"Instructor-led training",
"The Carpentries",
"Scientific workflow system",
"High-performance computing",
"Fortran",
"Bash (Unix shell)",
"Python (programming language)",
"Perl",
"MATLAB",
"Make (software)",
"Docker (software)",
"Singularity (software)",
"Conda (package manager)",
"Common Workflow Language",
"Git",
"Apache Subversion",
"macOS",
"Linux"
]
},
"Andrew Rowley": {
"interests":[
"Spiking neural network",
"Neuromorphic engineering",
"SpiNNaker",
"C (programming language)",
"Linux",
"Microsoft Windows",
"Python (programming language)",
"Java (programming language)",
"Travis CI",
"Jenkins (software)",
"Embedded C",
"C++",
"Git",
"GitHub",
"Docker (software)",
"Perl",
"Web application",
"High-throughput computing",
"Windows Subsystem for Linux",
"Java Native Interface"
]
},
"Emma Simpson": {
"interests":[
"Agile software development",
"Python (programming language)",
"Pandas (software)",
"Machine learning",
"Data wrangling",
"Linux",
"Natural language processing",
"Cloud physics",
"Git",
"Jira",
"Instructor-led training",
"Data science",
"Data visualization",
"Monte Carlo method"
]
},
"Ann Gledson": {
"interests":[
"Agile software development",
"User interface design",
"Django",
".NET Framework",
"Microsoft UI Automation",
"Machine learning",
"Python (programming language)",
"Web application",
"C Sharp (programming language)",
"Object Pascal",
"JavaScript",
"Java (programming language)",
"Jquery",
"XML",
"JSON",
"HTML",
"Pandas (software)",
"Data wrangling",
"Data modeling",
"LaTeX",
"Linux",
"SQL",
"MySQL",
"Microsoft SQL Server",
"Wagtail (CMS)",
"Graph database",
"PHP",
"CodeIgniter",
"Design Patterns",
"Computational linguistics",
"Text mining",
"Parallel computing"
]
},
"Oliver Woolland": {
"interests":[
"Computational physics",
"Mathematical model",
"Monte Carlo method",
"Numerical software",
"GNU Scientific Library",
"Geant4",
"C++",
"Python (programming language)",
"Experimental physics",
"Virtual instrument software architecture",
"MATLAB",
"GNU Octave",
"Flask (web framework)",
"Plotly",
"JavaScript",
"LaTeX",
"Embedded system",
"Raspberry Pi",
"Web application",
"Web development",
"Bash (Unix shell)",
"Linux",
"Git",
"GitLab"
]
},
"James Sinnott": {
"interests":[
"Health informatics",
"Web accessibility",
"Usability",
"User interface design",
"User experience",
"Git",
"JavaScript",
"JSON",
"HTML",
"CSS",
"Vue.js",
"Node.js",
"Linux",
"macOS",
"Python (programming language)",
"SQL",
"Flask (web framework)",
"FastAPI",
"Data visualization",
"Web development",
"Web application",
"Jira",
"Agile software development",
"Docker (software)"
]
},
"Andrew Jerrison": {
"interests": [
"Web application",
"Mobile app development",
"Desktop app",
"C Sharp (programming language)",
"JavaScript",
"ASP.NET",
"SQL",
"Windows Presentation Foundation",
"C (programming language)",
".NET",
".NET Framework",
"Unity (game engine)",
"Virtual reality"
]
},
"Louise Lever": {
"interests":[
"AWK",
"Apache",
"Bash (Unix shell)",
"C (programming language)",
"CSS",
"C++",
"Less (style sheet language)",
"D3.js",
"Data visualization",
"Django",
"Emacs",
"FastAPI",
"Game design",
"Git",
"HPC",
"HTML",
"Internet of things",
"JSON",
"JavaScript",
"Linux",
"Mixed reality",
"MySQL",
"Node.js",
"OpenGL",
"Pandas (software)",
"ParaView",
"Python (programming language)",
"Raspberry Pi",
"SVG",
"Tmux",
"Unreal Engine",
"Virtual reality",
"Visualization",
"Wagtail (CMS)",
"Web application",
"Web development",
"MPI",
"OpenMP",
"Parallel computing"
],
"technologies": [
"Louise is the Research Software Architect lead for RSE projects in Web Development/WADS"
]
},
"Adrian Harwood": {
"interests":[
"Embedded system",
"General-purpose computing on graphics processing units",
"Mobile app development",
"Game design",
"Virtual reality",
"Real-time simulation",
"Project management",
"Process management",
"HPC",
"C (programming language)",
"C++",
"C Sharp (programming language)",
"Java (programming language)",
"MATLAB",
"Visual Studio",
"Android (operating system)",
"iOS",
"Android SDK",
"Java Native Interface",
"NVIDIA CUDA",
"OpenGL",
"Unreal Engine",
"Unity (game engine)",
"MPI",
"OpenMP",
"Xamarin",
"Microsoft Windows",
"Linux",
"User interface design",
"Engineering",
"Computational fluid dynamics",
"Visual Basic for Applications",
"Git",
"Raspberry Pi",
"Blazor",
"ASP.NET",
"GitHub",
"Jira (software)",
"Agile software development"
],
"technologies": [
"Adrian is the Head of Research Software Engineering"
]
},
"Francisco Herrerias-Azcue": {
"interests":[
"Statistical physics",
"Computational physics",
"Mathematical model",
"Monte Carlo method",
"Population dynamics",
"Gnuplot",
"C++",
"Instructor-led training",
"Adobe Creative Suite",
"LaTeX",
"MATLAB",
"Python",
"Data Science",
"HPC",
"Git"
]
},
"Nigel Green": {
"interests":[
"Python (programming language)",
"Git",
"Web application",
"Web development",
"Laravel",
"Wagtail (CMS)",
"Vue.js",
"Docker",
"Bash (Unix shell)",
"HTML",
"CSS",
"SASS",
"JavaScript",
"Applications Architecture",
"User experience",
"User interface",
"PyGTK",
"REST",
"Web API",
"MySQL",
"Node.js",
"Vim",
"Linux",
"Project management",
"Agile software development"
]
},
"Scott Archer-Nicholls": {
"interests":[
"Python (programming language)",
"Fortran",
"LaTeX",
"R (programming language)",
"JavaScript",
"HTML",
"Bash (Unix shell)",
"Git",
"Apache Subversion",
"macOS",
"Linux",
"Data wrangling",
"Data analysis",
"Data science",
"High-performance computing",
"Project management",
"Agile software development",
"The Carpentries",
"Atmospheric chemistry",
"Climate model",
"Chemical transport model",
"Weather Research and Forecasting Model",
"Unified Model",
"Climate Change",
"Air Quality",
"Geographic information system"
]
},
"Martin Herrerias_Azcue": {
"interests": [
"MATLAB",
"R (programming language)",
"Linux",
"Version Control",
"Git",
"Linux",
"HPC",
"Estimation Theory",
"Solar Energy",
"Photovoltaics",
"QGIS"
]
},
"Jia Wu": {
"interests": [
"Machine learning",
"Data wrangling",
"Data modeling",
"Data analysis",
"Data science",
"Data preparation",
"Data integration",
"Python (programming language)",
"Pandas (software)",
"Real world data",
"MySQL",
"SQL",
"Microsoft SQL Server",
"Git",
"Java (programming language)"
]
},
"Hugo Chu": {
"interests": [
"Apache Maven",
"Database Design",
"DevOps",
"Docker (software)",
"Git",
"HTML",
"Java (programming language)",
"Jakarta Server Pages",
"JSON",
"JQuery",
"JavaScript",
"Jenkins (software)",
"Linux",
"MySQL",
"Object-oriented analysis and design",
"Python (programming language)",
"REST",
"SQL",
"Web development",
"XML"
]
},
"Justin Leung": {
"interests": [
"Git",
"HTML",
"LaTeX",
"PHP",
"ARM",
"Verilog",
"Haskell (programming language)",
"Java (programming language)",
"C (programming language)",
"C++ (programming language)",
"C Sharp (programming language)",
"ASP.NET",
"Java Spring",
"Data science",
"Machine learning",
"JavaScript",
"Jenkins (software)",
"Linux",
"MySQL",
"Python (programming language)",
"SQL",
"Microsoft SQL Server",
"Web development",
"Mobile Development",
"macOS",
"iOS"
]
},
"Chris Fullerton": {
"interests":[
"Python (programming language)",
"C (programming language)",
"C++ (programming language)",
"MATLAB",
"Bash (Unix shell)",
"Powershell",
"LaTeX",
"Git",
"GitHub",
"GitHub Actions",
"Pandas (software)",
"Computational physics",
"Statistical physics",
"Physiology",
"Mathematical modelling",
"Monte Carlo methods",
"Molecular dynamics simulation",
"Data science",
"Machine learning",
"Artifical Intelligence",
"Neural networks",
"OpenMPI",
"Parallel computing"
]
},
"Chris Lam": {
"interests":[
"C (programming language)",
"C Sharp (programming language)",
"C++ (programming language)",
"R (programming language)",
"Python (programming language)",
"JavaScript",
"Bash (Unix shell)",
"Powershell",
"LaTeX",
"Git",
"GitHub",
"GitHub Actions",
"Vue.js",
"PostgreSQL",
"SQLite",
"Win32",
"WxWidgets",