This repository has been archived by the owner on Mar 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
logs.txt
2019 lines (2016 loc) · 147 KB
/
logs.txt
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
Initial DataFrame:
ID\n(vlookup formula) ... Unnamed: 25
0 NaN ... NaN
1 NaN ... NaN
2 NaN ... NaN
3 NaN ... NaN
4 NaN ... NaN
.. ... ... ...
379 NaN ... NaN
380 NaN ... NaN
381 NaN ... NaN
382 NaN ... NaN
383 NaN ... https://www.linkedin.com/in/jaeltaillefer/
[384 rows x 26 columns]
Skills for Abbey Kumapayi: ['Problem solving', 'Design Implementation', 'React', 'Javascript', 'HTML', 'CSS']
Skills for Abel Sumaila: ['Javascript', 'React', 'Node.js', 'Angular', 'PHP', 'Problem solving', 'Software design']
Skills for Abhijoy Sarkar: ['Full stack software development', 'Artificial Intelligence']
Skills for Adam Woodland: ['UX Design', 'Data Analysis', 'Written and Oral Communication', 'Technical Knowledge', 'User and Customer Empathy']
Error calling OpenAI API: We could not parse the JSON body of your request. (HINT: This likely means you aren't using your HTTP library correctly. The OpenAI API expects a JSON payload, but what was sent was not valid JSON. If you have trouble figuring out how to fix this, please contact us through our help center at help.openai.com.)
Skills for Adewale Adetule: []
Skills for Adonya Ourshalimian: ['Design thinking', 'Research', 'Strategy', 'UX', 'Design', 'Product Management', 'Project Management', 'Communication', 'Workshops', 'Team Management', 'Sales / Client Partner', 'Engagement Management']
Skills for Adrian Balkwill: ['Product Design', 'UI', 'UX', 'Animation when helpful', 'Mobile', 'Web']
Skills for Afolabi Fajobi: ['Software testing', 'API testing', 'Load testing', 'Test automation', 'SQL']
Skills for Agustin Federovisky: ['Information architecture', 'UI design', 'UX design', 'User Research', 'Product Roadmap & Ideation', 'Project Management']
Skills for Airton Cabral: ['Product Design', 'UX Design', 'UI Design', 'Visual Design', 'Design Systems', 'Front-end development']
Skills for Akshatha Davasam: ['Ability to influence', 'Good communication skills', 'Strong networking ability', 'Strategic Planning', 'Data Analysis', 'Forecasting', 'Business Planning', 'User Accepting Testing', 'Postproduction support', 'Quick reaction to situations', 'High quality of work', 'Requirement Gathering', 'Analysis', 'Enterprise Implementation', 'Adaptability', 'Continuous learning', 'Analytical skills', 'Problem-solving skills', 'Organizational skills', 'Prioritization', 'Attention to detail']
Skills for Alan Van Arden: ['People Management', 'Goal Setting and Organizational goals alignment', 'Career Development', 'Mentorship and Coaching', 'Conflict resolution', 'Emotional Management', 'Facilitating, communication and coordinating cross team projects and initiatives', 'Agile software Development', 'Technical breadth of experience in (Mobile, Backend web, Desktop, Games)', 'Process and Mechanics of delivery', 'Road map and long term Planning', 'Disco Hips']
Skills for Alex Glinskiy: ['TS/JS', 'React', 'NodeJS', 'UX']
Skills for Alex Sashchuk: ['Nest.js', 'Firebase', 'Node.js', 'AWS', 'Docker', 'GraphQL', 'MongoDB', 'MySQL', 'PostgreSQL', 'Figma', 'Adobe XD', 'Apollo Client', 'Flutter', 'React Native', 'React', 'Redux', 'Storybook', 'Vue.js', 'Javascript', 'SQL', 'Typescript']
Skills for Alex Speed: ['C#', 'NodeJS', 'JS', 'Typescript', 'SQL (MSSQL, PostgreSQL, MySQL)', 'Redis', 'HAProxy', 'Nginx', 'Apache', 'IIS', 'Azure']
Error calling OpenAI API: We could not parse the JSON body of your request. (HINT: This likely means you aren't using your HTTP library correctly. The OpenAI API expects a JSON payload, but what was sent was not valid JSON. If you have trouble figuring out how to fix this, please contact us through our help center at help.openai.com.)
Skills for Alex Zapadenko: []
Skills for Alexander Baron: ['React', 'Angular', 'Vue.js', 'Typescript', 'Javascript', 'Html', 'Css']
Skills for Alexandrine Allard: ['Always curious', 'Detail oriented', 'Can leverage data from user interviews', 'Execute and document UX Research (validation and testing)', 'Discovery research', 'Execute visual UI', 'Prototyping', 'Illustrations', 'Workshop facilitation']
Skills for Aléxia Dorneles: ['frontend', 'react', 'consulting', 'angular', 'communication', 'tech leadership', 'microfrontend']
Skills for Alfredo Ramirez: ['Ruby', 'Python', 'Elixir', 'Java - a while ago', 'Postgresql', 'Linux']
Skills for Ali Tabatabaei: ['javascript', 'typescript', 'html', 'css', 'react', 'react-hooks', 'react-context', 'zustand', 'stateX', 'redux', 'vue', 'electron-js', 'emotion-js', 'styled-components', 'theme-ui', 'css-modules', 'jss', 'REST', 'TRPC', 'swagger', 'open-api', 'postman', 'graphql', 'apollo-client', 'apollo-server', 'insomnia', 'webpack', 'vite', 'npm', 'yarn', 'node.js', 'express.js', 'koa', 'sequelize', 'mysql', 'casl', 'git', 'gitlab', 'gitlab ci/cd']
Skills for Ana Bravo: ['ideation', 'userfriendly', 'designsystems', 'userflow', 'problemsolving', 'userempathy', 'leadership']
Skills for Anand Nathan: ['Leadership', 'Mentoring', 'Architecture', 'Coding', 'Research', 'Problem-Solving']
Skills for Anastasia Mizina: ['Product Planning', 'UX Design', 'UX Research', 'User Testing', 'Project Management', 'Agile Methodologies', 'HTML', 'CSS', 'Data & Usage Analysis (Google Analytics, Excel, Data Studio, Pendo)', 'Web Accessibility (WCAG)', 'Figma', 'Axure RP', 'Sketch', 'Jira']
Skills for Andre Eberhardt: ['People management', 'Stakeholder management', 'Engineering', 'Programming', 'Backend development']
Skills for Andre Garcia: ['HTML', 'CSS', 'JavaScript', 'TypeScript', 'React', 'Node.js', 'Redux']
Skills for Andre Goncalves: ['Product Manager', 'Business Analyst', 'Software Development', 'PHP', 'Laravel', 'JavaScript', 'Linux']
Skills for Andrea Pigato: ['Ruby', 'Node.js', 'Javascript']
Skills for Andres Palavicini: ['Communication', 'Planning', 'Strategy', 'Creativity', 'Marketing']
Skills for Andres Scaramelli: ['.NET', 'AWS', 'C#', 'JavaScript', 'React']
Skills for Andres Schiller: ['Javascript', 'Typescript', 'Node', 'HTML', 'CSS', 'CSS Postprocessors', '.Net (C#)', 'Go', 'AWS', 'Azure', 'SQL', 'NoSQL (DynamoDB, CosmosDB)', 'Frontend Frameworks (React, Vue, Angular)']
Skills for Andrew Atiya: ['Client engagement', 'Program management', 'Product management', 'Software delivery', 'Team leadership', 'Process definition and development', 'Service design', 'Contract negotiation', 'API architecture', 'Business planning/use case planning', 'Technical requirements analysis']
Skills for Andrew Croce: ['Discovery', 'User research', 'Usability testing', 'Design workshops', 'Information architecture', 'User experience design', 'User interface design', 'Graphic design', 'Accessibility']
Skills for Andrew Feltoe: ['Product leadership', 'Stakeholder management', 'Strategic planning', 'User research', 'Data analysis', 'Business case development', 'Full end-to-end product development', 'Roadmapping']
Skills for Andrew Filatov: ['CI/CD', 'Automation', 'Low level infrastructure', 'Cloud', 'Pearl', 'Python', 'Go - DevOps']
Skills for Andrew Morales: ['Manual testing', 'Automation testing (Cypress, Selenium (Nodejs))', 'FrontEnd testing', 'BackEnd testing', 'Desktop testing', 'Mobile testing']
Skills for Andrii Hembar: ['Test Automation', 'Python', 'Java', 'Typescript', 'CircleCi', 'Manual Testing', 'Pytest', 'Appium', 'Cypress', 'SQL']
Error calling OpenAI API: We could not parse the JSON body of your request. (HINT: This likely means you aren't using your HTTP library correctly. The OpenAI API expects a JSON payload, but what was sent was not valid JSON. If you have trouble figuring out how to fix this, please contact us through our help center at help.openai.com.)
Skills for Andriy Kudriavtsev: []
Skills for Andy Khorshid: ['Sales', 'Sales Processes', 'Revenue Operations']
Skills for Andy Skogrand: ['Frontend Development', 'React', 'Graphql', 'Headless CMS']
Skills for Andy Zhang: ['Programming', 'Public Speaking', 'Presentations']
Error calling OpenAI API: We could not parse the JSON body of your request. (HINT: This likely means you aren't using your HTTP library correctly. The OpenAI API expects a JSON payload, but what was sent was not valid JSON. If you have trouble figuring out how to fix this, please contact us through our help center at help.openai.com.)
Skills for Anika Ledlow: []
Error calling OpenAI API: We could not parse the JSON body of your request. (HINT: This likely means you aren't using your HTTP library correctly. The OpenAI API expects a JSON payload, but what was sent was not valid JSON. If you have trouble figuring out how to fix this, please contact us through our help center at help.openai.com.)
Skills for Aniruth Sarathy: []
Skills for Anna Smykova: ['JS', 'TS', 'NodeJS', 'React', 'Express', 'Koa', 'HTML', 'CSS', 'PostgreSQL', 'MSSQL', 'MySQL', 'MongoDB', 'GraphQL']
Skills for Anto Rojas: ['Proactive', 'Leadership', 'Outspoken', 'Organize', 'Collaborative']
Skills for Armando González: ['Java', 'SpringBoot', 'JPA', '.Net Core']
Skills for Austin Winstanley: ['C#', 'Java', 'PHP', 'Wordpress', 'Drupal', 'Magento', 'Ruby on Rails', 'Some Python']
Skills for Ayobami Akingbade: ['Javascript', 'Typescript', 'React']
Skills for Ayomide Bakare: ['React', 'Python', 'Angular', 'Deno', 'Node']
Skills for Babs Olufowobi: ['C#', 'ASP NET', 'SQL', 'NOSQL']
Skills for Bal Sieber: ['Creative Direction', 'Well rounded - motion', 'UX/UI - team building']
Skills for Bartosz Juja: ['csharp', 'dotnet', 'azure', 'kubernetes', 'sql', 'techlead', 'softwarearchitecture']
Skills for Ben Jurow: ['Executive-level management', 'Leadership', 'Communication', 'IT', 'Cybersecurity', 'IoT', 'Automation']
Skills for Benjamin Cerezo: ['Entrepreneurship', 'Leadership', 'Design Thinking', 'User Experience Design', 'User Interface Design', 'Qualitative User Research', 'Graphic Design', 'Digital Product Strategy', 'Systems Thinking', 'Start-ups', 'Management', 'Business Development', 'Complex Selling', 'Negotiation', 'Non-Violent Communication (NVC)']
Skills for Benjamin Novack: ['Java', 'Python', 'SQL', 'Process and workflow analysis', 'design & iteration', 'risk management', 'product management']
Error calling OpenAI API: Request timed out: HTTPSConnectionPool(host='api.openai.com', port=443): Read timed out. (read timeout=600)
Skills for Bilal Khan: []
Skills for Bill Roeske: ['Software Architecture', 'Optimization', 'Communication']
Error calling OpenAI API: We could not parse the JSON body of your request. (HINT: This likely means you aren't using your HTTP library correctly. The OpenAI API expects a JSON payload, but what was sent was not valid JSON. If you have trouble figuring out how to fix this, please contact us through our help center at help.openai.com.)
Skills for Bob Oghumah: []
Skills for Brad Pitcher: ['Python', 'Javascript', 'Ruby', 'PHP', 'Postgresql', 'Linux', 'AWS']
Skills for Brad Price: ['Critical thinker', 'Confident Leader', 'Clear communicator', 'Project management', 'Agile', 'Technical knowledge (in relation to being a PM)']
Skills for Brandon Dove: ['Product Management', 'Program Management', 'Account Management', 'Client Relations', 'Product Strategy', 'Cross-functional Team Leadership', 'Stakeholder Management', 'Agile Software Development', 'Consultative Sales', 'Solution Design', 'Communication']
Skills for Brandon Holm: ['Troubleshooting', 'REST APIs', 'Python', 'Bash', 'Java']
Skills for Brian Lanham: ['Facilitation', 'Presentation', 'Event-driven microservices architectures', 'REST API pedant', 'Strategic technology planning', 'Business process modeling', 'SDLC adoption', 'Business-technology alignment']
Skills for Brian Pruitt-Goddard: ['.NET', 'Mobile (Android)']
Skills for Bruno de Souza: ['.NET / C#', 'Javascript / CSS', 'Responsive Web Design', 'Ionic Framework', 'Apache Cordova']
Skills for Bruno Mattos: ['C#', '.NET Core', 'Javascript', 'Typescript', 'Angular', 'AWS', 'Cloud', 'Git', 'SQL', 'API Design', 'Serverless Architecture', 'Agile Methodologies', 'Product Management', 'Jira Administration', 'Data Structures and Algorithms']
Skills for Camila Gimenez: ['facilitation', 'coaching', 'mentoring', 'agile', 'scrum', 'lean', 'training', 'agile development practices']
Skills for Carleton Atwater: ['Backend Engineering', 'Data Warehousing', 'ETL', 'Mentoring', 'Technical writing', 'Backlog management', 'API design']
Skills for Carlos Ramirez: ['Bug Tracking', 'Automation', 'Analytical problem solving', 'Attention to detail', 'Test documentation', 'Test management', 'Testing techniques']
Skills for Carlos Zuniga: ['Black box testing', 'JS', 'Cypress', 'Postman', 'API Testing']
Error calling OpenAI API: We could not parse the JSON body of your request. (HINT: This likely means you aren't using your HTTP library correctly. The OpenAI API expects a JSON payload, but what was sent was not valid JSON. If you have trouble figuring out how to fix this, please contact us through our help center at help.openai.com.)
Skills for Carolina Gonzalez: []
Skills for Caue Carvalho: ['.Net', 'Troubleshooting', 'Team Engagement', 'SQL Server', 'Clean Code']
Skills for Charlie Gallagher: ['Sales', 'Growth', 'Negotiation', 'Relationship building', 'Operations', 'Sales Methodologies', 'Marketing']
Skills for Charmaine Zarraga: ['Inbox Management', 'Calendar Management', 'Lead Generation', 'Growth Hacking']
Skills for Chergio Tjon-Kwie-Sem: ['Strategic Execution', 'OKR', 'QBR', 'Obeya', 'Operational & Technical Excellence', 'Agile', 'SCRUM', 'KANBAN', 'Spotify', 'LESS', 'SAFe', 'People Analytics & Talent Management 3.0', 'Culture & Emotional Intelligence', 'Executive Coaching & Elite-Performance', 'DevOps', 'DevSecOps', 'AI & ML', 'IoT', 'Change Frameworks OD', 'OCM', 'ADKAR']
Skills for Chris Knific: ['Design', 'Front-end development']
Skills for Chris Knific: ['Design', 'Front-end development']
Error calling OpenAI API: We could not parse the JSON body of your request. (HINT: This likely means you aren't using your HTTP library correctly. The OpenAI API expects a JSON payload, but what was sent was not valid JSON. If you have trouble figuring out how to fix this, please contact us through our help center at help.openai.com.)
Skills for Chris Urie: []
Skills for Christopher Gidley: ['Requirements elicitation', 'Technical Diagramming', 'Software Deployment', 'Cultural Enrichment/Design', 'Documentation', 'Relational Databases', 'Computer Systems Administration', 'Open Authentication/Authorization', 'Vendor Integration']
Skills for Christopher Gray: ['Product Management', 'Project Management', 'Strategy', 'Copywriting']
Error calling OpenAI API: We could not parse the JSON body of your request. (HINT: This likely means you aren't using your HTTP library correctly. The OpenAI API expects a JSON payload, but what was sent was not valid JSON. If you have trouble figuring out how to fix this, please contact us through our help center at help.openai.com.)
Skills for Christopher Hart: []
Skills for Christos Dimitroulas: ['Typescript', 'Javascript', 'Node.js', 'React.js', 'MongoDB', 'Docker', 'AWS', 'Functional programming', 'Test driven development']
Skills for Cliff Simms: ['Management', 'Technical Writing', 'Single Source Authoring tools (Madcap, RoboHelp)', 'understanding basic HTML', 'Photography']
Skills for Damian Wynter: ['Backend Development', 'Frontend Development', 'Node Js', 'React JS', 'MongoDb']
Skills for Damon Davison: ['Ruby', 'Python', 'Elixir', 'JavaScript', 'Bash', 'Perl', 'PHP', 'Rails', 'sidekiq', 'sinatra', 'Active Record', 'sequel', 'Arel', 'RSpec', 'minitest', 'Django', 'Django Admin', 'graphene', 'nameko', 'SQLAlchemy', 'pytest', 'vue', 'typescript', 'yarn', 'npm', 'jQuery', 'react', 'mocha', 'jasmine', 'jest', 'ETL', 'SQL', 'postgresql', 'mysql', 'neo4j', 'GraphQL', 'redis', 'memcached', 'elasticsearch', 'solr', 'Looker', 'docker', 'AWS (HIPAA-compliant, including Lambda)', 'Azure (including Functions)', 'terraform', 'SOLID', 'BDD', 'TDD', 'parameterized testing', 'CI/CD', 'REST', 'event sourcing', 'microservices', 'networking', 'JSONAPI', 'RPC', 'JSONRPC', 'SRE', 'Datadog', 'New Relic', 'Sentry']
Skills for Daniel Bean: ['Agile transformation and maintenance', 'facilitation', 'coaching']
Skills for Daniel Mata: ['React', 'React Native', 'Graphql', 'node', 'javascript']
Skills for Daniel Onoriukpe: ['React', 'Typescript', 'Javascript', 'CSS', 'Sass', 'HTML5']
Skills for Daniel Pasos: ['Selenium', 'Python', 'Pytest', 'JavaScript', 'Java', 'API testing', 'Cypress', 'Webdriver', 'SQL']
Skills for Danielle Scheible: ['communication', 'relationship building', 'L&D', 'facilitation', 'training']
Skills for Danielle Tropiano: ['Detail-oriented', 'Organization', 'Critical thinking', 'Adaptability', 'Time management', 'Collaboration', 'Coordination']
Skills for Dariush Rezayat: ['Agile and Waterfall SDLC', 'Analysis , Functional Decomposition and breakdown', 'Agile Estimation , planning , grooming and backlog management', 'Product Ownership and Management', 'Managing Product Roadmap', 'Visualization and Modelling techniques', 'Technical and integration analysis', 'Programming Languages : GoLang , java , C#', 'Cloud Deployment Technologies', 'Web Securities', 'API Design', 'Shell Scripting', 'DevOps']
Skills for David Atchley: ['Node', 'Javascript', 'CSS', 'React', 'API Development', 'SQL', 'NoSQL Databases', 'Figma', 'Photoshop', 'Design Systems', 'Style Guides', 'Design Sprints', 'Interaction Design', 'User Experience Design', 'User Research']
Skills for David Glidden: ['Organization', 'Process', 'Scrum Master', 'Interest in Predictive Algorithms', 'Bringing order to chaos']
Skills for David Oganov: ['c#', '.net', 'architecture', 'design', 'refactoring', 'nosql', 'wpf', 'design-patterns', 'oop', 'ef-core', 'leadership', 'ownership', 'teamwork', 'communication']
Skills for Dawid Spamer: ['Problem solving', 'Critical thinking', 'Leadership', 'Communication', 'Collaboration', 'Product Design', 'Product Development']
Skills for Debo Otulana: ['Test Design and Planning', 'Manual Testing', 'Automated Testing', 'Quality Advocacy']
Skills for Deepak Yadav: ['Product Management', 'Project Management', 'Data Analysis', 'Design', 'Prototyping', 'Attention to details', 'Organization', 'Communication']
Skills for Denise Joyce: ['System Specifications Documents (SSD)', 'Diagramming and simplifying complex processes', 'Optimizing Workflows', 'Requirements Elicitation', 'User-Centric Design', 'Backlog Grooming', 'Creating User Stories & Epics', 'Defining Acceptance Criteria', 'Gap Analysis', 'JIRA', 'Actionable Agile', 'Version One', 'Visio', 'LucidChart', 'MS Office', 'MS SQL Server', 'some Oracle & Oracle forms', 'SQL', 'Javascript', 'JSON & XML', 'APIs', 'SDLC (Software Development Life Cycle)', 'familiar with various programming languages', 'Troubleshooting software', 'QA testing (manual, not w/QA automation software)']
Skills for Dennis Rakin: ['javascript', 'node', 'automationtesting', 'apitesting', 'qualityassurance', 'agileprinciples']
Skills for Derik Ramirez: ['Linux', 'AWS', 'shell scripting', 'Kubernetes', 'Software Development']
Error calling OpenAI API: Request timed out: HTTPSConnectionPool(host='api.openai.com', port=443): Read timed out. (read timeout=600)
Skills for Devin Sackett: []
Skills for Dianna Lee: ['product roadmapping', 'requirements gathering', 'documentation writing', 'user acceptance testing', 'project scoping', 'feature rollout', 'cross functional leadership', 'project management', 'release management', 'collaborating with engineering teams', 'working with client teams', 'Agile methodologies', 'Scrum roles - scrum master and product owner', 'Wireframing', 'Proficiency in tools: JIRA, AHA, Roadmunk, Adobe XD, Miro, Figma, Github', 'Novice developer in Javascript, CSS, HTML', 'Business development/account management', 'video production', 'video editing']
Skills for Diego Caliri Picon: ['Ruby', 'Rails', 'PostgreSQL', 'MySQL', 'Javascript', 'JIRA']
Skills for Diego Fernandez: ['Mobile Testing', 'Web Testing', 'API testing', 'Design, review and implementation of test cases', 'Design, review and implementation of test plans', 'Selenium', 'Appium', 'WebDriverIO', 'PyTest', 'BDD (Gherkin language)', 'Agile', 'CI/CD']
Skills for Diego Salazar: ['AWS', 'Docker', 'Terraform', 'Javascript', 'Angular', 'NodeJS', 'WebSockets', 'RESTful APIs', 'HTML5', 'CSS3', 'Sass', 'RxJs', 'NgRx', 'MongoDB', 'Spring Boot', 'Spring Cloud', 'Gradle']
Error calling OpenAI API: We could not parse the JSON body of your request. (HINT: This likely means you aren't using your HTTP library correctly. The OpenAI API expects a JSON payload, but what was sent was not valid JSON. If you have trouble figuring out how to fix this, please contact us through our help center at help.openai.com.)
Skills for Diego Santos: []
Skills for Diegui Cardona: ['User research', 'User Experience Design', 'User interface Design', 'User testing', 'UX Writing']
Skills for Dmitriy Koval: ['product management', 'product strategy', 'product growth', 'product monetization']
Skills for Dmytro Pilvinskyi: ['qa', 'development', 'project management', 'test automation', 'front-end', 'react']
Skills for Douglas Moura: ['MySQL', 'Redis', 'Rescue', 'Sidekiq', 'PostgreSQL', 'Ruby on Rails', 'HTML', 'CSS', 'Javascript', 'Jquery', 'PHP', 'Rspec', 'Project Management', 'Strategic Planning']
Skills for Ed Glogowski: ['Visual Studio/Code', 'Agile and Scrum', 'Rally', 'Jira', 'Confluence', 'Leadership', 'Creative', 'UI/UX', 'Software Design', '.NET', 'C#', 'Mobile', 'Azure', 'HTML/JavaScript/CSS', 'Git/GitHub', 'SQL', 'Microsoft Office', 'Code Reviews']
Skills for Eder Coronado: ['Team-player', 'Proactive', 'Feedback-seeker', 'Test automation', 'API testing', 'UI testing', 'Performance testing', 'Java', 'Javascript']
Error calling OpenAI API: We could not parse the JSON body of your request. (HINT: This likely means you aren't using your HTTP library correctly. The OpenAI API expects a JSON payload, but what was sent was not valid JSON. If you have trouble figuring out how to fix this, please contact us through our help center at help.openai.com.)
Skills for Eduardo García Juliá: []
Skills for Eduardo Rojas Campos: ['Proactive', 'Self learning', 'Team working', 'Issues solver']
Skills for Ehsan Farasat: ['Java', 'Javascript', 'Kotlin', 'Matlab', 'Python', 'SQL', 'Typescript', 'Angular', 'Ansible', 'Apache Kafka', 'Docker', 'Jenkins', 'Kubernetes', 'Cassandra', 'Elasticsearch', 'MongoDB', 'MSSQL', 'MySQL', 'Redis', 'Sybase']
Skills for Elbert Bae: ['React', 'Redux', 'React-Query', 'GraphQL', 'NodeJS', 'Typescript', 'C#', 'API Development', 'SQL', 'MongoDB', 'DynamoDB', 'AWS', 'Terraform']
Skills for Elbes Percinotto: ['C#', 'Dotnet Core', 'Software Architecture', 'SQL (SQL Server, PostgreSQL, MySQL)', 'Event-Driven Design', 'Domain-Driven Design', 'Test-Driven Development', 'ReactJS', 'VueJS', 'Angular', 'TypeScript', 'JavaScript', 'RabbitMQ', 'MongoDB', 'Kafka', 'Azure Service-Bus', 'EventStoreDB', 'Microsoft Orleans', 'NodeJS']
Skills for Elbes Percinotto: ['Dotnet', 'C#', 'SQL', 'MongoDB', 'RabbitMQ', 'Kafka', 'Kubernetes', 'CI/CD', 'React']
Skills for Elisa Sawyer: ['Writing', 'Scripting (Code)', 'Scripting (Video)']
Skills for Ellias Palcu: ['software architecture', 'system architecture', 'solutions architecture', 'system thinking', 'lead engineering', 'full-stack software engineering', 'debugging', 'OOP', 'MVC', 'parallel programming', 'version control', 'automation', 'data structures', 'algorithms']
Skills for Emilio Duarte: ['Problem-Solving', 'Collaboration', 'Programming (Java, C#, Javascript/Typescript)', 'Manual QA', 'UI Automation', 'API Automation', 'Mobile Automation']
Skills for Emily Woo: ['User research', 'Wireframes', 'Low and High fidelity design', 'rapid prototyping', 'usability testing', 'design sprint', 'design system', 'workshop facilitation', 'service design']
Skills for Erik Schmidt: ['Building teams', 'Leadership', 'Market research', 'Product research', 'User research', 'User testing labs']
Skills for Erin Yamaoka: ['Business Analysis', 'Agile approach', 'Product Management', 'Salesforce']
Skills for Erin Yamaoka: ['Agile', 'JIRA', 'Salesforce']
Skills for Ese Mudiaga: ['Programming', 'Software Design']
Skills for Estie Saunders: ['Analysis (Requirements)', 'Analysis (Data)', 'Requirements Gathering', 'Communication', 'Critical Thinking', 'Data Visualization']
Skills for Eugene Howe: ['Ruby', 'Systems Administrations', 'Database', 'Windows Services Administration', 'Linux Systems Administration', 'AWS']
Skills for Evon Binns: ['Thematic Analysis', 'Remote Unmoderated Interviews', 'Qualitative Research Methods', 'Competitive Analysis', 'Task Analysis', 'Empathy Mapping', 'Requirement Development', 'Change Management', 'Feature Development', 'Information Architecture', 'System Architecture', 'Wire-framing', 'Heuristic Evaluation', 'Interaction Design', 'Visual Design', 'Product Development', 'Presentation', 'Remote Usability Testing', 'Observation Studies', 'Design Reviews']
Skills for Ezequiel Becerra: ['SWIFT', 'iOS', 'Ruby - learning', 'Rust - learning', 'likes UI/UX', 'Wants to learn react']
Skills for Fabien Beaulieu: ['NodeJS', 'MongoDB', 'Typescript', 'React', 'ReactNative', 'dotNetCore.C#']
Skills for Fabio Stein: ['C#/.NET Core', 'Docker', 'Kubernetes', 'AWS', 'Linux', 'DevOps', 'Dapper', 'JavaScript/Typescript', 'SQL']
Skills for Facundo Victor: ['Self-organized', 'Documenter', 'Teacher', 'Learner', 'Devops', 'SRE', 'Software Engineer', 'Backend Engineer', 'Frontend Engineer', 'Developer', 'System Administrator', 'Network Administrator', 'Database Administrator', 'Operating and distributed systems', 'Algorithms', 'Compilers', 'Linux', 'Networking', 'Kubernetes', 'k8s', 'Containers', 'Docker', 'Git', 'C', 'Python', 'NodeJS', 'Java', 'PHP', 'Bash', 'AWS', 'Rightscale']
Skills for Federico Saravia: ['Leadership', 'Backend engineering', 'Consulting']
Skills for Felipe Alves Oliveira: ['Python', 'Java', 'Selenium', 'Agile']
Skills for Felipe Reis: ['.Net', 'C#', 'JavaScript', 'TypeScript', 'Angular', 'React', 'SQL', 'Azure']
Skills for Fernando Paulovsky: ['Software Engineering', 'Web Development', 'Mobile Development', 'C#', 'SQL Server (and DB engines in general)', 'Javascript', 'Objective-C']
Skills for Fiorella Leon-Gomez: ['detailoriented', 'problemsolving', 'teamwork', 'organization', 'webprogramming', 'communication', 'dynamicallytypedlanguages', 'objectorientedprogramming', 'amazonwebservicesknowledge', 'backenddevelopment']
Skills for Francis Alexander: ['Recruiting', 'Recruitment strategy', 'market mapping', 'market analysis']
Skills for Francisco Mac Courtney Illanes: ['angular', 'reactjs', 'node', 'dotnet', 'sqlserver', 'oracle', 'azure', 'aws']
Skills for Fred Drake: ['Management', 'Coaching', 'Mentorship', 'Software engineering', 'Project management']
Skills for Gabriel Coelho: ['UI design', 'Product Strategy', 'UX Design', 'Design System', 'Design Process', 'Front-end (some knowledge)', 'Build teams', 'Manage/teach people']
Skills for Gabriel Faleiro: ['Python', 'Scala', 'Spark', 'DDD']
Skills for Gabriel Goethe: ['React', 'Angular', 'Bootstrap', 'Gatsby', 'SASS', 'Jest']
Skills for Gaston Real: ['Software Architecture', 'Project Management', 'Project Strategy', 'Process improvement', 'Agile methodologies', 'Team building']
Skills for Geoffrey Russell: ['C#', 'VB.NET', '.NET Framework', '.NET Core', 'Entity Framework', 'SQL', 'Stored Procedures', 'SQL Server', 'Oracle', 'MySQL', 'React', 'AngularJS', 'TypeScript', 'JavaScript', 'Sass', 'JSS', 'TFS', 'Git', 'Node', 'NPM', 'Docker', 'Azure', 'Redis', 'WCF', 'REST', 'C++', 'PHP']
Skills for Geovanna Gianoli: ['.NET', 'C#', 'MS Azure', 'SQL', 'OOP', 'ASP.NET WEB Api', 'Unit Testing', 'EF Core']
Skills for Gheorghe Gherciu: ['JavaScript', 'React', 'NodeJS', 'GraphQL', 'TypeScript']
Skills for Guillermo Aszyn: ['Frontend', 'Leadership', 'Communication', 'Testing Driven Development', 'Experimentation Driven Development']
Skills for Gustavo Kich: ['React', 'Figma', 'HTML/CSS']
Skills for Haim Gelfenbeyn: ['Ruby', 'Rails', 'Python', 'Windows UI', 'Rust', 'SQL', 'DevOps - some system admin']
Skills for Halley Rios: ['HTML', 'CSS', 'Javascript', 'React', 'Next', 'Angular']
Skills for Het patel: ['Suitescript', 'Javascript', 'HTML', 'JAVA', 'C#', 'Python']
Error calling OpenAI API: We could not parse the JSON body of your request. (HINT: This likely means you aren't using your HTTP library correctly. The OpenAI API expects a JSON payload, but what was sent was not valid JSON. If you have trouble figuring out how to fix this, please contact us through our help center at help.openai.com.)
Skills for Hicham El Maataoui: []
Skills for Ian Cruz: ['Leadership', 'Agile methodologies', 'Cloud architecture', 'Team empowerment', 'Career coaching', 'Leadership formation']
Skills for Ignacio Gomez: ['Go', 'Java', 'Ruby with/without Rails', 'Python', 'C#', 'C', 'Javascript', 'React', 'React Native - Mobile', 'JQuery', 'Postgress', 'SQL', 'SQL Service']
Skills for Igor Sodré: ['Good communicator', 'Fast learner', 'Skilled in multiple programming languages and technologies']
Skills for Ileana Barreiro: ['agileandlean', 'agilecoaching', 'agilementoring', 'facilitation', 'agiletraining', 'agiletransformation', 'changemanagement', 'conflictresolution', 'teamcoaching', 'agileleadership']
Error calling OpenAI API: We could not parse the JSON body of your request. (HINT: This likely means you aren't using your HTTP library correctly. The OpenAI API expects a JSON payload, but what was sent was not valid JSON. If you have trouble figuring out how to fix this, please contact us through our help center at help.openai.com.)
Skills for Iman Almidani: []
Skills for Ivan Solovyev: ['OOP', 'TDD', 'DDD', 'JAVA', 'SQL', 'Agile methodologies', 'Team leadership', 'Business communications']
Skills for Ivan Wong: ['Agile Product Management', 'Project Delivery', 'Project Management', 'Requirements Gathering', 'PowerPoint', 'Excel']
Skills for James Whetstone: ['Java', 'C', 'C++']
Skills for Jarrett Vance: ['Full stack', 'Cloud architecture']
Skills for Jason Anthony: ['Engagement', 'Solution Engineer', 'Implementations', 'Customer Relationship Management Systems (CRM)', 'Product Manager', 'Project Manager', 'Sales Enablement', 'Contact Center as a Service (CCaaS) Solutions', 'Customer Experience', 'User Experience', 'Agent Experience']
Error calling OpenAI API: We could not parse the JSON body of your request. (HINT: This likely means you aren't using your HTTP library correctly. The OpenAI API expects a JSON payload, but what was sent was not valid JSON. If you have trouble figuring out how to fix this, please contact us through our help center at help.openai.com.)
Skills for Jason Spitkoski: []
Error calling OpenAI API: We could not parse the JSON body of your request. (HINT: This likely means you aren't using your HTTP library correctly. The OpenAI API expects a JSON payload, but what was sent was not valid JSON. If you have trouble figuring out how to fix this, please contact us through our help center at help.openai.com.)
Skills for Jason Spitkoski: []
Skills for Jeff Peltzman: ['UX', 'UI', 'Visual Design', 'Design Systems', 'Typography', 'Style Guide', 'Copyediting']
Skills for Jesse Torgbe-Cofie: ['HTML', 'CSS', 'JavaScript', 'React']
Skills for Jessica Hay: ['Agile', 'Lean']
Skills for Jimmy Pruitt: ['CSS', 'Javascript', 'Typescript', 'SQL', 'React', 'HTML', 'AWS']
Skills for joaquin ferroni: ['C#', 'Dotnet', 'Azure', 'Redis', 'RabbitMq', 'Angular', 'Javascript', 'SQL Server']
Skills for Joe Devon: ['Leadership', 'Brevity']
Skills for Joe laCroix: ['Team Management', 'Software Architecture', 'Design']
Skills for Joe McIlvain: ['Backend development', 'DevOps', 'SRE']
Skills for Joey Parks: ['App Design', 'Progressive Web Apps', 'Client Communication', 'Accessibility']
Skills for Johana Mburu: ['CI/CD and test-driven development using Jest, Github Actions and Kubernetes', 'Agile project management methodologies', 'Creation of highly configurable Micro services for Enterprise application development using NodeJs', 'Front end tooling using the MEAN, MERN, MEVN and LAMP Stacks: Mongo Db, Express, Angular, ReactJs, SvelteJs, VueJs, NodeJs and PHP (Laravel)', 'Cross-platform Native mobile application development with React Native', 'Software development automation for USSD applications', 'SQL and NoSQL database design, normalization, clustering, load balancing, deployment and maintenance', 'Software version control and semantic version releases using Git and Subversion', 'API design and System Integration using sockets, REST, SOAP and GraphQl and Robots', 'Creation of high quality, secure and highly performant code that aces Kiuwan quality assurance metrics', 'UI/UX Design - Highly Proficient in Figma and Photoshop for Mockups and Photo Manipulation']
Skills for Johana Patricia Herrera Quintanilla: ['Quality Assurance', 'Automation Testing', 'Manual Testing', 'Test Planning']
Skills for John Green: ['Product Management', 'Project Management', 'SQL', 'QA', 'Jira']
Skills for John Ruiz Fallas: ['Selenium', 'Specflow', 'Cypress', 'C#', 'JavaScript', 'Azure DevOps', 'JMeter', 'API Testing', 'Postman', 'Page Object Model', 'Programming Patterns']
Skills for Jon Price: ['Product Management', 'Value Propositions', 'User-Driven Needs Analysis', 'Strategic Decision-Making', 'Feature Prioritization', 'Adaptive Communication', 'Market and Competitive Research', 'Usability and User Acceptance Testing']
Skills for Jonas Alberton: ['React', 'Typescript', 'Javascript', 'Nodejs', 'Express', 'Restfull', 'Graphql', 'CSS', 'HTML', 'Angular 2+', 'Svelte', 'Stencil', 'Mongodb', 'Postgres']
Skills for Jonas Melo: ['.NET', 'C#', 'WPF', 'SQL databases', 'React', 'Angular', 'Vue', 'Full-stack development', 'Backend development', 'Frontend development']
Skills for Jonathan Fernandez: ['Project management', 'Problem solving', 'Analytical thinking', 'Attention to details', 'Team work', 'Decision making']
Skills for Jonathan Irwin: ['Strategy', 'Facilitation', 'Program Management', 'Transformation']
Skills for Jordan Armstrong: ['Java', 'Python', 'Team Leadership', 'Spring-Boot', 'REST', 'SQL', 'Kafka', 'Angular', 'Typescript']
Skills for José Sánchez: ['frontend-development', 'communication', 'mentoring', 'testing', 'self-learning']
Skills for Josh Kaplan: ['Innovation', 'Product strategy', 'Rapid prototyping', 'Agile execution']
Skills for Joshua Enyi-Christopher: ['React', 'HTML', 'TS', 'JS']
Skills for Joshua Hollenbeck: ['React', 'Ruby', 'C#', 'Electronics', 'Client Libraries - Hardware', 'Fast learner', 'Game Development', 'Crystal', 'Javascript', 'node.js', 'Markup languages', 'C', 'C++', 'ObjectiveC', 'Rust', 'GO', 'SWIFT', 'Flash', 'Actionscript', 'Java']
Skills for Joshua Seyda: ['Organization', 'Project Management', 'User Story Development', 'Wireframing', 'Web Development', 'Agile Ceremonies', 'Leadership']
Skills for JP Ivey: ['High-level Engineering', 'Problem Solving', 'Big Data', 'Machine Learning']
Skills for Juan Cruz Nicola: ['Good interpersonal skills', 'Quality Standard', 'Regression Testing', 'API Testing', 'Process Improvement', 'Automation', 'Documenting', 'Bug Reporting']
Skills for Juan Diego Araya: ['Javascript (Node, React, Angular, etc.)', 'HTML', 'CSS', 'C# (ASP.NET, ASP.NET Core, etc.)', 'Finances and management (MSc. Intl. Business and Management)']
Skills for Juan Piedra: ['Docker', 'Automation', 'Cloud', 'Kubernetes', 'Testing']
Skills for Juan Valenzuela: ['Javascript', 'Node.js', 'Microservices', 'Vue.js', 'AWS', 'Microfrontends', 'C#', 'WPF', 'ASP.NET']
Skills for Julio Forero: ['Programming', 'Software Testing', 'Agile Methodology', 'Requirements Analysis', 'Software Design', 'Database Design', 'Version Control', 'Debugging', 'Deployment', 'Documentation', 'Team Collaboration']
Skills for Justin Kear: ['Architecture', 'Project Management', 'Product Management', 'Ed Tech', 'Government Contracting', 'Wire-framing', 'Mockups', 'Invision', 'Figma', 'Sketch', 'UX Flows', 'Requirement Specs', 'Business Analysis', 'Business process', 'Business Requirements']
Skills for Kandace O'Brien: ['Leadership', 'Communication', 'Relationship Building']
Skills for Karel Tamayo: ['.NET (core and framework)', 'C#', 'ASP.NET', 'WCF', 'WPF', 'WinForms', '.NET Core', 'REST APIs', 'Micro-services', 'Containers (docker)', 'Azure', 'Python', 'React js', 'Angular', 'Razor Pages', 'AspNet MVC', 'Html5', 'CSS', 'Javascript', 'Typescript']
Skills for Kate Capper: ['Detail-oriented', 'Team building', 'Problem solving', 'Agile', 'Requirements gathering']
Skills for Katie Venezia: ['Client Management', 'Delivery Management', 'Project Management', 'Risk Assessment', 'Project Planning']
Skills for Kaushik Gummaraju: ['Azure', '.NET']
Skills for Kelechi Nwosu: ['Javascript', 'React', 'Typescript', 'CSS', 'Graphql', 'SQL', 'Architecture']
Skills for Kellie Tyler: ['Coaching', 'Scrum', 'Agile', 'Software']
Skills for Kemron Glasgow: ['React', 'NodeJS', 'Golang', 'Docker', 'Microservices', 'Domain Driven Design']
Skills for Ken Li: ['growth strategy', 'user engagement', 'metrics driven product management', 'data-driven prioritization and decision making', 'UX research', 'customer interviews', 'wireframe prototyping, UAT, beta testing', 'business model creation and validation', 'pricing strategies', 'marketing and graphic design', 'Photoshop/Illustrator', 'Proto.io, CSS/HTML', 'Facebook Ads', 'user experience design', 'design thinking', 'Google Analytics', 'deep understanding of product life cycle', 'managing and working with stakeholders at all levels and departments', 'risk & mitigation strategies', 'release management', 'localization management', 'SOW', 'agile / scrum / sprint planning', 'cross-functional teams engagement and planning', 'beta program management', 'hiring/mentorship']
Skills for Kenneth Cascante: ['Communication', 'Problem Solving', 'Facilitation', 'Agile Coaching', 'Agile at Scale (SAFE SPC)']
Skills for Kenneth Ramírez Sánchez: ['QA', 'Test Automation', 'JavaScript', 'Typescript', 'API', 'coaching', 'supportiveness']
Skills for Kepin Lu: ['Program Management', 'Product Management', 'Business Analysis', 'Technical Analysis', 'System Analysis', 'Solution Design', 'Client Management', 'Sales', 'Proposals', 'SOWs', 'Data Migration', 'Platform Migration']
Skills for Kevin Bunce: ['Basic SQL', 'Reading JSON', 'CSS', 'Conceptual Writing', 'Technical Writing', 'Concise', 'Precise', 'Communication', 'Discovery', 'Analysis', 'Front-end design', 'In-depth analysis']
Skills for Khadijah Brown: ['Automation Testing', 'Front-end Development']
Skills for Kihoon Han: ['Google Analytics', 'Google Tag Manager', 'Adobe Experience Manager', 'Power BI', 'Google Data Studio', 'Big Query / SQL', 'Tealium (CDP Software)', 'Blue Prism (Automation Software)', 'SEO', 'Agile Methodologies', 'Microsoft Suite', 'ERP Systems', 'Financial Services', 'Product Management', 'Product Strategy', 'Digital Transformation']
Skills for Kristin Peterson: ['APIs', 'Web technologies', 'Infrastructure tooling', 'Data storage', 'Client relations', 'Empathy', 'Problem-solving']
Skills for Laura Kallfelz: ['product management', 'project management', 'engineering', 'agile', 'scrum master', 'ecommerce (shopify)', 'consulting / coaching', 'mobile & web apps', 'business intelligence', 'analytics / tracking / KPIs', 'system integration']
Skills for Laura Sanchez: ['Leadership', 'Product Discovery', 'Feature Prioritization and Roadmap Planning', 'Product Development', 'Defining and Tracking Success Metrics', 'Performing Market Assessments']
Skills for Laurent Andriot: ['Strategic mindset', 'Thought leadership', 'Collaborative mindset', 'Decisive mindset', 'Strong business acumen']
Skills for Lautaro Orazi: ['Context switching', 'Ruby', 'C+', 'Front End', 'React', 'Typescript', 'Engineer Design - technical design and documentation', 'Go - some Go', 'Elixir']
Skills for Leandro Custodio: ['.NET Core', 'C#', 'HTML', 'Javascript', 'React', 'React-Native', 'Typescript', 'CSS', 'Docker', 'Kubernetes', 'Jenkins', 'MySQL', 'SQLServer', 'Oracle']
Skills for Leonardo Banchero: ['.NET', 'React', 'Javascript', 'SQL', 'MongoDB', 'Azure', 'AWS', 'GCP', 'Kubernetes']
Skills for Lucas Germano: ['NodeJS', 'React', 'HTML', 'CSS', 'Python', 'AWS', 'Docker', 'Redux', 'TypeScript', 'JavaScript']
Skills for Lucas Rinaldi: ['React', 'TypeScript', 'NodeJS', 'Functional Programming', 'Software Development Cycle', 'Testing Software', 'Interface Development']
Skills for Lucas Tolchinsky: ['Ruby - bread and butter', 'A little IOs', 'A little Elixir', 'Back End', 'Team Lead', 'Coaching']
Skills for Lucas Venturella: ['C#', '.NET CORE', 'Entity Framework Core', 'Entity Framework', '.NET', 'Angular', 'AngularJS', 'React', 'SQL Server', 'Mongo']
Skills for Lucía Bustamante: ['Product Design', 'Service Design', 'Usability testing', 'Heuristic evaluations', 'Information Architecture', 'Research techniques', 'Wireframing', 'Navigable Prototyping', 'Design across multiple platforms - Sketch, Figma', 'Design systems', 'Dev deliverables and assets', 'Branding / Brand guidelines', 'Graphic design', 'Editorial design', 'SCRUM']
Skills for Luis Arias: ['leadership', 'agile', 'team-focused', 'people-oriented', 'value-focused', 'innovation']
Skills for Luis Carlos Hidalgo: ['Proactive', 'Creative', 'Problem Solving', 'Team Oriented', 'Critical Thinking']
Skills for Luis Garcia: ['Product management', 'Agile software management', 'Workshop facilitation', 'Change management', 'Incident management', 'Requirement and business analysis']
Skills for Luis Guardiola: ['Ruby', 'DevOps - Unix / Linux', 'Database', 'Sql', 'Go - proficient', 'Javascript', 'HTML', 'CSS', 'React - learning', 'Wants to learn mobile - native or javascript']
Skills for Luis Mora: ['Azure: Application Insights, Key Vault, App Service (Web Apps, API Apps, Web Jobs)', '.Net Core, .Net Framework, ASP .NET Web API, MVC .Net, ADO .Net, LINQ, Unit Testing', 'Web Services: WCF, Restful, SOAP', 'Microservices', 'Continuous Integration (CI) / Continuous Delivery (CD)', 'ORMs: Entity Framework, Dapper', 'Databases: Sybase, SQL Server', 'Software Architecture Design', 'Design Patterns', 'Clean Code', 'Version control systems such as TFS, Git, BitBucket', 'Management tools as Jira and Azure DevOps (Boards, Backlogs, Sprints, etc.)', 'Scrum Master Certified', 'Mentoring, Coaching, Leadership']
Error calling OpenAI API: We could not parse the JSON body of your request. (HINT: This likely means you aren't using your HTTP library correctly. The OpenAI API expects a JSON payload, but what was sent was not valid JSON. If you have trouble figuring out how to fix this, please contact us through our help center at help.openai.com.)
Skills for Luis Zabala: []
Skills for Marc Garbiras: ['Management', 'Agility', 'Engineering (problem solving/curiosity)', 'Software development', 'Microservices', 'REST', 'Java', 'Spring']
Skills for Marcela Rocha: ['C#', '.Net', 'SQL', 'Project Management', 'JavaScript', 'AngularJs', 'Delphi', 'ColdFusion', 'Fortran']
Error calling OpenAI API: Request timed out: HTTPSConnectionPool(host='api.openai.com', port=443): Read timed out. (read timeout=600)
Skills for Marcela Yapura: []
Skills for Marcio Soriano: ['Design strategy', 'Design Thinking', 'UX/UI', 'Lean UX', 'DesignOps', 'Workshop facilitation', 'Product Design', 'Product Management', 'Rapid prototyping', 'Design Sprint', 'Experimentation', 'Figma', 'Sketch', 'Adobe Creative Cloud', 'Adobe Photoshop', 'Adobe Illustrator', 'Adobe InDesign']
Skills for Marco Castro: ['.NET', 'C#', 'SQL', 'Javascript', 'Azure', 'Angular', 'Web Services', 'SAML', 'Java']
Skills for Marcos Aguiar: ['C#', 'Asp.net Core', 'Entity Framework Core', 'Typescript', 'Node.js', 'Express.js', 'TypeORM', 'React', 'Redux', 'Postgresql']
Skills for Margie Currier: ['UX', 'UI', 'Visual Design', 'Communication', 'Collaboration', 'Client Relationship Management']
Skills for Maria Rotariu: ['Relationships with Engineering', 'Deep understanding of Tech Requirements', 'Design Generalist', 'User Research Questions', 'User Journey Stories', 'Service Blueprint', 'Sketch', 'Wireframes - Lo to High Fi with dev notes']
Skills for Marian Irinkov: ['Node', 'React', 'Angular', 'PHP', 'C#', 'Javascript', 'Docker', 'Git', 'PostgreSQL', 'MySQL']
Skills for Mario Chacón Delgado: ['Agile testing', 'Quality assurance', 'SQL', 'ISTQB', 'databases', 'scrum', 'functional testing', 'software development', 'automation testing', 'testware creation', 'testing management']
Skills for Martin Bennett: ['Microsoft Technologies and development', 'SQL', 'Data analysis', 'Solution architecture', 'System Integration', 'Business analysis', 'Project management']
Skills for Mateusz Hinca: ['.NET', 'SoftwareArchitecture', 'RDB', 'ElasticSearch', 'SQLServer', 'azure', 'AWS', 'docker', 'angular', 'dotnetcore', 'WinForms', 'redis']
Skills for Matias Flores: ['Really technical', 'team management', 'Ruby', 'API design', 'IOT projects', 'Does not want to work with Java', 'Does not want to work with .net', 'Does not want to work with C#']
Skills for Matías Matteucci: ['Mobile first projects', 'UAT', 'Automation', 'Architecting testing solutions', 'QA', 'Managing QA teams, manual and automated', 'Release Management', 'Technical Architect Mobile']
Skills for Matias Sallent: ['React', 'TypeScript', 'SCSS', 'JavaScript', 'Vue.js', 'Gatsby', 'Next.js']
Skills for Matilde Macció: ['ASP .NET Core', '.NET Core', 'C#', 'SQL', 'Azure DevOps']
Skills for Matt Gawlik: ['Product Management', 'Agile Leadership', 'Scrum', 'Agile Methodologies', 'JIRA', 'Software as a Service (SaaS)', 'Release Management', 'Product Roadmaps', 'Team Leadership', 'Cross-Functional Leadership', 'Remote Team Leadership', 'Facilitation', 'Process Improvement']
Skills for Matthew Beckstead: ['Agile product management', 'lean product development', 'creating innovative products', 'working in highly ambiguous environments/projects', 'creating process & custom tools for teams', 'problem solving', 'team collaboration', 'client collaboration', 'team leadership']
Skills for Matthew Gibson: ['UI design', 'Prototyping', 'Design system management', 'User testing', 'Design presentation and communication', 'HTML/CSS', 'Audio recording, editing and mixing']
Skills for Matthew Powell: ['Product strategy', 'Digital marketing', 'Service design', 'Behavioral science']
Skills for Max LeBlanc: ['Project management', 'People management', 'Agile', 'Software Development']
Skills for Maxim Agapov: ['.Net Core', 'C#', 'EF Core', 'MediatR', 'NodeJS', 'Python', 'SQL', 'NoSQL', 'REST API', 'GraphQL', 'MessageQueueing', 'Docker', 'Git', 'C# project Template', 'NuGet', 'Rider', 'Solr', 'Text analyzing', 'Math Science', 'Problem Solving', '3D']
Skills for Mehdi Chaabouni: ['BACKEND', 'AGILE', 'ARCHITECTURE', 'DEVOPS', 'FRONTEND', 'MOBILE']
Skills for Melissa Chen: ['UX strategy', 'Wireframing', 'Prototyping']
Skills for Mia Airhart: ['Product management', 'Traditional Project management', 'People management', 'Technical writing', 'UX/UI']
Skills for Michael Broschart: ['ui design', 'ux research', 'user testing', 'rapid prototyping', 'storyteller', 'team leadership', 'agile frameworks', 'e-commerce', 'digital marketing', 'story mapping', 'IA diagramming', 'business strategy', 'design strategy', 'enterprise software', 'mobile apps']
Skills for Michael Jung: ['Business Design', 'Product Strategy & Visioning', 'Growth Strategy', 'Business Casing', 'Customer Journey Mapping', 'Concept Innovation', 'Design Thinking', 'Market Research', 'Customer Experience Design', 'Product Management', 'Digital Transformation', 'Operating Model Design', 'Product Prioritization & Definition', 'Roadmapping']
Skills for Michael Lenizky: ['Product Strategy', 'Product Management', 'Project Management', 'UX Design', 'Consulting', 'Digital Marketing']
Skills for Michael Lenizky: ['Product discovery', 'Strategic positioning', 'User research', 'Roadmap development', 'KPI development & reporting', 'Business intelligence', 'UX design', 'Story mapping', 'Service blueprinting', 'Ethnographic research', 'Project P&L', 'Risk mitigation', 'SDLC', 'Agile leadership', 'Product marketing', 'Content strategy', 'Jira & Azure devops', 'Figma']
Skills for Micheal Anton: ['dot net']
Skills for Miguel Baquero Alvarez: ['Programming', 'Infrastructure']
Skills for Miguel Marchena: ['Scrum', 'Kanban', 'Agile in general', 'Product Ownership', 'People management', 'Leadership', 'Software development technical knowledge']
Skills for Mihail Brinza: ['.NET', 'C#', 'Golang', 'NoSQL (MongoDb, Redis, Firestore)', 'Google Cloud Platform', 'Apigee', 'Unit Testing', 'Flutter', 'NextJS', 'Docker', 'Kubernetes', 'CI/CD (Jenkins, GitActions)', 'Grafana']
Skills for Mikias Abera: ['JavaScript', 'TypeScript', 'Ruby']
Skills for Miles Kalchik: ['User research', 'Ideation', 'Wireframing', 'Design documentation/developer handoff', 'Prototyping', 'Design systems']
Skills for Mitt Korot: ['Strategy', 'Marketing', 'Public Speaking', 'Analytics']
Skills for Mohan Gulati: ['Business Strategy', 'Product Strategy', 'Leadership / Growth']
Error calling OpenAI API: We could not parse the JSON body of your request. (HINT: This likely means you aren't using your HTTP library correctly. The OpenAI API expects a JSON payload, but what was sent was not valid JSON. If you have trouble figuring out how to fix this, please contact us through our help center at help.openai.com.)
Skills for Natalia Kagan: []
Error calling OpenAI API: We could not parse the JSON body of your request. (HINT: This likely means you aren't using your HTTP library correctly. The OpenAI API expects a JSON payload, but what was sent was not valid JSON. If you have trouble figuring out how to fix this, please contact us through our help center at help.openai.com.)
Skills for Natalia Sibaja: []
Skills for Nathalia Torres: ['Android', 'iOS', 'Kotlin', 'Javascript', 'Java', 'Test automation', 'Quality strategy']
Error calling OpenAI API: Request timed out: HTTPSConnectionPool(host='api.openai.com', port=443): Read timed out. (read timeout=600)
Skills for Nathan Bugden: []
Skills for Nathaniel Maughan: ['UX Design', 'Strategy', 'Research', 'Tag Concepts', 'Figma', 'Organization of content', 'Analytical', 'MBA']
Skills for Neliton Mateus: ['communicative', 'problem-solver', 'collaborative', 'flexible', 'open mind', 'self taught (learn new things very quick)', 'critical thinking']
Skills for Nicolas Ameghino: ['SWIFT', 'Objective C\u2028', 'Xcode', 'UIKit', 'Python', 'Node.JS']
Skills for Nicolas Miyasato: ['SWIFT', 'Objective C', 'Python', 'Ruby', 'Java', 'C++']
Skills for Nicole Reger: ['marketecture', 'customer jobs-to-be-done', 'user stories', 'feature prioritization', 'service blueprint', 'process optimization', 'product roadmap', 'stakeholder communication', 'adaptive', 'agile coach']
Skills for Nikita Birmi: ['SQL/PL-SQL', 'Agile Project Management']
Skills for Nikki Cannon: ['API design', 'API development', 'API integration', 'API documentation']
Skills for Noelle Wilmering: ['Technical expertise', 'Design and UX knowledge', 'Critical and strategic thinking', 'Cross-functional teamwork', 'Problem solving', 'Requirement gathering', 'Data interpretation and analysis']
Skills for Obinna Asiegbulam: ['Communication', 'Leadership', 'Adaptability', 'Problem-solving', 'Self-awareness', 'Collaboration', 'Time management', 'Data Structures and Algorithms', 'Source Control', 'Testing', 'Debugging', 'Database']
Skills for Obinna Okpara: ['Python', 'Java', 'HTML', 'CSS', 'JavaScript']
Skills for Olga Erasova: ['requirements elicitation', 'analysts', 'prioritization', 'documentation', 'process diagrams', 'data diagrams', 'UX design', 'project planning and tracking', 'overseeing resources', 'schedules', 'budgets', 'risk analysis and management', 'change management']
Error calling OpenAI API: We could not parse the JSON body of your request. (HINT: This likely means you aren't using your HTTP library correctly. The OpenAI API expects a JSON payload, but what was sent was not valid JSON. If you have trouble figuring out how to fix this, please contact us through our help center at help.openai.com.)
Skills for oluwaseun oshikomaiya: []
Skills for Oscar Alfaro: ['Product Management', 'Program Management', 'Agile Coach', 'SAFe', 'Feature Mapping', 'Process Improvement']
Skills for Osemudiamen Elebesunu: ['Javascript', 'React.js', 'Next.js', 'Gatsby.js', 'Typescript', 'HTML5/CSS3']
Skills for Oskar Torres: ['Software Development', 'Backend Development - C# .Net SQL/NoSQL', 'Frontend Development - Javascript Angular React', 'Hybrid Mobile - Xamarin', 'Cloud', 'Agile', 'SAFe', 'Product', 'People management']
Error calling OpenAI API: We could not parse the JSON body of your request. (HINT: This likely means you aren't using your HTTP library correctly. The OpenAI API expects a JSON payload, but what was sent was not valid JSON. If you have trouble figuring out how to fix this, please contact us through our help center at help.openai.com.)
Skills for Pablo Estrada: []
Skills for Pablo Laiseca: ['Excellent communication', 'Consulting', 'Prototyping', 'Ownership']
Skills for Pablo Meseguer: ['Team player', 'Software automation', 'Communication']
Skills for Pablo Nazareth: ['C#', 'AWS', '.NET', 'Python', 'Typescript', 'Angular']
Error calling OpenAI API: We could not parse the JSON body of your request. (HINT: This likely means you aren't using your HTTP library correctly. The OpenAI API expects a JSON payload, but what was sent was not valid JSON. If you have trouble figuring out how to fix this, please contact us through our help center at help.openai.com.)
Skills for Patrick Azu: []
Skills for Paul Santonastaso: ['Agile Project Management', 'Customer Discovery', 'User Testing', 'Rapid Prototyping', 'Data Analysis', 'Idea/Insight Management', 'JIRA Management', 'Lean Requirements Definition', 'Product Strategy']
Skills for Paula Barriga: ['TA', 'HR', 'Recruitment', 'Teamwork']
Skills for Pavlo Goncharenko: ['.NET', 'C#', 'Go', 'SQL']
Skills for Payam Amir Sheibani: ['Experience Design', 'Marketing Technology', 'Loyalty Technology', 'Retail Industry', 'Innovation Management']
Skills for Philippe Boudreau: ['iOS mobile development (Swift and Objective-C) - 12 years', 'Geospatial Information Systems (Smallworld) - 8 years - Electrical distribution network', 'Continuous Development and Integration (CI/CD) for mobile - CircleCI, Azure DevOps', 'Mac development', 'PHP', 'Oracle', 'PL/SQL', 'MySQL', 'Visual Basic']
Skills for Phu Nguyen: ['C#/ dotnet', 'Node/NestJs', 'Javascript/Typescript', 'Domain driven design', 'Microservice architecture', 'Azure', 'AWS']
Skills for Pratish Dash: ['dbt', 'Snowflake', 'ADF-Azure Synapse', 'BigQuery', 'PowerBI', 'Basics of Databricks', 'Informatica', 'Datastage', 'T-SQL', 'Netezza', 'Teradata appliances']
Skills for Rafael de Almeida: ['Technical knowledge', 'Team-Work', 'People management', 'Project Management']
Skills for Raphael Anyanwu: ['C#', '.Net Core']
Skills for Raphael Vieira: ['testing techniques', 'cypress', 'playwright', 'selenium', 'appium', 'robot framework', 'Rest Assured', 'playwright', 'Postman', 'Newman', 'Insomnia', 'JMeter', 'K6', 'artillery', 'SQL databases', 'NoSQL databases', 'AWS', 'Github Actions', 'GitlabCI', 'Jenkins', 'DroneCI', 'CircleCI', 'Azure DevOps', 'JIRA', 'Github', 'Gitlab', 'Azure DevOps', 'Trello', 'Windows', 'Mac', 'Linux']
Skills for Reza Kazemi: ['Product management', 'Project management', 'Front-end design', 'UX', 'Cloud computing', 'Database administration', 'Illustration', 'CAD', 'Technical writing', 'Marketing', 'Web development', 'High-level hardware design']
Skills for Robert Peterson: ['SQL', 'Ruby', 'Javascript', 'HTML', 'Haskell', 'Functional Programming', 'Elixir']
Skills for Roberto Orozco: ['Software', '.NET', 'Azure', 'Angular', 'TypeScript', 'Architecture', 'Dart', 'Mobile', 'DevOps', 'Scrum']
Skills for Rodolfo Conejo: ['Manual Testing', 'Product Ownership and Organization', 'Quality Management', 'Automation Testing', 'Data Analysis']
Skills for Rodrigo Daud: ['UI Design', 'UX Design', 'UX Research', 'Front-end development (Javascript, React)', 'Back-end development (Node JS)', 'Graphic Design', 'Digital Painting']
Skills for Rogerson Nazario: ['C# .NET', 'Reactjs', 'Nodejs', 'Azure cloud', 'Azure devops']
Skills for Rohit Dhand: ['Engineering', 'Cloud', 'Big Data', 'Dockers', 'Microservices', 'Client Server Applications']
Skills for Roy Ching: ['Manual QA', 'Automation', 'Java', 'Javascript', 'Cucumber', 'Cypress', 'Playwright', 'Databases']
Skills for Ryan Ledford: ['Backend', 'TypeScript / JavaScript', 'Go', 'Frontend', 'Vue', 'React']
Skills for Ryan Price: ['Management consulting', 'Tech strategy and delivery', 'Analytics enablement', 'Program turnaround specialist']
Skills for Sagarika Ramayanam: ['project management', 'mentoring and coaching', 'agile', 'java', 'angular', 'product strategy']
Skills for Saju Abraham: ['user stories', 'roadmapping', 'wire framing', 'user research', 'presentation skills']
Skills for Samiul Rian Islam: ['Pragmatic', 'Electrical Engineering', 'Consulting', 'Coaching', 'Leadership', 'Adaptable', 'Fast Learner']
Skills for Sandy Bagga: ['Experience Design', 'Design Ops', 'Workshop Facilitation', 'UX/UI Design', 'Visual Design', 'Prototyping']
Skills for Santiago Kent: ['NodeJS', 'Nest', 'REST', 'GraphQL', 'React', 'NextJS']
Skills for Sara Taillon: ['Product Management', 'Agile Methodologies', 'User Experience Design', 'Data Analysis', 'Technical Leadership', 'Communication']
Skills for Sarah Gentil: ['Javascript', 'Typescript', 'React', 'GraphQL', 'NodeJS', 'MongoDB', 'SQL', 'HTML', 'CSS', 'Golang']
Skills for Saudamini Sehgal: ['Requirements gathering', 'Product Management', 'Solution Designing', 'Sprint Planning', 'Agile Methodology', 'New feature development', '0 to 1 Product development', 'SDLC']
Error calling OpenAI API: We could not parse the JSON body of your request. (HINT: This likely means you aren't using your HTTP library correctly. The OpenAI API expects a JSON payload, but what was sent was not valid JSON. If you have trouble figuring out how to fix this, please contact us through our help center at help.openai.com.)
Skills for Scott Griset: []
Error calling OpenAI API: We could not parse the JSON body of your request. (HINT: This likely means you aren't using your HTTP library correctly. The OpenAI API expects a JSON payload, but what was sent was not valid JSON. If you have trouble figuring out how to fix this, please contact us through our help center at help.openai.com.)
Skills for Scott Kosman: []
Skills for Sean Fortner: ['AWS', 'Automation', 'Kubernetes', 'Cloud platform', 'Linux', 'Ruby', 'Python', 'A little Go', 'Solutions Architect Professional Level Exam Certified - AWS', 'Studying for Google Level Exam Certified', 'Don’t wanna do Chef and Puppet']
Skills for Sebastian Baroni: ['Javascript', 'Node.js', 'Ruby', 'Security', 'Ethical hacking']
Skills for Segun Oluwadare: ['Javsascript', 'React', 'Css', 'Next', 'Flutter']
Skills for Seldon Stone: ['Mobile/Web Manual Test', 'Javascript', 'Limited web and mobile automation', 'React', 'GraphQL (Javascript)', 'Next.js', 'WebDriver.io', 'Windows', 'MacOS', 'Azure Dev Ops', 'Cucumber.io', 'Git', 'HTML', 'CSS', 'Fiddler Proxy', 'Charles Proxy', 'Docker']
Error calling OpenAI API: We could not parse the JSON body of your request. (HINT: This likely means you aren't using your HTTP library correctly. The OpenAI API expects a JSON payload, but what was sent was not valid JSON. If you have trouble figuring out how to fix this, please contact us through our help center at help.openai.com.)
Skills for Sergey Zhak: []
Skills for Shane Gibson: ['Agile Transformation', 'Digital Transformation', 'Cloud Migration/Optimisation', 'DevOps Transformation', 'Continuous Integration / Continuous Delivery', 'Solution Architecture', 'Delivery Management']
Skills for Sheena Benavente: ['Strategic storytelling', 'Visual Design']
Skills for Sheldon Santos: ['frontend development (React)', 'backend development (Node.js - JavaScript/TypeScript)', 'CI/CD', 'Docker', 'automated tests']
Skills for Shile Salami: ['Product design', 'Wireframing', 'Prototyping', 'Problem solving']
Skills for Sid Torres: ['Visual Design', 'Research', 'Product Design', 'Design Thinking', 'Design Systems']
Skills for Skylar Jessen: ['product visioning', 'prototyping', 'emerging tech', 'audience profiling', 'competitive analysis', 'user research', 'team collaboration']
Skills for Sofía Mora: ['Design Thinking', 'UX Design', 'UI Design', 'Visual Communication', 'Qualitative Research', 'Cross-Team Collaboration', 'Workshop Facilitator', 'Usability Testing', 'Wireframing and Prototyping']
Skills for Soham Vyawahare: ['Discovery', 'UX Research', 'Ideation', 'UI Design', 'Workshopping', 'Analytics', 'Accessibility', 'Design Thinking', 'Prototyping', 'Wireframing', 'Problem Solving', 'User Testing']
Skills for Sol Lam: ['Test Planning', 'Test Cases', 'Defect Management', 'Trouble Shooting', 'Test Automation', 'Agile Methodology', 'Web Testing', 'Cross Browser Testing', 'API Testing', 'Mobile Testing', 'JavaScript', 'Java', 'C#', 'Cypress', 'Selenium', 'Protractor', 'GIT', 'Mocha', 'Cucumber', 'SpecFlow', 'Data-Driven', 'JMeter', 'Chai HTTP', 'REST Assured', 'Appium', 'Postman', 'Jira', 'Confluence', 'TestRail', 'Zephyr', 'ServiceNow', 'Jenkins', 'Octopus', 'HP Quality Center', 'HP QTP', 'HP LoadRunner', 'Test Complete', 'Microsoft Coded UI', 'Microsoft TFS', 'Microsoft Test Manager', 'Microsoft SQL', 'MongoDB', 'MySQL', 'Oracle']
Skills for Somto Medua-Ugeh: ['JavaScript', 'TypeScript', 'React', 'CSS', 'Testing', 'Python']
Skills for Stefan Balan: ['UI/UX Design', 'Product Strategy', 'Team Management', 'Product Management']
Skills for Stephen Lawrence: ['Ruby on rails', 'PHP', 'FE - Java Script some experience', 'CSS - some experience', 'Continuous Integration', 'Terraform', 'Kubernetes', 'Regulations', 'Compliance', 'Operations Engineering', 'SRE', 'Software Engineering', 'Product Management', 'Customer Support', 'Accounting', 'Marketing']
Skills for Steve Van Mierlo: ['Storytelling', 'Leadership', 'Product thinking/strategy', 'Business acumen', 'Giving product feedback', 'Concept development / rapid prototyping', 'Relationship building']
Skills for Stijn Winand: ['Team Staffing', 'Dealing with conflict', 'Team Development', 'Performance Management', 'Stakeholder Management', 'Project Scoping', 'Architecture Analysis', 'Maintaining process control', 'Communication bridge between tech & non-tech', 'Agile Methodology', 'Javascript', 'NodeJS', 'ReactJS', 'Redux', 'Native', 'MongoDB', 'Firebase', 'mySQL', 'PostGres', 'CI/CD & Test Automation', 'Functional Programming', 'Object Oriented Programming', "Common Softwares (IDE's, Microsoft Suite, Google Suite, Slack, etc)"]
Skills for Suliat Oyekola: ['HTML', 'CSS', 'JavaScript']
Skills for Sumesh John: ['Java', 'Spring Boot', 'Kotlin', 'Javascript', 'Node.js', 'Python', 'Golang', 'Swift', 'GraphQL', 'Docker']
Skills for Tanja Ninkovic: ['Business Analysis', 'Project Management', 'Agile', 'Waterfall', 'JIRA', 'Process Improvement', 'Financial Industry']
Skills for Tanya Trimbakova: ['Process Development', 'Project Management', 'System Automations', 'UX Design', 'Product Research', 'Web Design', 'HTML&CSS']
Skills for Tarek Alzaza: ['Backend development', 'Mobile App development', 'Web App development', 'Smart Contract development', 'Databases', 'Security and performance']
Skills for Tarik Yousif: ['Agile project management (Scrum, Kanban)', 'spreadsheeting', 'SQL']
Skills for Tatiana Fernandez: ['Cypress', 'BBD', 'Cucumber', 'Automation', 'DesignThinking', 'Agile', 'Scrum', 'Kanban', 'Lean']
Skills for Tatiana Gribanovskaia: ['Business Systems Analysis', 'Data Analysis', 'Regulations and Compliance', 'SQL expert knowledge', 'Change Management', 'Technical Project Management', 'Project estimation', 'Documentation', 'Traceability Matrix', 'Jira/Confluence', 'Sharepoint']
Skills for Tephie Choza: ['UI', 'UX', 'teamplayer', 'organize', 'communication', 'prioritize', 'proactive', 'scrum', 'agile', 'leanux', 'Saas', 'mobiledesign', 'figma', 'abstract', 'invision', 'miro', 'heapanalytics']
Skills for Thelma Dike: ['Figma expert', 'Product strategy', 'User experience', 'Product design']
Skills for Tim Gunter: ['Simple and effective communication, with the reader/listener in mind', 'Writing code', 'Designing and building distributed, fault tolerant infrastructure', 'Building trust with direct reports']
Skills for Tolulope Saliu: ['HTML', 'CSS', 'JavaScript', 'TypeScript', 'SASS', 'React', 'Redux', 'NextJS']
Skills for Tom Briones: ['programmanagement', 'portfoliomanagement', 'businessanalysis', 'productanalytics', 'storytelling', 'relationshipbuilding', 'strategicplanning', 'changemanagement', 'teamleadership', 'processengineering']
Skills for Ton Santos: ['Interpersonal Communication', 'Written Communication', 'SQL and DB design', 'Solution Architecture', 'Software development (C# .NET, Javascript, C/C++, Java)', 'Project Management', 'Docker', 'Jira']
Skills for Tony Camilli: ['Product Management', 'Product Development', 'Agile', 'Lean', 'Design Thinking', 'Design Sprint', 'Business Models', 'Product/Market Fit']
Skills for Travis Widner: ['Written and verbal communication', 'Visual communication', 'User Empathy', 'Product Strategy', 'Product Design', 'Workshop facilitation', 'User Research', 'Usability Testing', 'UX Design', 'Interaction Design', 'UI Design']
Skills for Trevor Kendrick: ['Java', 'C#', 'TypeScript', 'Microservices', 'Full-stack Development', 'SQL', 'Processes and systems', 'Leadership', 'Empathy']
Error calling OpenAI API: We could not parse the JSON body of your request. (HINT: This likely means you aren't using your HTTP library correctly. The OpenAI API expects a JSON payload, but what was sent was not valid JSON. If you have trouble figuring out how to fix this, please contact us through our help center at help.openai.com.)
Skills for Trevor Woods: []
Skills for Tyler Fraking: ['ruby', 'java', 'test automation', 'ci/cd', 'quality assurance', 'bug discovery', 'agile methodologies']
Skills for Uzoezi Ubiri: ['System Design', 'Architecture']
Error calling OpenAI API: Request timed out: HTTPSConnectionPool(host='api.openai.com', port=443): Read timed out. (read timeout=600)
Skills for Vadym Bilyy: []
Skills for Vanessa Soares: ['Communication', 'Team Work', 'Patient', 'Results-Oriented', 'Independent']
Skills for Victor Guzman: ['User story writing', 'Requirements gathering', 'Collaboration workshops', 'Data Analysis']
Skills for Victoria Luchian: ['Leadership', 'Responsibility', 'Communication', 'Problem-solving', 'Technical skills', 'Time management']
Skills for Vikramaditya Singh: ['Product Management', 'Software Development', 'Programming', 'Cloud Computing']
Skills for Vinicius Gonçalves: ['C#/.NET', 'SQL Server', 'Domain Driven Design', 'Microservices', 'Leadership', 'Kanban']
Skills for Vinicius Silva: ['C#', '.NET', '.NET Core', 'ASP.NET Core', 'Entity Framework Core', 'OAuth 2.0', 'OpenID Connect', 'Docker', 'OpenAPI', 'MySQL', 'PostgreSQL', 'SQLite', 'Amazon AWS', 'Google Cloud Platform', 'Kubernetes']
Skills for Vitor Cesco: ['Swift', 'SwiftUI', 'Xcode', 'Xcode Cloud', 'TestFlight', 'CI/CD', 'Automated Testing', 'Node.js', 'ReactJS']
Skills for Wale Adenagbe: ['AWS', 'CI/CD', 'DevOps', 'Consulting']
Skills for Welquer Esser: ['JavaScript', 'TypeScript', 'React', 'Angular', 'StencilJS', 'Ionic', 'NodeJS', 'Google Cloud Platform', 'AWS', 'SQL', 'Databases (relational and non relational)']
Skills for Will Rodrigues: ['C#', 'Microservice architecture', 'SQL', 'MongoDB', 'Cassandra', 'Kafka', 'RabbitMQ', 'Docker', 'Kubernetes']
Skills for Wilmer Córdoba: ['React', 'Javascript', 'Styled-components', 'SASS', 'CSS', 'Redux', 'NodeJS', 'AWS']
Skills for Yama Farani: ['Product Management', 'Product Discovery', 'Product Design', 'Product Strategy', 'Leadership']
Skills for Yamilka Ricardo: ['Empathy', 'Honesty', 'Commitment', 'Motivation', 'Team player', 'Communication', 'Goal oriented', 'Attention to details', 'Looking for growing professionally', 'Backend developer (with some FE experience as well)', 'Code quality']
Skills for Yan Monteiro: ['.Net', 'ReactJS', 'NextJS', 'SQL Server', 'Docker', 'Software testing']
Skills for Yasamin Salamat: ['Agile Methodologies', 'Scrum', 'Product Management', 'Software Development Life Cycle (SDLC)', 'Software Testing Life Cycle (STLC)', 'Root cause analysis and Problem Solving', 'Multi-disciplinary knowledge', 'Structured Decision Making', 'Leadership and team Organization', 'Hiring and training', 'Written and verbal communication']
Skills for Yoav Cohen: ['Business strategy', 'Sales', 'Engagement', 'System Design', 'UI/UX design', 'Research', 'Team building']
Skills for Yousef Eshaq: ['Leadership', 'Engineering Management', 'Software Development']
Error calling OpenAI API: We could not parse the JSON body of your request. (HINT: This likely means you aren't using your HTTP library correctly. The OpenAI API expects a JSON payload, but what was sent was not valid JSON. If you have trouble figuring out how to fix this, please contact us through our help center at help.openai.com.)
Skills for Yuri Osipchuk: []
Skills for Zak Kloes: ['Design', 'UI/UX', 'Prototyping', 'UX Research', 'Sketching', 'Collaboration']
Skills for Zach Bonaker: ['Agile software development', 'Agile coaching', 'Scrum', 'Kanban', 'Lean program management', 'Mentoring programs', 'Team building', 'Business agility transformation', 'Systems thinking', 'Servant Leadership', 'Organization design', 'Organizational development and management', 'Measurement design and frameworks', 'Facilitation', 'Training and workshop design', 'Value stream management']
Skills for Daniel Hicks: ['TypeScript', 'React', 'Express.js', 'API Development', 'Java/SpringBoot', 'C#/.NET (currently learning)']
Skills for Jael Taillefer: ['System architecture', 'People management', 'API', 'API gateway', 'Databases', 'OKR', 'SDLC']
Total unique skills gathered: 1639
[INFO] Encoding skills...
[INFO] Computing PCA for all components...
[INFO] Optimal number of PCA components to retain 95% variance: 206
[INFO] Calculating silhouette scores for k values: [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, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218, 1219, 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228, 1229, 1230, 1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239, 1240, 1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250, 1251, 1252, 1253, 1254, 1255, 1256, 1257, 1258, 1259, 1260, 1261, 1262, 1263, 1264, 1265, 1266, 1267, 1268, 1269, 1270, 1271, 1272, 1273, 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 1282, 1283, 1284, 1285, 1286, 1287, 1288, 1289, 1290, 1291, 1292, 1293, 1294, 1295, 1296, 1297, 1298, 1299, 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1338, 1339, 1340, 1341, 1342, 1343, 1344, 1345, 1346, 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354, 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1364, 1365, 1366, 1367, 1368, 1369, 1370, 1371, 1372, 1373, 1374, 1375, 1376, 1377, 1378, 1379, 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389, 1390, 1391, 1392, 1393, 1394, 1395, 1396, 1397, 1398, 1399, 1400, 1401, 1402, 1403, 1404, 1405, 1406, 1407, 1408, 1409, 1410, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1437, 1438, 1439, 1440, 1441, 1442, 1443, 1444, 1445, 1446, 1447, 1448, 1449, 1450, 1451, 1452, 1453, 1454, 1455, 1456, 1457, 1458, 1459, 1460, 1461, 1462, 1463, 1464, 1465, 1466, 1467, 1468, 1469, 1470, 1471, 1472, 1473, 1474, 1475, 1476, 1477, 1478, 1479, 1480, 1481, 1482, 1483, 1484, 1485, 1486, 1487, 1488, 1489, 1490, 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498, 1499, 1500, 1501, 1502, 1503, 1504, 1505, 1506, 1507, 1508, 1509, 1510, 1511, 1512, 1513, 1514, 1515, 1516, 1517, 1518, 1519, 1520, 1521, 1522, 1523, 1524, 1525, 1526, 1527, 1528, 1529, 1530, 1531, 1532, 1533, 1534, 1535, 1536, 1537, 1538, 1539, 1540, 1541, 1542, 1543, 1544, 1545, 1546, 1547, 1548, 1549, 1550, 1551, 1552, 1553, 1554, 1555, 1556, 1557, 1558, 1559, 1560, 1561, 1562, 1563, 1564, 1565, 1566, 1567, 1568, 1569, 1570, 1571, 1572, 1573, 1574, 1575, 1576, 1577, 1578, 1579, 1580, 1581, 1582, 1583, 1584, 1585, 1586, 1587, 1588, 1589, 1590, 1591, 1592, 1593, 1594, 1595, 1596, 1597, 1598, 1599, 1600, 1601, 1602, 1603, 1604, 1605, 1606, 1607, 1608, 1609, 1610, 1611, 1612, 1613, 1614, 1615, 1616, 1617, 1618, 1619, 1620, 1621, 1622, 1623, 1624, 1625, 1626, 1627, 1628, 1629, 1630, 1631, 1632, 1633, 1634, 1635, 1636, 1637, 1638]
[INFO] Optimal number of clusters: 1199
[INFO] Clustering complete.
Skills Taxonomy:
Requirements Gathering
teamleadership
MongoDB
Information Architecture
Domain Driven Design
Go - proficient
Database Design
Relational Databases
Business strategy
Jenkins
ElasticSearch
agilementoring
Collaborative
QBR
Commitment
prototyping
Proactive
Pragmatic
video production
MOBILE
Electrical Engineering
Does not want to work with .net
Version One
TDD
PostGres
wireframe prototyping, UAT, beta testing
Terraform
Automation
LESS
Organizational development and management
Client Management
Managing Product Roadmap
Code quality
Programming
Fast Learner
Analytical
Service Design
C
Test documentation
Backend developer (with some FE experience as well)
Concept Innovation
Magento
dotnetcore
JQuery
prioritization
robot framework
Transformation
agiletraining
Developer
JSON & XML
Continuous Integration
webpack
Creative Direction
HP LoadRunner
SOW
Design and UX knowledge
Thematic Analysis
Native
digital marketing
Common Softwares (IDE's, Microsoft Suite, Google Suite, Slack, etc)
Octopus
Business Models
TypeScript
wire framing
Goal Setting and Organizational goals alignment
Project P&L
Kubernetes
Sentry
Project Delivery
Web Securities
Business Development
Cybersecurity
Innovation Management
Delivery Management
Technical Architect Mobile
Web Services: WCF, Restful, SOAP
Manual QA
Go
Accounting
Defect Management
API design
Customer Experience
stakeholder communication
Analysis
Software delivery
storytelling
Software engineering
Customer Support
Deno
SAFe
Functional Programming
Client Server Applications
Discovery
Change Frameworks OD
NgRx
Waterfall
leanux
sequelize
Continuous Integration / Continuous Delivery
designsystems
PowerPoint
.Net Core
Sales Enablement
PL/SQL
Customer Discovery
Design Reviews
Client engagement
Non-Violent Communication (NVC)
Frontend Engineer
Informatica
Sales
SDLC (Software Development Life Cycle)
T-SQL
Javascript
Apigee
Wants to learn mobile - native or javascript
WinForms
Google Cloud Platform
Good communicator
graphql
Observation Studies
Shell Scripting
OAuth 2.0
Business Casing
ASP .NET Core
Business intelligence
Zephyr
Client Relationship Management
ETL
Contact Center as a Service (CCaaS) Solutions
Razor Pages
Requirement and business analysis
Geospatial Information Systems (Smallworld) - 8 years - Electrical distribution network
Conceptual Writing
GraphQL (Javascript)
Infrastructure tooling
neo4j
Strong networking ability
Coding
teamcoaching
ERP Systems
Pearl
Operations
UI Design
Agile and Waterfall SDLC
customer interviews
ci/cd
JIRA
scrum master
Crystal
Cross-platform Native mobile application development with React Native
User story writing
Ruby on Rails
Account Management
Express
Test driven development
Full stack software development
Confident Leader
UIKit
Digital Painting
Creativity
invision
emerging tech
Relationship building
Agile execution
front-end
Cross Browser Testing
3D
Structured Decision Making
Apache Kafka
working in highly ambiguous environments/projects
Team Collaboration
UX
Qualitative Research Methods
story mapping
nosql
React - learning
Bash
beta program management
Design, review and implementation of test cases
Elixir
Project estimation
Bringing order to chaos
css-modules
Windows
Client Communication
Low level infrastructure
Data storage
User testing labs
heapanalytics
Team player
Rightscale
Quality Management
Agile Leadership
Training and workshop design
Blue Prism (Automation Software)
People management
userempathy
Design strategy
Start-ups
node.js
data-driven prioritization and decision making
SRE
swagger
Software Testing Life Cycle (STLC)
Requirement Gathering
KPI development & reporting
self taught (learn new things very quick)
Android
k8s
Software Development Cycle
In-depth analysis
Feedback-seeker
PyTest
User-Centric Design
wpf
Complex Selling
postgresql
Adobe Experience Manager
Strategy
Cypress
Financial Industry
Responsive Web Design
Research
vue
Mac
Automated Testing
presentation skills
NoSQL (MongoDb, Redis, Firestore)
Finances and management (MSc. Intl. Business and Management)
Dotnet
product visioning
agile development practices
Tealium (CDP Software)
Sybase
Deep understanding of Tech Requirements
engineering
Proposals
Strategic Planning
training
JavaScript/Typescript
redis
apollo-server
Performing Market Assessments
Inbox Management
WebSockets
Strategic storytelling
Change Management
Quality strategy
Design presentation and communication
sinatra
Graphic design
SQL Service
UI/UX
Collaborative mindset
Software version control and semantic version releases using Git and Subversion
miro
Business Systems Analysis
Creation of highly configurable Micro services for Enterprise application development using NodeJs
Protractor
Business process
Animation when helpful
analysts
Troubleshooting software
Code Reviews
DynamoDB
API documentation
Solution architecture
Network Administrator
Looker
Cloud architecture
Enterprise Implementation
Trouble Shooting
Don’t wanna do Chef and Puppet
Sass
LucidChart
Executive-level management
Task Analysis
SQL expert knowledge
QA
solr
Team work
Ruby - bread and butter
AngularJS
Design Ops
Design
feature rollout
Django
documentation writing
CSS - some experience
REST
CircleCi
Documentation
Team Staffing
Markup languages
Design Systems
Cultural Enrichment/Design
Google Data Studio
theme-ui
Typography
CAD
Technical skills
mobile apps
Roadmap development
yarn
0 to 1 Product development
software development
Strategic technology planning
product strategy
Behavioral science
App Design
Analytics enablement
User research
Proficiency in tools: JIRA, AHA, Roadmunk, Adobe XD, Miro, Figma, Github
Software Design
Regulations and Compliance
Rider
Looking for growing professionally
Teamwork
Leadership formation
Product Planning
strategicplanning
Netezza
Design across multiple platforms - Sketch, Figma
consulting / coaching
userflow
JPA
Process and Mechanics of delivery
Facebook Ads
analytics / tracking / KPIs
Fiddler Proxy
Node/NestJs
API Automation
Product thinking/strategy
Linux
Remote Usability Testing
Analytics
User interface design
Business analysis
Bug Tracking
Backlog management
Process definition and development
ASP.NET WEB Api
Trello
testware creation
Process improvement
Google Tag Manager
PHP
Progressive Web Apps
ARCHITECTURE
Adaptive Communication
gitlab
Coaching
Web Testing
koa
Agile project management (Scrum, Kanban)
Ability to influence
Technical expertise
Ethical hacking
Azure DevOps
Github Actions
innovation
dynamicallytypedlanguages
Experience Design
product growth
Risk Assessment
Microsoft Test Manager
Ruby - learning
scrum
IIS
Presentations
lean product development
SQL Server (and DB engines in general)
parallel programming
Ideation
TFS
Ionic Framework
product roadmap
creating innovative products
Studying for Google Level Exam Certified
UX/UI - team building
mentoring
Execute visual UI
CI/CD & Test Automation
Cross-Functional Leadership
Documenter
marketing and graphic design
react-hooks
System Design
Xcode Cloud
Goal oriented
Windows UI
Execute and document UX Research (validation and testing)
TypeORM
Value stream management
Navigable Prototyping
Competitive Analysis
Optimizing Workflows
Spring
Quality Advocacy
Analysis , Functional Decomposition and breakdown
ORMs: Entity Framework, Dapper
process diagrams
enterprise software
ColdFusion
Issues solver
Wireframes
Manual Testing
QA testing (manual, not w/QA automation software)
agile frameworks
WCF
audience profiling
UX research
react-context
Salesforce
react
Lean Requirements Definition
Perl
Cucumber.io
Svelte
Mongo
Always curious
Nest.js
Web Design
Web Accessibility (WCAG)
Organize
Sales / Client Partner
MS Office
Operating and distributed systems
OCM
Chai HTTP
Tag Concepts
Load testing
Text analyzing
Incident management
Road map and long term Planning
Lead Generation
Cloud Migration/Optimisation
Negotiation
objectorientedprogramming
RPC
Html5
Sales Processes
Backend Development
Business agility transformation
DEVOPS
Patient
market analysis
Communication
AI & ML
Feature Mapping
creating process & custom tools for teams
Feature Prioritization and Roadmap Planning
marketecture
Diagramming and simplifying complex processes
ADKAR
Confluence
NoSQL (DynamoDB, CosmosDB)
Data & Usage Analysis (Google Analytics, Excel, Data Studio, Pendo)
Documenting
team-focused
Security and performance
Basic SQL
API integration
FRONTEND
Product Design
Agile Software Development
Java - a while ago
Wireframes - Lo to High Fi with dev notes
Arel
User Testing
Leadership and team Organization
Axure RP
Sprint Planning
GCP
sidekiq
Technical Analysis
SDLC
Architecting testing solutions
A little Go
Project Strategy
CSS3
Jira Administration
Conflict resolution
Spotify
Data Visualization
Strategic Execution
React-Query
Playwright
spreadsheeting
UI Automation
Decisive mindset
SDLC adoption
Relationships with Engineering
Strategic positioning
problemsolving
Backlog Grooming
Agile product management
mySQL
Web
Implementations
testing management
Azure (including Functions)
Continuous learning
Engagement
Wireframing
Critical and strategic thinking
Organization design
Solutions Architect Professional Level Exam Certified - AWS
Web technologies
Page Object Model
User Story Development
Bootstrap
Team Leadership
Desktop testing
Value Propositions
Visual communication
Design Patterns
Qualitative User Research
problem-solver
Agile project management methodologies
agiletransformation
Digital Transformation
Product Development
Organization of content
Power BI
electron-js
Team empowerment
Agile transformation and maintenance
Scrum Master Certified
IT
Strategic Decision-Making
Active Record
agile / scrum / sprint planning
azure
Xcode
Recruitment strategy
Writing
.NET
Style Guides
Ownership
iOS mobile development (Swift and Objective-C) - 12 years
Research techniques
Event-Driven Design
Mobile Testing
Creation of high quality, secure and highly performant code that aces Kiuwan quality assurance metrics
Self-awareness
functional testing
Adobe InDesign
Programming (Java, C#, Javascript/Typescript)
Spring Cloud
user stories
stateX
system integration
Lean program management
AWS (HIPAA-compliant, including Lambda)
Angular 2+
New Relic
risk management
Headless CMS
sql