-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDomain_Skill_Dict.json
1205 lines (1205 loc) · 27.5 KB
/
Domain_Skill_Dict.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"3D Modelling": [
"CAD Software",
"Abaqus",
"AutoCad",
"autodesk tinkercad",
"ANSYS",
"Autodesk",
"CATIA",
"Cinema 4D",
"CREO",
"Keyshot",
"Siemens NX",
"ansys",
"solidworks",
"autocad mechanical"
],
"AR": [
"C++",
"autodesk tinkercad"
],
"Arts": [
"Guitar",
"Acting",
"Singing",
"composing",
"Sketching",
"anchoring",
"Tabla",
"Craft",
"Art",
"Audio editing",
"video editing",
"Photo editing",
"Storytelling",
"Calligraphy",
"Cinematography",
"dance",
"Comedian",
"Comic Art",
"FL Studio",
"Cooking",
"Desktop Publishing",
"Travel Planning",
"Letter Writing",
"Report Writing",
"Lyricist",
"Memes",
"Magazine Articles",
"Motivational Speaking",
"Music Production",
"Narration",
"News Anchoring",
"Online Articles",
"Painting",
"Photography",
"Spirituality",
"Poetry",
"Poetry writing",
"Public Speaking",
"Professional Communication",
"communication",
"writing",
"poster design",
"debate",
"critical thinking"
],
"Automation": [
"Ansible",
"Appium",
"Autosys",
"Bamboo",
"JScript",
"jenkins",
"GruntJS",
"Home Automation",
"gulp.js",
"FitNessem",
"Job Control Language (JCL)",
"Maven",
"Microsoft Excel Macros",
"MS-Excel",
"Targetlink",
"automation"
],
"Backend": [
"XML",
"REST API",
"Sails.js",
"TypeScript",
"Express.js",
"Django",
"Java",
"SQL",
"sqlite",
"Firebase",
"ECMAScript",
"Server Side",
"Apache",
"API",
"Javascript",
"JSON",
"GraphQL",
"Grafana",
"Flask",
"Embedded JavaScript (EJS)",
"javaserver pages (jsp)",
"Java Database Connectivity (JDBC)",
"T-SQL",
"C#",
"Grails",
"Ruby",
"Hibernate",
"JavaServer Faces (JSF)",
"HAProxy",
"Flogo",
"Python",
"Jaxrs",
"JPA",
"XAMPP",
"WCF Services",
"Microservices",
"mainframe",
"Mongoose ODM",
"Mongoose Web Server",
"NestJS",
"Node",
"Node.js",
"npm",
"struts",
"PHP",
"PHP Applications",
"PhpMyAdmin",
"Spring",
"Smarty",
"Yii",
"PHPStorm",
"PHPUnit",
"Postman",
"RAML",
"c++",
"aws",
"spring mvc",
"rest",
"spring boot",
"api development",
"servlets",
"go (programming language)",
"kotlin",
"webapp development",
"ajax",
"laravel",
"java swing",
"application programming interfaces"
],
"Blockchain": [
"Ethereum",
"Bitcoin",
"Solidity",
"Supply Chain Management",
"blockchain"
],
"Business and Enterpreneurship": [
"Teamwork",
"Knowledge Process Outsourcing (KPO)",
"Team Leadership",
"Alteryx",
"Business Planning",
"Business Management",
"CC&B",
"Channel Partners",
"COBOL",
"ERP Software",
"Enterprise Resource Planning (ERP)",
"Customer Acquisition",
"International Business Strategy",
"International Relations",
"International Trade",
"Equities",
"Equity Derivatives",
"Equity Trading",
"Digital Transformation",
"Digital Strategy",
"Valuation",
"Leadership",
"Market Analysis",
"Market Research",
"Microsoft Office",
"Negotiation",
"New Business Development",
"New Business Generation",
"New Client Generation",
"Open Innovation",
"Organizational Development",
"Organization",
"ORMB",
"Partner management",
"Pharma Analytics",
"Singleview Billing Product",
"SharePoint",
"Shared Services",
"Planning",
"Process Improvement",
"Product Design",
"Product Development",
"Product Strategy",
"operations management",
"Operations excellence",
"Quality Management",
"strategic planning",
"decision making",
"startups",
"decision making",
"strategy",
"interpersonal skills",
"powerpoint",
"marketing strategy",
"decision making",
"interpersonal skills",
"entrepreneurship development",
"presentation skills",
"marketing strategy",
"risk management",
"personal development"
],
"Business Intelligence": [
"KOL Identification",
"Alteryx",
"Cognos",
"Microsoft Power BI",
"MicroStrategy",
"MicroStrategy Reporting",
"Netezza",
"Power BI",
"microsoft sql server",
"business intelligence",
"splunk",
"apache spark",
"tableau",
"strategy",
"powerpoint",
"business analytics"
],
"Competitive Programming": [
"Java",
"Algorithms",
"C",
"C++",
"python",
"Javascript",
"Problem Analysis",
"Problem Solving",
"programming",
"competitive programming",
"object-oriented programming (oop)"
],
"Computer Network": [
"Hypertext Transfer Protocol (HTTP)",
"JSON",
"Telecommunication",
"TCP/IP",
"Distributed Systems",
"CCNA",
"CCNP",
"gRPC",
"Directory Services",
"network security",
"network administration",
"Targetlink",
"SOAP",
"Signal Processing",
"Signal Conditioning",
"Session Initiation Protocol (SIP)",
"Putty",
"rest"
],
"Consulting": [
"Training Seminars",
"Recruiting",
"public relations"
],
"Content": [
"writing",
"WordPress",
"Web Content Creation",
"Typing",
"Sports Writing",
"Speech Writing",
"Technical Writing",
"Web Content Creation",
"Audio editing",
"Story Writing",
"Camtasia",
"Transform",
"Report Writing",
"Letter Writing",
"Microsoft Office",
"Microsoft Word",
"Office 365",
"Poetry",
"Lyricist",
"Poetry writing",
"Presentations",
"blogging",
"content creator",
"video editing",
"video creation",
"wondershare filmora",
"adobe premiere pro"
],
"CRM and ERP": [
"salesforce",
"Apttus CPQ",
"Mulesoft",
"D365 CE",
"sap"
],
"Cybersecurity": [
"Acunetix",
"Ethical Hacking",
"Application Security",
"Cloud Security",
"network security",
"Incident Investigation",
"Web Application Security",
"Cloud Security",
"Cryptography",
"CTF",
"Keycloak",
"Penetration Testing",
"cybersecurity",
"spring security"
],
"Data Analytics and Visualization": [
"Alteryx",
"ArcGIS Pro",
"Big Data",
"Jupyter notebooks",
"Google Sheets",
"Anzo",
"Hadoop",
"Kibana",
"elasticsearch",
"HiveQL",
"Hive",
"Elastic Stack (ELK)",
"Excel",
"Gnuplot",
"Graphology",
"Keyword Research",
"Dataflow",
"ETL Tools",
"ITK",
"R",
"MS Excel",
"MATHLAB",
"MATLAB",
"matplotlib",
"Microsoft Excel",
"Microsoft Office",
"Microsoft Power BI",
"MicroStrategy",
"MS-Excel",
"Netezza",
"Office 365",
"Pharma Analytics",
"SPSS",
"Spreadsheets",
"Power BI",
"QlikView",
"python",
"sql",
"microsoft sql server",
"databases",
"data analysis",
"tensorflow",
"splunk",
"apache spark",
"tableau",
"business analytics",
"apache hive",
"sql server management studio",
"statistics"
],
"Data Science": [
"Deep Learning",
"Deep Neural Networks (DNN)",
"Image Processing",
"Keras",
"Tableau",
"Ruby",
"Excel",
"RapidMiner",
"R",
"Linear Regression",
"MATLAB",
"Microsoft Excel",
"Microsoft Power BI",
"Data Analysis",
"Numpy",
"Pandas",
"Pattern recognition",
"Spreadsheets",
"Pivot Tables",
"Power BI",
"Predictive Analytics",
"Predictive Modeling",
"Applied Machine Learning",
"Neural Networks",
"Jupyter notebooks",
"Python",
"TensorFlow",
"C++",
"Computer Vision",
"Reinforcement Learning",
"Recurrent Neural Networks (RNN)",
"Machine Learning",
"Natural Language Processing",
"Neural Networks",
"Object Detection",
"opencv",
"Seaborn",
"PyTorch",
"Artificial Intelligence",
"Speech Recognition",
"digital image processing",
"research",
"apache spark",
"go",
"cnn",
"rnn",
"gnu octave",
"data mining",
"scikit-learn",
"anaconda",
"matplotlib",
"big data",
"pyspark",
"statistics",
"rapidminer"
],
"DataBases": [
"C++",
"SQL",
"MySQL",
"MongoDB",
"moongose",
"Cassandra",
"HBase",
"Endeca",
"Data Management",
"Data Migration",
"Data Modelling",
"Data Mining",
"Database Design",
"Database queries",
"Greenplum",
"hdfs",
"Dialogflow",
"Relational Database",
"Redis",
"rdms",
"MariaDB",
"Load (ETL)",
"Microsoft SQL Server",
"MongoDB",
"My SQL",
"Neo4J",
"NoSQL",
"Toad 9.0",
"SSAS 2008",
"Object-Relational Mapping (ORM)",
"oracle database",
"oracle sql",
"Oracle SQL Developer",
"PgSQL",
"PhpMyAdmin",
"PL/SQL",
"Postgre",
"PostgreSQL",
"PySpark",
"dbms",
"firestore",
"sqlite",
"sql server management studio"
],
"Designer": [
"Kinetic Typography",
"Adobe Tools",
"Technical Drawing",
"Cinema 4D",
"DaVinci Resolve",
"Wondershare Filmora",
"VEGAS",
"Logo Design",
"Photoshop",
"Poster Design",
"adobe illustrator",
"web design",
"editing",
"adobe premiere pro"
],
"DevOps/Cloud": [
"Kubernetes",
"Heroku",
"Google Cloud Platform (GCP)",
"Docker",
"Google BigQuery",
"Terraform",
"RESTful WebServices",
"Google Cloud Dataflow",
"Google Kubernetes Engine (GKE)",
"Amazon Web Services (AWS)",
"Azure",
"CI/CD",
"Cloud Computing",
"Cloud Security",
"Cloud Storage",
"Gitlab",
"Webpack",
"VIM",
"Linux Server",
"Microservices",
"Microsoft Azure",
"mainframe",
"MuleSoft CloudHub",
"Oracle",
"Snowflake",
"RabbitMQ",
"linux",
"aws",
"os",
"rest",
"spring boot",
"splunk",
"go",
"apache kafka",
"aws lambda",
"amazon ec2",
"cloud storage",
"azure devops",
"web services"
],
"DSA": [
"Design and Analysis of Algorithms",
"Data Structures",
"Algorithms",
"Problem Analysis",
"Problem Solving",
"programming",
"python",
"c++",
"java",
"dsa"
],
"Educator": [
"Assistant Teaching",
"Teaching",
"Career Development",
"Research",
"Mentor",
"Coach",
"Tutoring",
"Lecturing",
"Mentoring",
"Microsoft Office",
"Moodle"
],
"Electronics": [
"SystemVerilog",
"OrCAD",
"PCB Design",
"PCB Designing",
"Simulations",
"PIC Assembly",
"pic microcontrollers",
"PIC Programming",
"PLC Allen Bradley",
"PLC Programming",
"Power Electronics",
"Printed Circuit Board (PCB) Design",
"Programmable Logic Controller (PLC)",
"Programmable Logic",
"Proteus",
"PSIM",
"electronics",
"assembly language",
"circuit design",
"kicad",
"electronic design automation (eda)",
"vhdl",
"autodesk eagle",
"altium designer",
"autodesk",
"tinkercad",
"8051 microcontroller"
],
"Embedded Systems": [
"Adruino",
"Java",
"C",
"PIC Assembly",
"pic microcontroll",
"PIC Programming",
"PLC Allen Bradley",
"PLC Programming",
"Programmable Logic Controller (PLC)",
"Programmable Logic",
"assembly language",
"embedded systems",
"json",
"raspberry pi"
],
"Finance": [
"Account Management",
"Accounting",
"Trading",
"Algorithmic Trading",
"Financial Advisory",
"financial analysis",
"Fintech",
"Bitcoin",
"budgeting",
"C++",
"COBOL",
"Cryptocurrency",
"Excel",
"Venture Financing",
"Valuation",
"MS Excel",
"Market Analysis",
"Microsoft Excel",
"MS-Excel",
"Stock Market Analysis",
"Spreadsheets",
"Portfolio Management",
"Private Equity",
"Production Processes",
"java",
"R",
"data mining",
"Foreign Exchange (FX) Trading",
"finance",
"equity derivatives"
],
"Frontend": [
"XML",
"REST API",
"Kivy",
"Kotlin",
"Java",
"iOS Development",
"Retfofit",
"react native",
"Objective C",
"Android Development",
"rest",
"flutter",
"react",
"css3",
"asp.net",
"redux.js",
"scss",
"webapp development",
"ajax",
"application programming interfaces"
],
"Full Stack": [
"MEAN",
"MERN",
"LAMP",
"wordpress",
"full stack development",
"api development",
"webapp development"
],
"Game development and VR": [
"Unity",
"C++",
"C#",
"Computer Graphics",
"Microsoft Airsim"
],
"Graphic Design": [
"Vector Illustration",
"Adobe Creative Suite",
"Adobe Photoshop",
"coreldraw",
"WebGL",
"Logo Design",
"Motion Graphics",
"tkinter",
"Photoshop",
"Simulink",
"adobe illustrator",
"adobe after effects",
"editing"
],
"Hardware": [
"Computer Design",
"Microprocessors",
"Microcontrollers",
"computer hardware"
],
"Human Resource Management": [
"human resources (hr)",
"Employee Relations",
"Recruitment",
"public relations"
],
"IOT": [
"Embedded C++",
"Adruino",
"Java",
"Industrial Engineering",
"Industrial Internet of Things (IIoT)",
"C++",
"IOT Developer",
"ESP8266",
"raspberry pi",
"MQTT",
"arduino",
"embedded c"
],
"Low Code": [
"Adalo",
"VBA Programming",
"json",
"mulesoft anypoint platform"
],
"Management": [
"WordPress",
"Teamwork",
"Time Management",
"Team Leadership",
"Slack",
"Team Building",
"Event Management",
"Event Planning",
"Executive Management",
"Hotel Management",
"Storytelling",
"Business Management",
"Strategy",
"Investment Management",
"Corporate Relations",
"Innovation Management",
"IT Project & Program Management",
"Valuation",
"Record Keeping",
"Rate Management",
"Leadership",
"Management",
"Logistics Management",
"Maintenance",
"Microsoft Office",
"Microsoft Project",
"Moodle",
"Negotiation",
"Strategic Customer Development",
"Office 365",
"Open Innovation",
"Organising",
"Organization Skills",
"Organizational Development",
"ORMB",
"Partner management",
"SharePoint",
"Scout Leadership",
"Planning",
"Political Strategy",
"Political Organization",
"presentation skills",
"Program Management",
"Product Design",
"Product Development",
"Production Processes",
"operations management",
"Operational Planning",
"management",
"team management",
"project management",
"strategy",
"interpersonal skills",
"powerpoint",
"human resources (hr)",
"documentation",
"brand management",
"marketing strategy",
"risk management",
"personal development",
"project planning",
"product management"
],
"Marketing": [
"Sales & Marketing",
"Twitter",
"Sales",
"Sponsorship",
"Social Media",
"Social Media Analytics",
"Advertising",
"Affiliate Marketing",
"Email",
"Facebook Ads",
"Google Ads",
"Google Analytics",
"Influencer Marketing",
"Firebase analytics",
"B2B and B2C Marketing",
"Bargaining",
"Technical Presentations",
"Personal branding",
"brand management",
"Campaign Management",
"Cold Mailing",
"Cold calling",
"Lead Generation",
"Marketing Analysis",
"Media Communications",
"Media Marketing",
"Magazine Articles",
"Microsoft Office",
"Microsoft Outlook",
"Microsoft Teams",
"Microsoft Powerpoint",
"Microsoft Word",
"Mozcast",
"MQL",
"Multimedia",
"Office 365",
"Offline Marketing",
"Online Advertising",
"Online Articles",
"online marketing",
"Paid Social Media Advertising",
"Singleview Billing Product",
"SFMC",
"Planning",
"Powerpoint",
"Pre sales",
"presentation skills",
"Presenter",
"Prezi",
"Pricing Strategy",
"Product Marketing",
"Product Strategy",
"Professional Communication",
"Operational Planning",
"social media marketing",
"communication",
"seo",
"marketing",
"digital marketing",
"strategy",
"powerpoint",
"sales",
"publicity",
"negotiation",
"marketing strategy"
],
"Mechanical": [
"Drilling",
"ASME Y14.5 2009",
"automobile",
"Automotive",
"Fluid Mechanics",
"BIW(Body in white)",
"SOLIDWORKS",
"Soldering",
"SOLID Design Principles",
"Dealership Management",
"Heat Transfer",
"Instrumentation",
"Internal Combustion Engines",
"Mechanical Drawings",
"Mechanical Engineering",
"Spare Parts",
"autocad mechanical"
],
"Mobile App": [
"XML",
"REST API",
"Kivy",
"Kotlin",
"Java",
"iOS Development",
"Retfofit",
"react native",
"Objective C",
"Android Development",
"rest",
"flutter",
"ionic framework",
"go (programming language)",
"webapp development"
],
"Networking": [
"Youth Marketing",
"Volunteering",
"Training",
"Team Leadership",
"Emotional Intelligence",
"social work",
"Social Services",
"Group Discussions",
"Extemporaneous Speaking",
"Ethics",
"Hospitality Service",
"Relationship Building",
"Leadership",
"Motivational Speaking",
"Non-profit Volunteering",
"NSS",
"Public Speaking",
"presentation skills",
"Prezi",
"Professional Communication",
"teamwork",
"communication",
"public relations",
"interpersonal skills"
],
"No code": [
"WPF Development",
"Technical Support",
"Style Sheets",
"windows Application"
],
"Operating System": [
"Windows Programming",
"Fedora",
"Unix",
"Kali Linux",
"Linux",
"GNU",
"UWP",
"uCOS",
"red hat linux",
"Real-Time Operating Systems (RTOS)",
"Linux Server",
"Multitasking",
"Multithreading",
"Multithreaded Development",
"Scripting",
"os",
"macos"
],
"Operations": [
"Appication Lifecycle management",
"Blackduck",
"BOM management",
"Global Sales Operations",
"Global Operations",
"Software Testing",
"Life Cycle",
"Stage Management",
"Production Support",
"Operations",
"strategic planning",
"decision making",
"customer service",
"technical support"
],
"Robotics": [
"Assembly Programming",
"Robot Operating System (ROS)",
"Robotic Design",
"C",
"UiPath",
"Papyrus",
"iot",
"cnn",
"robotics",
"robotic process automation (rpa)"
],
"Shell": [
"bash",
"zsh",
"vim",
"Tortoise SVN",
"shell scripting",
"Powershell"
],
"Simulation": [
"COMSOL(physics simulation)",
"Matlab",
"GNU Octave",
"LTSpice",
"msc adams",
"Multisim",
"NI Multisim",
"ANSYS",
"proteus",
"ansys"
],
"Software development": [
".NET",
"Unity",
"Java",