-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathskills.jsonl
More file actions
2163 lines (2163 loc) · 155 KB
/
skills.jsonl
File metadata and controls
2163 lines (2163 loc) · 155 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{"label": "SKILL", "pattern": [{"TEXT": ".NET"}]}
{"label": "SKILL", "pattern": [{"LOWER": ""}, {"LOWER": "net"}]}
{"label": "SKILL", "pattern": [{"TEXT": "3D"}]}
{"label": "SKILL", "pattern": [{"LOWER": "3d"}, {"LOWER": "reconstruction"}]}
{"label": "SKILL", "pattern": [{"LOWER": "aboutness"}]}
{"label": "SKILL", "pattern": [{"LOWER": "abstract"}, {"LOWER": "data"}, {"LOWER": "type"}]}
{"label": "SKILL", "pattern": [{"LOWER": "abstract"}, {"LOWER": "interpretation"}]}
{"label": "SKILL", "pattern": [{"LOWER": "abstract"}, {"LOWER": "machine"}]}
{"label": "SKILL", "pattern": [{"LOWER": "access"}, {"LOWER": "control"}]}
{"label": "SKILL", "pattern": [{"LOWER": "access"}, {"LOWER": "method"}]}
{"label": "SKILL", "pattern": [{"LOWER": "access"}, {"LOWER": "network"}]}
{"label": "SKILL", "pattern": [{"LOWER": "accounting"}]}
{"label": "SKILL", "pattern": [{"LOWER": "active"}, {"LOWER": "appearance"}, {"LOWER": "model"}]}
{"label": "SKILL", "pattern": [{"LOWER": "active"}, {"LOWER": "database"}]}
{"label": "SKILL", "pattern": [{"LOWER": "active"}, {"LOWER": "networking"}]}
{"label": "SKILL", "pattern": [{"LOWER": "active"}, {"LOWER": "shape"}, {"LOWER": "model"}]}
{"label": "SKILL", "pattern": [{"LOWER": "activemq"}]}
{"label": "SKILL", "pattern": [{"LOWER": "activity"}, {"LOWER": "recognition"}]}
{"label": "SKILL", "pattern": [{"LOWER": "actuarial"}, {"LOWER": "science"}]}
{"label": "SKILL", "pattern": [{"LOWER": "actuator"}]}
{"label": "SKILL", "pattern": [{"LOWER": "adaboost"}]}
{"label": "SKILL", "pattern": [{"LOWER": "adaptive"}, {"LOWER": "routing"}]}
{"label": "SKILL", "pattern": [{"LOWER": "adaptive"}, {"LOWER": "system"}]}
{"label": "SKILL", "pattern": [{"LOWER": "adder"}]}
{"label": "SKILL", "pattern": [{"LOWER": "adobe"}, {"LOWER": "illustrator"}]}
{"label": "SKILL", "pattern": [{"LOWER": "adobe"}, {"LOWER": "photoshop"}]}
{"label": "SKILL", "pattern": [{"LOWER": "advertising"}]}
{"label": "SKILL", "pattern": [{"LOWER": "aerial"}, {"LOWER": "photography"}]}
{"label": "SKILL", "pattern": [{"LOWER": "aeronautics"}]}
{"label": "SKILL", "pattern": [{"LOWER": "aerospace"}, {"LOWER": "engineering"}]}
{"label": "SKILL", "pattern": [{"LOWER": "aerospike"}]}
{"label": "SKILL", "pattern": [{"LOWER": "agile"}, {"LOWER": "project"}, {"LOWER": "management"}]}
{"label": "SKILL", "pattern": [{"LOWER": "agricultural"}, {"LOWER": "engineering"}]}
{"label": "SKILL", "pattern": [{"LOWER": "airflow"}]}
{"label": "SKILL", "pattern": [{"LOWER": "airtable"}]}
{"label": "SKILL", "pattern": [{"LOWER": "ajax"}]}
{"label": "SKILL", "pattern": [{"LOWER": "akamai"}]}
{"label": "SKILL", "pattern": [{"LOWER": "akka"}]}
{"label": "SKILL", "pattern": [{"LOWER": "algolia"}]}
{"label": "SKILL", "pattern": [{"LOWER": "algorithms"}]}
{"label": "SKILL", "pattern": [{"LOWER": "algorithm"}]}
{"label": "SKILL", "pattern": [{"LOWER": "algorithm"}, {"LOWER": "design"}]}
{"label": "SKILL", "pattern": [{"LOWER": "alpine"}, {"LOWER": "linux"}]}
{"label": "SKILL", "pattern": [{"LOWER": "amazon"}, {"LOWER": "api"}, {"LOWER": "gateway"}]}
{"label": "SKILL", "pattern": [{"LOWER": "amazon"}, {"LOWER": "athena"}]}
{"label": "SKILL", "pattern": [{"LOWER": "amazon"}, {"LOWER": "cloudfront"}]}
{"label": "SKILL", "pattern": [{"LOWER": "amazon"}, {"LOWER": "cloudwatch"}]}
{"label": "SKILL", "pattern": [{"LOWER": "amazon"}, {"LOWER": "cognito"}]}
{"label": "SKILL", "pattern": [{"LOWER": "amazon"}, {"LOWER": "dynamodb"}]}
{"label": "SKILL", "pattern": [{"LOWER": "amazon"}, {"LOWER": "ebs"}]}
{"label": "SKILL", "pattern": [{"LOWER": "amazon"}, {"LOWER": "ec2"}]}
{"label": "SKILL", "pattern": [{"LOWER": "amazon"}, {"LOWER": "ec2"}, {"LOWER": "container"}, {"LOWER": "service"}]}
{"label": "SKILL", "pattern": [{"LOWER": "amazon"}, {"LOWER": "eks"}]}
{"label": "SKILL", "pattern": [{"LOWER": "amazon"}, {"LOWER": "elasticache"}]}
{"label": "SKILL", "pattern": [{"LOWER": "amazon"}, {"LOWER": "elasticsearch"}, {"LOWER": "service"}]}
{"label": "SKILL", "pattern": [{"LOWER": "amazon"}, {"LOWER": "emr"}]}
{"label": "SKILL", "pattern": [{"LOWER": "amazon"}, {"LOWER": "kinesis"}]}
{"label": "SKILL", "pattern": [{"LOWER": "amazon"}, {"LOWER": "kinesis"}, {"LOWER": "firehose"}]}
{"label": "SKILL", "pattern": [{"LOWER": "amazon"}, {"LOWER": "machine"}, {"LOWER": "learning"}]}
{"label": "SKILL", "pattern": [{"LOWER": "amazon"}, {"LOWER": "rds"}]}
{"label": "SKILL", "pattern": [{"LOWER": "amazon"}, {"LOWER": "rds"}, {"LOWER": "for"}, {"LOWER": "aurora"}]}
{"label": "SKILL", "pattern": [{"LOWER": "amazon"}, {"LOWER": "rds"}, {"LOWER": "for"}, {"LOWER": "postgresql"}]}
{"label": "SKILL", "pattern": [{"LOWER": "amazon"}, {"LOWER": "redshift"}]}
{"label": "SKILL", "pattern": [{"LOWER": "amazon"}, {"LOWER": "route"}, {"LOWER": "53"}]}
{"label": "SKILL", "pattern": [{"LOWER": "amazon"}, {"LOWER": "s3"}]}
{"label": "SKILL", "pattern": [{"LOWER": "amazon"}, {"LOWER": "ses"}]}
{"label": "SKILL", "pattern": [{"LOWER": "amazon"}, {"LOWER": "sns"}]}
{"label": "SKILL", "pattern": [{"LOWER": "amazon"}, {"LOWER": "sqs"}]}
{"label": "SKILL", "pattern": [{"LOWER": "amazon"}, {"LOWER": "vpc"}]}
{"label": "SKILL", "pattern": [{"LOWER": "ambiguity"}]}
{"label": "SKILL", "pattern": [{"LOWER": "amp"}]}
{"label": "SKILL", "pattern": [{"LOWER": "amplitude"}]}
{"label": "SKILL", "pattern": [{"LOWER": "analog-to-digital"}, {"LOWER": "converter"}]}
{"label": "SKILL", "pattern": [{"LOWER": "analog"}, {"LOWER": "to"}, {"LOWER": "digital converter"}]}
{"label": "SKILL", "pattern": [{"LOWER": "analysis"}, {"LOWER": "of"}, {"LOWER": "algorithms"}]}
{"label": "SKILL", "pattern": [{"LOWER": "analysis"}, {"LOWER": "of"}, {"LOWER": "covariance"}]}
{"label": "SKILL", "pattern": [{"LOWER": "analysis"}, {"LOWER": "of"}, {"LOWER": "variance"}]}
{"label": "SKILL", "pattern": [{"LOWER": "analytics"}]}
{"label": "SKILL", "pattern": [{"LOWER": "analytics"}, {"LOWER": "integrator"}]}
{"label": "SKILL", "pattern": [{"LOWER": "android"}]}
{"label": "SKILL", "pattern": [{"LOWER": "android"}, {"LOWER": "sdk"}]}
{"label": "SKILL", "pattern": [{"LOWER": "android"}, {"LOWER": "studio"}]}
{"label": "SKILL", "pattern": [{"LOWER": "angular"}]}
{"label": "SKILL", "pattern": [{"LOWER": "angular"}, {"LOWER": "2"}]}
{"label": "SKILL", "pattern": [{"LOWER": "angularjs"}]}
{"label": "SKILL", "pattern": [{"LOWER": "angularui"}]}
{"label": "SKILL", "pattern": [{"LOWER": "anomaly"}, {"LOWER": "detection"}]}
{"label": "SKILL", "pattern": [{"LOWER": "ansible"}]}
{"label": "SKILL", "pattern": [{"LOWER": "ant"}, {"LOWER": "design"}]}
{"label": "SKILL", "pattern": [{"LOWER": "apache"}, {"LOWER": "ant"}]}
{"label": "SKILL", "pattern": [{"LOWER": "apache"}, {"LOWER": "cordova"}]}
{"label": "SKILL", "pattern": [{"LOWER": "apache"}, {"LOWER": "flink"}]}
{"label": "SKILL", "pattern": [{"LOWER": "apache"}, {"LOWER": "http"}, {"LOWER": "server"}]}
{"label": "SKILL", "pattern": [{"LOWER": "apache"}, {"LOWER": "maven"}]}
{"label": "SKILL", "pattern": [{"LOWER": "apache"}, {"LOWER": "mesos"}]}
{"label": "SKILL", "pattern": [{"LOWER": "apache"}, {"LOWER": "spark"}]}
{"label": "SKILL", "pattern": [{"LOWER": "apache"}, {"LOWER": "tomcat"}]}
{"label": "SKILL", "pattern": [{"LOWER": "apache"}, {"LOWER": "zeppelin"}]}
{"label": "SKILL", "pattern": [{"TEXT": "API"}]}
{"label": "SKILL", "pattern": [{"LOWER": "api"}, {"LOWER": "documentation"}, {"LOWER": "browser"}]}
{"label": "SKILL", "pattern": [{"LOWER": "api"}, {"LOWER": "tools"}]}
{"label": "SKILL", "pattern": [{"LOWER": "api.ai"}]}
{"label": "SKILL", "pattern": [{"LOWER": "api"}, {"LOWER": "ai"}]}
{"label": "SKILL", "pattern": [{"LOWER": "apiary"}]}
{"label": "SKILL", "pattern": [{"LOWER": "apigee"}]}
{"label": "SKILL", "pattern": [{"LOWER": "apollo"}]}
{"label": "SKILL", "pattern": [{"LOWER": "appium"}]}
{"label": "SKILL", "pattern": [{"LOWER": "application"}, {"LOWER": "and"}, {"LOWER": "data"}]}
{"label": "SKILL", "pattern": [{"LOWER": "application"}, {"LOWER": "hosting"}]}
{"label": "SKILL", "pattern": [{"LOWER": "application"}, {"LOWER": "programming"}, {"LOWER": "interface"}]}
{"label": "SKILL", "pattern": [{"LOWER": "application"}, {"LOWER": "server"}]}
{"label": "SKILL", "pattern": [{"LOWER": "application-specific"}, {"LOWER": "integrated"}, {"LOWER": "circuit"}]}
{"label": "SKILL", "pattern": [{"LOWER": "application"}, {"LOWER": "specific integrated circuit"}]}
{"label": "SKILL", "pattern": [{"LOWER": "application"}, {"LOWER": "utilities"}]}
{"label": "SKILL", "pattern": [{"LOWER": "appveyor"}]}
{"label": "SKILL", "pattern": [{"LOWER": "arangodb"}]}
{"label": "SKILL", "pattern": [{"LOWER": "arch"}, {"LOWER": "linux"}]}
{"label": "SKILL", "pattern": [{"LOWER": "architectural"}, {"LOWER": "engineering"}]}
{"label": "SKILL", "pattern": [{"LOWER": "architect"}]}
{"label": "SKILL", "pattern": [{"LOWER": "arduino"}]}
{"label": "SKILL", "pattern": [{"LOWER": "ai"}]}
{"label": "SKILL", "pattern": [{"LOWER": "artificial"}, {"LOWER": "intelligence"}]}
{"label": "SKILL", "pattern": [{"LOWER": "artificial"}, {"LOWER": "neural"}, {"LOWER": "network"}]}
{"label": "SKILL", "pattern": [{"LOWER": "asana"}]}
{"label": "SKILL", "pattern": [{"LOWER": "aspect-oriented"}, {"LOWER": "programming"}]}
{"label": "SKILL", "pattern": [{"LOWER": "aspect"}, {"LOWER": "oriented programming"}]}
{"label": "SKILL", "pattern": [{"TEXT": "ASP.NET"}]}
{"label": "SKILL", "pattern": [{"LOWER": "asp"}, {"LOWER": "net"}]}
{"label": "SKILL", "pattern": [{"LOWER": "assets"}, {"LOWER": "and"}, {"LOWER": "media"}]}
{"label": "SKILL", "pattern": [{"LOWER": "association"}, {"LOWER": "rule"}, {"LOWER": "learning"}]}
{"label": "SKILL", "pattern": [{"LOWER": "asynchronous"}, {"LOWER": "communication"}]}
{"label": "SKILL", "pattern": [{"LOWER": "asynchronous"}, {"LOWER": "transfer"}, {"LOWER": "mode"}]}
{"label": "SKILL", "pattern": [{"LOWER": "atom"}]}
{"label": "SKILL", "pattern": [{"LOWER": "audio"}, {"LOWER": "signal"}]}
{"label": "SKILL", "pattern": [{"LOWER": "augmented"}, {"LOWER": "reality"}]}
{"label": "SKILL", "pattern": [{"LOWER": "aurelia"}]}
{"label": "SKILL", "pattern": [{"LOWER": "auth0"}]}
{"label": "SKILL", "pattern": [{"LOWER": "authentication"}]}
{"label": "SKILL", "pattern": [{"LOWER": "authy"}]}
{"label": "SKILL", "pattern": [{"LOWER": "automated"}, {"LOWER": "reasoning"}]}
{"label": "SKILL", "pattern": [{"LOWER": "automated"}, {"LOWER": "theorem"}, {"LOWER": "proving"}]}
{"label": "SKILL", "pattern": [{"LOWER": "automatic"}, {"LOWER": "programming"}]}
{"label": "SKILL", "pattern": [{"LOWER": "automatic"}, {"LOWER": "summarization"}]}
{"label": "SKILL", "pattern": [{"LOWER": "automatic"}, {"LOWER": "taxonomy"}, {"LOWER": "induction"}]}
{"label": "SKILL", "pattern": [{"LOWER": "automaton"}]}
{"label": "SKILL", "pattern": [{"LOWER": "automotive"}, {"LOWER": "engineering"}]}
{"label": "SKILL", "pattern": [{"LOWER": "autonomic"}, {"LOWER": "computing"}]}
{"label": "SKILL", "pattern": [{"TEXT": "AVA"}]}
{"label": "SKILL", "pattern": [{"LOWER": "amazon"}, {"LOWER": "web"}, {"LOWER": "services"}]}
{"label": "SKILL", "pattern": [{"LOWER": "aws"}, {"LOWER": "cloudformation"}]}
{"label": "SKILL", "pattern": [{"LOWER": "aws"}, {"LOWER": "codebuild"}]}
{"label": "SKILL", "pattern": [{"LOWER": "aws"}, {"LOWER": "codecommit"}]}
{"label": "SKILL", "pattern": [{"LOWER": "aws"}, {"LOWER": "codedeploy"}]}
{"label": "SKILL", "pattern": [{"LOWER": "aws"}, {"LOWER": "codepipeline"}]}
{"label": "SKILL", "pattern": [{"LOWER": "aws"}, {"LOWER": "direct"}, {"LOWER": "connect"}]}
{"label": "SKILL", "pattern": [{"LOWER": "aws"}, {"LOWER": "elastic"}, {"LOWER": "beanstalk"}]}
{"label": "SKILL", "pattern": [{"LOWER": "aws"}, {"LOWER": "elastic"}, {"LOWER": "load"}, {"LOWER": "balancing"}, {"LOWER": "(elb)"}]}
{"label": "SKILL", "pattern": [{"LOWER": "aws"}, {"LOWER": "fargate"}]}
{"label": "SKILL", "pattern": [{"LOWER": "aws"}, {"LOWER": "iam"}]}
{"label": "SKILL", "pattern": [{"LOWER": "aws"}, {"LOWER": "lambda"}]}
{"label": "SKILL", "pattern": [{"LOWER": "aws"}, {"LOWER": "opsworks"}]}
{"label": "SKILL", "pattern": [{"TEXT": "AWX"}]}
{"label": "SKILL", "pattern": [{"LOWER": "azure"}]}
{"label": "SKILL", "pattern": [{"LOWER": "azure"}, {"LOWER": "cosmos"}, {"LOWER": "db"}]}
{"label": "SKILL", "pattern": [{"LOWER": "azure"}, {"LOWER": "functions"}]}
{"label": "SKILL", "pattern": [{"LOWER": "azure"}, {"LOWER": "machine"}, {"LOWER": "learning"}]}
{"label": "SKILL", "pattern": [{"LOWER": "azure"}, {"LOWER": "storage"}]}
{"label": "SKILL", "pattern": [{"LOWER": "azure"}, {"LOWER": "websites"}]}
{"label": "SKILL", "pattern": [{"LOWER": "babel"}]}
{"label": "SKILL", "pattern": [{"LOWER": "back"}, {"LOWER": "office"}]}
{"label": "SKILL", "pattern": [{"LOWER": "backbone.js"}]}
{"label": "SKILL", "pattern": [{"LOWER": "backbone"}, {"LOWER": "js"}]}
{"label": "SKILL", "pattern": [{"LOWER": "background"}, {"LOWER": "processing"}]}
{"label": "SKILL", "pattern": [{"LOWER": "background"}, {"LOWER": "subtraction"}]}
{"label": "SKILL", "pattern": [{"LOWER": "bag-of-words"}, {"LOWER": "model"}]}
{"label": "SKILL", "pattern": [{"LOWER": "bag"}, {"LOWER": "of"}, {"LOWER": "words model"}]}
{"label": "SKILL", "pattern": [{"LOWER": "bamboo"}]}
{"label": "SKILL", "pattern": [{"LOWER": "base"}, {"LOWER": "station"}]}
{"label": "SKILL", "pattern": [{"LOWER": "bash"}]}
{"label": "SKILL", "pattern": [{"LOWER": "batch"}, {"LOWER": "processing"}]}
{"label": "SKILL", "pattern": [{"LOWER": "bayesian"}, {"LOWER": "inference"}]}
{"label": "SKILL", "pattern": [{"LOWER": "bayesian"}, {"LOWER": "network"}]}
{"label": "SKILL", "pattern": [{"LOWER": "bayesian"}, {"LOWER": "probability"}]}
{"label": "SKILL", "pattern": [{"LOWER": "bazel"}]}
{"label": "SKILL", "pattern": [{"LOWER": "beanstalk"}]}
{"label": "SKILL", "pattern": [{"LOWER": "beanstalkd"}]}
{"label": "SKILL", "pattern": [{"LOWER": "benchmark"}, {"LOWER": "(computing)"}]}
{"label": "SKILL", "pattern": [{"LOWER": "beta"}, {"LOWER": "by"}, {"LOWER": "crashlytics"}]}
{"label": "SKILL", "pattern": [{"LOWER": "beta"}, {"LOWER": "testing"}, {"LOWER": "/"}, {"LOWER": "mobile"}, {"LOWER": "app"}, {"LOWER": "distribution"}]}
{"label": "SKILL", "pattern": [{"LOWER": "beta testing "}, {"LOWER": " mobile app distribution"}]}
{"label": "SKILL", "pattern": [{"LOWER": "bibliographic"}, {"LOWER": "database"}]}
{"label": "SKILL", "pattern": [{"LOWER": "bibliometrics"}]}
{"label": "SKILL", "pattern": [{"LOWER": "big"}, {"LOWER": "data"}]}
{"label": "SKILL", "pattern": [{"LOWER": "big"}, {"LOWER": "data"}, {"LOWER": "as"}, {"LOWER": "a"}, {"LOWER": "service"}]}
{"label": "SKILL", "pattern": [{"LOWER": "big"}, {"LOWER": "data"}, {"LOWER": "tools"}]}
{"label": "SKILL", "pattern": [{"LOWER": "binary"}, {"LOWER": "search"}, {"LOWER": "tree"}]}
{"label": "SKILL", "pattern": [{"LOWER": "biochemical"}, {"LOWER": "engineering"}]}
{"label": "SKILL", "pattern": [{"LOWER": "biological"}, {"LOWER": "database"}]}
{"label": "SKILL", "pattern": [{"LOWER": "biomedical"}, {"LOWER": "engineering"}]}
{"label": "SKILL", "pattern": [{"LOWER": "biometrics"}]}
{"label": "SKILL", "pattern": [{"LOWER": "bitbucket"}]}
{"label": "SKILL", "pattern": [{"LOWER": "bitrise"}]}
{"label": "SKILL", "pattern": [{"LOWER": "blind"}, {"LOWER": "signal"}, {"LOWER": "separation"}]}
{"label": "SKILL", "pattern": [{"LOWER": "blockchain"}]}
{"label": "SKILL", "pattern": [{"LOWER": "body"}, {"LOWER": "text"}]}
{"label": "SKILL", "pattern": [{"LOWER": "boolean"}, {"LOWER": "algebra"}]}
{"label": "SKILL", "pattern": [{"LOWER": "boolean"}, {"LOWER": "expression"}]}
{"label": "SKILL", "pattern": [{"LOWER": "boosting"}, {"LOWER": "(machine"}, {"LOWER": "learning)"}]}
{"label": "SKILL", "pattern": [{"LOWER": "boot2docker"}]}
{"label": "SKILL", "pattern": [{"LOWER": "bootstrap"}]}
{"label": "SKILL", "pattern": [{"LOWER": "bootswatch"}]}
{"label": "SKILL", "pattern": [{"LOWER": "bower"}]}
{"label": "SKILL", "pattern": [{"LOWER": "box"}]}
{"label": "SKILL", "pattern": [{"LOWER": "brackets"}]}
{"label": "SKILL", "pattern": [{"LOWER": "brain"}, {"LOWER": "mapping"}]}
{"label": "SKILL", "pattern": [{"LOWER": "braintree"}]}
{"label": "SKILL", "pattern": [{"LOWER": "branch"}, {"LOWER": "and"}, {"LOWER": "bound"}]}
{"label": "SKILL", "pattern": [{"LOWER": "breadth-first"}, {"LOWER": "search"}]}
{"label": "SKILL", "pattern": [{"LOWER": "breadth"}, {"LOWER": "first search"}]}
{"label": "SKILL", "pattern": [{"LOWER": "brightness"}]}
{"label": "SKILL", "pattern": [{"LOWER": "broadcasting"}]}
{"label": "SKILL", "pattern": [{"LOWER": "browser"}, {"LOWER": "testing"}]}
{"label": "SKILL", "pattern": [{"LOWER": "browserify"}]}
{"label": "SKILL", "pattern": [{"LOWER": "browserstack"}]}
{"label": "SKILL", "pattern": [{"LOWER": "browsersync"}]}
{"label": "SKILL", "pattern": [{"LOWER": "brunch"}]}
{"label": "SKILL", "pattern": [{"LOWER": "brute-force"}, {"LOWER": "search"}]}
{"label": "SKILL", "pattern": [{"LOWER": "brute"}, {"LOWER": "force search"}]}
{"label": "SKILL", "pattern": [{"LOWER": "buffer"}, {"LOWER": "overflow"}]}
{"label": "SKILL", "pattern": [{"LOWER": "build,"}, {"LOWER": "test,"}, {"LOWER": "deploy"}]}
{"label": "SKILL", "pattern": [{"LOWER": "buildkite"}]}
{"label": "SKILL", "pattern": [{"LOWER": "built-in"}, {"LOWER": "self-test"}]}
{"label": "SKILL", "pattern": [{"LOWER": "built"}, {"LOWER": "in self"}, {"LOWER": "test"}]}
{"label": "SKILL", "pattern": [{"LOWER": "bulma"}]}
{"label": "SKILL", "pattern": [{"LOWER": "business"}]}
{"label": "SKILL", "pattern": [{"LOWER": "business"}, {"LOWER": "administration"}]}
{"label": "SKILL", "pattern": [{"LOWER": "business"}, {"LOWER": "dashboards"}]}
{"label": "SKILL", "pattern": [{"LOWER": "business"}, {"LOWER": "intelligence"}]}
{"label": "SKILL", "pattern": [{"LOWER": "business"}, {"LOWER": "process"}]}
{"label": "SKILL", "pattern": [{"LOWER": "business"}, {"LOWER": "tools"}]}
{"label": "SKILL", "pattern": [{"TEXT": "C++"}]}
{"label": "SKILL", "pattern": [{"TEXT": "C"}]}
{"label": "SKILL", "pattern": [{"LOWER": "c3"}, {"LOWER": "js"}]}
{"label": "SKILL", "pattern": [{"LOWER": "caddy"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cakephp"}]}
{"label": "SKILL", "pattern": [{"LOWER": "canonical"}, {"LOWER": "correlation"}]}
{"label": "SKILL", "pattern": [{"LOWER": "canonical"}, {"LOWER": "model"}]}
{"label": "SKILL", "pattern": [{"LOWER": "capistrano"}]}
{"label": "SKILL", "pattern": [{"LOWER": "capybara"}]}
{"label": "SKILL", "pattern": [{"LOWER": "case-based"}, {"LOWER": "reasoning"}]}
{"label": "SKILL", "pattern": [{"LOWER": "case"}, {"LOWER": "based reasoning"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cassandra"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cataloging"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cdnjs"}]}
{"label": "SKILL", "pattern": [{"LOWER": "celery"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cellular"}, {"LOWER": "network"}]}
{"label": "SKILL", "pattern": [{"LOWER": "centos"}]}
{"label": "SKILL", "pattern": [{"LOWER": "central"}, {"LOWER": "processing"}, {"LOWER": "unit"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cepstrum"}]}
{"label": "SKILL", "pattern": [{"LOWER": "certificate"}]}
{"label": "SKILL", "pattern": [{"LOWER": "certificate"}, {"LOWER": "authority"}]}
{"label": "SKILL", "pattern": [{"LOWER": "change"}, {"LOWER": "detection"}]}
{"label": "SKILL", "pattern": [{"LOWER": "chartbeat"}]}
{"label": "SKILL", "pattern": [{"LOWER": "charting"}, {"LOWER": "libraries"}]}
{"label": "SKILL", "pattern": [{"LOWER": "chatbot"}, {"LOWER": "platforms"}, {"LOWER": "&"}, {"LOWER": "tools"}]}
{"label": "SKILL", "pattern": [{"LOWER": "chatops"}]}
{"label": "SKILL", "pattern": [{"LOWER": "chef"}]}
{"label": "SKILL", "pattern": [{"LOWER": "chemical"}, {"LOWER": "engineering"}]}
{"label": "SKILL", "pattern": [{"LOWER": "chemometrics"}]}
{"label": "SKILL", "pattern": [{"LOWER": "chrome"}]}
{"label": "SKILL", "pattern": [{"LOWER": "chrome"}, {"LOWER": "extension"}]}
{"label": "SKILL", "pattern": [{"LOWER": "circleci"}]}
{"label": "SKILL", "pattern": [{"LOWER": "circumscription"}]}
{"label": "SKILL", "pattern": [{"LOWER": "civil"}, {"LOWER": "engineering"}]}
{"label": "SKILL", "pattern": [{"LOWER": "classical"}, {"LOWER": "logic"}]}
{"label": "SKILL", "pattern": [{"LOWER": "classifier"}, {"LOWER": "(linguistics)"}]}
{"label": "SKILL", "pattern": [{"LOWER": "clef"}]}
{"label": "SKILL", "pattern": [{"LOWER": "clever"}, {"LOWER": "cloud"}]}
{"label": "SKILL", "pattern": [{"LOWER": "command"}, {"LOWER": "line"}, {"LOWER": "interface"}]}
{"label": "SKILL", "pattern": [{"LOWER": "clicktale"}]}
{"label": "SKILL", "pattern": [{"LOWER": "clicky"}]}
{"label": "SKILL", "pattern": [{"LOWER": "client\u2013server"}, {"LOWER": "model"}]}
{"label": "SKILL", "pattern": [{"LOWER": "clinicalkey"}]}
{"label": "SKILL", "pattern": [{"LOWER": "clion"}]}
{"label": "SKILL", "pattern": [{"LOWER": "clojure"}]}
{"label": "SKILL", "pattern": [{"LOWER": "clojurescript"}]}
{"label": "SKILL", "pattern": [{"LOWER": "clone"}, {"LOWER": "(java"}, {"LOWER": "method)"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cloud"}, {"LOWER": "access"}, {"LOWER": "management"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cloud"}, {"LOWER": "content"}, {"LOWER": "management"}, {"LOWER": "system"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cloud"}, {"LOWER": "firestore"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cloud"}, {"LOWER": "foundry"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cloud"}, {"LOWER": "functions"}, {"LOWER": "for"}, {"LOWER": "firebase"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cloud"}, {"LOWER": "hosting"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cloud"}, {"LOWER": "ide"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cloud"}, {"LOWER": "monitoring"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cloud"}, {"LOWER": "storage"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cloud9"}, {"LOWER": "ide"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cloudflare"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cloudinary"}]}
{"label": "SKILL", "pattern": [{"LOWER": "clubhouse"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cluster"}, {"LOWER": "analysis"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cluster"}, {"LOWER": "management"}]}
{"label": "SKILL", "pattern": [{"TEXT": "COBOL"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cocoa"}, {"LOWER": "touch"}, {"LOWER": "(ios)"}]}
{"label": "SKILL", "pattern": [{"LOWER": "codacy"}]}
{"label": "SKILL", "pattern": [{"LOWER": "code"}, {"LOWER": "climate"}]}
{"label": "SKILL", "pattern": [{"LOWER": "code"}, {"LOWER": "collaboration"}, {"LOWER": "&"}, {"LOWER": "version"}, {"LOWER": "control"}]}
{"label": "SKILL", "pattern": [{"LOWER": "code"}, {"LOWER": "coverage"}]}
{"label": "SKILL", "pattern": [{"LOWER": "code"}, {"LOWER": "generation"}]}
{"label": "SKILL", "pattern": [{"LOWER": "code"}, {"LOWER": "quality"}]}
{"label": "SKILL", "pattern": [{"LOWER": "code"}, {"LOWER": "review"}]}
{"label": "SKILL", "pattern": [{"LOWER": "code"}, {"LOWER": "review"}]}
{"label": "SKILL", "pattern": [{"LOWER": "codeanywhere"}]}
{"label": "SKILL", "pattern": [{"LOWER": "codebook"}]}
{"label": "SKILL", "pattern": [{"LOWER": "codec"}]}
{"label": "SKILL", "pattern": [{"LOWER": "codecov"}]}
{"label": "SKILL", "pattern": [{"LOWER": "codeigniter"}]}
{"label": "SKILL", "pattern": [{"LOWER": "codekit"}]}
{"label": "SKILL", "pattern": [{"LOWER": "codemirror"}]}
{"label": "SKILL", "pattern": [{"LOWER": "codenvy"}]}
{"label": "SKILL", "pattern": [{"LOWER": "codeship"}]}
{"label": "SKILL", "pattern": [{"LOWER": "coding"}, {"LOWER": "(social"}, {"LOWER": "sciences)"}]}
{"label": "SKILL", "pattern": [{"LOWER": "coffeescript"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cognitive"}, {"LOWER": "neuroscience"}, {"LOWER": "of"}, {"LOWER": "visual"}, {"LOWER": "object"}, {"LOWER": "recognition"}]}
{"label": "SKILL", "pattern": [{"LOWER": "color"}, {"LOWER": "vision"}]}
{"label": "SKILL", "pattern": [{"LOWER": "colorimetry"}]}
{"label": "SKILL", "pattern": [{"LOWER": "combinatorial"}, {"LOWER": "optimization"}]}
{"label": "SKILL", "pattern": [{"LOWER": "commenting"}, {"LOWER": "service"}]}
{"label": "SKILL", "pattern": [{"LOWER": "common"}, {"LOWER": "object"}, {"LOWER": "request"}, {"LOWER": "broker"}, {"LOWER": "architecture"}]}
{"label": "SKILL", "pattern": [{"LOWER": "communication"}, {"LOWER": "complexity"}]}
{"label": "SKILL", "pattern": [{"LOWER": "communication"}, {"LOWER": "in"}, {"LOWER": "small"}, {"LOWER": "groups"}]}
{"label": "SKILL", "pattern": [{"LOWER": "communications"}]}
{"label": "SKILL", "pattern": [{"LOWER": "communications"}, {"LOWER": "protocol"}]}
{"label": "SKILL", "pattern": [{"LOWER": "communications"}, {"LOWER": "sdk"}]}
{"label": "SKILL", "pattern": [{"LOWER": "communications"}, {"LOWER": "system"}]}
{"label": "SKILL", "pattern": [{"LOWER": "compiler"}]}
{"label": "SKILL", "pattern": [{"LOWER": "complex"}, {"LOWER": "data"}, {"LOWER": "type"}]}
{"label": "SKILL", "pattern": [{"LOWER": "complex"}, {"LOWER": "system"}]}
{"label": "SKILL", "pattern": [{"LOWER": "component"}]}
{"label": "SKILL", "pattern": [{"LOWER": "component"}, {"LOWER": "analysis"}]}
{"label": "SKILL", "pattern": [{"LOWER": "composite"}, {"LOWER": "index"}]}
{"label": "SKILL", "pattern": [{"LOWER": "compressed"}, {"LOWER": "sensing"}]}
{"label": "SKILL", "pattern": [{"LOWER": "computability"}]}
{"label": "SKILL", "pattern": [{"LOWER": "computability"}, {"LOWER": "theory"}]}
{"label": "SKILL", "pattern": [{"LOWER": "computation"}]}
{"label": "SKILL", "pattern": [{"LOWER": "computational"}, {"LOWER": "complexity"}, {"LOWER": "theory"}]}
{"label": "SKILL", "pattern": [{"LOWER": "computational"}, {"LOWER": "geometry"}]}
{"label": "SKILL", "pattern": [{"LOWER": "computational"}, {"LOWER": "mathematics"}]}
{"label": "SKILL", "pattern": [{"LOWER": "computational"}, {"LOWER": "model"}]}
{"label": "SKILL", "pattern": [{"LOWER": "computational"}, {"LOWER": "science"}]}
{"label": "SKILL", "pattern": [{"LOWER": "computer-aided"}, {"LOWER": "software"}, {"LOWER": "engineering"}]}
{"label": "SKILL", "pattern": [{"LOWER": "computer"}, {"LOWER": "aided software engineering"}]}
{"label": "SKILL", "pattern": [{"LOWER": "computer"}, {"LOWER": "architecture"}]}
{"label": "SKILL", "pattern": [{"LOWER": "computer"}, {"LOWER": "cluster"}]}
{"label": "SKILL", "pattern": [{"LOWER": "computer"}, {"LOWER": "data"}, {"LOWER": "storage"}]}
{"label": "SKILL", "pattern": [{"LOWER": "computer"}, {"LOWER": "engineering"}]}
{"label": "SKILL", "pattern": [{"LOWER": "computer"}, {"LOWER": "file"}]}
{"label": "SKILL", "pattern": [{"LOWER": "computer"}, {"LOWER": "graphics"}]}
{"label": "SKILL", "pattern": [{"LOWER": "computer"}, {"LOWER": "graphics"}, {"LOWER": "(images)"}]}
{"label": "SKILL", "pattern": [{"LOWER": "computer"}, {"LOWER": "hardware"}]}
{"label": "SKILL", "pattern": [{"LOWER": "computer"}, {"LOWER": "multitasking"}]}
{"label": "SKILL", "pattern": [{"LOWER": "computer"}, {"LOWER": "network"}]}
{"label": "SKILL", "pattern": [{"LOWER": "computer"}, {"LOWER": "program"}]}
{"label": "SKILL", "pattern": [{"LOWER": "computer"}, {"LOWER": "programming"}]}
{"label": "SKILL", "pattern": [{"LOWER": "computer"}, {"LOWER": "science"}]}
{"label": "SKILL", "pattern": [{"LOWER": "computer"}, {"LOWER": "security"}]}
{"label": "SKILL", "pattern": [{"LOWER": "computer"}, {"LOWER": "vision"}]}
{"label": "SKILL", "pattern": [{"LOWER": "concept"}, {"LOWER": "learning"}]}
{"label": "SKILL", "pattern": [{"LOWER": "conceptual"}, {"LOWER": "model"}]}
{"label": "SKILL", "pattern": [{"LOWER": "concourse"}]}
{"label": "SKILL", "pattern": [{"LOWER": "concurrency"}, {"LOWER": "control"}]}
{"label": "SKILL", "pattern": [{"LOWER": "concurrency"}, {"LOWER": "frameworks"}]}
{"label": "SKILL", "pattern": [{"LOWER": "concurrent"}, {"LOWER": "computing"}]}
{"label": "SKILL", "pattern": [{"LOWER": "conditional"}, {"LOWER": "random"}, {"LOWER": "field"}]}
{"label": "SKILL", "pattern": [{"LOWER": "confirmatory"}, {"LOWER": "factor"}, {"LOWER": "analysis"}]}
{"label": "SKILL", "pattern": [{"LOWER": "confluence"}]}
{"label": "SKILL", "pattern": [{"LOWER": "consistency"}, {"LOWER": "model"}]}
{"label": "SKILL", "pattern": [{"LOWER": "constant"}, {"LOWER": "false"}, {"LOWER": "alarm"}, {"LOWER": "rate"}]}
{"label": "SKILL", "pattern": [{"LOWER": "construction"}, {"LOWER": "engineering"}]}
{"label": "SKILL", "pattern": [{"LOWER": "consul"}]}
{"label": "SKILL", "pattern": [{"LOWER": "container"}, {"LOWER": "tools"}]}
{"label": "SKILL", "pattern": [{"LOWER": "containers"}, {"LOWER": "as"}, {"LOWER": "a"}, {"LOWER": "service"}]}
{"label": "SKILL", "pattern": [{"LOWER": "content"}, {"LOWER": "delivery"}, {"LOWER": "network"}]}
{"label": "SKILL", "pattern": [{"LOWER": "content"}, {"LOWER": "management"}]}
{"label": "SKILL", "pattern": [{"LOWER": "context-free"}, {"LOWER": "language"}]}
{"label": "SKILL", "pattern": [{"LOWER": "context"}, {"LOWER": "free language"}]}
{"label": "SKILL", "pattern": [{"LOWER": "contextual"}, {"LOWER": "query"}, {"LOWER": "language"}]}
{"label": "SKILL", "pattern": [{"LOWER": "contingency"}, {"LOWER": "table"}]}
{"label": "SKILL", "pattern": [{"LOWER": "continuous"}, {"LOWER": "deployment"}]}
{"label": "SKILL", "pattern": [{"LOWER": "continuous"}, {"LOWER": "integration"}]}
{"label": "SKILL", "pattern": [{"LOWER": "continuum"}, {"LOWER": "(design"}, {"LOWER": "consultancy)"}]}
{"label": "SKILL", "pattern": [{"LOWER": "control"}, {"LOWER": "engineering"}]}
{"label": "SKILL", "pattern": [{"LOWER": "control"}, {"LOWER": "flow"}]}
{"label": "SKILL", "pattern": [{"LOWER": "control"}, {"LOWER": "reconfiguration"}]}
{"label": "SKILL", "pattern": [{"LOWER": "control"}, {"LOWER": "theory"}]}
{"label": "SKILL", "pattern": [{"LOWER": "controlled"}, {"LOWER": "vocabulary"}]}
{"label": "SKILL", "pattern": [{"LOWER": "conventional"}, {"LOWER": "pci"}]}
{"label": "SKILL", "pattern": [{"LOWER": "convergence"}, {"LOWER": "(routing)"}]}
{"label": "SKILL", "pattern": [{"LOWER": "coordinate"}, {"LOWER": "system"}]}
{"label": "SKILL", "pattern": [{"LOWER": "copy"}, {"LOWER": "protection"}]}
{"label": "SKILL", "pattern": [{"LOWER": "core"}, {"LOWER": "network"}]}
{"label": "SKILL", "pattern": [{"LOWER": "coreos"}]}
{"label": "SKILL", "pattern": [{"LOWER": "corner"}, {"LOWER": "detection"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cost"}, {"LOWER": "database"}]}
{"label": "SKILL", "pattern": [{"LOWER": "couchbase"}]}
{"label": "SKILL", "pattern": [{"LOWER": "couchdb"}]}
{"label": "SKILL", "pattern": [{"LOWER": "coveralls"}]}
{"label": "SKILL", "pattern": [{"TEXT": "C++"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cranfield"}, {"LOWER": "experiments"}]}
{"label": "SKILL", "pattern": [{"LOWER": "crashlytics"}]}
{"label": "SKILL", "pattern": [{"LOWER": "create"}, {"LOWER": "react"}, {"LOWER": "app"}]}
{"label": "SKILL", "pattern": [{"LOWER": "create"}, {"LOWER": "react"}, {"LOWER": "native"}, {"LOWER": "app"}]}
{"label": "SKILL", "pattern": [{"LOWER": "critical"}, {"LOWER": "mass"}, {"LOWER": "(software"}, {"LOWER": "engineering)"}]}
{"label": "SKILL", "pattern": [{"LOWER": "critical"}, {"LOWER": "path"}, {"LOWER": "method"}]}
{"label": "SKILL", "pattern": [{"LOWER": "critical"}, {"LOWER": "section"}]}
{"label": "SKILL", "pattern": [{"TEXT": "CRM"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cross-platform"}, {"LOWER": "desktop"}, {"LOWER": "development"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cross"}, {"LOWER": "platform desktop development"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cross-platform"}, {"LOWER": "mobile"}, {"LOWER": "development"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cross"}, {"LOWER": "platform mobile development"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cross-platform"}, {"LOWER": "mobile"}, {"LOWER": "tools"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cross"}, {"LOWER": "platform mobile tools"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cross-validation"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cross"}, {"LOWER": "validation"}]}
{"label": "SKILL", "pattern": [{"LOWER": "crowdsourcing"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cryptocurrency"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cryptographic"}, {"LOWER": "protocol"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cryptography"}]}
{"label": "SKILL", "pattern": [{"LOWER": "crystal"}]}
{"label": "SKILL", "pattern": [{"TEXT": "C#"}]}
{"label": "SKILL", "pattern": [{"TEXT": "CSS"}]}
{"label": "SKILL", "pattern": [{"LOWER": "css"}, {"LOWER": "pre-processors"}, {"LOWER": "/"}, {"LOWER": "extensions"}]}
{"label": "SKILL", "pattern": [{"LOWER": "css pre-processors "}, {"LOWER": " extensions"}]}
{"label": "SKILL", "pattern": [{"LOWER": "css pre"}, {"LOWER": "processors / extensions"}]}
{"label": "SKILL", "pattern": [{"LOWER": "curse"}, {"LOWER": "of"}, {"LOWER": "dimensionality"}]}
{"label": "SKILL", "pattern": [{"LOWER": "curve"}, {"LOWER": "fitting"}]}
{"label": "SKILL", "pattern": [{"LOWER": "custom"}, {"LOWER": "analytics"}]}
{"label": "SKILL", "pattern": [{"LOWER": "customer"}, {"LOWER": "analytics"}]}
{"label": "SKILL", "pattern": [{"LOWER": "customer"}, {"LOWER": "relationship"}, {"LOWER": "management"}]}
{"label": "SKILL", "pattern": [{"LOWER": "customer"}, {"LOWER": "support"}, {"LOWER": "chat"}]}
{"label": "SKILL", "pattern": [{"LOWER": "cypress"}]}
{"label": "SKILL", "pattern": [{"LOWER": "d3.js"}]}
{"label": "SKILL", "pattern": [{"LOWER": "d3"}, {"LOWER": "js"}]}
{"label": "SKILL", "pattern": [{"LOWER": "dart"}]}
{"label": "SKILL", "pattern": [{"LOWER": "dash"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "access"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "acquisition"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "analysis"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "as"}, {"LOWER": "a"}, {"LOWER": "service"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "center"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "classification"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "compression"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "consistency"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "cube"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "exchange"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "extraction"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "file"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "flow"}, {"LOWER": "diagram"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "integration"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "integrity"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "logger"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "management"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "manipulation"}, {"LOWER": "language"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "mining"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "model"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "modeling"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "pre-processing"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data pre"}, {"LOWER": "processing"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "processing"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "quality"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "reduction"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "retrieval"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "science"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "science"}, {"LOWER": "notebooks"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "science"}, {"LOWER": "tools"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "stream"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "stream"}, {"LOWER": "mining"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "structure"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "structures"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "system"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "transmission"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "type"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "validation"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "visualization"}]}
{"label": "SKILL", "pattern": [{"LOWER": "data"}, {"LOWER": "warehouse"}]}
{"label": "SKILL", "pattern": [{"LOWER": "database"}]}
{"label": "SKILL", "pattern": [{"LOWER": "database"}, {"LOWER": "design"}]}
{"label": "SKILL", "pattern": [{"LOWER": "database"}, {"LOWER": "security"}]}
{"label": "SKILL", "pattern": [{"LOWER": "database"}, {"LOWER": "tools"}]}
{"label": "SKILL", "pattern": [{"LOWER": "database"}, {"LOWER": "transaction"}]}
{"label": "SKILL", "pattern": [{"LOWER": "databases"}]}
{"label": "SKILL", "pattern": [{"LOWER": "datadog"}]}
{"label": "SKILL", "pattern": [{"LOWER": "datalog"}]}
{"label": "SKILL", "pattern": [{"TEXT": "DC/OS"}]}
{"label": "SKILL", "pattern": [{"LOWER": "dc"}, {"LOWER": "os"}]}
{"label": "SKILL", "pattern": [{"LOWER": "deadlock"}]}
{"label": "SKILL", "pattern": [{"LOWER": "debian"}]}
{"label": "SKILL", "pattern": [{"LOWER": "debugging"}]}
{"label": "SKILL", "pattern": [{"LOWER": "decidability"}]}
{"label": "SKILL", "pattern": [{"LOWER": "decision"}, {"LOWER": "problem"}]}
{"label": "SKILL", "pattern": [{"LOWER": "decision"}, {"LOWER": "rule"}]}
{"label": "SKILL", "pattern": [{"LOWER": "decision"}, {"LOWER": "support"}, {"LOWER": "system"}]}
{"label": "SKILL", "pattern": [{"LOWER": "decision"}, {"LOWER": "tree"}]}
{"label": "SKILL", "pattern": [{"LOWER": "deco"}]}
{"label": "SKILL", "pattern": [{"LOWER": "decomposition"}, {"LOWER": "method"}, {"LOWER": "(constraint"}, {"LOWER": "satisfaction)"}]}
{"label": "SKILL", "pattern": [{"LOWER": "dedicated"}, {"LOWER": "cloud"}, {"LOWER": "hosting"}]}
{"label": "SKILL", "pattern": [{"LOWER": "deductive"}, {"LOWER": "database"}]}
{"label": "SKILL", "pattern": [{"LOWER": "deep"}, {"LOWER": "learning"}]}
{"label": "SKILL", "pattern": [{"LOWER": "dempster\u2013shafer"}, {"LOWER": "theory"}]}
{"label": "SKILL", "pattern": [{"LOWER": "denial-of-service"}, {"LOWER": "attack"}]}
{"label": "SKILL", "pattern": [{"LOWER": "denial"}, {"LOWER": "of"}, {"LOWER": "service attack"}]}
{"label": "SKILL", "pattern": [{"LOWER": "deontic"}, {"LOWER": "logic"}]}
{"label": "SKILL", "pattern": [{"LOWER": "dependency"}, {"LOWER": "management"}]}
{"label": "SKILL", "pattern": [{"LOWER": "dependency"}, {"LOWER": "monitoring"}]}
{"label": "SKILL", "pattern": [{"LOWER": "deploybot"}]}
{"label": "SKILL", "pattern": [{"LOWER": "deployment"}]}
{"label": "SKILL", "pattern": [{"LOWER": "deployment"}, {"LOWER": "as"}, {"LOWER": "a"}, {"LOWER": "service"}]}
{"label": "SKILL", "pattern": [{"LOWER": "description"}, {"LOWER": "logic"}]}
{"label": "SKILL", "pattern": [{"LOWER": "design"}]}
{"label": "SKILL", "pattern": [{"LOWER": "design"}, {"LOWER": "for"}, {"LOWER": "testing"}]}
{"label": "SKILL", "pattern": [{"LOWER": "detection"}, {"LOWER": "theory"}]}
{"label": "SKILL", "pattern": [{"LOWER": "deterministic"}, {"LOWER": "automaton"}]}
{"label": "SKILL", "pattern": [{"LOWER": "devdocs"}]}
{"label": "SKILL", "pattern": [{"LOWER": "devise"}]}
{"label": "SKILL", "pattern": [{"LOWER": "devops"}]}
{"label": "SKILL", "pattern": [{"LOWER": "diagram"}]}
{"label": "SKILL", "pattern": [{"LOWER": "digital"}, {"LOWER": "filter"}]}
{"label": "SKILL", "pattern": [{"LOWER": "digital"}, {"LOWER": "radio"}]}
{"label": "SKILL", "pattern": [{"LOWER": "digital"}, {"LOWER": "signal"}, {"LOWER": "processing"}]}
{"label": "SKILL", "pattern": [{"LOWER": "digital"}, {"LOWER": "signature"}]}
{"label": "SKILL", "pattern": [{"LOWER": "digital"}, {"LOWER": "subscriber"}, {"LOWER": "line"}]}
{"label": "SKILL", "pattern": [{"LOWER": "digitalocean"}]}
{"label": "SKILL", "pattern": [{"LOWER": "dimensionality"}, {"LOWER": "reduction"}]}
{"label": "SKILL", "pattern": [{"LOWER": "discrete"}, {"LOWER": "cosine"}, {"LOWER": "transform"}]}
{"label": "SKILL", "pattern": [{"LOWER": "discrete"}, {"LOWER": "event"}, {"LOWER": "simulation"}]}
{"label": "SKILL", "pattern": [{"LOWER": "discrete"}, {"LOWER": "logarithm"}]}
{"label": "SKILL", "pattern": [{"LOWER": "discrete"}, {"LOWER": "system"}]}
{"label": "SKILL", "pattern": [{"LOWER": "discriminative"}, {"LOWER": "model"}]}
{"label": "SKILL", "pattern": [{"LOWER": "disjunctive"}, {"LOWER": "normal"}, {"LOWER": "form"}]}
{"label": "SKILL", "pattern": [{"LOWER": "display"}, {"LOWER": "device"}]}
{"label": "SKILL", "pattern": [{"LOWER": "disqus"}]}
{"label": "SKILL", "pattern": [{"LOWER": "distance"}, {"LOWER": "transform"}]}
{"label": "SKILL", "pattern": [{"LOWER": "distributed"}, {"LOWER": "algorithm"}]}
{"label": "SKILL", "pattern": [{"LOWER": "distributed"}, {"LOWER": "computing"}]}
{"label": "SKILL", "pattern": [{"LOWER": "distributed"}, {"LOWER": "computing"}, {"LOWER": "environment"}]}
{"label": "SKILL", "pattern": [{"LOWER": "distributed"}, {"LOWER": "data"}, {"LOWER": "store"}]}
{"label": "SKILL", "pattern": [{"LOWER": "distributed"}, {"LOWER": "database"}]}
{"label": "SKILL", "pattern": [{"LOWER": "distributed"}, {"LOWER": "file"}, {"LOWER": "system"}]}
{"label": "SKILL", "pattern": [{"LOWER": "distributed"}, {"LOWER": "memory"}]}
{"label": "SKILL", "pattern": [{"LOWER": "distributed"}, {"LOWER": "object"}]}
{"label": "SKILL", "pattern": [{"LOWER": "divide"}, {"LOWER": "and"}, {"LOWER": "conquer"}, {"LOWER": "algorithms"}]}
{"label": "SKILL", "pattern": [{"LOWER": "django"}]}
{"label": "SKILL", "pattern": [{"LOWER": "rest"}]}
{"label": "SKILL", "pattern": [{"LOWER": "framework"}]}
{"label": "SKILL", "pattern": [{"LOWER": "dns"}, {"LOWER": "management"}]}
{"label": "SKILL", "pattern": [{"LOWER": "dnsimple"}]}
{"label": "SKILL", "pattern": [{"LOWER": "docker"}]}
{"label": "SKILL", "pattern": [{"LOWER": "docker"}, {"LOWER": "cloud"}]}
{"label": "SKILL", "pattern": [{"LOWER": "docker"}, {"LOWER": "compose"}]}
{"label": "SKILL", "pattern": [{"LOWER": "docker"}, {"LOWER": "for"}, {"LOWER": "aws"}]}
{"label": "SKILL", "pattern": [{"LOWER": "docker"}, {"LOWER": "machine"}]}
{"label": "SKILL", "pattern": [{"LOWER": "docker"}, {"LOWER": "swarm"}]}
{"label": "SKILL", "pattern": [{"LOWER": "doctrine"}, {"LOWER": "2"}]}
{"label": "SKILL", "pattern": [{"LOWER": "document"}, {"LOWER": "classification"}]}
{"label": "SKILL", "pattern": [{"LOWER": "document"}, {"LOWER": "collaboration"}]}
{"label": "SKILL", "pattern": [{"LOWER": "document"}, {"LOWER": "layout"}, {"LOWER": "analysis"}]}
{"label": "SKILL", "pattern": [{"LOWER": "document"}, {"LOWER": "management"}, {"LOWER": "system"}]}
{"label": "SKILL", "pattern": [{"LOWER": "document"}, {"LOWER": "processing"}]}
{"label": "SKILL", "pattern": [{"LOWER": "document"}, {"LOWER": "retrieval"}]}
{"label": "SKILL", "pattern": [{"LOWER": "document"}, {"LOWER": "signature"}]}
{"label": "SKILL", "pattern": [{"LOWER": "documentation"}]}
{"label": "SKILL", "pattern": [{"LOWER": "documentation"}, {"LOWER": "as"}, {"LOWER": "a"}, {"LOWER": "service"}, {"LOWER": "&"}, {"LOWER": "tools"}]}
{"label": "SKILL", "pattern": [{"LOWER": "dokku"}]}
{"label": "SKILL", "pattern": [{"LOWER": "domain"}, {"LOWER": "knowledge"}]}
{"label": "SKILL", "pattern": [{"LOWER": "domain"}, {"LOWER": "model"}]}
{"label": "SKILL", "pattern": [{"LOWER": "domain"}, {"LOWER": "registration"}]}
{"label": "SKILL", "pattern": [{"TEXT": ".NET"}]}
{"label": "SKILL", "pattern": [{"LOWER": ""}, {"LOWER": "net"}]}
{"label": "SKILL", "pattern": [{"LOWER": "drone.io"}]}
{"label": "SKILL", "pattern": [{"LOWER": "drone"}, {"LOWER": "io"}]}
{"label": "SKILL", "pattern": [{"LOWER": "dropbox"}]}
{"label": "SKILL", "pattern": [{"LOWER": "dropwizard"}]}
{"label": "SKILL", "pattern": [{"LOWER": "druid"}]}
{"label": "SKILL", "pattern": [{"LOWER": "drupal"}]}
{"label": "SKILL", "pattern": [{"LOWER": "duplicate"}, {"LOWER": "content"}]}
{"label": "SKILL", "pattern": [{"LOWER": "durability"}]}
{"label": "SKILL", "pattern": [{"LOWER": "dyn"}]}
{"label": "SKILL", "pattern": [{"LOWER": "dynamic"}, {"LOWER": "data"}]}
{"label": "SKILL", "pattern": [{"LOWER": "dynamic"}, {"LOWER": "loading"}]}
{"label": "SKILL", "pattern": [{"LOWER": "dynamic"}, {"LOWER": "programming"}]}
{"label": "SKILL", "pattern": [{"LOWER": "dynamic"}, {"LOWER": "range"}]}
{"label": "SKILL", "pattern": [{"LOWER": "dynamic"}, {"LOWER": "source"}, {"LOWER": "routing"}]}
{"label": "SKILL", "pattern": [{"LOWER": "dynamic"}, {"LOWER": "testing"}]}
{"label": "SKILL", "pattern": [{"LOWER": "dynamic"}, {"LOWER": "time"}, {"LOWER": "warping"}]}
{"label": "SKILL", "pattern": [{"LOWER": "echo"}]}
{"label": "SKILL", "pattern": [{"LOWER": "ecommerce"}]}
{"label": "SKILL", "pattern": [{"LOWER": "econometric"}, {"LOWER": "model"}]}
{"label": "SKILL", "pattern": [{"LOWER": "economic"}, {"LOWER": "policy"}]}
{"label": "SKILL", "pattern": [{"LOWER": "edit"}, {"LOWER": "distance"}]}
{"label": "SKILL", "pattern": [{"LOWER": "elasticsearch"}]}
{"label": "SKILL", "pattern": [{"LOWER": "electrical"}, {"LOWER": "engineering"}]}
{"label": "SKILL", "pattern": [{"LOWER": "electroencephalography"}]}
{"label": "SKILL", "pattern": [{"LOWER": "electron"}]}
{"label": "SKILL", "pattern": [{"LOWER": "electronic"}, {"LOWER": "data"}, {"LOWER": "interchange"}]}
{"label": "SKILL", "pattern": [{"LOWER": "electronic"}, {"LOWER": "document"}]}
{"label": "SKILL", "pattern": [{"LOWER": "electronic"}, {"LOWER": "engineering"}]}
{"label": "SKILL", "pattern": [{"LOWER": "elixir"}]}
{"label": "SKILL", "pattern": [{"LOWER": "elm"}]}
{"label": "SKILL", "pattern": [{"LOWER": "emacs"}]}
{"label": "SKILL", "pattern": [{"LOWER": "email"}, {"LOWER": "marketing"}]}
{"label": "SKILL", "pattern": [{"LOWER": "email"}, {"LOWER": "testing"}]}
{"label": "SKILL", "pattern": [{"LOWER": "embedded"}, {"LOWER": "system"}]}
{"label": "SKILL", "pattern": [{"LOWER": "ember"}]}
{"label": "SKILL", "pattern": [{"LOWER": "ember"}, {"LOWER": "js"}]}
{"label": "SKILL", "pattern": [{"LOWER": "emotion"}, {"LOWER": "recognition"}]}
{"label": "SKILL", "pattern": [{"LOWER": "emulator"}]}
{"label": "SKILL", "pattern": [{"LOWER": "encoding"}, {"LOWER": "(memory)"}]}
{"label": "SKILL", "pattern": [{"LOWER": "encryption"}]}
{"label": "SKILL", "pattern": [{"LOWER": "engagement/lifecycle"}, {"LOWER": "marketing"}]}
{"label": "SKILL", "pattern": [{"LOWER": "engagement"}, {"LOWER": "lifecycle marketing"}]}
{"label": "SKILL", "pattern": [{"LOWER": "engineering"}]}
{"label": "SKILL", "pattern": [{"LOWER": "engineering"}, {"LOWER": "drawing"}]}
{"label": "SKILL", "pattern": [{"LOWER": "engineering"}, {"LOWER": "ethics"}]}
{"label": "SKILL", "pattern": [{"LOWER": "ensemble"}, {"LOWER": "learning"}]}
{"label": "SKILL", "pattern": [{"LOWER": "enterprise"}, {"LOWER": "information"}, {"LOWER": "security"}, {"LOWER": "architecture"}]}
{"label": "SKILL", "pattern": [{"LOWER": "enterprise"}, {"LOWER": "system"}]}
{"label": "SKILL", "pattern": [{"LOWER": "entity\u2013relationship"}, {"LOWER": "model"}]}
{"label": "SKILL", "pattern": [{"LOWER": "environmental"}, {"LOWER": "engineering"}]}
{"label": "SKILL", "pattern": [{"LOWER": "erasure"}, {"LOWER": "code"}]}
{"label": "SKILL", "pattern": [{"LOWER": "erlang"}]}
{"label": "SKILL", "pattern": [{"LOWER": "error"}, {"LOWER": "concealment"}]}
{"label": "SKILL", "pattern": [{"LOWER": "error"}, {"LOWER": "detection"}, {"LOWER": "and"}, {"LOWER": "correction"}]}
{"label": "SKILL", "pattern": [{"LOWER": "errors-in-variables"}, {"LOWER": "models"}]}
{"label": "SKILL", "pattern": [{"LOWER": "errors"}, {"LOWER": "in"}, {"LOWER": "variables models"}]}
{"label": "SKILL", "pattern": [{"TEXT": "ES6"}]}
{"label": "SKILL", "pattern": [{"LOWER": "eslint"}]}
{"label": "SKILL", "pattern": [{"TEXT": "ESPACE"}]}
{"label": "SKILL", "pattern": [{"LOWER": "etcd"}]}
{"label": "SKILL", "pattern": [{"LOWER": "ethereum"}]}
{"label": "SKILL", "pattern": [{"LOWER": "ethernet"}]}
{"label": "SKILL", "pattern": [{"LOWER": "euclidean"}, {"LOWER": "distance"}]}
{"label": "SKILL", "pattern": [{"LOWER": "eureka"}]}
{"label": "SKILL", "pattern": [{"LOWER": "evolutionary"}, {"LOWER": "algorithm"}]}
{"label": "SKILL", "pattern": [{"LOWER": "exact"}, {"LOWER": "algorithm"}]}
{"label": "SKILL", "pattern": [{"LOWER": "exception"}, {"LOWER": "monitoring"}]}
{"label": "SKILL", "pattern": [{"LOWER": "expander"}, {"LOWER": "graph"}]}
{"label": "SKILL", "pattern": [{"LOWER": "expectation\u2013maximization"}, {"LOWER": "algorithm"}]}
{"label": "SKILL", "pattern": [{"LOWER": "expert"}, {"LOWER": "system"}]}
{"label": "SKILL", "pattern": [{"LOWER": "exploratory"}, {"LOWER": "data"}, {"LOWER": "analysis"}]}
{"label": "SKILL", "pattern": [{"LOWER": "express"}, {"LOWER": "js"}]}
{"label": "SKILL", "pattern": [{"LOWER": "expressjs"}]}
{"label": "SKILL", "pattern": [{"LOWER": "external"}, {"LOWER": "data"}, {"LOWER": "representation"}]}
{"label": "SKILL", "pattern": [{"LOWER": "eye"}, {"LOWER": "movement"}]}
{"label": "SKILL", "pattern": [{"LOWER": "eye"}, {"LOWER": "tracking"}]}
{"label": "SKILL", "pattern": [{"TEXT": "F#"}]}
{"label": "SKILL", "pattern": [{"LOWER": "fabric"}]}
{"label": "SKILL", "pattern": [{"LOWER": "fabric"}, {"LOWER": "by"}, {"LOWER": "twitter"}]}
{"label": "SKILL", "pattern": [{"LOWER": "faceted"}, {"LOWER": "classification"}]}
{"label": "SKILL", "pattern": [{"LOWER": "faceted"}, {"LOWER": "search"}]}
{"label": "SKILL", "pattern": [{"LOWER": "facial"}, {"LOWER": "expression"}]}
{"label": "SKILL", "pattern": [{"LOWER": "facial"}, {"LOWER": "recognition"}, {"LOWER": "system"}]}
{"label": "SKILL", "pattern": [{"LOWER": "factorial"}, {"LOWER": "experiment"}]}
{"label": "SKILL", "pattern": [{"LOWER": "false"}, {"LOWER": "positive"}, {"LOWER": "rate"}]}
{"label": "SKILL", "pattern": [{"LOWER": "fast"}, {"LOWER": "fourier"}, {"LOWER": "transform"}]}
{"label": "SKILL", "pattern": [{"LOWER": "fastlane"}]}
{"label": "SKILL", "pattern": [{"LOWER": "fastly"}]}
{"label": "SKILL", "pattern": [{"LOWER": "fault"}, {"LOWER": "model"}]}
{"label": "SKILL", "pattern": [{"LOWER": "fault"}, {"LOWER": "tolerance"}]}
{"label": "SKILL", "pattern": [{"LOWER": "feathersjs"}]}
{"label": "SKILL", "pattern": [{"LOWER": "feature"}, {"LOWER": "detection"}]}
{"label": "SKILL", "pattern": [{"LOWER": "feature"}, {"LOWER": "extraction"}]}
{"label": "SKILL", "pattern": [{"LOWER": "feature"}, {"LOWER": "selection"}]}
{"label": "SKILL", "pattern": [{"LOWER": "feature"}, {"LOWER": "vector"}]}
{"label": "SKILL", "pattern": [{"LOWER": "fedora"}]}
{"label": "SKILL", "pattern": [{"TEXT": "FFMPEG"}]}
{"label": "SKILL", "pattern": [{"LOWER": "field"}, {"LOWER": "of"}, {"LOWER": "view"}]}
{"label": "SKILL", "pattern": [{"LOWER": "field-programmable"}, {"LOWER": "gate"}, {"LOWER": "array"}]}
{"label": "SKILL", "pattern": [{"LOWER": "field"}, {"LOWER": "programmable gate array"}]}
{"label": "SKILL", "pattern": [{"LOWER": "figma"}]}
{"label": "SKILL", "pattern": [{"LOWER": "figure"}, {"LOWER": "of"}, {"LOWER": "merit"}]}
{"label": "SKILL", "pattern": [{"LOWER": "file"}, {"LOWER": "format"}]}
{"label": "SKILL", "pattern": [{"LOWER": "file"}, {"LOWER": "storage"}]}
{"label": "SKILL", "pattern": [{"LOWER": "file"}, {"LOWER": "system"}]}
{"label": "SKILL", "pattern": [{"LOWER": "file"}, {"LOWER": "uploads"}]}
{"label": "SKILL", "pattern": [{"LOWER": "filestack"}]}
{"label": "SKILL", "pattern": [{"LOWER": "filter"}, {"LOWER": "(signal"}, {"LOWER": "processing)"}]}
{"label": "SKILL", "pattern": [{"LOWER": "finagle"}]}
{"label": "SKILL", "pattern": [{"LOWER": "finance"}]}
{"label": "SKILL", "pattern": [{"LOWER": "financial"}, {"LOWER": "system"}]}
{"label": "SKILL", "pattern": [{"LOWER": "fingerprint"}, {"LOWER": "recognition"}]}
{"label": "SKILL", "pattern": [{"LOWER": "finite-state"}, {"LOWER": "machine"}]}
{"label": "SKILL", "pattern": [{"LOWER": "finite"}, {"LOWER": "state machine"}]}
{"label": "SKILL", "pattern": [{"LOWER": "firebase"}]}
{"label": "SKILL", "pattern": [{"LOWER": "firefox"}]}
{"label": "SKILL", "pattern": [{"LOWER": "first"}, {"LOWER": "class"}]}
{"label": "SKILL", "pattern": [{"LOWER": "first-order"}, {"LOWER": "logic"}]}
{"label": "SKILL", "pattern": [{"LOWER": "first"}, {"LOWER": "order logic"}]}
{"label": "SKILL", "pattern": [{"LOWER": "flash"}, {"LOWER": "memory"}]}
{"label": "SKILL", "pattern": [{"LOWER": "flask"}]}
{"label": "SKILL", "pattern": [{"LOWER": "flat"}, {"LOWER": "panel"}, {"LOWER": "display"}]}
{"label": "SKILL", "pattern": [{"LOWER": "flip-flop"}]}
{"label": "SKILL", "pattern": [{"LOWER": "flip"}, {"LOWER": "flop"}]}
{"label": "SKILL", "pattern": [{"LOWER": "floating"}, {"LOWER": "point"}]}
{"label": "SKILL", "pattern": [{"LOWER": "flow"}, {"LOWER": "control"}, {"LOWER": "(data)"}]}
{"label": "SKILL", "pattern": [{"LOWER": "flow"}, {"LOWER": "type"}]}
{"label": "SKILL", "pattern": [{"LOWER": "fluentd"}]}
{"label": "SKILL", "pattern": [{"LOWER": "flurry"}]}
{"label": "SKILL", "pattern": [{"LOWER": "flutter"}]}
{"label": "SKILL", "pattern": [{"LOWER": "flux"}]}
{"label": "SKILL", "pattern": [{"LOWER": "flyway"}]}
{"label": "SKILL", "pattern": [{"LOWER": "folksonomy"}]}
{"label": "SKILL", "pattern": [{"LOWER": "forensic"}, {"LOWER": "engineering"}]}
{"label": "SKILL", "pattern": [{"LOWER": "formal"}, {"LOWER": "concept"}, {"LOWER": "analysis"}]}
{"label": "SKILL", "pattern": [{"LOWER": "formal"}, {"LOWER": "language"}]}
{"label": "SKILL", "pattern": [{"LOWER": "formal"}, {"LOWER": "methods"}]}
{"label": "SKILL", "pattern": [{"LOWER": "formal"}, {"LOWER": "specification"}]}
{"label": "SKILL", "pattern": [{"LOWER": "formal"}, {"LOWER": "verification"}]}
{"label": "SKILL", "pattern": [{"LOWER": "fortran"}]}
{"label": "SKILL", "pattern": [{"LOWER": "forums"}]}
{"label": "SKILL", "pattern": [{"TEXT": "FOSSA"}]}
{"label": "SKILL", "pattern": [{"LOWER": "fragmentation"}, {"LOWER": "(computing)"}]}
{"label": "SKILL", "pattern": [{"LOWER": "framer"}]}
{"label": "SKILL", "pattern": [{"LOWER": "framework"}]}
{"label": "SKILL", "pattern": [{"LOWER": "framework7"}]}
{"label": "SKILL", "pattern": [{"LOWER": "frameworks"}, {"LOWER": "(full"}, {"LOWER": "stack)"}]}
{"label": "SKILL", "pattern": [{"LOWER": "frequency"}, {"LOWER": "analysis"}]}
{"label": "SKILL", "pattern": [{"LOWER": "frequency"}, {"LOWER": "domain"}]}
{"label": "SKILL", "pattern": [{"LOWER": "front"}, {"LOWER": "and"}, {"LOWER": "back"}, {"LOWER": "ends"}]}
{"label": "SKILL", "pattern": [{"LOWER": "front-end"}, {"LOWER": "frameworks"}]}
{"label": "SKILL", "pattern": [{"LOWER": "front"}, {"LOWER": "end frameworks"}]}
{"label": "SKILL", "pattern": [{"LOWER": "front"}, {"LOWER": "end"}, {"LOWER": "package"}, {"LOWER": "manager"}]}
{"label": "SKILL", "pattern": [{"LOWER": "front"}, {"LOWER": "end"}]}
{"label": "SKILL", "pattern": [{"LOWER": "functional"}, {"LOWER": "dependency"}]}
{"label": "SKILL", "pattern": [{"LOWER": "functional"}, {"LOWER": "programming"}]}
{"label": "SKILL", "pattern": [{"LOWER": "functional"}, {"LOWER": "testing"}]}
{"label": "SKILL", "pattern": [{"LOWER": "funnel"}, {"LOWER": "analysis"}, {"LOWER": "analytics"}]}
{"label": "SKILL", "pattern": [{"LOWER": "fusion"}]}
{"label": "SKILL", "pattern": [{"LOWER": "fuzzy"}, {"LOWER": "logic"}]}
{"label": "SKILL", "pattern": [{"LOWER": "g"}, {"LOWER": "suite"}]}
{"label": "SKILL", "pattern": [{"LOWER": "game"}, {"LOWER": "development"}]}
{"label": "SKILL", "pattern": [{"LOWER": "game"}, {"LOWER": "engine"}]}
{"label": "SKILL", "pattern": [{"LOWER": "garbage"}, {"LOWER": "collection"}]}
{"label": "SKILL", "pattern": [{"LOWER": "gatling"}]}
{"label": "SKILL", "pattern": [{"LOWER": "gatsby"}]}
{"label": "SKILL", "pattern": [{"LOWER": "gaussian"}, {"LOWER": "process"}]}
{"label": "SKILL", "pattern": [{"LOWER": "gearman"}]}
{"label": "SKILL", "pattern": [{"LOWER": "geckoboard"}]}
{"label": "SKILL", "pattern": [{"LOWER": "general"}, {"LOWER": "analytics"}]}
{"label": "SKILL", "pattern": [{"LOWER": "generalization"}, {"LOWER": "error"}]}
{"label": "SKILL", "pattern": [{"LOWER": "generalized"}, {"LOWER": "linear"}, {"LOWER": "model"}]}
{"label": "SKILL", "pattern": [{"LOWER": "genetic"}, {"LOWER": "algorithm"}]}
{"label": "SKILL", "pattern": [{"LOWER": "geographic"}, {"LOWER": "information"}, {"LOWER": "retrieval"}]}
{"label": "SKILL", "pattern": [{"LOWER": "geometric"}, {"LOWER": "modeling"}]}
{"label": "SKILL", "pattern": [{"LOWER": "geoparsing"}]}
{"label": "SKILL", "pattern": [{"LOWER": "geospatial"}, {"LOWER": "analysis"}]}
{"label": "SKILL", "pattern": [{"LOWER": "geotagging"}]}
{"label": "SKILL", "pattern": [{"LOWER": "geotechnical"}, {"LOWER": "engineering"}]}
{"label": "SKILL", "pattern": [{"LOWER": "gerrit"}, {"LOWER": "code"}, {"LOWER": "review"}]}
{"label": "SKILL", "pattern": [{"LOWER": "gist"}]}
{"label": "SKILL", "pattern": [{"LOWER": "git"}]}
{"label": "SKILL", "pattern": [{"LOWER": "git"}, {"LOWER": "tools"}]}
{"label": "SKILL", "pattern": [{"LOWER": "gitbucket"}]}
{"label": "SKILL", "pattern": [{"LOWER": "github"}]}
{"label": "SKILL", "pattern": [{"LOWER": "github"}, {"LOWER": "api"}]}
{"label": "SKILL", "pattern": [{"LOWER": "github"}, {"LOWER": "enterprise"}]}
{"label": "SKILL", "pattern": [{"LOWER": "github"}, {"LOWER": "pages"}]}
{"label": "SKILL", "pattern": [{"LOWER": "gitkraken"}]}
{"label": "SKILL", "pattern": [{"LOWER": "gitlab"}]}
{"label": "SKILL", "pattern": [{"LOWER": "gitlab"}, {"LOWER": "ci"}]}
{"label": "SKILL", "pattern": [{"LOWER": "gitlab"}, {"LOWER": "pages"}]}
{"label": "SKILL", "pattern": [{"LOWER": "gluon"}]}
{"label": "SKILL", "pattern": [{"LOWER": "gnu"}, {"LOWER": "bash"}]}
{"label": "SKILL", "pattern": [{"LOWER": "go.cd"}]}
{"label": "SKILL", "pattern": [{"LOWER": "go"}, {"LOWER": "cd"}]}
{"label": "SKILL", "pattern": [{"LOWER": "godaddy"}]}
{"label": "SKILL", "pattern": [{"LOWER": "gogs"}]}
{"label": "SKILL", "pattern": [{"LOWER": "goodness"}, {"LOWER": "of"}, {"LOWER": "fit"}]}
{"label": "SKILL", "pattern": [{"LOWER": "google"}]}
{"label": "SKILL", "pattern": [{"LOWER": "google"}, {"LOWER": "analytics"}]}
{"label": "SKILL", "pattern": [{"LOWER": "google"}, {"LOWER": "app"}, {"LOWER": "engine"}]}
{"label": "SKILL", "pattern": [{"LOWER": "google"}, {"LOWER": "app"}, {"LOWER": "maker"}]}
{"label": "SKILL", "pattern": [{"LOWER": "google"}, {"LOWER": "bigquery"}]}
{"label": "SKILL", "pattern": [{"LOWER": "google"}, {"LOWER": "cloud"}, {"LOWER": "bigtable"}]}
{"label": "SKILL", "pattern": [{"LOWER": "google"}, {"LOWER": "cloud"}, {"LOWER": "container"}, {"LOWER": "builder"}]}
{"label": "SKILL", "pattern": [{"LOWER": "google"}, {"LOWER": "cloud"}, {"LOWER": "dataflow"}]}
{"label": "SKILL", "pattern": [{"LOWER": "google"}, {"LOWER": "cloud"}, {"LOWER": "datastore"}]}
{"label": "SKILL", "pattern": [{"LOWER": "google"}, {"LOWER": "cloud"}, {"LOWER": "dns"}]}
{"label": "SKILL", "pattern": [{"LOWER": "google"}, {"LOWER": "cloud"}, {"LOWER": "functions"}]}
{"label": "SKILL", "pattern": [{"LOWER": "google"}, {"LOWER": "cloud"}, {"LOWER": "memorystore"}]}
{"label": "SKILL", "pattern": [{"LOWER": "google"}, {"LOWER": "cloud"}, {"LOWER": "messaging"}]}
{"label": "SKILL", "pattern": [{"LOWER": "google"}, {"LOWER": "cloud"}, {"LOWER": "pub/sub"}]}
{"label": "SKILL", "pattern": [{"LOWER": "google cloud pub"}, {"LOWER": "sub"}]}
{"label": "SKILL", "pattern": [{"LOWER": "google"}, {"LOWER": "cloud"}, {"LOWER": "sql"}]}
{"label": "SKILL", "pattern": [{"LOWER": "google"}, {"LOWER": "cloud"}, {"LOWER": "storage"}]}
{"label": "SKILL", "pattern": [{"LOWER": "google"}, {"LOWER": "cloud"}, {"LOWER": "vision"}, {"LOWER": "api"}]}
{"label": "SKILL", "pattern": [{"LOWER": "google"}, {"LOWER": "compute"}, {"LOWER": "engine"}]}
{"label": "SKILL", "pattern": [{"LOWER": "google"}, {"LOWER": "drive"}]}
{"label": "SKILL", "pattern": [{"LOWER": "google"}, {"LOWER": "kubernetes"}, {"LOWER": "engine"}]}
{"label": "SKILL", "pattern": [{"LOWER": "google"}, {"LOWER": "maps"}]}
{"label": "SKILL", "pattern": [{"LOWER": "google"}, {"LOWER": "scholar"}, {"LOWER": "and"}, {"LOWER": "academic"}, {"LOWER": "libraries"}]}
{"label": "SKILL", "pattern": [{"LOWER": "google"}, {"LOWER": "sheets"}]}
{"label": "SKILL", "pattern": [{"LOWER": "google"}, {"LOWER": "tag"}, {"LOWER": "manager"}]}
{"label": "SKILL", "pattern": [{"LOWER": "gradient"}, {"LOWER": "descent"}]}
{"label": "SKILL", "pattern": [{"LOWER": "gradle"}]}
{"label": "SKILL", "pattern": [{"LOWER": "grafana"}]}
{"label": "SKILL", "pattern": [{"LOWER": "grails"}]}
{"label": "SKILL", "pattern": [{"LOWER": "grape"}]}
{"label": "SKILL", "pattern": [{"LOWER": "graph"}, {"LOWER": "databases"}]}
{"label": "SKILL", "pattern": [{"LOWER": "graphic"}, {"LOWER": "design"}]}
{"label": "SKILL", "pattern": [{"LOWER": "graphical"}, {"LOWER": "model"}]}
{"label": "SKILL", "pattern": [{"LOWER": "graphical"}, {"LOWER": "user"}, {"LOWER": "interface"}]}
{"label": "SKILL", "pattern": [{"LOWER": "graphite"}]}
{"label": "SKILL", "pattern": [{"LOWER": "graphql"}]}
{"label": "SKILL", "pattern": [{"LOWER": "greedy"}, {"LOWER": "algorithm"}]}
{"label": "SKILL", "pattern": [{"LOWER": "groovy"}]}
{"label": "SKILL", "pattern": [{"LOWER": "ground"}, {"LOWER": "truth"}]}
{"label": "SKILL", "pattern": [{"LOWER": "group"}, {"LOWER": "chat"}, {"LOWER": "&"}, {"LOWER": "notifications"}]}
{"label": "SKILL", "pattern": [{"LOWER": "growbag"}]}
{"label": "SKILL", "pattern": [{"LOWER": "grpc"}]}
{"label": "SKILL", "pattern": [{"LOWER": "grunt"}]}
{"label": "SKILL", "pattern": [{"TEXT": "GSM"}]}
{"label": "SKILL", "pattern": [{"TEXT": "GTP'"}]}
{"label": "SKILL", "pattern": [{"LOWER": "gulp"}]}
{"label": "SKILL", "pattern": [{"LOWER": "gunicorn"}]}
{"label": "SKILL", "pattern": [{"LOWER": "guzzle"}]}
{"label": "SKILL", "pattern": [{"LOWER": "hadoop"}]}
{"label": "SKILL", "pattern": [{"TEXT": "HAML"}]}
{"label": "SKILL", "pattern": [{"LOWER": "handlebars.js"}]}
{"label": "SKILL", "pattern": [{"LOWER": "handlebars"}, {"LOWER": "js"}]}
{"label": "SKILL", "pattern": [{"LOWER": "handover"}]}
{"label": "SKILL", "pattern": [{"LOWER": "hapi"}]}
{"label": "SKILL", "pattern": [{"LOWER": "haproxy"}]}
{"label": "SKILL", "pattern": [{"LOWER": "haptic"}, {"LOWER": "technology"}]}
{"label": "SKILL", "pattern": [{"LOWER": "hash"}, {"LOWER": "function"}]}
{"label": "SKILL", "pattern": [{"LOWER": "haskell"}]}
{"label": "SKILL", "pattern": [{"LOWER": "hasura"}]}
{"label": "SKILL", "pattern": [{"LOWER": "hazelcast"}]}
{"label": "SKILL", "pattern": [{"LOWER": "hbase"}]}
{"label": "SKILL", "pattern": [{"LOWER": "headless"}, {"LOWER": "browsers"}]}
{"label": "SKILL", "pattern": [{"LOWER": "heap"}]}
{"label": "SKILL", "pattern": [{"LOWER": "heap"}, {"LOWER": "(data"}, {"LOWER": "structure)"}]}
{"label": "SKILL", "pattern": [{"LOWER": "heatmap"}, {"LOWER": "analytics"}]}
{"label": "SKILL", "pattern": [{"LOWER": "helm"}]}
{"label": "SKILL", "pattern": [{"LOWER": "help"}, {"LOWER": "desk"}]}
{"label": "SKILL", "pattern": [{"LOWER": "heroku"}]}
{"label": "SKILL", "pattern": [{"LOWER": "heroku"}, {"LOWER": "ci"}]}
{"label": "SKILL", "pattern": [{"LOWER": "heroku"}, {"LOWER": "postgres"}]}
{"label": "SKILL", "pattern": [{"LOWER": "heroku"}, {"LOWER": "redis"}]}
{"label": "SKILL", "pattern": [{"LOWER": "hetzner"}, {"LOWER": "online"}, {"LOWER": "ag"}]}
{"label": "SKILL", "pattern": [{"LOWER": "hexo"}]}
{"label": "SKILL", "pattern": [{"LOWER": "hhvm"}, {"LOWER": "(hiphop"}, {"LOWER": "virtual"}, {"LOWER": "machine)"}]}
{"label": "SKILL", "pattern": [{"LOWER": "hidden"}, {"LOWER": "markov"}, {"LOWER": "model"}]}
{"label": "SKILL", "pattern": [{"LOWER": "hierarchical"}, {"LOWER": "database"}, {"LOWER": "model"}]}
{"label": "SKILL", "pattern": [{"LOWER": "high"}, {"LOWER": "availability"}]}
{"label": "SKILL", "pattern": [{"LOWER": "high-level"}, {"LOWER": "programming"}, {"LOWER": "language"}]}
{"label": "SKILL", "pattern": [{"LOWER": "high"}, {"LOWER": "level programming language"}]}
{"label": "SKILL", "pattern": [{"LOWER": "high-level"}, {"LOWER": "synthesis"}]}
{"label": "SKILL", "pattern": [{"LOWER": "high"}, {"LOWER": "level synthesis"}]}
{"label": "SKILL", "pattern": [{"LOWER": "highcharts"}]}
{"label": "SKILL", "pattern": [{"LOWER": "higher-order"}, {"LOWER": "statistics"}]}
{"label": "SKILL", "pattern": [{"LOWER": "higher"}, {"LOWER": "order statistics"}]}
{"label": "SKILL", "pattern": [{"LOWER": "hilbert\u2013huang"}, {"LOWER": "transform"}]}
{"label": "SKILL", "pattern": [{"LOWER": "hipchat"}]}
{"label": "SKILL", "pattern": [{"LOWER": "histogram"}]}
{"label": "SKILL", "pattern": [{"LOWER": "hockeyapp"}]}
{"label": "SKILL", "pattern": [{"LOWER": "hogan.js"}]}
{"label": "SKILL", "pattern": [{"LOWER": "hogan"}, {"LOWER": "js"}]}
{"label": "SKILL", "pattern": [{"LOWER": "homebrew"}]}
{"label": "SKILL", "pattern": [{"LOWER": "homebridge"}]}
{"label": "SKILL", "pattern": [{"LOWER": "homogeneity"}, {"LOWER": "(statistics)"}]}
{"label": "SKILL", "pattern": [{"LOWER": "hosted"}, {"LOWER": "blogging"}, {"LOWER": "platforms"}]}
{"label": "SKILL", "pattern": [{"LOWER": "hotjar"}]}
{"label": "SKILL", "pattern": [{"LOWER": "hough"}, {"LOWER": "transform"}]}
{"label": "SKILL", "pattern": [{"TEXT": "HTML"}]}
{"label": "SKILL", "pattern": [{"TEXT": "HTML5"}]}
{"label": "SKILL", "pattern": [{"TEXT": "HTTP"}]}
{"label": "SKILL", "pattern": [{"LOWER": "hubspot"}]}
{"label": "SKILL", "pattern": [{"LOWER": "hugo"}]}
{"label": "SKILL", "pattern": [{"LOWER": "human"}, {"LOWER": "visual"}, {"LOWER": "system"}, {"LOWER": "model"}]}
{"label": "SKILL", "pattern": [{"LOWER": "human\u2013computer"}, {"LOWER": "information"}, {"LOWER": "retrieval"}]}
{"label": "SKILL", "pattern": [{"LOWER": "human\u2013computer"}, {"LOWER": "interaction"}]}
{"label": "SKILL", "pattern": [{"LOWER": "hybrid"}, {"LOWER": "algorithm"}]}
{"label": "SKILL", "pattern": [{"LOWER": "hybrid"}, {"LOWER": "system"}]}
{"label": "SKILL", "pattern": [{"LOWER": "hypercube"}]}
{"label": "SKILL", "pattern": [{"LOWER": "hyperspectral"}, {"LOWER": "imaging"}]}
{"label": "SKILL", "pattern": [{"LOWER": "ibm"}, {"LOWER": "-"}, {"LOWER": "api"}, {"LOWER": "connect"}]}
{"label": "SKILL", "pattern": [{"LOWER": "ibm "}, {"LOWER": " api connect"}]}
{"label": "SKILL", "pattern": [{"LOWER": "ibm"}, {"LOWER": "db2"}]}
{"label": "SKILL", "pattern": [{"LOWER": "icon"}, {"LOWER": "font"}]}
{"label": "SKILL", "pattern": [{"LOWER": "iframely"}]}
{"label": "SKILL", "pattern": [{"TEXT": "IFTTT"}]}
{"label": "SKILL", "pattern": [{"LOWER": "image"}, {"LOWER": "analysis"}, {"LOWER": "api"}]}
{"label": "SKILL", "pattern": [{"LOWER": "image"}, {"LOWER": "fusion"}]}
{"label": "SKILL", "pattern": [{"LOWER": "image"}, {"LOWER": "meta"}, {"LOWER": "search"}]}
{"label": "SKILL", "pattern": [{"LOWER": "image"}, {"LOWER": "processing"}]}
{"label": "SKILL", "pattern": [{"LOWER": "image"}, {"LOWER": "processing"}, {"LOWER": "and"}, {"LOWER": "management"}]}
{"label": "SKILL", "pattern": [{"LOWER": "image"}, {"LOWER": "quality"}]}
{"label": "SKILL", "pattern": [{"LOWER": "image"}, {"LOWER": "registration"}]}
{"label": "SKILL", "pattern": [{"LOWER": "image"}, {"LOWER": "resolution"}]}
{"label": "SKILL", "pattern": [{"LOWER": "image"}, {"LOWER": "retrieval"}]}
{"label": "SKILL", "pattern": [{"LOWER": "image"}, {"LOWER": "segmentation"}]}
{"label": "SKILL", "pattern": [{"LOWER": "image"}, {"LOWER": "sensor"}]}
{"label": "SKILL", "pattern": [{"LOWER": "imgix"}]}
{"label": "SKILL", "pattern": [{"LOWER": "immutable.js"}]}
{"label": "SKILL", "pattern": [{"LOWER": "immutable"}, {"LOWER": "js"}]}
{"label": "SKILL", "pattern": [{"LOWER": "impala"}]}
{"label": "SKILL", "pattern": [{"LOWER": "in-memory"}, {"LOWER": "databases"}]}
{"label": "SKILL", "pattern": [{"LOWER": "in"}, {"LOWER": "memory databases"}]}
{"label": "SKILL", "pattern": [{"LOWER": "incapsula"}]}
{"label": "SKILL", "pattern": [{"LOWER": "incremental"}, {"LOWER": "learning"}]}
{"label": "SKILL", "pattern": [{"LOWER": "indentation"}]}
{"label": "SKILL", "pattern": [{"LOWER": "independent"}, {"LOWER": "component"}, {"LOWER": "analysis"}]}
{"label": "SKILL", "pattern": [{"LOWER": "independent"}, {"LOWER": "set"}]}
{"label": "SKILL", "pattern": [{"LOWER": "index"}, {"LOWER": "term"}]}
{"label": "SKILL", "pattern": [{"LOWER": "industrial"}, {"LOWER": "engineering"}]}
{"label": "SKILL", "pattern": [{"LOWER": "industrial"}, {"LOWER": "organization"}]}
{"label": "SKILL", "pattern": [{"LOWER": "inference"}]}
{"label": "SKILL", "pattern": [{"LOWER": "influxdb"}]}
{"label": "SKILL", "pattern": [{"LOWER": "infobox"}]}
{"label": "SKILL", "pattern": [{"LOWER": "information"}, {"LOWER": "discovery"}]}
{"label": "SKILL", "pattern": [{"LOWER": "information"}, {"LOWER": "extraction"}]}
{"label": "SKILL", "pattern": [{"LOWER": "information"}, {"LOWER": "filtering"}, {"LOWER": "system"}]}
{"label": "SKILL", "pattern": [{"LOWER": "information"}, {"LOWER": "flow"}, {"LOWER": "(information"}, {"LOWER": "theory)"}]}
{"label": "SKILL", "pattern": [{"LOWER": "information"}, {"LOWER": "integration"}]}
{"label": "SKILL", "pattern": [{"LOWER": "information"}, {"LOWER": "management"}]}
{"label": "SKILL", "pattern": [{"LOWER": "information"}, {"LOWER": "model"}]}
{"label": "SKILL", "pattern": [{"LOWER": "information"}, {"LOWER": "overload"}]}
{"label": "SKILL", "pattern": [{"LOWER": "information"}, {"LOWER": "retrieval"}]}
{"label": "SKILL", "pattern": [{"LOWER": "information"}, {"LOWER": "retrieval"}, {"LOWER": "applications"}]}
{"label": "SKILL", "pattern": [{"LOWER": "information"}, {"LOWER": "retrieval"}, {"LOWER": "query"}, {"LOWER": "language"}]}
{"label": "SKILL", "pattern": [{"LOWER": "information"}, {"LOWER": "seeking"}]}
{"label": "SKILL", "pattern": [{"LOWER": "information"}, {"LOWER": "theory"}]}
{"label": "SKILL", "pattern": [{"LOWER": "infrastructure"}, {"LOWER": "build"}, {"LOWER": "tools"}]}
{"label": "SKILL", "pattern": [{"LOWER": "inkwell"}]}
{"label": "SKILL", "pattern": [{"LOWER": "input"}, {"LOWER": "device"}]}
{"label": "SKILL", "pattern": [{"LOWER": "inspec"}]}
{"label": "SKILL", "pattern": [{"LOWER": "instrumental"}, {"LOWER": "variable"}]}
{"label": "SKILL", "pattern": [{"LOWER": "integer"}, {"LOWER": "programming"}]}
{"label": "SKILL", "pattern": [{"LOWER": "integrated"}, {"LOWER": "circuit"}, {"LOWER": "design"}]}
{"label": "SKILL", "pattern": [{"LOWER": "integrated"}, {"LOWER": "development"}, {"LOWER": "environment"}]}
{"label": "SKILL", "pattern": [{"LOWER": "integrated"}, {"LOWER": "development"}, {"LOWER": "environment"}, {"LOWER": "tools"}]}
{"label": "SKILL", "pattern": [{"LOWER": "integrated"}, {"LOWER": "services"}, {"LOWER": "digital"}, {"LOWER": "network"}]}
{"label": "SKILL", "pattern": [{"LOWER": "intelligent"}, {"LOWER": "agent"}]}
{"label": "SKILL", "pattern": [{"LOWER": "intelligent"}, {"LOWER": "document"}]}
{"label": "SKILL", "pattern": [{"LOWER": "intelligent"}, {"LOWER": "network"}]}
{"label": "SKILL", "pattern": [{"LOWER": "intellij"}, {"LOWER": "idea"}]}
{"label": "SKILL", "pattern": [{"LOWER": "inter-process"}, {"LOWER": "communication"}]}
{"label": "SKILL", "pattern": [{"LOWER": "inter"}, {"LOWER": "process communication"}]}
{"label": "SKILL", "pattern": [{"LOWER": "interaction"}]}
{"label": "SKILL", "pattern": [{"LOWER": "interactive"}, {"LOWER": "mockups"}]}
{"label": "SKILL", "pattern": [{"LOWER": "intercom"}]}
{"label": "SKILL", "pattern": [{"LOWER": "interconnection"}]}
{"label": "SKILL", "pattern": [{"LOWER": "international"}, {"LOWER": "trade"}]}
{"label": "SKILL", "pattern": [{"LOWER": "internet"}, {"LOWER": "of"}, {"LOWER": "things"}]}
{"label": "SKILL", "pattern": [{"LOWER": "internet"}, {"LOWER": "of"}, {"LOWER": "things"}, {"LOWER": "hardware"}]}
{"label": "SKILL", "pattern": [{"LOWER": "internet"}, {"LOWER": "privacy"}]}
{"label": "SKILL", "pattern": [{"LOWER": "internet"}, {"LOWER": "protocol"}, {"LOWER": "suite"}]}
{"label": "SKILL", "pattern": [{"LOWER": "internetworking"}]}
{"label": "SKILL", "pattern": [{"LOWER": "interpolation"}]}
{"label": "SKILL", "pattern": [{"LOWER": "intrusion"}, {"LOWER": "detection"}, {"LOWER": "system"}]}
{"label": "SKILL", "pattern": [{"LOWER": "intuitionistic"}, {"LOWER": "logic"}]}
{"label": "SKILL", "pattern": [{"LOWER": "invision"}]}
{"label": "SKILL", "pattern": [{"LOWER": "ionic"}]}
{"label": "SKILL", "pattern": [{"LOWER": "ios"}]}
{"label": "SKILL", "pattern": [{"TEXT": "IPFS"}]}
{"label": "SKILL", "pattern": [{"LOWER": "ir"}, {"LOWER": "evaluation"}]}
{"label": "SKILL", "pattern": [{"LOWER": "issue"}, {"LOWER": "tracking"}]}
{"label": "SKILL", "pattern": [{"LOWER": "istio"}]}
{"label": "SKILL", "pattern": [{"LOWER": "iterative"}, {"LOWER": "reconstruction"}]}
{"label": "SKILL", "pattern": [{"LOWER": "jasmine"}]}
{"label": "SKILL", "pattern": [{"LOWER": "java"}]}
{"label": "SKILL", "pattern": [{"LOWER": "java"}, {"LOWER": "build"}, {"LOWER": "tools"}]}
{"label": "SKILL", "pattern": [{"LOWER": "javascript"}]}
{"label": "SKILL", "pattern": [{"LOWER": "javascript"}, {"LOWER": "framework"}, {"LOWER": "components"}]}
{"label": "SKILL", "pattern": [{"LOWER": "javascript"}, {"LOWER": "mvc"}, {"LOWER": "frameworks"}]}
{"label": "SKILL", "pattern": [{"LOWER": "javascript"}, {"LOWER": "testing"}, {"LOWER": "framework"}]}
{"label": "SKILL", "pattern": [{"LOWER": "javascript"}, {"LOWER": "ui"}, {"LOWER": "libraries"}]}
{"label": "SKILL", "pattern": [{"LOWER": "javascript"}, {"LOWER": "utilities"}, {"LOWER": "&"}, {"LOWER": "libraries"}]}
{"label": "SKILL", "pattern": [{"LOWER": "jekyll"}]}
{"label": "SKILL", "pattern": [{"LOWER": "jenkins"}]}
{"label": "SKILL", "pattern": [{"LOWER": "jest"}]}
{"label": "SKILL", "pattern": [{"LOWER": "jetty"}]}
{"label": "SKILL", "pattern": [{"TEXT": "JIRA"}]}
{"label": "SKILL", "pattern": [{"LOWER": "jitter"}]}
{"label": "SKILL", "pattern": [{"LOWER": "jquery"}]}
{"label": "SKILL", "pattern": [{"LOWER": "jquery"}, {"LOWER": "mobile"}]}
{"label": "SKILL", "pattern": [{"LOWER": "jquery"}, {"LOWER": "ui"}]}
{"label": "SKILL", "pattern": [{"LOWER": "jruby"}]}
{"label": "SKILL", "pattern": [{"LOWER": "js"}, {"LOWER": "build"}, {"LOWER": "tools"}, {"LOWER": "/"}, {"LOWER": "js"}, {"LOWER": "task"}, {"LOWER": "runners"}]}
{"label": "SKILL", "pattern": [{"LOWER": "js build tools "}, {"LOWER": " js task runners"}]}
{"label": "SKILL", "pattern": [{"LOWER": "jsdoc"}]}
{"label": "SKILL", "pattern": [{"TEXT": "JSON"}]}
{"label": "SKILL", "pattern": [{"LOWER": "json"}, {"LOWER": "server"}]}
{"label": "SKILL", "pattern": [{"LOWER": "the"}, {"LOWER": "julia"}, {"LOWER": "language"}]}
{"label": "SKILL", "pattern": [{"LOWER": "julia"}]}
{"label": "SKILL", "pattern": [{"LOWER": "junit"}]}
{"label": "SKILL", "pattern": [{"LOWER": "jupyter"}]}
{"label": "SKILL", "pattern": [{"LOWER": "jupyter"}, {"LOWER": "notebook"}]}
{"label": "SKILL", "pattern": [{"LOWER": "k-d"}, {"LOWER": "tree"}]}
{"label": "SKILL", "pattern": [{"LOWER": "k"}, {"LOWER": "d tree"}]}