-
Notifications
You must be signed in to change notification settings - Fork 0
/
QueryResults.csv
We can't make this file beautiful and searchable because it's too large.
42296 lines (42296 loc) · 650 KB
/
QueryResults.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
TagName,Count
dotnet,0
jee,0
javascript,1928379
java,1624006
c#,1372314
php,1325747
python,1322597
android,1243650
jquery,973813
html,960130
c++,649953
css,642712
ios,618040
mysql,582544
sql,522787
asp.net,351856
r,322031
c,319299
arrays,315310
ruby-on-rails,313218
node.js,306469
.net,291361
objective-c,288980
json,279431
sql-server,275918
angularjs,259452
swift,252653
iphone,219939
regex,219088
django,216835
excel,211725
ruby,209976
ajax,204999
python-3.x,203392
angular,197927
xml,189234
asp.net-mvc,185778
linux,183225
reactjs,180192
database,162474
spring,161636
wordpress,157280
vba,157242
wpf,153823
string,146937
xcode,137674
windows,135953
laravel,134420
pandas,132283
vb.net,127658
mongodb,122871
multithreading,119818
bash,119586
eclipse,118398
oracle,117584
git,117374
postgresql,110024
typescript,101202
forms,98866
twitter-bootstrap,96889
image,96734
macos,96134
algorithm,95977
list,95016
scala,94484
python-2.7,92616
visual-studio,92159
winforms,87316
matlab,86208
amazon-web-services,86102
performance,85821
apache,85805
facebook,84016
entity-framework,82231
firebase,81797
hibernate,80860
excel-vba,80501
azure,80484
sqlite,80159
function,79484
linq,76645
powershell,75979
rest,74721
swing,74568
shell,74435
qt,73474
api,72864
spring-boot,72779
maven,71112
selenium,69081
numpy,68651
docker,68430
loops,68066
file,67196
.htaccess,67045
unit-testing,66984
csv,66273
react-native,65597
codeigniter,65365
symfony,64376
perl,64002
class,62580
google-maps,61801
uitableview,61125
google-chrome,60820
android-studio,60754
tsql,60511
dataframe,60129
cordova,59846
sorting,59717
web-services,59331
date,59115
express,59091
validation,58178
sockets,57447
apache-spark,56323
ruby-on-rails-3,55996
http,55655
xaml,54545
opencv,54334
android-layout,53835
sql-server-2008,53361
spring-mvc,52635
datetime,51895
email,51693
dictionary,50976
tensorflow,50664
jsp,50301
oop,50300
c++11,49789
wcf,49693
listview,49083
security,48846
parsing,48577
object,48351
vue.js,47982
for-loop,47937
unity3d,47664
user-interface,47177
ubuntu,47152
batch-file,46826
visual-studio-2010,46622
pointers,45410
templates,45083
delphi,45010
ms-access,44799
if-statement,44533
google-app-engine,44193
variables,44010
matplotlib,43649
debugging,43316
go,42898
haskell,42877
authentication,42802
unix,42412
elasticsearch,42258
asp.net-mvc-4,41981
hadoop,41374
session,41343
pdf,41314
actionscript-3,41287
ssl,40889
android-fragments,40752
jpa,40687
xamarin,39718
asp.net-core,39580
generics,39529
tomcat,39160
nginx,39126
jquery-ui,39018
cocoa,38703
asp.net-mvc-3,38582
asynchronous,38538
jenkins,38520
internet-explorer,38292
magento,37606
url,37556
testing,37432
animation,37384
ionic-framework,37367
web,37275
curl,36655
ruby-on-rails-4,36483
selenium-webdriver,36374
gradle,36102
laravel-5,35980
machine-learning,35781
github,35756
firefox,35458
inheritance,35399
recursion,35254
flash,35219
redirect,35164
exception,35031
winapi,34954
jsf,34714
cocoa-touch,34610
post,34604
d3.js,34553
ipad,34486
math,34196
join,34050
dom,33800
svg,33767
facebook-graph-api,33682
opengl,33674
xslt,33567
image-processing,33503
events,33349
select,33207
gcc,33111
kotlin,33099
iis,33065
button,33012
heroku,32994
caching,32987
assembly,32838
asp.net-web-api,32780
logging,32616
flask,32586
intellij-idea,32564
matrix,32221
amazon-s3,32219
search,32166
flutter,32046
javafx,32001
stored-procedures,31924
servlets,31892
ggplot2,31465
xpath,31267
networking,31256
canvas,30842
mod-rewrite,30792
cakephp,30684
audio,30424
encryption,30391
optimization,30098
memory,29815
npm,29742
video,29461
model-view-controller,29364
jakarta-ee,29271
razor,29193
webpack,29185
firebase-realtime-database,29121
cookies,29042
grails,28972
arraylist,28921
google-apps-script,28881
android-intent,28869
mongoose,28653
jdbc,28617
tkinter,28591
iframe,28523
meteor,28401
multidimensional-array,28388
vector,28007
design-patterns,27962
serialization,27942
visual-c++,27750
plot,27556
silverlight,27446
random,27407
mysqli,27172
android-activity,27131
django-models,26937
activerecord,26839
input,26591
core-data,26543
amazon-ec2,26447
checkbox,26283
svn,26094
indexing,26067
text,25910
web-scraping,25848
awk,25813
mobile,25750
gridview,25694
soap,25645
c#-4.0,25540
mvvm,25430
sharepoint,25253
methods,24931
data-structures,24905
vim,24745
groovy,24411
dart,24392
boost,24363
google-maps-api-3,24276
apache-flex,24218
file-upload,24098
memory-management,24097
layout,23867
extjs,23784
google-sheets,23440
time,23396
struct,23377
dynamic,23377
ember.js,23321
lambda,23248
sed,23213
ecmascript-6,23191
visual-studio-2012,23112
keras,23070
ssh,22968
kubernetes,22966
xamarin.forms,22871
dll,22832
jquery-mobile,22816
browser,22789
twitter,22741
reporting-services,22731
netbeans,22678
pdo,22489
redux,22367
google-chrome-extension,22273
junit,22099
plugins,22093
plsql,22058
woocommerce,22022
graph,21988
reflection,21899
unicode,21874
replace,21840
database-design,21702
filter,21647
spring-security,21559
charts,21511
highcharts,21453
android-recyclerview,20998
twitter-bootstrap-3,20979
data-binding,20957
.net-core,20785
encoding,20776
hash,20766
cmd,20763
gwt,20673
service,20668
backbone.js,20641
dependency-injection,20617
foreach,20578
types,20527
zend-framework,20453
https,20443
collections,20374
tfs,20249
makefile,19982
command-line,19963
deployment,19887
windows-phone-7,19817
knockout.js,19815
import,19783
web-applications,19730
visual-studio-code,19655
file-io,19624
printing,19595
websocket,19526
utf-8,19509
excel-formula,19470
drop-down-menu,19455
drupal,19454
error-handling,19421
visual-studio-2015,19381
html-table,19360
webview,19317
parse-platform,19305
tcp,19254
google-cloud-platform,19063
while-loop,19061
visual-studio-2013,18819
solr,18786
login,18756
nhibernate,18706
neo4j,18660
view,18594
paypal,18587
scroll,18558
sass,18551
datagridview,18532
java-8,18400
sql-server-2005,18395
windows-phone-8,18359
primefaces,18334
merge,18327
swift3,18306
ffmpeg,18258
server,18194
concurrency,18104
datatable,18066
build,18060
oracle11g,18060
beautifulsoup,17998
uiview,17995
syntax,17957
pyspark,17769
graphics,17759
hive,17752
vbscript,17742
group-by,17738
google-analytics,17723
split,17723
eloquent,17722
ssis,17707
uwp,17671
scikit-learn,17671
enums,17629
fonts,17611
parameters,17580
terminal,17531
memory-leaks,17492
cmake,17471
oauth,17430
colors,17332
angularjs-directive,17326
constructor,17286
redis,17278
module,17207
shiny,17150
timer,17023
bootstrap-4,16889
rspec,16863
apache-kafka,16854
jar,16839
vuejs2,16711
cassandra,16691
playframework,16620
interface,16598
emacs,16583
yii,16549
orm,16509
casting,16458
dplyr,16456
oauth-2.0,16401
promise,16351
lua,16329
parallel-processing,16306
combobox,16256
proxy,16234
django-rest-framework,16199
hyperlink,16172
doctrine-orm,16107
push-notification,16063
clojure,15985
directory,15978
jsf-2,15939
sql-server-2012,15927
properties,15874
outlook,15774
count,15767
process,15744
visual-studio-2008,15732
datatables,15693
socket.io,15677
uiviewcontroller,15674
kendo-ui,15623
compiler-errors,15554
download,15522
version-control,15509
triggers,15507
three.js,15483
automation,15473
configuration,15418
android-listview,15360
arduino,15349
binding,15291
model,15234
io,15173
google-api,15131
asp.net-mvc-5,15118
callback,15057
joomla,15037
ms-word,15035
scipy,15030
functional-programming,15009
url-rewriting,15007
ant,14938
linked-list,14929
xamarin.android,14922
phpmyadmin,14921
scope,14921
safari,14897
path,14877
deep-learning,14875
sqlalchemy,14846
responsive-design,14805
ios7,14797
rust,14715
autocomplete,14711
neural-network,14699
bluetooth,14694
scripting,14690
nullpointerexception,14690
bitmap,14649
datepicker,14495
exception-handling,14487
laravel-4,14439
datagrid,14433
architecture,14433
linq-to-sql,14421
permissions,14394
pagination,14394
compilation,14373
dns,14361
webforms,14355
reference,14346
f#,14343
async-await,14328
aws-lambda,14301
android-asynctask,14253
menu,14253
3d,14234
devise,14189
controller,14171
jboss,14153
xamarin.ios,14146
grep,14116
cron,14115
routing,14112
static,14103
linux-kernel,14090
google-cloud-firestore,14082
get,13997
django-forms,13966
flexbox,13922
youtube,13873
tree,13791
yii2,13776
notifications,13681
transactions,13622
docker-compose,13527
opengl-es,13514
stl,13498
routes,13485
character-encoding,13438
null,13247
coldfusion,13158
pyqt,13158
active-directory,13122
pip,13085
jmeter,13077
ftp,13037
jquery-plugins,13016
background,13014
react-redux,12980
textview,12968
msbuild,12899
xsd,12885
azure-devops,12824
scrapy,12794
sdk,12783
insert,12782
request,12780
x86,12770
camera,12766
upload,12759
tabs,12737
spring-data-jpa,12720
rxjs,12717
django-templates,12651
raspberry-pi,12640
apache-spark-sql,12608
stream,12559
django-views,12550
uicollectionview,12546
android-ndk,12539
sprite-kit,12537
ansible,12439
installation,12435
jackson,12431
openssl,12362
nlp,12311
cuda,12278
hashmap,12231
visual-studio-2017,12210
xml-parsing,12184
onclick,12175
ionic2,12142
uiscrollview,11998
sas,11984
nested,11980
floating-point,11960
localization,11949
libgdx,11937
binary,11908
ios5,11884
gulp,11856
google-bigquery,11855
pygame,11850
calendar,11834
javascript-events,11694
crystal-reports,11680
mfc,11675
mapreduce,11638
firebase-authentication,11622
access-vba,11613
macros,11611
header,11597
textbox,11589
drag-and-drop,11557
android-gradle-plugin,11545
linker,11544
iterator,11505
crash,11467
cryptography,11423
statistics,11409
jasmine,11402
python-requests,11397
react-router,11383
mocking,11352
console,11348
css-selectors,11306
navigation,11272
struts2,11245
sql-server-2008-r2,11227
com,11226
lucene,11210
asp-classic,11158
android-edittext,11133
eclipse-plugin,11086
annotations,11076
windows-7,10925
dialog,10920
listbox,10888
google-drive-api,10879
prolog,10859
uinavigationcontroller,10854
angular-material,10853
namespaces,10850
centos,10842
sum,10815
jqgrid,10779
ios4,10776
json.net,10774
segmentation-fault,10744
duplicates,10725
keyboard,10720
formatting,10703
geolocation,10688
frameworks,10683
compiler-construction,10678
char,10675
attributes,10662
uibutton,10653
uiwebview,10642
jupyter-notebook,10602
xampp,10586
garbage-collection,10579
mongodb-query,10578
nosql,10537
operating-system,10515
ionic3,10490
computer-vision,10464
rotation,10447
protractor,10429
type-conversion,10423
rabbitmq,10389
doctrine,10361
jaxb,10356
windows-8,10350
android-emulator,10331
delegates,10330
uiimageview,10325
cocos2d-iphone,10311
geometry,10304
event-handling,10269
fortran,10260
autolayout,10233
android-viewpager,10232
jvm,10212
timestamp,10139
xmlhttprequest,10132
pycharm,10114
vb6,10105
webdriver,10081
db2,10053
internationalization,10033
ldap,9979
angular-ui-router,9967
modal-dialog,9965
network-programming,9964
entity-framework-6,9951
serial-port,9946
continuous-integration,9939
http-headers,9891
cors,9861
jersey,9830
html5-canvas,9780
user-controls,9771
timezone,9763
drupal-7,9763
smtp,9757
sonarqube,9756
dependencies,9745
wso2,9720
format,9711
numbers,9709
rubygems,9709
youtube-api,9709
coffeescript,9705
gps,9700
tags,9696
grid,9688
data.table,9597
mono,9595
arm,9488
initialization,9461
ide,9448
iis-7,9440
popup,9429
int,9415
integer,9414
multiprocessing,9405
anaconda,9385
windows-10,9374
ado.net,9368
ios8,9363
leaflet,9345
apache-camel,9339
switch-statement,9317
asp.net-core-mvc,9314
set,9309
automated-tests,9301
time-series,9255
imageview,9249
dojo,9246
passwords,9217
wix,9215
return,9166
find,9165
package,9139
actionscript,9134
google-play,9117
synchronization,9111
sql-update,9089
copy,9086
telerik,9086
twig,9082
foreign-keys,9078
mockito,9074
radio-button,9065
spring-data,9043
jframe,9042
boolean,9037
gdb,9032
hover,9032
udp,9022
gruntjs,9009
stack,9000
map,8999
wsdl,8918
angularjs-scope,8895
graphql,8891
entity-framework-core,8875
widget,8865
composer-php,8859
nuget,8857
jestjs,8837
uiimage,8828
queue,8824
base64,8803
electron,8793
ios6,8772
subprocess,8763
java-native-interface,8749
android-actionbar,8735
.net-4.0,8713
storyboard,8709
zend-framework2,8694
qml,8694
arguments,8693
jwt,8678
erlang,8677
gmail,8649
sbt,8632
include,8631
cross-browser,8626
internet-explorer-8,8592
sharepoint-2010,8554
dataset,8546
command,8545
connection,8544
save,8512
swift2,8498
asp.net-mvc-2,8494
g++,8488
gitlab,8483
blackberry,8474
migration,8471
environment-variables,8464
resources,8460
slider,8454
jquery-selectors,8412
windows-runtime,8410
phpunit,8409
location,8402
azure-active-directory,8384
polymorphism,8382
cucumber,8369
append,8343
axios,8329
resize,8308
itext,8296
ckeditor,8283
ruby-on-rails-5,8269
gson,8256
click,8252
treeview,8213
polymer,8205
log4j,8191
timeout,8182
debian,8182
angular6,8150
tuples,8147
compare,8141
windows-services,8127
google-visualization,8125
jasper-reports,8117
amazon-dynamodb,8111
jtable,8109
web-config,8108
django-admin,8070
google-cloud-functions,8069
admob,8068
ef-code-first,8062
certificate,8035
web-crawler,8034
filesystems,8004
firebase-cloud-messaging,7999
mercurial,7995
apache-poi,7981
language-agnostic,7980
thread-safety,7980
zip,7976
vagrant,7967
realm,7958
window,7955
embedded,7952
localhost,7943
in-app-purchase,7937
components,7930
uitextfield,7895
hex,7894
uikit,7865
subquery,7861
range,7858
ip,7849
position,7849
controls,7806
iteration,7804
icons,7800
kernel,7796
air,7784
compression,7758
windows-phone-8.1,7737
odbc,7729
label,7729
pivot,7728
maps,7724
salesforce,7714
mariadb,7707
imagemagick,7705
pattern-matching,7704
cursor,7676
ssl-certificate,7676
broadcastreceiver,7660
fullcalendar,7648
windows-installer,7630
escaping,7624
authorization,7618
yaml,7617
pipe,7600
cypher,7591
pthreads,7584
latex,7572
requirejs,7555
styles,7552
phantomjs,7551
angularjs-ng-repeat,7536
glassfish,7536
aggregation-framework,7536
export,7534
singleton,7532
printf,7532
locking,7519
pyqt5,7497
wordpress-theming,7480
applet,7463
http-post,7460
output,7459
elixir,7458
entity-framework-4,7443
asp.net-web-api2,7415
selenium-chromedriver,7413
jenkins-pipeline,7403
coding-style,7403
rss,7399
java-stream,7391
typo3,7386
key,7382
signalr,7380
closures,7379
laravel-5.2,7376
dockerfile,7345
repository,7334
substring,7323
install,7306
mapping,7284
xna,7279
applescript,7272
malloc,7270
seo,7258
alignment,7246
syntax-error,7246
google-cloud-messaging,7236
gtk,7227
hdfs,7208
clang,7206
android-sqlite,7200
kivy,7180
apple-push-notifications,7148
double,7148
logic,7139
akka,7132
mocha,7131
cygwin,7129
runtime-error,7121
sequelize.js,7105
fragment,7105
swagger,7085
cocoapods,7084
nsstring,7082
local-storage,7062
tinymce,7057
global-variables,7049
many-to-many,7044
app-store,7039
webserver,7031
ruby-on-rails-3.2,7019
usb,7013
client,7007
scheme,7007
bigdata,7003
jpanel,7003
tableview,7002
constraints,6985
playframework-2.0,6981
overriding,6972
chart.js,6961
sms,6956
video-streaming,6939
testng,6936
containers,6935
asp.net-identity,6934
firefox-addon,6926
kendo-grid,6918
operator-overloading,6917
apache2,6913
windows-store-apps,6911
full-text-search,6907
comparison,6904
webkit,6896
jax-rs,6882
bluetooth-lowenergy,6843
windows-phone,6840
observable,6835
jms,6809
qt5,6800
material-design,6799
out-of-memory,6794
less,6792
conditional-statements,6792
google-cloud-datastore,6754
refactoring,6749
mule,6741
twilio,6729
uilabel,6727
cloud,6726
try-catch,6722
content-management-system,6702
wordpress-plugin,6702
conditional,6694
google-cloud-storage,6692
logstash,6687
max,6682
powerbi,6677
hbase,6669
task,6661
oracle10g,6637
media-queries,6625
handlebars.js,6625
android-webview,6624
jquery-validate,6624
time-complexity,6608
runtime,6607
google-play-services,6586
xhtml,6585
angular5,6572
google-chrome-devtools,6567
jetty,6565