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
/
skills_taxonomy.txt
1199 lines (1199 loc) · 21.7 KB
/
skills_taxonomy.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
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
Spark
DroneCI
growth strategy
minitest
frontend development (React)
Software Testing
organization
customer jobs-to-be-done
WebDriverIO
Responsibility
Self learning
StencilJS
Management
Mobile (Android)
Dev deliverables and assets
Ruby with/without Rails
Novice developer in Javascript, CSS, HTML
Business case development
Product Prioritization & Definition
ecommerce (shopify)
collaborating with engineering teams
Security
API testing
Github
Communication bridge between tech & non-tech
Program turnaround specialist
OpenAPI
Business communications
HTML/JavaScript/CSS
Retail Industry
Interaction Design
Testing
Databases: Sybase, SQL Server
Technical knowledge (in relation to being a PM)
Solution Design
C#/.NET
csharp
lean
BDD (Gherkin language)
Vue.js
Microsoft Suite
Snowflake
Systems Thinking
gitlab ci/cd
Visio
SCSS
ef-core
Product Discovery
Creating User Stories & Epics
C# (ASP.NET, ASP.NET Core, etc.)
Analytical thinking
processengineering
event sourcing
mobiledesign
Serverless Architecture
Cross-functional teamwork
Government Contracting
Excellent communication
Digital Product Strategy
Agile Estimation , planning , grooming and backlog management
Apache Cordova
Design Generalist
user engagement
ISTQB
graphene
agileandlean
emotion-js
rapid prototyping
Actionable Agile
Loyalty Technology
Recruiting
Product Ownership and Management
High-level Engineering
Can leverage data from user interviews
Figma expert
Architecture Analysis
Math Science
Idea/Insight Management
Product marketing
Javascript (Node, React, Angular, etc.)
Test Planning
L&D
critical thinking
Mockups
Data Migration
mentoring and coaching
User experience
teamplayer
Strong business acumen
Independent
product management
Adaptability
Market Research
Quality assurance
Photoshop/Illustrator
High-level hardware design
DevOps Transformation
Revenue Operations
K6
Visual Design
Stored Procedures
Full stack
Maintaining process control
TestFlight
amazonwebservicesknowledge
Golang
oop
Compilers
team management
JS
Technical breadth of experience in (Mobile, Backend web, Desktop, Games)
Programming Languages : GoLang , java , C#
Kotlin
npm
Copyediting
Quick reaction to situations
Version control systems such as TFS, Git, BitBucket
ServiceNow
Really technical
Technical and integration analysis
Azure: Application Insights, Key Vault, App Service (Web Apps, API Apps, Web Jobs)
React Native - Mobile
NextJS
Objective C
dbt
open-api
feature prioritization
Reading JSON
UI
Product Research
Engineering Management
Designing and building distributed, fault tolerant infrastructure
metrics driven product management
Vendor Integration
Sharepoint
express.js
UX Flows
Technical Knowledge
JAVA
Test Complete
Operational & Technical Excellence
Entrepreneurship
Skilled in multiple programming languages and technologies
Go - some Go
Technical Diagramming
casl
Brevity
Precise
Jira & Azure devops
likes UI/UX
Heuristic Evaluation
Gradle
User Accepting Testing
Team Lead
Rspec
SQLServer
Software development (C# .NET, Javascript, C/C++, Java)
Product leadership
Content strategy
project management
Web Services
Business process modeling
Team Engagement
Mobile/Web Manual Test
Algorithms
flexible
e-commerce
sequel
Client Libraries - Hardware
Thought leadership
Matlab
Software Deployment
Hiring and training
Programming Patterns
Teradata appliances
HP QTP
Storybook
nameko
service blueprint
Frontend Development - Javascript Angular React
Building teams
FrontEnd testing
Team Development
Organizational skills
data diagrams
Git
ASP NET
SQL Server
Ruby
jasmine
Program management
memcached
Mobile App development
Consultative Sales
familiar with various programming languages
Mocha
Haskell
cross-functional teams engagement and planning
Workshopping
video editing
Spring Boot
Ethnographic research
Nginx
Ionic
TestRail
ReactJS
MVC
Big Data
business model creation and validation
Microsoft Orleans
Building trust with direct reports
MessageQueueing
Backend Engineering
ReactNative
JSONRPC
schedules
Business Analyst
Gap Analysis
abstract
Scripting (Code)
Business development/account management
databases
Python
C+
Go - DevOps
Jira/Confluence
process optimization
Calendar Management
leadership
Datadog
Agile
Experimentation
DesignOps
Collaboration workshops
MSSQL
Back-end development (Node JS)
supportiveness
Team Oriented
Delphi
SEO
Rest Assured
storyteller
Marketing
.NET Framework
Writing code
Restfull
parameterized testing
Solution Engineer
Design documentation/developer handoff
Html
Agile testing
Servant Leadership
Leadership / Growth
Microsoft Coded UI
Interest in Predictive Algorithms
SQL and NoSQL database design, normalization, clustering, load balancing, deployment and maintenance
Visual Studio/Code
Mobile first projects
Agile coaching
Visual Basic
Frontend Frameworks (React, Vue, Angular)
High quality of work
Laravel
DevSecOps
communicative
Design Process
backend development (Node.js - JavaScript/TypeScript)
NoSQL Databases
design sprint
RxJs
Javsascript
user acceptance testing
Technical writing
Wants to learn react
Technical requirements analysis
Business planning/use case planning
Attention to details
Analytical skills
Coordination
UX Writing
Accessibility
Wireframing and Prototyping
RabbitMQ
React-Native
Management tools as Jira and Azure DevOps (Boards, Backlogs, Sprints, etc.)
Well rounded - motion
TS
Performance testing
c#
managing and working with stakeholders at all levels and departments
release management
localization management
Drupal
Interpersonal Communication
SWIFT
Database Administrator
Outspoken
Hybrid Mobile - Xamarin
adaptive
changemanagement
Remote Team Leadership
Webdriver
Low and High fidelity design
VB.NET
Product/Market Fit
Growth
Rally
Requirement Specs
Analysis (Requirements)
open mind
techlead
Strategic mindset
artillery
User experience design
CSS Postprocessors
Data Warehousing
Career coaching
Cloud
Product
Creative
Stencil
People Analytics & Talent Management 3.0
Datastage
Microfrontends
workshop facilitation
Empathy Mapping
Linux Systems Administration
Management consulting
Stakeholder management
Data Analysis
Test automation
Root cause analysis and Problem Solving
SQL (SQL Server, PostgreSQL, MySQL)
Continuous Integration (CI) / Continuous Delivery (CD)
Agent Experience
Source Control
Agility
Manage/teach people
AWS
Does not want to work with C#
Does not want to work with Java
zustand
ADF-Azure Synapse
Career Development
HR
Illustration
DevOps - some system admin
Artificial Intelligence
Problem-solving skills
Back End
Azure cloud
JSONAPI
Optimization
Jest
Data interpretation and analysis
Empathy
Scala
Measurement design and frameworks
JMeter
Regression Testing
User-Driven Needs Analysis
Rescue
refactoring
Game Development
Business-technology alignment
deep understanding of product life cycle
System Specifications Documents (SSD)
Grafana
Business Planning
Specflow
KANBAN
Entity Framework Core
Design workshops
jss
Facilitating, communication and coordinating cross team projects and initiatives
Agile at Scale (SAFE SPC)
Postman
Entity Framework
styled-components
Angular
Database administration
RDB
Product Strategy & Visioning
.Net Core, .Net Framework, ASP .NET Web API, MVC .Net, ADO .Net, LINQ, Unit Testing
Agile methodologies
microservices
hiring/mentorship
Growth Hacking
Customer Relationship Management Systems (CRM)
Quality Standard
Software
Critical thinker
NuGet
detailoriented
Disco Hips
Data-Driven
API
Defining and Tracking Success Metrics
Requirements Elicitation
Performance Management
Selenium
Agile Ceremonies
Microsoft Technologies and development
IOT projects
Basics of Databricks
Firebase
Electronics
Visualization and Modelling techniques
Systems Administrations
Java/SpringBoot
MediatR
IA diagramming
Executive Coaching & Elite-Performance
overseeing resources
Containers
TS/JS
roadmapping
understanding basic HTML
Culture & Emotional Intelligence
Wordpress
project planning and tracking
FE - Java Script some experience
Design, review and implementation of test plans
REST APIs
Financial Services
OpenID Connect
Continuous Development and Integration (CI/CD) for mobile - CircleCI, Azure DevOps
design & iteration
Platform Migration
Processes and systems
UI testing
Saas
Engagement Management
Illustrations
Cloud Computing
DDD
Interface Development
EventStoreDB
Branding / Brand guidelines