-
Notifications
You must be signed in to change notification settings - Fork 136
Expand file tree
/
Copy pathauthors.yml
More file actions
1512 lines (1512 loc) · 74.9 KB
/
authors.yml
File metadata and controls
1512 lines (1512 loc) · 74.9 KB
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
active-authors:
- aaiken
- abagdonaite
- abarron
- aberrill
- abirch
- acarr
- acaulfield
- ahickman
- alee
- amcgill
- amjones
- asegrove
- ashing
- awhitmell
- bheyman
- bpritchard
- bwallis
- ceberhardt
- cferguson
- cfisher
- chayes
- ckoris
- colive
- cprice
- csalt
- cstephen
- cwilton
- dgrew
- dhinrichs
- dhope
- dhunter
- dkerr
- dmcnamee
- dnicholas
- dogle
- drees
- dscarborough
- dsmith
- dtitterton
- ebrown
- emason
- fhubin
- fvlachos
- garora
- gkendall
- godds
- gsingh
- gsmith
- gsproston
- hashbyha
- hbedford
- hbellamy
- hlogan
- hsauve
- hubinf
- jarnstein
- jbeckles
- jbickleywallace
- jcwright
- jdunleavy
- jgrant
- jharris
- jhenderson
- jheward
- jisted
- jleftley
- jmcevoy
- jporter
- jspruce
- jstrachan
- jstrong
- jwarren
- jwhite
- jwren
- kangel
- kclark
- kcoombes
- kdavis
- kday
- kjones
- klau
- lcollingwood
- lpisani
- lperrett
- lvincent
- lwilson
- magnussmith
- masmith
- mbuhagiar
- mcooke
- mdunsdon
- mgrabara
- mgriffin
- mhowie
- mmcalroy
- mmorgan
- mmoxon
- mpace
- mphillips
- mridene
- mwallace
- nbetts
- ocronk
- oforeman
- osharon
- osouthwell
- pchamberlin
- pdykes
- pgraham
- pling
- rbeckett
- rgarside
- rgriffiths
- rlewis
- rpilling
- rstrange
- rwilliams
- rwillis
- sbaker
- sbreingan
- sburnstone
- sconway
- sforeshew-cain
- sgladstone
- shamiltonritchie
- shunton
- slaing
- slinsley
- smartin
- smendis-scottlogic
- snandal
- srowan
- ssibanda
- swoods
- tclarke-scottlogic
- tgilbert
- thands
- tjohnson
- vcisse
- wboothclibborn
- wduncan
- wmckenzie
- wreilly
- wtrimble
- xchen
- yblowers
- zrubin
- zwali
authors:
amcgill:
name: 'Alex McGill'
picture: picture.jpg
author-summary: "I've spent the last few years using Angular in Investment Banking. When I'm not working you'll find me looking after my puppy!"
aaiken:
name: "Andy Aiken"
picture: picture.jpg
asegrove:
name: "Alex Segrove"
picture: picture.jpg
author-summary: "Hi, Im Alex - Delivery Manager based in the London office. I spent the last few years in the Government Digital Service heading up delivery for GOV.UK, Digital Identity and Government Data policy, then worked with governments around the world to help them with their own digital transformation."
aaspellc:
name: "Andy Aspell-Clark"
author-summary: "<p>I am a Senior Developer at Scott Logic. I am interested in all programming topics from how a computer goes from power on to displaying windows on the screen or how a CPU handles branch prediction to how to write a mobile UI using kotlin or cordova.</p>"
twitter-handle: aspellclark
twitter-url: "http://www.twitter.com/aspellclark"
google-plus-url: "https://plus.google.com/u/1/+AndyAspellClark"
picture: picture.jpg
aaylett:
google-plus-url: "https://plus.google.com/117103827242094116619"
name: "Andrew Aylett"
twitter-url: "https://twitter.com/aaylett"
twitter-handle: aaylett
picture: picture.jpg
abarron:
name: "Adam Barron"
email: abarron@scottlogic.com
author-summary: "I'm a developer at Scott Logic in Newcastle. I've found myself primarily writing Typescript for Cloud Services, with a bit of .NET on the side. I can also be found playing various video games and enjoying loud live music."
feed-description: "Adam's experiences and thoughts living and working in the world of tech."
picture: abarron-crop.jpg
twitter-url: "https://twitter.com/awbarron"
twitter-handle: AWBarron
aberrill:
author-summary: 'Test Engineer at Scott Logic with a great interest in test automation and accessibility'
name: 'Alex Berrill'
picture: picture.jpg
acarr:
feed-description: "Andrew's thoughts on technology"
name: "Andrew Carr"
author-summary: "<p>I lead the Data Engineering Practice within Scott Logic. I have a strong interest and expertise in low latency Front Office trading systems, software managing very large networks and the technologies involved in processing large volumes of data.</p>"
picture: picture.jpg
acheshire:
name: "Alexander Cheshire"
picture: picture.jpg
afiddes:
name: "Avril Fiddes"
picture: picture.png
agard:
author-summary: '<p>I am an intern going into my fourth year at Edinburgh Napier univeristy, and I have been working on a <a href="https://github.com/ScottLogic/foyer-screen">foyer screen</a> for the offices.</p>'
name: "Alec Gard"
picture: picture.jpg
ahickman:
name: "Andy Hickman"
author-summary: "<p>I am a Principal Consultant at Scott Logic. I have led software teams in several organisations as a Delivery Manager, CTO and Software Development Manager. My interest is in the approaches – whether they are Agile practices, technical skills, management styles or tools – that make software teams most effective.</p>"
picture: picture.jpg
alee:
name: "Andy Lee"
author-summary: "I'm a Technical architect at Scott Logic, in Bristol. I have a full-stack .Net background, but lately I'm most interested in all sorts of web technology."
picture: picture.png
amjones:
author-summary: "<p>Last miner in the North East.</p>"
name: "Andrew Jones"
picture: picture.png
amorgan:
name: "Adam Morgan"
author-summary: "<p>I'm Adam. I am a full stack senior developer, interested in all things web.</p>"
picture: picture.png
asheehan:
author-summary: "<p>I'm Ali, and I'm new here</p>"
feed-description: "Ali's thoughts on life and technology"
name: "Ali Sheehan-Dare"
twitter-url: "https://twitter.com/im_alisd"
twitter-handle: im_alisd
picture: picture.jpg
awallis:
name: "Allen Wallis"
picture: picture.jpg
awelsh:
name: "Antony Welsh"
author-summary: "Lead Developer based in Edinburgh. My career in software is old enough to drink."
twitter-handle: null
picture: blogpic.jpg
awhitmell:
name: "Andrew Whitmell"
author-summary: "Associate developer at Scott Logic based in the Newcastle office. When not bashing keyboards, I can usually be found playing with a Labrador or looking at guitars I can't afford."
picture: awhitmell.jpg
bdimitrov-SL:
name: "Bogdan Dimitrov"
author-summary: "<p>I am a Software Developer at Scott Logic working with .NET and HTML5 web technologies.</p>"
picture: picture.jpg
bheyman:
name: "Ben Heyman"
author-summary: "Software Developer based out of Bristol, having a go at some writing."
picture: profilepic1.jpg
bjedrzejewski:
name: "Bartosz Jedrzejewski"
author-summary: '<p>I am a Technical Principal at Scott Logic specialising in microservices and cloud architectures. I am a passionate advocate of the DevOps culture. I also write on <a href="https://www.e4developer.com">e4developer.com</a></p>'
twitter-url: "https://twitter.com/e4developer"
twitter-handle: e4developer
picture: picture.jpg
bmacdonald:
name: "Brendan MacDonald"
author-summary: "Senior Test Engineer working at Scott Logic based in the Edinburgh office."
picture: picture.jpg
bmumford:
name: "Ben Mumford"
picture: picture.jpg
bpritchard:
name: "Beth Pritchard"
email: bpritchard@scottlogic.com
author-summary: "A developer at Scott Logic, based in Newcastle. Interested in all things cloud. Partial to loud music, video games, and hanging out with my cat."
picture: bpritchard.jpg
cburbidge:
name: "Chester Burbidge"
author-summary: "Software Engineer at Scott Logic. Experienced in dotnet but interested in all areas of software development, especially 'devops' and functional programming."
twitter-url: "https://twitter.com/chestercodes"
twitter-handle: chestercodes
picture: picture.jpg
ceberhardt:
author-summary: "<p>I am CTO at Scott Logic and am a prolific technical author, blogger and speaker on a range of technologies.</p>\n<p>My blog includes posts on a wide range of topics, including WebAssembly, HTML5 / JavaScript and data visualisation with D3 and <a href=\"https://d3fc.io/\">d3fc</a>. You'll also find a whole host of posts about previous technology interests including iOS, Swift, WPF and Silverlight.</p>\n<p>I'm board member of <a href=\"https://www.finos.org/\">FINOS</a>, which is encouraging open source collaboration in the financial sector. I'm also <a href=\"https://github.com/ColinEberhardt\">very active on GitHub</a>, contributing to a number of different projects.</p>\n"
feed-description: "Colin Eberhardt's Technology Adventures"
name: "Colin Eberhardt"
twitter-url: "https://twitter.com/ColinEberhardt"
twitter-handle: ColinEberhardt
picture: picture.jpg
cgrant:
name: "Chris Grant"
picture: picture.jpg
chayes:
name: "Charlotte Hayes"
author-summary: "I'm Charlotte, a Senior Test Engineer based in Edinburgh. I am passionate about exploring the latest test automation technologies as well as examining the intersection between continuous improvement methodologies and QA. I have a keen interest in exploring the role that we, as technologists, can play in developing more sustainable technology."
picture: picture.jpg
ckurzeja:
name: "Chris Kurzeja"
picture: image.jpg
author-summary: "<p>I'm a Lead Developer at Scott Logic working in the London office. I'm a full-stack developer who is always keen on finding ways to help a team improve their coding quality and practices."
cmeehan:
name: "Chris Meehan"
author-summary: "<p>I'm a software developer at Scott Logic focusing primarily on JavaScript development, particularly with React. Recently, I've also taken an interest in mobile development.</p> <p>I joined the company after studying Mechanical Engineering at Bath and Computer Science (MSc) at Bristol. The fantastic learning opportunities at Scott Logic are one of the main reasons I joined, and as a result I'm currently learning functional programming (F#) in between projects.</p>"
picture: picture.jpg
ccocks:
author-summary: "<p>I’m a Business Development Campaign Manager at Scott Logic. I have a background in Sales, Marketing and PR and a keen interest in gardening.</p>"
name: "Claire Cocks"
picture: picture.jpg
cprice:
author-summary: '<p>My name is Chris Price, I''m based in Newcastle upon Tyne and work as a Software Engineer at Scott Logic. I spend my days developing web apps for financial services companies (unfortunately mostly hidden behind paywalls). I do like to blog about things when I can and do some interesting stuff on <a href="https://github.com/chrisprice">GitHub</a>.</p>'
name: "Chris Price"
twitter-url: "https://twitter.com/100pxls"
twitter-handle: 100pxls
picture: picture.jpeg
croberts:
name: "Charlotte Roberts"
author-summary: "Test Engineer at Scott Logic. Based in the London office."
picture: picture.png
csalt:
name: "Caitlin Salt"
author-summary: "I'm a Technical Principal at Scott Logic, based in our Bristol office. My interests are varied and wide-ranging, but I tend to specialise in .NET and cloud-hosted technologies. When I'm not at a keyboard, I get passionate about almost any sort of outdated and vintage machinery."
feed-description: "Blog posts by Caitlin Salt, Technical Principal at Scott Logic"
picture: picture.jpg
cstephen:
name: "Craig Stephen"
author-summary: "Hello! Craig here, Marketing Campaign Manager at Scott Logic based in the Edinburgh office. I have a passion for all things digital marketing and content, with a focus on making user journeys smooth and powerful. When not creating marketing campaigns for Scott Logic, you will find me travelling around somewhere else on the planet, in the gym or tending to the 100 houseplants in my house. <a href='https://www.linkedin.com/in/cestephen1'>@CraigStephen</a>"
picture: picture.jpg
csmith:
name: "Chris Smith"
twitter-url: "https://twitter.com/cjsmithie"
twitter-handle: cjsmithie
picture: picture.jpg
cwilton:
name: "Chris Wilton-Magras"
author-summary: "<p>Opinionated lead developer, munro bagger, beer brewer, cat lover, occasional fool.</p>"
picture: me.jpg
dcook:
feed-description: "Dan Cook's thoughts on all things Big Data."
google-plus-url: "https://plus.google.com/102307699647083644941"
name: "Daniel Cook"
twitter-handle: dancookdev
twitter-url: "https://twitter.com/dancookdev"
picture: picture.jpg
dgorst:
name: "Dan Gorst"
picture: picture.jpg
delliott:
name: "Dan Elliott"
author-summary: "<p>Senior UX Designer at Scott Logic based in the Bristol office. I spend my time researching users, designing solutions and testing to ensure a productive and pleasurable user experience. PC and VR Gamer, Motorcycle Enthusiast, Dad and Collector of Loud Shirts."
picture: picture.jpg
dhope:
name: "David Hope"
email: "dhope@scottlogic.com"
author-summary: "<p>Architect and technologist wth an interest in many areas including video streaming, identity and resilience</p>"
feed-description: "David's thoughts on software architecture"
picture: picture.jpg
dkerr:
author-summary: "<p>I'm a full-stack web developer, with an interest in anything and everything that's new in web technology!</p>"
name: "Dean Kerr"
picture: picture.jpg
dketley:
name: "Dominic Ketley"
picture: picture.jpg
dmcnamee:
author-summary: "Tester. Photographer."
feed-description: "Daniel is a senior test engineer and exponent of rapid software testing."
google-plus-url: "https://www.google.com/+DanielMcNamee"
name: "Daniel McNamee"
twitter-url: "https://twitter.com/demcnamee"
twitter-handle: demcnamee
picture: picture.jpg
dmiley:
name: "Drew Miley"
picture: picture.jpg
dogle:
name: "Dave Ogle"
author-summary: "<p>Hi, I'm Dave, a Lead Developer here at Scott Logic, based in Edinburgh. I'm a full stack developer with a particular passion for how we build software. Outside of software I enjoy Jazz, Star Trek and single malt whiskeys, not necessarily in that order.</p>"
picture: picture.jpg
dpizzi:
name: "David Pizzi"
picture: picture.jpg
drees:
name: "David Rees"
picture: picture.jpg
author-summary: "<p>Hello, I'm a Senior UX designer at Scott Logic, based in Bristol.</p>"
dsmith:
author-summary: "<p>I'm a Senior Developer at Scott Logic, based in Newcastle.</p>"
name: "Darren Smith"
twitter-url: "https://twitter.com/darrenpsmithweb"
twitter-handle: darrenpsmithweb
picture: picture.jpg
dscarborough:
name: "Dan Scarborough"
author-summary: "<p>I am a Developer at Scott Logic.</p>"
picture: picture.png
dtheasby:
name: "Drew Theasby"
author-summary: "<p>Test Engineer at Scott Logic</p>"
picture: picture.jpg
dthomas:
name: "David Thomas"
picture: picture.jpg
dwybourn:
name: "David Wybourn"
picture: picture.jpg
ebrown:
name: "Eddy Brown"
picture: picture.png
author-summary: "<p>I am a Developer at Scott Logic and I love learning and building new things! I also like to drive and fix machines.</p>"
ekouri:
name: "Effrosyni Kouri"
picture: picture.png
emason:
name: "Elliot Mason"
author-summary: "<p>Test Engineer at Newcastle, studied Computer Science at Newcastle University</p>"
picture: picture.jpg
ffarhadi:
name: "Farzaneh Farhadi"
author-summary: "<p>I have been working as a Test Engineer since 2012.</p>\n<p>In my spare time I enjoy playing piano and painting.</p>"
picture: picture.jpg
gginghina:
name: "Georgiana Ginghina"
picture: picture.jpg
garora:
name: "Gurveer Arora"
author-summary: '<p>I am a developer at Scott Logic, Newcastle. <a href="https://github.com/QuarkNerd"> Find me on Github </a> </p>'
picture: picture.jpg
gkendall:
name: "Guillaume Kendall"
author-summary: "<p>Key Account Advisor here at Scott Logic. I have a passion for all things related to innovation and disruption. I’m an early adopter of tech and in my spare time, I enjoy cycling, gardening and watching rugby!</p>"
picture: picture.jpg
godds:
author-summary: "<p>I'm a technologist who delights in pushing at the boundaries of what is possible. As Chief Strategy Officer at Scott Logic, I worry about where we and the world we operate in are heading longer term. I'm often heard talking about social value and environmental impact, or getting nerdy about data visualisation.</p>"
feed-description: "Graham Odds' thoughts about design, technology and data visualisation."
google-plus-url: "https://plus.google.com/u/0/106838695703708413394"
name: "Graham Odds"
twitter-url: "https://twitter.com/g_odds"
twitter-handle: g_odds
picture: picture.jpg
gthompson:
author-summary: "<p>I'm a Technical Project Manager at Scott Logic with a background in development and engineering. I moved to project management in 2009 and have experience in traditional and agile methodologies from large to small projects in both the public and private sectors.</p>"
feed-description: "Gary's thoughts on Agile, Scrum, and all things Tech Project Management."
name: "Gary Thompson"
picture: picture.jpg
gsingh:
author-summary: 'I am a senior developer at Scott Logic. I am passionate about solution designing and front end-based technologies and in my free time I enjoy watching and playing Cricket.'
name: 'Gagan Singh'
picture: picture.jpg
hbellamy:
name: "Harry Bellamy"
author-summary: "<p>I am a Lead Developer at Scott Logic.</p>"
hlogan:
author-summary: 'I''m a developer at Scott Logic, Glasgow with a background in data science and Java/Python development.'
name: 'Heather Logan'
picture: picture.jpg
hgoode:
name: "Harry Goode"
picture: picture.jpg
feed-description: "Just an introduction into the incredibly broad subject of sustainability in software."
author-summary: "<p>Just a regular software developer with no professional experience in the sustainability sector.</p>"
hmumford:
name: "Harry Mumford-Turner"
twitter-url: "https://twitter.com/mumf_"
author-summary: '<p>I am a Graduate Developer at Scott Logic, Bristol.</p><p>I like to write about practical examples of web development and create <a href="https://github.com/harrymt/">side projects on GitHub</a>.</p>'
picture: picture.jpg
hpowell:
name: "Hugh Powell"
picture: picture.jpg
hpretswell:
author-summary: "<p>I work as a Test Engineer with a rather odd background in animation. When I'm not bug hunting I like to read, play piano and partake in local theatre productions.</p>"
feed-description: "Bits and bobs on software testing"
name: "Hannah Pretswell"
twitter-url: "https://twitter.com/HannahPretswell"
twitter-handle: HannahPretswell
picture: picture.jpg
hsauve:
author-summary: "I'm an Associate Developer at Scott Logic based in the Bristol office. My background is in Languages and Marketing."
feed-description:
name: "Hélène Sauvé"
picture: helene-sauve-picture.jpg
ilapworth:
name: "Isaac Lapworth"
author-summary: "2018 Newcastle intern"
picture: picture.png
ilopatkin:
name: "Ilya Lopatkin"
picture: picture.jpg
isullivan:
name: "Ian Sullivan"
picture: picture.jpg
janakerman:
name: "Jan Akerman"
author-summary: "<p>I am a Senior Developer at Scott Logic, based in London.</p>"
picture: picture.jpg
jayphi11ips:
name: "Jason Phillips"
author-summary: "<p>I am the first dedicated BA at Scott Logic, based in London.</p>"
picture: picture.png
jbandenburg:
name: "Joe Bandenburg"
twitter-url: "https://twitter.com/joebandenburg"
twitter-handle: joebandenburg
picture: picture.jpg
jbrunton:
name: "James Brunton"
author-summary: "<p>James was an Intern at Scott Logic, based in Newcastle.</p>"
picture: picture.jpg
jcardy:
name: "Jonathan Cardy"
jcwright:
name: "Jay Wright"
author-summary: "<p>I'm a developer at Scott Logic, based in Newcastle. My primary interest is in backend development, primarily in Java, and cloud technologies. I also have experience building web applications in React.<p>\n<p>Away from work I'm a keen petrol head and avid Formula One fan. I support McLaren, in case you were wondering.</p>"
picture: picture.jpg
jdunkerley:
author-summary: "<p>I am a Technical Architect at Scott Logic, based in London. I have many years of using C# within financial services. My current interests are in data analytics and visualisation, particularly using Tableau and Alteryx. I also enjoying learning about new big data technologies and machine learning.</p>"
name: "James Dunkerley"
twitter-handle: jdunkerley
twitter-url: "http://twitter.com/jdunkerley"
picture: picture.png
jfriel:
author-summary: "<p>I am a summer intern at Scott Logic</p>"
name: "James Friel"
picture: picture.jpg
jharris:
name: "Jon Harris"
author-summary: "I'm a full stack developer with Scott Logic in Bristol with experience of greater or lesser extent in C#, Java, React, Python and Spark."
twitter-handle: null
picture: headshot.jpg
jmacdonald:
name: "Jamie Macdonald"
author-summary: "I am a software developer at Scott Logic, based in our London office. I work on full-stack projects, but particularly enjoy building frontend applications with complex styling challenges. When not CSS-wrangling, I can be found at the cinema watching a mix of indie darlings and deeply silly action movies or at home spending more time tinkering with retro games than actually playing them."
picture: picture.png
jhill:
name: "James Hill"
google-plus-url: "https://plus.google.com/u/0/113102044823162726684"
author-summary: "<p>I am developer working at the Scott Logic Newcastle office. I'm involved in several projects and have a great interest in the cryptocurrency market. Believe that I may be one of the last Delphi developers on earth.</p>"
picture: picture.jpg
jhowlett:
name: "Jake Howlett"
author-summary: "<p>I am a software developer at Scott Logic based in Bristol and I have a passion for sustainable software. More specifically how we can make the whole software lifecycle, from hardware production to continual deployment systems, more sustainable.</p>"
picture: "jhowlett.jpg"
jmelon:
name: "Jean-Sacha Melon"
author-summary: "<p>I am a London based Delivery Principal at Scott Logic. Coming from a developer background I am passionate about agility and coaching in the tech space. I love working with our amazing teams and supporting our customers at all levels of seniority.</p>"
picture: picture.png
jmcevoy:
name: "Jessica McEvoy"
author-summary: "I'm a Principal at Scott Logic. Ex-Senior Civil Servant, formerly of GDS, Cabinet Office."
picture: picture.jpg
jphillpotts:
name: "James Phillpotts"
picture: picture.jpg
jrice:
author-summary: "<p>I am a User Experience Designer at Scott Logic. With a background in Product Design I combine the three areas of People, Design and Technology to create meaningful responses to challenging problems.</p>"
name: "James Rice"
twitter-url: "https://twitter.com/jamesricedesign"
twitter-handle: jamesricedesign
picture: picture.jpg
jsteer:
author-summary: "<p>I am a Senior Software engineer here at Scott Logic.</p>"
name: "Joe Steer"
twitter-url: "https://twitter.com/joesteer"
twitter-handle: joesteer
picture: picture.jpg
jstrong:
author-summary: "I am a software developer at Scott Logic."
name: "James Strong"
picture: "jstrong.jpg"
jwarren:
name: "Josh Warren"
author-summary: "I have been a software developer at Scott Logic since joining in August 2022. When I’m not tapping away at a keyboard, you can find me travelling the world or attempting to write some music!"
picture: jwarren.jpg
jwhite:
name: "James White"
picture: picture.jpg
jwilson:
author-summary: "\t"
name: "Jule Wilson"
jwren:
author-summary: ""
name: "James Wren"
picture: picture.jpg
jwright:
author-summary: ""
name: "John Wright"
kclark:
author-summary: "Test Engineer at Scott Logic born, raised and based in Edinburgh. Gym goer, Book reader, Knitter extraordinaire."
name: "Kira Clark"
picture: picture.png
kcoombes:
author-summary: "I am a Test Engineer from Newcastle"
name: "Kay Coombes"
picture: picture.jpeg
kdavis:
author-summary: "Software developer at Scott Logic, based in Newcastle."
name: "Katie Davis"
picture: "kdavis.jpg"
email: "kdavis@scottlogic.com"
feed-description: "Katie's thoughts on the world of tech."
khurley:
author-summary: "Business Development Manager"
name: "Kirsten Hurley"
picture: picture.jpg
kjones:
author-summary: "I'm a full stack senior developer with experience in C#, Typescript (mainly Angular)"
name: "Ken Jones"
picture: picture.jpg
mhowie:
author-summary: "<p>I'm passionate about seeing things from the audiences’ perspective in all elements of communications: content marketing, internal communications, social media, email marketing - none of it works if you're not thinking about your audience's needs.</p><p>That also means considering the impact of our communications, which is why I'm learning everything I can about DEI, and I regularly speak at industry events on DEI in internal communications.</p>"
name: "Marghaid Howie"
picture: picture.jpg
dhunter:
author-summary: "I'm a senior developer at Scott Logic, based in the Edinburgh office. My background is full-stack .NET web applications and more recently some Xamarin projects. Outside of work I like a pub quiz, live music and playing lego and soft play with my wee boy."
name: "Dean Hunter"
picture: picture.jpg
labs:
name: "Scott Logic Labs"
lcollingwood:
name: "Laurie Collingwood"
picture: picture.jpg
lpage:
name: "Luke Page"
picture: picture.png
lpisani:
name: "Laurence Pisani"
author-summary: "<p> I am Head of Testing at Scott Logic, responsible for the overall direction of the practice and how we deliver testing to our clients. I have a background in combining psychology with software engineering, with a keen interest in Human Factors testing and how we interact with technology.</p>"
picture: picture.jpg
lramchandani:
name: "Laveena Ramchandani"
author-summary: "Test Engineer, working at Scott Logic. I am based in the London Office. "
picture: picture.jpg
lwilson:
name: "Louise Wilson"
author-summary: "I am a Delivery Principal at Scott Logic based in the Edinburgh office. I am passionate about building great services within the public and private sector. I'm a big fan of tasty food and energetic dancing."
picture: lwilson.png
mamos:
name: "Matthew Amos"
author-summary: "I'm a Lead Developer at Scott Logic, based in London, with almost 15 years experience in Java. I also write Scala, Kotlin, Python and some JavaScript. I am a certified AWS solutions architect, and Terraform fan."
picture: picture.jpg
mbuhagiar:
name: "Mark Buhagiar"
author-summary: "I'm a Senior Developer at Scott Logic based in London. When not frantically typing away at a keyboard, I can usually be found either cooking or out on a run."
picture: picture.jpg
mcrease:
author-summary: ""
name: "Murray Crease"
mdebeneducci:
name: "Mathew de Beneducci"
author-summary: "Senior Developer in the Bristol Office, interested in Java backend development and Big Data tools"
picture: picture.jpg
mdunsdon:
name: "Matthew Dunsdon"
picture: picture.jpg
mjose:
name: "Mark Jose"
author-summary: '<p>I''m a lead developer at Scott Logic, working with HTML5 web technologies and C# / .NET development.</p><p>When I''m not coding you''ll normally find me tinkering with cars or at the race track, but coding is a less expensive pass time.</p><p>I also contribute to a <a href="https://github.com/markjose">few open source projects</a>.</p>'
picture: picture.jpg
mkirova:
name: "Mila Kirova"
mmathew:
name: "Mili Mathew"
author-summary: "<p>I'm a Lead Test Consultant at Scott Logic, London. I like solving problems with innovation and pragmatism</p>"
twitter-url: "https://twitter.com/Testflaneuse"
twitter-handle: Testflaneuse
picture: picture.jpg
mperrin:
name: "Mike Perrin"
mrhodes:
name: "Mark Rhodes"
picture: picture.jpg
msinton:
name: "Matt Sinton-Hewitt"
author-summary: "<p>I'm a Senior Developer at Scott Logic. I like Functional Programming, Big Data and Machine Learning.</p>"
picture: picture.jpg
mtinning:
name: "Michael Tinning"
twitter-url: "https://twitter.com/mttinning"
twitter-handle: mttinning
picture: picture.jpg
mwallace:
author-summary: "<p>Senior UX Designer at Scott Logic. I like to talk about user-centered design, usability, and accessibility. When I'm not working I'm doing something creative or playing board games.</p>"
name: "Mark Wallace"
picture: profile.jpeg
nhemley:
name: "Nicholas Hemley"
nowen:
author-summary: "<p>I'm a Senior Developer at Scott Logic, with many years of C# experience. Recently I've immersed myself in JavaScript, including Angular and React."
name: "Nick Owen"
picture: picture.jpg
nsoper:
name: "Nick Soper"
twitter-url: "https://twitter.com/devsoper"
twitter-handle: devsoper
picture: picture.jpg
nwolverson:
name: "Nicholas Wolverson"
picture: picture.jpg
osouthwell:
author-summary: 'I''m a software developer at Scott Logic, based in Bristol. I''m at least a little bit interested in almost everything.'
name: 'Ollie Southwell'
picture: picture.jpg
okenyon:
name: "Oliver Kenyon"
picture: picture.jpg
osharon:
name: "Oded Sharon"
author-summary: '<p>I am a developer at Scott Logic, Edinburgh. <a href="https://github.com/odedshr"> Find me on Github </a> </p>'
picture: picture.jpg
pchamberlin:
name: "Peter Chamberlin"
author-summary: "Scott Logic's technology lead for the public sector and security, I'm based in Edinburgh."
picture: profile-photo.jpg
pling:
name: "Peter Ling"
author-summary: "I am a Senior Developer, based in Bristol. I'm interested in what technology can do for society, and what creativity can do for the soul."
picture: PL_Headshot.JPG
pmarsh:
name: "Peter Marsh"
author-summary: "A keen and creative developer based in Edinburgh. Loves making music, drawing and the great outdoors"
picture: picture.jpg
pshek:
name: "Paulin Shek"
author-summary: "<p>Paulin is a Java developer at Scott Logic. When she's not programming, she can be found doing cryptic crosswords and climbing small rocks.</p>"
picture: picture.jpg
rbaxter:
name: "Rolf Baxter"
picture: picture.png
rbeckett:
author-summary: "Graduate Developer at Scott Logic"
name: "Richard Beckett"
rcaulcott-cooper:
author-summary: '<p>I am an intern going into my third year of Computer Science at Newcastle University, and have mainly been doing Java, javascript and C. Recently I have been working with d3.js, less.css and Scott Logic''s own <a href="https://github.com/d3fc">d3fc</a>.</p>'
name: "Ruth Caulcott-Cooper"
picture: picture.png
rdoyle:
name: "Richard Doyle"
picture: picture.jpg
rfarmer:
name: "Roisin Farmer"
rhamilton:
name: "Rosie Hamilton"
twitter-url: "https://twitter.com/Rosicadia"
twitter-handle: Rosicadia
feed-description: "A collection of Rosie Hamilton's thoughts on software testing."
author-summary: '<p>I have been happily testing software and reporting bugs since 2005. I am the Author of <a href="http://testingfuntime.blogspot.co.uk/"> Mega Ultra Super Happy Software Testing Fun Time</a>. As well as writing I enjoy playing violin, playing PC games, going to the gym and pushing <a href="https://golang.org/">Golang</a> and <a href="https://www.r-project.org/about.html">R</a> to <a href="https://github.com/Rosalita">Github</a>. I currently work at Scott Logic as a Senior Test Engineer.</p>'
picture: picture.png
rhendry:
name: "Ross Hendry"
picture: picture.jpg
rlewis:
name: "Robert Lewis"
author-summary: "<p>Lead Developer at Scott Logic in Edinburgh.</p><p>I've been programming computers since before the web and doing it professionally since last century. Building the right thing is the hard part. Making it efficient is the fun part.</p>"
picture: robert-lewis.jpg
rnewsome:
author-summary: "Scott Logic's Head of Development, Newcastle upon Tyne"
name: "Rob Newsome"
rmarcalo:
name: "Rui Marcalo"
picture: picture.jpg
rrahim:
author-summary: "<p>I am a UX Designer at Scott Logic. My background is in Product Design and I studied at Brunel University for 4 years. I have designed apps for mobile, desktop, tablet, web and service robot. I enjoy the research side of user experience, as I am always interested in learning about new technologies and design principles.</p>"
name: "Rhianna Rahim"
picture: picture.jpg
rrhodes:
name: "Ross Rhodes"
twitter-handle: trrhodes
author-summary: "<p>I'm a software developer at Scott Logic, Edinburgh. I joined in August 2017 after four years studying Computer Science and Mathematics at the University of Edinburgh.</p>"
twitter-url: "https://twitter.com/trrhodes"
picture: picture.jpg
rschuller:
author-summary: "Graduate Developer, Bristol"
name: "Ricardo Schuller"
rsillem:
name: "Robin Sillem"
author-summary: "<p>I am a Lead Developer at Scott Logic.</p>"
picture: picture.jpg
rwilliams:
name: "Robat Williams"
twitter-url: "https://twitter.com/_rwms"
twitter-handle: _rwms
author-summary: '<p>I work developing web applications for our clients at Scott Logic. You can also find me on <a href="https://github.com/robatwilliams">GitHub</a>.</p>'
picture: picture.jpg
rwillis:
name: "Rowan Willis"
author-summary: "<p>I'm a senior developer at Scott Logic's Bristol office, with a very .NET-flavoured background and an inexplicable fascination with domain-driven design.</p>"
picture: picture.jpg
jdunleavy:
name: "Joe Dunleavy"
author-summary: "<p>Developer at Scott Logic. I have a love for learning and am passionate about programming, music, cinema, VR, martial arts and too many other things to name. My only regret is that there is not enough time to do it all.</p>"
picture: picture.jpg
sbaker:
author-summary: "<p>I am a senior developer at Scott Logic, working primarily with Java. I'm currently fascinated by data science and machine learning</p>"
feed-description: "Sioned is a developer working primarily Java, with a side-interest in data science."
name: "Sioned Baker"
picture: picture.jpg
sbulut:
author-summary: "<p>Full-time learner and Test Engineer at Scott Logic</p>"
name: "Seda Bulut"
picture: picture.jpg
sconway:
name: "Steve Conway"
email: sconway@scottlogic.com
author-summary: "I am a senior developer at Scott Logic, based in Edinburgh. I work mostly on backend services and cloud applications these days, coding in Java and Python. I've recently been getting up to speed with the current capabilities of LLMs, where everything is on a massively different scale from when I used neural networks in my PhD many years ago."
picture: picture.jpg
sdavies:
name: "Sam Davies"
twitter-url: "https://twitter.com/iwantmyrealname"
twitter-handle: iwantmyrealname
google-plus-url: "https://plus.google.com/+SamDavies_ActuallyMyRealName"
picture: picture.jpg
sduncan:
name: "Simon Duncan"
author-summary: "UX designer. Arduino & physical computing enthusiast. Likes hip hop and 30 minute drone pieces."
twitter-url: "https://twitter.com/simonduncan"
twitter-handle: simonduncan
feed-description: "<p>Simon Duncan is a UX designer, particularly interested in interaction design and information architecture. These are some of his thoughts.</p>"
picture: picture.jpg
sfoley:
name: "Simon Foley"
picture: picture.jpg
shamiltonritchie:
name: "Simon Hamilton Ritchie"
author-summary: "Lead Developer in London"
picture: picture.jpg
sgrant:
author-summary: '<p>The ol'' job descrip'' says "developer", but I prefer the term "technical doer"; I feel it more adequately encompasses the breadth of what we do. Variety is of course the spice of life and, to stretch that metaphor, whilst I like a bit of this and that, ElasticSearch is my salt, and .NET my pepper.</p>'
name: "Sam Sutherland Grant"
picture: thinkyMe_150x150.jpg
shall:
name: "Steven Hall"
picture: picture.jpg
shogarth:
author-summary: "<p>Sam enjoys working across the technology stack, he is passionate about building systems that deliver high value, incorporating new ideas, improving productivity and communicating with the developer community. He is interested in patterns and process within the changing world of software engineering. In his spare time, he can run a fine game of Dungeons and Dragons!</p>"
feed-description: "Sam on Software"
name: "Sam Hogarth"
picture: picture.jpg
shunton:
feed-description: "Steve's adventures in all things Agile"
name: "Steven Hunton"
author-summary: "<p>I'm a Delivery Manager at Scott Logic. I have a distant memory of being a developer with the past decade or so dedicated to project delivery, scaling and expanding Agile for large organisations and sharing what I learn along the way.</p>"
picture: picture.png
sking:
name: "Saber King"
picture: picture.jpg
slinsley:
name: Stephen Linsley
picture: picture.jpg
author-summary: "<p>Marketing Channels Coordinator at Scott Logic, with a background in SaaS marketing.</p>"
snandal:
name: "Shikha Nandal"
picture: picture.jpg
author-summary: "Senior Test Engineer at Scott Logic"
sobrien:
name: "Siobhan O'Brien"
author-summary: "UX Designer"
picture: picture.png
soneill:
name: "Sean O'Neill"
picture: picture.jpg
sroebuck:
author-summary: "Technical Architect"
name: "Stuart Roebuck"
swilson:
author-summary: "Senior Marketing Executive"
name: "Scarlett Wilson"
tbaker:
name: "Tom Baker"
tbarclay:
name: "Tim Barclay"
picture: picture.jpg
tclarke-scottlogic:
name: "Thomas Clarke"
author-summary: '<p>I started at ScottLogic in 2018 as a member of the Development team.</p><p>Prior to Scott Logic, I''ve worked around the UK, as a full system product developer, using C++, C#, javascript, ruby, shell scripts and what seems like dozens of company-specific frameworks.</p><p>As a product developer, I''m interested in making sure I''m solving meaningful problems for our clients, and providing an experience that <a href="http://seriouspony.com/blog/2013/7/24/your-app-makes-me-fat">doesn''t make them fat</a>.</p>'
twitter-url: "https://twitter.com/deworde"
twitter-handle: deworde
picture: picture.png
jbickleywallace:
name: "Josh Bickley-Wallace"
author-summary: "I'm a software engineer who also builds teams, children and sometimes houses."
picture: picture.jpg
tferguson:
name: "Tyler Ferguson"
author-summary: "<p>I am a Developer at Scott Logic. I have a strong interest in front end development and the javascript ecosystem as a whole. I like most things to do with mathematics and chess.</p>"
picture: picture.jpg
tgilbert:
name: "Tom Gilbert"
author-summary: "Tom is a Senior Test Engineer at Scott Logic. In addition to testing, I'm also interested in improving business processes. When I'm not trying to break things, I enjoy cooking outdoors and playing golf."
picture: picture.jpg
tkelly:
author-summary: '<p>I am primarily a C#/Javascript developer, but I dabble in iOS from time to time</p><p>Outside of work I love games, both video games and board games. I even <a href="https://www.gitbook.com/book/tpkelly/gaming-the-system/">wrote a book</a> and <a href="https://www.youtube.com/watch?v=ghQA_OvucMc">gave a talk</a> about applying ideas from games to improve customer interactions.</p>'
name: "Thomas Kelly"
picture: picture.jpg
tmakarem:
author-summary: "<p> I am a user experience designer based in London. Using an agile approach, I design desktop, tablet and mobile web apps. At Scott Logic, I work with clients mainly in financial services enhancing their trading platforms, analytics dashboards and Intranet tools. I am an enthusiast of Data visualization and interactive projects using code for art.</p>"
name: "Tamara Chehayeb Makarem"
twitter-handle: TamaraCMakarem
twitter-url: "http://twitter.com/TamaraCMakarem"
picture: picture.jpg
tsimmons:
name: "Tom Simmons"
author-summary: "<p>I am a Senior Developer at Scott Logic.</p>"
picture: picture.jpg
wcaine:
name: "Will Caine"
author-summary: "Scott Logic Intern at the Newcastle office during the summer of 2018."
picture: picture.jpg
wferguson:
author-summary: "<p>I'm a developer at Scott Logic, after joining in 2014 as an intern.</p>"
name: "William Ferguson"
picture: picture.jpg
wloveland:
author-summary: "<p>I'm a User Experience Designer at Scott Logic. My interests lie in the future of the in-car experiences, working with complex systems and cat GIFs.</p>"
name: "Will Loveland"
picture: picture.jpg
wreilly:
name: "William Reilly"
picture: picture.jpg
wtrimble:
author-summary: "Lead Test Engineer"
name: "Wullie Trimble"
zwali:
name: "Zinat Wali"
author-summary: "<p>I am a Senior Developer at Scott Logic. I like exploring technology and have a keen interest in Big Data and Machine Learning.</p>"
picture: picture.png
cmcormack:
name: "Cian McCormack"
author-summary: "Tester, Scrum Master, Rookie Speaker, Ex-Chef, Spice Enthusiast, Collector of Rubber Ducks, Banana Loather."
twitter-handle: aCyanNinja
twitter-url: "http://www.twitter.com/aCyanNinja"
picture: picture.png
cmcknight:
name: "Chloe McKnight"
author-summary: "I am a full stack software developer based in the Edinburgh office"
picture: picture.jpg
hcarter:
name: "Heather Carter"
author-summary: "<p> Test Engineer at Scott Logic, I like to share my passion for testing. <p>"
picture: picture.png
dnicholas:
name: "Danny Nicholas"
author-summary: "<p>I am a Senior Developer at Scott Logic. I normally use Java to answer all sorts of tricky questions but have been known to occasionally dabble with JavaScript.</p>"
twitter-handle: danosworld72
twitter-url: "http://www.twitter.com/danosworld72"
picture: picture.jpg
phands:
name: "Paul Hands"
author-summary: "<p>An advocate for agile, single page web apps and React/Redux</p>"
twitter-handle: PhDHands
twitter-url: "http://www.twitter.com/PhDHands"
picture: picture.jpg
lhamilton:
name: "Louise Hamilton"
author-summary: "Business Analyst from the Scott Logic London Office "
picture: picture.jpg
cbrown:
name: "Chris Brown"
author-summary: "<p>Test Engineer for Scott Logic. Based in the Newcastle office"
picture: picture.jpg
cyule:
name: "Courtney Yule"
author-summary: "<p><a UX Designer </a></p> "
twitter-handle: CourtneyYule
twitter-url: "http://www.twitter.com/CourtneyYule"
picture: picture.jpg
imaxwell:
name: "Iain A Maxwell"
author-summary: "Senior Developer at Scott Logic. Working out of the Edinburgh office."
picture: picture.png
callan:
name: "Cameron Allan"
author-summary: "I'm an intern working on the foyer screen over summer, after which I'll be going into my fourth year of Computer Science at St Andrews."
picture: picture.jpg
masmith:
name: "Matthew Smith"
author-summary: "<p>\nI am a Developer in the Bristol Office.\n\nI joined Scott Logic in 2017 as a graduate in Computer Science from the University of Bristol.\n\nI spent two weeks making minor changes to this blog's code. You're welcome.\n</p>"
picture: picture.jpg
magnussmith:
name: "Magnus Smith"
author-summary: "<p>I'm a senior developer at Scott Logic, based in Newcastle. I've been involved with Java development for the last fifteen years and I'm keenly interested in modern JVM technologies."
twitter-handle: magnus2025
twitter-url: "http://www.twitter.com/magnus2025"
picture: picture.jpg
hashbyha:
name: "Hugh Ashby-Hayter"
author-summary: "<p>I'm a Software Developer at Scott Logic's Bristol office. Experienced in .Net with a growing interest in JavaScript and React</p>"
picture: picture.jpg
hbedford:
name: "Harry Bedford"
author-summary: "<p>I joined Scott Logic after studying Mechanical and Electrical Engineering at the University of Bath. As a software developer I enjoy overcoming challenges and expanding my knowledge to stay up to date with the latest tech.</p>"
picture: picture.jpg
bborowski:
name: "Bartosz Borowski"
author-summary: "UX Designer @ScottLogic, technology enthusiast; interested in all things web."
twitter-handle: bbo_ux
twitter-url: "http://www.twitter.com/bbo_ux"
picture: picture.jpg
jporter:
name: "James Porter"
author-summary: "Hi, I'm James. I am a software developer working on applications across web and mobile. I enjoy exploring new technologies and experimenting with agile processes to increase team performance. Outside of work you can find me hiking in the Lake District, playing board games and discussing politics with friends."
twitter-handle: null
picture: picture.jpg
fbromley:
name: "Frances Bromley"
author-summary: "<p>I'm Frances, a graduate tester working in the Scott Logic Bristol office. </p> <p>I'm immersing myself in testing at Scott Logic and in the wider South-West test community</p>"
twitter-handle: FranMayB
twitter-url: "http://www.twitter.com/FranMayB"
picture: picture.png
clee:
name: "Yui-Wah (Clement) Lee"
author-summary: "Yui-Wah (Clement) Lee, Ph.D., is a senior developer in Scott Logic. His current technical interests in the industry are Java, SQL, and data engineering, and he has a background in academic and industrial research in mobile computing. Dr. Lee is a co-inventor of four US patents and worked in Bell Labs (New Jersey, USA) and Nokia (New Jersey, USA). He taught at the Chinese University of Hong Kong in 2006-2007."
picture: picture.jpg
pkhan:
name: "Parveen Khan"
author-summary: "<p>I'm a Senior Test Engineer at Scott Logic.I'm very passionate about testing and very keen in learning new things so I can use it in my testing and deliver better quality.</p>\n\n<p>I'm always interested to share my testing lessons learned or experiences in the form of stories and I like brainstorming and bouncing ideas by having deep diving conversations.</p>\n\n<p>I have gone from being a solo test advocate to building up a team of 4 testers.I challenged myself to step out of my comfort zone and do some talks in 2019.</p>"