-
Notifications
You must be signed in to change notification settings - Fork 0
/
tag_counts_dict_dtm.csv
We can't make this file beautiful and searchable because it's too large.
84096 lines (42048 loc) · 682 KB
/
tag_counts_dict_dtm.csv
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
.a,18
.app,37
.asp.net-mvc,1
.aspxauth,21
.bash-profile,138
.class-file,53
.cs-file,14
.doc,47
.drv,1
.ds-store,8
.each,184
.emf,33
.exe,27
.exe.config,1
.hgtags,6
.htaccess,14884
.htpasswd,61
.ico,10
.lib,20
.lrc,4
.mobi,2
.mov,16
.net,114087
.net-1.0,19
.net-1.1,218
.net-2.0,1661
.net-3.0,55
.net-3.5,3693
.net-4.0,5020
.net-4.0-beta-2,16
.net-4.0-rc1,6
.net-4.5,695
.net-assembly,516
.net-authorization,2
.net-bcl,2
.net-bugs,1
.net-cf-3.5,61
.net-client-profile,53
.net-compact,1
.net-framework,235
.net-framework-source,15
.net-framework-version,73
.net-gadgeteer,12
.net-install,7
.net-internals,4
.net-interview,3
.net-micro-framework,103
.net-reflector,24
.net-remoting,126
.net-security,13
.net-services,11
.net2.0,5
.net3.5,35
.net4.0,33
.netrc,11
.nettiers,27
.obj,68
.post,102
.procmailrc,10
.profile,42
.railsrc,3
.rdlc,52
.refresh,7
.sbr,1
.screenrc,5
.sdf,11
.sys,1
.vdproj,3
.war,21
.wav,42
.when,3
.x,11
10.8,1
1080p,36
10gbethernet,55
10gen-csharp-driver,4
10gige,12
110,2
11g,6
12.04,1
12.10,3
120hz,3
128bit,14
12factor,2
15,2
16-bit,22
16bit,106
1and1,21
1wire,5
2-3-4-tree,14
2-3-tree,1
2-digit-year,6
2-legged,22
2-satisfiability,5
2-tier,6
2-way-object-databinding,20
2.5d,7
200,4
2003,22
2007,2019
2010,3665
2013,653
21cfr11,1
24bit,17
24hour,18
256color,5
2checkout,16
2d,1475
2d-3d-conversion,2
2d-array,369
2d-context-api,2
2d-engine,2
2d-games,87
2d-vector,3
2phase-commit,13
2tb,1
2to3,9
2wire,20
3-tier,137
3-way-merge,9
3.0,404
3.0.1,42
3.0.3,2
3.1,74
3.5mm,9
301,36
301-redirect,122
32-bit,427
32-vs-64-bit,15
3270,10
32bit,409
32bit-64bit,854
32feet,7
35mm,23
360,1
360-degrees,22
37-signals,18
3750,5
389-ds,29
3com,30
3d,4159
3d-array,19
3d-engine,25
3d-flip,1
3d-graphics,48
3d-model,28
3d-modeling,54
3d-modelling,62
3d-multimedia,8
3d-ready,2
3d-reconstruction,36
3d-rendering,10
3d-secure,9
3d-studio,4
3d-texture,3
3d-vision,15
3dcamera,3
3delight,1
3des,77
3dmark,2
3ds,42
3ds-max,30
3dsmax,118
3g,438
3g-network,24
3gp,66
3nf,35
3rd-party,55
3rd-party-controls,26
3rd-party-library,121
3tb,1
3ware,54
400,11
401,24
403,107
404,191
404-error,245
404-image,1
443,8
4clojure,11
4d,30
4gl,32
4k,2
4k-sectors,8
4store,8
5.1,30
500,17
500-error,114
500-internal-error,15
500px,3
502,5
502-error,24
503,1
503-error,44
504,11
50mm,26
51degrees,19
580exii,2
64-bit,1879
64bit,1883
6502,16
6510,2
68000,40
68hc11,6
68hc12,6
6in4,1
6nf,1
6rd,2
6to4,19
7-zip,228
70-667,11
777,9
7bit,10
7z,8
7za,4
7zip,226
8-puzzle,16
802.11,60
802.11g,20
802.11n,85
802.1d,3
802.1q,12
802.1x,57
802.3ad,1
8051,92
8080,8
8085,8
8086,189
8087cw,2
8bit,43
9-11,14
9-bit-serial,5
960.gs,185
9p,5
a-record,101
a-records,21
a-star,203
a11y,4
a2dp,28
a4,2
aaa,5
aaa-security-protocol,2
aaa-syntax,4
aabb,28
aac,203
aac+,7
aapt,72
aardvark,1
aasm,22
ab,28
ab-testing,62
abaddressbook,282
abaddressbooksource,6
abandoned,9
abandoned-memory,4
abandonedmutexexception,2
abandonware,10
abap,305
abbot,1
abbr,10
abbreviation,41
abbyy,16
abc,31
abcl,3
abcpdf,114
abelian,1
abelian-categories,66
abelian-groups,322
abelian-varieties,16
aberration,8
abi,90
abinitio,12
abiogenesis,2
abiword,4
ablecommerce,3
ableton-live,12
abmultivalue,3
abort,143
aborted,4
abortion,8
about-box,21
about-config,15
abpeoplepickerview,57
abperson,13
abpersonviewcontroller,36
abrecord,19
abrecordcopyvalue,2
abrecordref,22
absolute,272
absolute-path,194
absolute-positioning,639
absolute-value,150
absolutelayout,47
abstract,531
abstract-action,7
abstract-algebra,6628
abstract-base-class,7
abstract-class,1034
abstract-data-type,61
abstract-factory,48
abstract-factory-pattern,6
abstract-function,2
abstract-interpretation,1
abstract-machine,2
abstract-methods,29
abstract-syntax-tree,129
abstract-type,25
abstraction,370
abstracttablemodel,77
abtest,11
abuse,27
ac-adapter,27
ac3,9
acaccount,16
acaccountstore,3
acc,17
acceleo,47
accelerate-framework,61
accelerated-c++,17
acceleration,79
accelerator,69
acceleratorkey,5
accelerometer,773
accent-insensitive,4
accented-strings,60
accents,159
accept,79
acceptance,6
acceptance-testing,161
acceptbutton,14
acceptverbs,5
access,378
access-2003,8
access-2007,31
access-2010,19
access-connections,3
access-control,350
access-control-lists,1
access-data-project,3
access-database-engine,3
access-denied,379
access-keys,25
access-levels,14
access-list,23
access-log,61
access-modifiers,242
access-point,166
access-protection,5
access-rights,42
access-rules,6
access-services,8
access-specifier,79
access-synchronization,1
access-token,471
access-vba,1030
access-violation,411
access.log,6
accesscontrolexception,43
accesscontrolservice,22
accessibility,1122
accessibility-api,22
accessibility-level,1
accessibilityservice,3
accessible,10
accessor,229
accessories,47
accessorizer,1
accessory,47
accessorytype,14
accessoryview,33
accident,3
accord.net,6
accordion,1012
accordionpane,13
account,387
account-lockout,5
account-management,62
account-restrictions,22
accounting,144
accountmanager,155
accounts,105
accpac,8
accsupp,6
accumulate,30
accumulator,38
accumulo,8
accuracerdb,1
accuracy,53
accuracy-problems,26
accurev,55
acdsee,2
ace,111
ace-datatable,2
ace-editor,66
ace-tao,3
acegi,41
acensor,1
acer,2
acer-aspire,166
acer-aspire-one,44
acer-revo,12
acer-travelmate,7
achartengine,365
achemso,20
achievements,104
acid,66
acid-state,4
acid3,3
ack,118
ackermann,6
acl,1137
acl9,15
acm,92
acm-api,2
acm-icpc,22
acm.graphics,2
acne,6
acoustics,10
acpi,156
acpid,2
acquia,11
acquisition,10
acra,63
acrobat,370
acrobat-professional,21
acrobat-sdk,18
acrofields,5
acronis,52
acronis-trueimage,37
acronym,31
acronyms,145
acropolis,2
acrotex,9
acs,174
acs-serviceidentity,1
act,13
actas,5
actinic,4
action,1478
action-caching,10
action-center,3
action-filter,171
action-menu,4
action-method,7
actionbarcompat,8
actionbarsherlock,1302
actionbarsherlock-map,13
actioncontroller,112
actiondescriptor,1
actiondispatch,16
actionevent,13
actionfilterattribute,46
actionform,19
actionlink,231
actionlist,6
actionlistener,654
actionmailer,684
actionmailer.net,6
actionmethod,44
actionmode,7
actionpack,24
actionresult,119
actions,201
actionscript,5076
actionscript-1,8
actionscript-2,1155
actionscript-3,19161
actionview,190
actionviewhelper,30
actionwebservice,5
activate,55
activated,11
activation,356
activation-codes,9
activation-context-api,3
activation-record,5
activator,97
active,385
active-attr,4
active-content,2
active-directory,7489
active-directory-explorer,2
active-directory-group,37
active-ftp,3
active-memory,2
active-model-serializers,16
active-objects,5
active-pattern,15
active-record-query,13
active-relation,33
active-script,4
active-shipping,1
active-support,15
active-users,5
active-window,17
activeadmin,632
activeandroid,9
activebatch,1
activecollab,14
activedirectory,12
activedirectorymembership,38
activejdbc,5
activemerchant,133
activemessaging,6
activemodel,175
activemq,958
activemq-cpp,20
activeobjects,7
activeperl,62
activepivot,14
activepython,31
activeqt,6
activerecord,7627
activerecord-import,2
activerecord-jdbc,9
activerecord-relation,1
activerecordlinq,3
activerelation,10
activereports,85
activeresource,187
activescaffold,79
activestate,44
activesupport,142
activesync,233
activetcl,7
activeview,10
activex,1687
activex-documents,2
activex-exe,10
activexobject,119
activiti,95
activity,4368
activity-diagram,28
activity-feed,13
activity-finish,74
activity-indicator,37
activity-lifecycle,97
activity-manager,6
activity-monitor,19
activity-stack,42
activity-state,3
activitydesigner,15
activitygroup,135
activitynotfoundexception,7
activityunittestcase,5
actor,425
actor-model,20
acts-as-audited,13
acts-as-commentable,17
acts-as-ferret,19
acts-as-list,24
acts-as-nested-set,6
acts-as-paranoid,5
acts-as-shopping-cart,1
acts-as-state-machine,6
acts-as-taggable,30
acts-as-taggable-on,177
acts-as-taggable-on-ster,6
acts-as-tree,27
acts-as-versioned,7
actual,8
actuarial-science,29
actuate,3
acupressure,1
acupuncture,5
ad-account-creation-mode,2
ad-certificate-services,66
ad-hoc,77
ad-hoc-distribution,128
ad-hoc-network,104
ad-hoc-sql,2
ad-lds,36
ad-management,1
ada,349
ada-compliance,1
adaboost,28
adam,96
adaptec,38
adapter,1194
adapter-pattern,7
adaption,2
adaptive-compression,3
adaptive-design,5
adaptor,13
adb,862
adbannerview,40
adblock,121
adbwireless,1
adc,29
add,898
add-action,157
add-cap,10
add-data,1
add-editor-style,6
add-feed,9
add-filter,84
add-help-tab,1
add-image-size,73
add-in,1022
add-menu-page,31
add-meta-box,47
add-on,272
add-options,6
add-references-dialog,8
add-rewrite-rule,57
add-settings-field,12
add-settings-section,5
add-submenu-page,12
add-theme-support,16
add-type,6
addattribute,16
addcallback,4
addchild,117
addclass,399
adddays,3
added,15
addeventlistener,329
addhandler,29
addiction,12
adding,152
addins,4
addition,187
additive-combinatorics,29
addmodelerror,6
addobserver,19
addon,10
addon-domain,13
addons,23
addr2line,3
addrange,12
addremoveprograms,15
address,610
address-bar,132
address-book,94
address-space,18
address-space-exhaustion,2
addressbar,12
addressbook,451
addressbookui,22
addresses,30
addressing,26
addressing-mode,7
addressof,22
addslashes,29
addsubview,202
addthis,195
adduser,3
adf,36
adf-faces,13
adf-task-flow,3
adfind,1
adfs,233
adfs2.0,150
adfsv2,2
adgroup,5
adhearsion,2
adhoc,219
adhoc-network,15
adhoc-queries,12
adium,30
adjacency-list,104
adjacency-list-model,7
adjacency-matrix,56
adjoint,56
adjustable,7
adjustbox,18
adjustment,32
adk,94
adldap,12
adlds,17
adler32,10
adm2,1
admanager,4
admin,1827
admin-bar,79
admin-generator,53
admin-init,5
admin-interface,7
admin-menu,158
admin-pages,1
admin-rights,14
admin-routing,2
admin-tools,2
admin-ui,3
adminhtml,52
administration,987
administration-console,3
administrative,3
administrator,619
administrators,3
adminstration,2
admnistration,1
admob,1121
admt,9
ado,881
ado-net-dataservices,34
ado.net,3849
ado.net-entity-data-model,231
adobe,2371
adobe-acrobat,257
adobe-after-effects,21
adobe-air,31
adobe-brackets,1
adobe-bridge,9
adobe-camera-raw,16
adobe-captivate,28
adobe-connect,6
adobe-contribute,4
adobe-creative-suite,7
adobe-cs3,8
adobe-cs4,34
adobe-cs5,68
adobe-cs6,3
adobe-dreamweaver,39
adobe-drive,1
adobe-edge,41
adobe-fireworks,29
adobe-flash,132
adobe-flash-cs3,17
adobe-flash-cs5,46
adobe-illustrator,305
adobe-indesign,97
adobe-javascript,3
adobe-lightroom,23
adobe-media-encoder,7
adobe-photoshop,678
adobe-premiere,58
adobe-premiere-elements,1
adobe-reader,271
adobe-rgb,5
adobe-scout,1
adobe-stratus,6
adoconnection,13
adodb,343
adodbapi,13
adolf-hitler,11
adomd.net,33
adonetappender,22
adoption,16
adorner,94
adornerdecorator,10
adornerlayer,18
adornment,6
adox,18
adp,38
adpcm,7
adplus,29
adr,2
adress,6
adressof,1
adrotator,16
ads,460
ads-api,11
adsense,418
adsense-for-search,5
adserver,31
adsi,99
adsl,227
adsl-router,55
adsl2,8
adsl2+,16
adspygoogle,1
adsutil.vbs,2
adt,751
adt-bundle,1
adt-r22,1
adtran,6
adts,10
aduc,3
advanced-custom-fields,95
advanced-format,32
advanced-installer,31
advanced-queuing,22
advanced-search,30
advanced-taxonomy-queries,41
advanceddatagrid,196
advancement,2
advancements,6
advantage-database-server,140
advantages,10
advapi32,16
adventure,6
adventureworks,37
advertised-shortcut,4
advertisement,124
advertisement-server,13
advertisements,36
advertising,375
advice,219
advice-and-nonuniformity,19
advice-request,39
adview,61
advocacy,3
adw-launcher,1
adware,29
adwhirl,167
adwords,159
adwords-api-v201109,6
aec,21
aegis,10
aerial-photography,9
aero,341
aero-glass,31
aero-peek,19
aero-snap,19
aerodynamics,1
aerofs,3
aes,1188
aes-gcm,9
aes-ni,1
aescryptoserviceprovider,10
aeson,17
aesthetics,32
aether,15
af-s,3
afconvert,5
affiliate,86
affiliates,13
affiliation,11
affine-geometry,83
affine-schemes,5
affinetransform,94
affinity,92
affix,4
afhttpclient,2
afincrementalstore,9
afjsonrequestoperation,9
afloat,5
afnetworking,570
aforge,137
afp,118
africa,7
afs,12
after-create,12
after-effects,43
after-initialize,1
after-save,17
afterpage,6
aftershot,1
afterthought,3
afx,15
against,21
agal,18
agatha-rrsl,4
agavi,4
agda,34
age,73
agena,1
agent,208
agent-based-modeling,18
agent-ransack,7
agents,26
agents-jade,38
agfa,1
agfx,4
aggregate,703
aggregate-functions,839
aggregate-initialization,4
aggregateexception,3
aggregateroot,73
aggregates,19
aggregation,371
aggregation-framework,49
aggregator,29
aggregators,7
agi,28
agile,1220
agile-processes,33
agile-project-management,40
agile-tools,1
agiletoolkit,13
agility.js,2
aging,5
agp,12
agpl,45
agreggate,11
agrep,7
agriculture,12
agsxmpp,17
agvtool,6
ahah,33
ahci,63
aho-corasick,5
ai-challenge,1
ai.artificial-intel,52
aida,4
aide,7
aide-ide,5
aidl,148
aif,12
aiff,12
aik,5
aim,38
aiml,27
aio,37
aio-write,6
air,3904
air-android,25
air-conditioning,5
air-native-extension,115
air2,12
airbrake,18
aircard,3
aircrack-ng,25
airfoil,2
aironet,18
airplane,35
airplanes,2
airplay,152
airport,156
airport-express,37
airport-extreme,63
airport-security,2
airprint,70
airshows,5
airtunes,5
ais,3
aix,709
ajax,44829
ajax-control-tookit,16
ajax-forms,16
ajax-on-rails,5
ajax-polling,28
ajax-push,24
ajax-request,32
ajax-upload,71
ajax.beginform,62
ajax.net,73
ajax.request,10
ajax4jsf,249
ajaxcomplete,22
ajaxcontext,3
ajaxcontroltoolkit,1075
ajaxform,105
ajaxhelper,3
ajaxmin,13
ajaxpro,16
ajaxsetup,48
ajaxstart,23
ajaxtags,2
ajaxtoolkit,325
ajaxuploader,8
ajdt,17
ajp,112
akamai,49
akephalos,3
akhet,1
akismet,15
akka,561
akka-cluster,2
akka-zeromq,4
akonadi,1
al.exe,5
alac,5
alarm,392
alarm-clock,5
alarmmanager,676
alarms,25
alasset,95
alassetslibrary,212
albacore,20
albert-einstein,7
albireo,2
albpm,3
album,6
album-art,18
albumart,31
alcatel-ot,6
alchemy,57
alchemyapi,11
alcohol,45
alembic,18
aleph,1
alert,1045
alertdialog,693
alerting,18
alerts,178
alertview,30
alex,9
alexa,27
alexander-of-macedon,1
alfred,5
alfresco,571
alfresco-share,51
algebra,206
algebra-precalculus,4144
algebraic-complexity,25
algebraic-curves,235
algebraic-data-type,3
algebraic-data-types,57
algebraic-geometry,2697
algebraic-graph-theory,45
algebraic-groups,137
algebraic-k-theory,15
algebraic-number-theory,792
algebraic-systems,5
algebraic-topology,2011
algebras,1
alglib,14
algol,5