-
Notifications
You must be signed in to change notification settings - Fork 0
/
train_synonymSet.json
2828 lines (2828 loc) · 62 KB
/
train_synonymSet.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
{
"c++": [
"c +",
"c++",
"c ++"
],
"c": [
"c",
"c ,",
"/ c",
", c",
"lập trình c",
"ngôn ngữ c",
"chứng chỉ tin học trình độ c",
"c language"
],
"ajax": [
"ajax",
"ajax.",
"table ajax",
"ajax / json",
"ajax api",
"ajax technique"
],
"python": [
"python",
"phython",
"pythọn",
"python design",
"python 2.5",
"end python",
"python framework",
"framework python"
],
"làm việc độc lập": [
"làm việc độc lập",
"làm độc lập",
"làm việc và hoạt động độc lập",
"tự làm việc độc lập",
"làm việc độc lập tốt"
],
"mongodb": [
"mongodb",
"mongo db",
"db mongo",
"mongodb cluster"
],
"microsoft word": [
"microsoft word",
"ms word",
"winword",
"ms. word",
"msword",
"office word",
"word",
"word ,"
],
"xml": [
"xml",
"xml.",
"xml ,",
"xml comment"
],
"jsp": [
"jsp",
"jsp.",
"jsp ,"
],
"thuyết trình": [
"thuyết trình",
"thuyết trình *",
"công cụ thuyết trình",
"viết bài thuyết trình",
"thuyết trình trước đám đông",
"nói trước đám đông"
],
"svn": [
"svn",
"svn.",
"svn ,"
],
"redmine": [
"redmine",
"svn redmine"
],
"json": [
"json",
"json.",
"parse json",
"dữ liệu json",
"json binary file"
],
"search engine optimization": [
"seo",
"seo website",
"seo web",
"seo top google",
"search engine optimization",
"seo off page",
"content seo",
"chuẩn seo.",
"chuẩn seo"
],
"android studio": [
"android studio",
"androidstudio",
"android studio 1.4",
"android studio 2.2",
"android ide",
"android studio 3.5",
"lập trình android android studio",
"android studio game",
"studio android"
],
"joomla": [
"joomla",
"cms joomla",
"joomla cms",
"joomla cms.",
"joomla .",
"joomla 1.5",
"joomla 2.5",
"template joomla"
],
"autocad": [
"autocad",
"auto cad",
"autocad 2d",
"auto cad.",
"auto cad 2d",
"autocad 2d & 3d"
],
"sqlite": [
"sqlite",
"sql lite",
"sqlite database",
"sqllite",
"sqlite .",
"my sqlite"
],
"phân tích": [
"phân tích",
"phân tích tốt",
"phân tích các vấn đề mới nhanh",
"phân tích vấn đề",
"tư duy và phân tích vấn đề",
"tư duy phân tích"
],
"microsoft visio": [
"visio",
"microsoft visio",
"ms visio",
"visio studio"
],
"jakarta servlet": [
"servlet",
"java servlet",
"servlets",
"servlet / jsp"
],
"microsoft office": [
"microsoft office",
"ms office",
"ms. office",
"ms office tool",
"sử dụng được microsoft office",
"microsoft office suite"
],
"devexpress": [
"devexpress",
"framework devexpress",
"devexpress mvc",
"devextreme",
"ui devexpress",
"devexpress 13.1.1",
"devexpress 2017",
"devexpress 10",
"devexpress framework"
],
"react native": [
"react native",
"reactnative",
"react - native",
"react-native"
],
"redis": [
"redis",
"redis cache",
"hub redis",
"redis server"
],
"unified modeling language": [
"uml",
"uml.",
"unified modeling language",
"uml c",
"unified modeling language ( uml )"
],
"tiếng nhật": [
"tiếng nhật",
"giao tiếp tiếng nhật",
"tiếng nhật tiếng",
"tiếng nhật giao tiếp"
],
"domain name system": [
"dns",
", dns",
"dns ,"
],
"scrum (software development)": [
"scrum",
"scrum master",
"agile - scrum",
"scrum framework",
"scrum guide",
"quy trình scrum"
],
"agile software development": [
"agile",
"mô hình agile",
"agile scrum",
"agile / scrum",
"agile - waterfall",
"mastering agile project management",
"agile-scrum",
"quy trình agile",
"phương pháp scrum agile"
],
"vue.js": [
"vuejs",
"vue js",
"vue .js",
"git vuejs",
"framework vuejs",
"vuejs framework",
"vuejs ( spa",
"vue js."
],
"github": [
"github",
"git hub",
"github ."
],
"dynamic host configuration protocol": [
"dhcp",
"dhcp server",
"relay agent"
],
"swift": [
"swift",
"swift."
],
"webform": [
"webform",
"web form",
"webforms"
],
"adobe dreamweaver": [
"dreamweaver",
"adobe dreamweaver",
"dreamweaver cs4",
"dreamweaver 8.0",
"adobe dreamweaver cs6",
"macromedia dreamweaver",
"dreamweaver cc",
"dreamweaver cs6",
"adobe dreamviewer"
],
"pl": [
"pl",
"pl."
],
"quản lý thời gian": [
"quản lý thời gian",
"quản lý tốt thời gian",
"quản lý tasks",
"quản lý thời gian công việc",
"sắp xếp thời gian",
"sắp sếp thời gian"
],
"swing (java)": [
"java swing",
"swing component"
],
"vmware": [
"vmware",
"ảo hóa vmware",
"vmware srm",
"vmware vcenter converter standalone",
"vmware data center virtualization",
"vmware 6.5",
"vmware vcenter 6.7"
],
"ado.net": [
"ado. net",
"ado. net.",
"ado .net"
],
"internet": [
"internet",
"duyệt internet",
"sử dụng internet",
"mạng internet",
"thành thạo internet"
],
"firebase": [
"firebase",
"google firebase",
"firebase database",
"firebase ,",
"firebase map api.",
"firebase realtime database",
"google firebase authentication",
"firebase storage",
"knowledge firebase"
],
"cisco systems": [
"cisco",
"router cisco",
"cisco routers",
"cisco router",
"thiết bị của cisco",
"cisco )",
"router and firewall cisco",
"cisco :",
"hp cisco"
],
"artificial intelligence": [
"ai",
"artificial intelligence ( ai"
],
"java web start": [
"java web",
"java networking",
"java web application",
"web java"
],
"virtual private network": [
"vpn",
"vpn server",
"vpn site to site",
"vpn client",
"openvpn",
"open vpn"
],
"đàm phán": [
"đàm phán",
"đàm phán hợp tác",
"đàm phán ký kết hợp đồng",
"đàm phán với khách hàng",
"đàm phán hợp đồng",
"đàm phán thuyết phục",
"kỹ năng đàm phán"
],
"back end": [
"back end",
"back end ( nodejs",
"back end ( nodejs )",
"back - end",
"backend : php",
"back-end",
"java back - end"
],
"mcsa": [
"mcsa",
"mcsa."
],
"jakarta ee": [
"j2ee",
"java j2ee",
"javaee",
"java ee",
"java ( j2se , j2ee )",
"java enterprise",
"j2se",
"java j2se",
"java se"
],
"opencv": [
"opencv",
"open cv"
],
"zend framework": [
"zend framework",
"zend framework 2",
"zendframework",
"zend-framework",
"framework zend",
"zendframework 1.8",
"zend i framework",
"zend framework 1"
],
"ccna": [
"ccna",
"cisco certified network associate",
"ccna cisco",
"cisco certified networking associate ( ccna )",
"ccna certification",
"ccna.",
"ccna security",
"quản trị mạng ccna"
],
"apache jmeter": [
"jmeter",
"tool jmeter",
"java jmeter"
],
"responsive web design": [
"responsive",
"responsive web design",
"css responsive",
"responsive web",
"responsive css",
"web responsive.",
"org responsive",
"less responsive",
"less web responsive"
],
"psd": [
"psd",
"psd."
],
"ibm": [
"ibm",
"ibm.",
"máy chủ của ibm"
],
"framework": [
"framework",
"frameworks",
"frame work"
],
"cakephp": [
"cakephp",
"framework cakephp",
"cake php",
"cakephp framework",
"cakephp2",
"framework cake php"
],
"sublime text": [
"sublime text",
"sublime text 3",
"sublimetext",
"sublime text 2",
"python 3 sublimetext",
"sublime text3",
"subline text",
"subline text 3"
],
"abap": [
"abap",
"sap abap.",
"sap abap",
"sap r3 abap",
"abap list",
"abap development",
"abap sap"
],
"the postman": [
"postman",
"postman."
],
"facebook ads": [
"facebook",
"facebook ads",
"quảng cáo facebook",
"facebook ads cơ bản",
"marketing facebook",
"facebook marketing"
],
"ibm db2 family": [
"db2",
"ibm db2",
"purescale",
"db2 hadr",
"ibm pure"
],
"trello": [
"trello",
"trello main developer"
],
"sass": [
"sass",
"sass."
],
"microsoft access": [
"ms access",
"microsoft access",
"microsoft office access",
"cơ sở dữ liệu ms access",
"access 2003"
],
"wan": [
"wan",
"wan.",
"hệ thống mạng wan"
],
"matlab": [
"matlab",
"matlab."
],
"yii": [
"yii",
"yii2",
"yii framework",
"yiiframework",
"yii2 framework",
"yiiframework 2",
"framework yii",
"yii frameworks"
],
"customer relationship management": [
"crm",
"manage customers",
"crm dynamic",
"crm ,",
"crm.",
"app crm."
],
"typescript": [
"typescript",
"type script",
"typescript es6"
],
"gitlab": [
"gitlab",
"git lab",
"gitlab."
],
"xampp": [
"xampp",
"xamp",
"xampp.",
"xampp server",
"xampp 1.8"
],
"unix": [
"unix",
"linux unix",
"unix os",
"open source unix"
],
"mạng máy tính": [
"mạng máy tính",
"hệ thống mạng",
"điện tử viễn thông ccna",
"hệ thống mạng server",
"mạng server",
"hệ thống mạng máy tính",
"network",
"networking",
"networks"
],
"kotlin (programming language)": [
"kotlin",
"android kotlin"
],
"jakarta enterprise beans": [
"ejb",
"ejb 3.0",
"ejb servlet"
],
"mariadb": [
"mariadb",
"maria db",
"mariadb 10",
"maxscale"
],
"internet of things": [
"iot",
"internet of things"
],
"windows communication foundation": [
"wcf",
"wcf.",
", wcf"
],
"odoo": [
"odoo",
"openerp",
"python odoo",
"odoo erp",
"erp odoo",
"odọọ"
],
"file server": [
"file server",
"fileserver",
"files server",
"storage server"
],
"tfs": [
"tfs",
"tfs."
],
"message transfer agent": [
"mail server",
"mail exchange server",
"mailserver",
"email server",
"exchange mail"
],
"máy tính": [
"máy tính",
"vi tính",
"vi tính chuyên nghiệp",
"sử dụng máy tính",
"lắp ráp máy tính",
"lỗi liên quan đến máy tính",
"làm việc tốt với máy tính",
"kỹ năng máy tính"
],
"opencart": [
"opencart",
"open cart"
],
"giám sát": [
"giám sát",
"giám sát hoạt động hàng ngày"
],
"apache struts 2": [
"struts2",
"struts 2",
"framework struts2",
"coding java strut2",
"strut2",
"mvc hibernate struts2"
],
"bitbucket": [
"bitbucket",
"git ( bitbucket"
],
"quản trị mạng": [
"quản trị mạng",
"quản trị mạng workgroup",
"kỹ sư mạng",
"quản trị hệ thống mạng",
"quản lý hệ thống mạng"
],
"google analytics": [
"google analytics",
"google analytic",
"google web master tool",
"phân tích google analytics"
],
"tổ chức": [
"tổ chức sắp xếp công việc",
"tổ chức công việc",
"giao việc",
"tổ chức phân công",
"tổ chức công việc khoa học",
"tổ chức sắp xếp"
],
"phần cứng máy tính": [
"phần cứng",
"phần cứng máy tính",
"cấu hình phần cứng",
"làm việc phần cứng",
"lập trình phần cứng",
"phần cứng của máy tính",
"kỹ thuật phần cứng",
"am hiểu phần cứng máy tính"
],
"axure rp": [
"axure",
"axure pro",
"axure rp",
"axure rp9",
"axure tool"
],
"unit testing": [
"unit test",
"unit testing",
"xây dựng unit test",
"test add bug",
"kiểm thử đơn vị",
"test unit"
],
"nosql": [
"nosql",
"no sql",
"cache no sql"
],
"waterfall": [
"waterfall",
"water fall",
"waterfall ,"
],
"microsoft project": [
"ms project",
"microsoft project",
"msproject"
],
"sass (stylesheet language)": [
"scss",
"scss3",
"sass github",
"css j s php"
],
"vba": [
"vba",
"vba."
],
"file transfer protocol": [
"ftp",
"ftp server",
"ftp service"
],
"visual paradigm": [
"visual paradigm",
"visual paradigm for uml",
"visualparadigm"
],
"elasticsearch": [
"elasticsearch",
"elastic search",
"logstash elasticsearch - kibana"
],
"notepad++": [
"notepad",
"notepad +"
],
"oracle sql developer": [
"oracle developer",
"oracle developer tool",
"oracle sql developer",
"oracle developer sql"
],
"oracle applications": [
"oracle ebs",
"oracle ebs r12",
"oracle r12",
"oracle ebusiness suite",
"oracle financials",
"oracle application report",
"oracle e",
"oracle ebs r. 11"
],
"objective-c": [
"objective c",
"object c",
"objective - c",
"objective c git",
"c objective",
"obj c",
"objective-c",
"objectivec",
"objective c."
],
"pascal": [
"pascal",
", pascal"
],
"transact-sql": [
"t-sql",
"t - sql",
"tsql",
"t - sql.",
"t sql"
],
"retrofitting": [
"retrofit",
"retrofit 2.0"
],
"soap": [
"soap",
"soap ws"
],
"amazon web services": [
"aws",
"amazon web services",
"aws.",
"aws service",
"amazon cloud",
"amazon web service",
"aws webservice",
"cloud amazon"
],
"dnn (software)": [
"dotnetnuke",
"dotnetnuke 2.1",
"dotnetnuke 2.1 open source"
],
"model–view–viewmodel": [
"mvvm",
"mvvm.",
"mvvm pattern",
"mvvm silverlight"
],
"mobile": [
"mobile",
"mobiles"
],
"stored procedure": [
"store procedure",
"stored procedure",
"store procedures",
"sql stored procedures",
"stored procedured",
"sql stored procedure"
],
"email": [
"email",
"email service",
"e mail"
],
"soạn thảo văn bản": [
"soạn thảo văn bản",
"biên soạn văn bản"
],
"java database connectivity": [
"jdbc",
"database javabean",
"java database",
"jdbc ,",
"jdbc.",
"s2jdbc"
],
"tin học": [
"tin học",
"tin học cơ bản",
"trình độ tin học"
],
"teamwork": [
"teamwork",
"team work"
],
"internet protocol suite": [
"tcp / ip",
"tcp / ip."
],
"arduino": [
"arduino",
"lập trình arduino"
],
"pfsense": [
"pfsense",
"firewall pfsense"
],
"red hat": [
"redhat",
"jboss",
"red hat",
"redhat jboss fuse"
],
"design pattern": [
"design pattern",
"web service design patterns"
],
"jpa": [
"jpa",
"jpa."
],
"ecmascript": [
"es6",
"javascript es6",
"ecmascript 2015",
"es7"
],
"web server": [
"web server",
"webserver",
"web servers"
],
"coreldraw": [
"corel draw",
"coreldraw",
"corel html"
],
"v-model": [
"v model",
"vmodel"
],
"zimbra": [
"zimbra",
"mail zimbra",
"email zimbra",
"mail server zimbra",
"zimbra other"
],
"thymeleaf": [
"thymeleaf",
"thymeleaf template"
],
"tư duy sáng tạo": [
"sáng tạo",
"tư duy sáng tạo",
"tư duy sang tạo"
],
"voice over ip": [
"voip",
"voice ip"
],
"kỹ năng mềm": [
"kỹ năng mềm",
"khả năng mềm"
],
"data warehouse": [
"data warehouse",
"datawarehouse",
"datawarehouse ,"
],
"tableau": [
"tableau",
"tableu",
"tableau bi",
"tableau server",
"tableau products"
],
"ibm rational rose xde": [
"rational rose",
"ibm rational rose",
"uml rational rose",
"rational rose 7"
],
"bán hàng": [
"bán hàng",
"hỗ trợ cho công tác bán hàng",
"tư vấn bán hàng",
"kỹ năng bán hàng",
"bán hàng chuyên nghiệp"
],
"big data": [
"bigdata",
"big data",
"xử lý big data",
"xử lý dữ liệu lớn"
],
"blockchain": [
"blockchain",
"công nghệ blockchain"
],
"apache hadoop": [
"hadoop",
"hdfs",
"apache common",
"hadoop ecosystem",
"apache",
"apche"
],
"oracle forms": [
"oracle form",
"oracle forms & reports",
"lập trình oracle form",
"oracle forms"
],
"ruby on rails": [
"ruby on rails",
"framework ruby",
"ruby & rails",
"framework ruby on rails"
],
"công nghệ thông tin": [
"công nghệ thông tin",
"công nghệ thồng tin",
"công nghê thông tin",
"it",
"it."
],
"macos": [
"macos",
"mac os",
"mac os.",
"max os"
],
"liferay": [
"liferay",
"liferay portal",
"liferay portal server"
],
"phpstorm": [
"phpstorm",
"php storm 5.0",
"php storm"
],
"prtg network monitor": [
"prtg",
"prtg."
],
"machine learning": [
"machine learning",
"machine learning big",
"học máy",
"thuật toán học máy",
"máy học"
],
"cocos (keeling) islands": [
"cocos2dx",
"cocos 2dx",
"cocos"
],
"draytek": [
"draytek",
"draytek 2925",
"draytek 3900"
],
"xcode": [
"xcode",
"ios xcode",