-
Notifications
You must be signed in to change notification settings - Fork 82
/
sam-gh-files-lowercase-top1000.txt
1000 lines (1000 loc) · 11.3 KB
/
sam-gh-files-lowercase-top1000.txt
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
readme.md
license
.gitignore
index.html
package.json
.travis.yml
license.txt
makefile
favicon.ico
readme.txt
index.js
readme
__init__.py
changelog.md
contributing.md
license.md
style.css
.gitattributes
gemfile
app.js
rakefile
.editorconfig
changelog
bower.json
copying
setup.py
bootstrap.min.css
composer.json
bootstrap.min.js
logo.png
jquery.js
main.js
index.php
bootstrap.js
bootstrap.css
gruntfile.js
robots.txt
authors
.jshintrc
glyphicons-halflings-regular.woff
glyphicons-halflings-regular.ttf
glyphicons-halflings-regular.svg
glyphicons-halflings-regular.eot
pom.xml
.gitkeep
requirements.txt
project.pbxproj
main.css
build.gradle
.htaccess
jquery.min.js
androidmanifest.xml
fontawesome-webfont.woff
fontawesome-webfont.ttf
dockerfile
fontawesome-webfont.eot
strings.xml
fontawesome-webfont.svg
.npmignore
gemfile.lock
gulpfile.js
test.js
.project
404.html
info.plist
.gitmodules
config.php
fontawesome.otf
version.rb
assemblyinfo.cs
gradlew
readme.rst
gradlew.bat
gradle-wrapper.properties
todo
icon.png
gradle-wrapper.jar
_variables.scss
contents.xcworkspacedata
spec_helper.rb
settings.gradle
server.js
styles.xml
config.js
ic_launcher.png
utils.js
install
_mixins.scss
glyphicons-halflings-regular.woff2
readme.markdown
_config.yml
main.cpp
changes
font-awesome.min.css
contents.json
manifest.in
application.js
variables.less
.classpath
index.rst
bootstrap-theme.min.css
modules.xml
.ds_store
main.m
mixins.less
loading.gif
app.config
gradle.properties
cmakelists.txt
.bowerrc
version
dimens.xml
changelog.txt
default.html
vcs.xml
bootstrap-theme.css
misc.xml
conf.py
.eslintrc
footer.html
karma.conf.js
font-awesome.css
cache.php
build.xml
styles.css
user.php
script.js
makefile.am
cname
utils.py
main.c
mainactivity.java
build.sh
configure.ac
screenshot.png
header.html
bootstrap.css.map
project.properties
test.html
history.md
composer.lock
autoload.php
apple-touch-icon.png
favicon.png
common.js
fontawesome-webfont.woff2
util.js
bootstrap.php
packages.config
models.py
background.png
config.h
.babelrc
proguard-rules.pro
file.php
main.storyboard
colors.xml
activity_main.xml
program.cs
.rspec
licence
procfile
version.h
phpunit.xml.dist
data.js
500.html
setup.cfg
copyright
manifest.json
index.md
bootstrap-theme.css.map
ui-icons_222222_256x240.png
app.css
about.html
package-lock.json
session.php
org.eclipse.jdt.core.prefs
_icons.scss
close.png
init.js
core.js
header.php
ui-bg_glass_65_ffffff_1x400.png
config.ru
_list.scss
news
default.png
search.js
login.html
normalize.css
webpack.config.js
page.html
web.config
.name
blank.gif
post.html
install.sh
parser.php
config.json
appdelegate.h
_core.scss
profiles_settings.xml
controller.php
util.h
glyphicons-halflings.png
functions.php
contributors
appveyor.yml
settings.py
encodings.xml
link.js
ajax-loader.gif
home.html
en.yml
appdelegate.m
glyphicons-halflings-white.png
client.js
ui-bg_flat_0_aaaaaa_40x100.png
views.py
ui-icons_2e83ff_256x240.png
setup
routes.rb
config.yml
build.js
dialog.css
_path.scss
common.h
web.xml
config
test.rb
notice
ui-icons_cd0a0a_256x240.png
main.scss
util.py
_larger.scss
_fixed-width.scss
_stacked.scss
_bordered-pulled.scss
_rotated-flipped.scss
user.js
ui-icons_454545_256x240.png
infoplist.strings
db.php
example.html
template.php
component.json
base.html
font-awesome.scss
default.css
button.js
category.php
exception.php
base.js
main.py
head.html
urls.py
environment.rb
.keep
main.go
icons.less
core.less
ui-bg_glass_95_fef1ec_1x400.png
debug.h
ui-icons_888888_256x240.png
ui-bg_flat_75_ffffff_40x100.png
reset.css
vagrantfile
default.js
css.js
application.rb
ui-bg_glass_75_dadada_1x400.png
ui-bg_glass_75_e6e6e6_1x400.png
issue_template.md
font-awesome.less
date.php
npm.js
footer.php
run.sh
list.less
ui-bg_glass_55_fbf9ee_1x400.png
compiler.xml
ui-bg_highlight-soft_75_cccccc_1x100.png
path.less
rails
.eslintignore
tests.py
upload.php
text.js
phpunit.xml
ajax.js
modal.js
image.php
boot.rb
node.js
autogen.sh
test_helper.rb
config.py
mit-license.txt
test
update.php
manifest.mf
manage.py
application_controller.rb
workspace.xml
production.rb
yarn.lock
form.js
event.js
image.js
fixed-width.less
bordered-pulled.less
stacked.less
rotated-flipped.less
larger.less
tsconfig.json
code_of_conduct.md
development.rb
types.h
profiler.php
en.js
http.php
control
loader.gif
utils.h
inflections.rb
database.php
stylesheet.css
readme.html
author.php
index.css
map.js
application_helper.rb
underscore.js
test.py
base.php
view.php
build.properties
mime_types.rb
search.png
filter.js
global.js
collapse.js
login.php
add.png
editor.css
backtrace_silencers.rb
todo.txt
make.bat
readme.rdoc
resource.h
console
zh-cn.js
app.php
pt-br.js
422.html
options.js
json.js
dropdown.js
changes.md
queue.h
session_store.rb
page.php
dashboard.js
search.php
plugin.js
xmlrpc.php
arrow.png
main.java
spinner.gif
database.yml
manifest
ie.css
configure
tooltip.js
helpers.js
theme.js
logo.svg
config.rb
main.xml
wsgi.py
fr.js
de.js
.jscsrc
tox.ini
comment.js
test.php
queue.js
admin.py
protocol.h
install.php
es.js
pull_request_template.md
wrap_parameters.rb
print.css
api.html
rules
template.js
delete.png
settings.php
parser.js
email.php
main.h
lock.png
resources.resx
help.png
ru.js
hash.h
html5shiv.js
timer.h
podfile
buttons.less
table.php
grid.less
bg.png
api.js
error.php
json2.js
it.js
base.css
profile.php
date.js
layout.html
misc.c
version.php
file.js
validate.js
functions.js
nl.js
forms.less
lt.js
about.js
xcschememanagement.plist
browser.js
pl.js
table.js
core.php
util.c
site.css
jquery.form.js
editor.js
bootstrap.less
docker-compose.yml
menu.js
admin.php
jquery.cookie.js
list.h
migration.php
test.txt
base.py
compat
doxyfile
mit-license
input.php
prettify.js
config.xml
angular.min.js
logo.gif
qunit.js
view.js
is.js
log.h
model.php
require.js
request.php
application.html.erb
schema.rb
resources.designer.cs
jquery.min.map
example.js
makefile.in
1.jpg
md5.h
application.css
query.php
fi.js
respond.min.js
image.png
cs.js
dashboard.css
faq.md
applicationtest.java
tr.js
license-mit
pagination.less
swfobject.js
logger.js
markdown.js
string.php
marker.png
comment.php
search.html
ja.js
wrap.js
log4j.properties
tag.php
alerts.less
ca.js
anchor.js
misc.php
_grid.scss
settings.settings
router.js
carousel.less
navs.less
tab.js
progress-bars.less
hooks.php
tooltip.less
credits
navbar.less
folder.png
context.c
da.js
tests.js
router.php
.bower.json
.dockerignore
tables.less
seeds.rb
random.h
thumbs.db
appdelegate.swift
loader.php
_buttons.scss
bg.js
javascript.js
pt.js
jquery-ui.min.js
attributes.js
hr.js
mask.png
project.xml
edit.png
utilities.less
hu.js
sv.js
debug.js
type.less
menu.php
constants.js
2.jpg
error.h
ui-icons_ffffff_256x240.png
transition.js
scaffolding.less
ar.js
he.js
pagination.php
sk.js
qunit.css
fa.js
link.php
media.js
ro.js
test.c
scripts.js
feed.xml
response.php
log.php
dropdowns.less
common.php
overview.txt
jquery-ui.css
1.png
ko.js
humans.txt
modals.less
demo.html
code.less
pager.less
porting
breadcrumbs.less
html.php
el.js
close.less
text.php
item.php
events.js
button-groups.less
twitter.png
.mailmap
prettify.css
post.php
rake
thumbnails.less
comments.php
toolbar.css
popovers.less
component-animations.less
wells.less
media.less
offset.js
uk.js
common.css
mocha.opts
store.js
xhr.js
error.png
package.js
vi.js
effects.js
settings.designer.cs
theme.css
scope_settings.xml
2.png
custom.css
style.scss
launchscreen.xib
configuration.php
gradle.xml
lv.js
icons.png
edit.php
plus.png
screen.css
support.js
3.jpg
apple-touch-icon-precomposed.png
bundle
selector.js
main.html
routes.js
launchscreen.storyboard
ipt_ttl.h
responsive-utilities.less
request.js
ipt_ecn.h
ip6t_hl.h
cron.php
angular.js
xt_connmark.h
concat.js
xt_mark.h
_animated.scss
xt_tcpmss.h
xt_rateest.h
xt_dscp.h
plugins.js
json.php
et.js
nb.js
id.js
layout.css
user.rb
file.h
_base.scss
trans.gif
delay.js
package-info.java
import.php
sr.js
th.js
platform.h
gpio.txt
maintainers
ioctl.h
joystick.txt
exceptions.py
abi.txt
index.html.erb
test.sh
color.js
registry.php
string.js
proguard-project.txt
demo.js
post.js
serialize.js
gl.js
menu.png
xt_tcpmss.c
xt_dscp.c
rss.png
routes.php
preview.html
thread.h
xt_rateest.c
form.php
math.js
alert.js
md5.c
core.py
podfile.lock
list.js
schema.php
install.txt
theme.less
highlight.js
star.png
indexof.js
xt_hl.c
plugin.php
user.java
select.js
authors.txt
copying.txt
cli.js
log.js
print.less
users.php
path.js
dma.txt
login.css
parser.h
demo.css
todo.md
carousel.js
content.php
filter_parameter_logging.rb
sl.js
uri.php
utils.c
ms.js
net.h
popover.js
menu.css
module.php
install-sh
facebook.png
cache.h
loader.js
socket.h
password.php
common.py
about.php
panels.less
.ruby-version
settings.js
slider.js
file.png
error.js
3.png
media.css
tostring.js
event.php
hvcall.s
string.h
admin.js
parse.js
labels.less
locking
buffer.h
about.md
init.h
crc32.h
mysql.php
bootstrap-responsive.min.css
wheel.png
slice.js
all.js
underscore-min.js
header.js
.jshintignore
index.txt
memory.h
amd.js
4.jpg
logger.php
constants.h
hi.js
version.txt
event.h
sm501.txt
adapter.h
_forms.scss
load.js
log.c
crc32.c
normalize.less
api.txt
progress.js
refresh.png
404.php
message.php
debug.c
zlib.h
mk.js
jquery-ui.min.css
viewcontroller.h
time.h
bg.jpg
utils.java
progress.gif
testcase.php
inline.php
fr-ca.js
scrollspy.js
up.png
cy.js
run.js
diff.php
eu.js
jquery-ui.js
qos.c
colors.css
list-group.less
en-ca.js
constants.java
favicon-32x32.png
en-gb.js
auth.js
sidebar.php
viewcontroller.m
jsonp.js
error.c
output.php
bootstrap-responsive.css
license.html
entry.php
options.php
farbtastic.js
memcache.php
hash.c
common.c
mail.php
compat.h
farbtastic.css
html5.js
potfiles.in
setup.sh
client.php
core.h
badges.less
login.js
bs.js
query.js
source.php
init.c
io.h
theme.php
url.php
thanks
system.h
config.h.in
ic_launcher-web.png
mutex.h
eo.js
typedefs.h
stdint.h
internal.h
zconf.h
config.guess
async.js
dashboard.php
html.js
bugs
km.js
minus.png
favicon-16x16.png
setup.php
block.h
userinterfacestate.xcuserstate
config.sub
bootstrap.min.css.map
deferred.js
arrows.png
forms.py
fr.po
sha1.c
clean.js
misc.h
de.po
port.h
build
index.jade
buttons.png
input-groups.less
glyphicons.less
map.h
jumbotron.less
anchor.gif
xml.js
_reset.scss
error.html
browserconfig.xml
security.php
users.js
dialog.js
timer.c
deprecated.js
defaults.js
auth.php
video.png
feed.php
test.h
getopt.c
controls.png
classes.js
intro.js
codemirror.css
basic.js
object.js
no.png
version.js
array.js
4.png
org.eclipse.core.resources.prefs
compress.c
0001_initial.py
format.h
circle.yml
key.h
fo.js
find.js
preview.png
prop.js
.coveragerc
en-au.js
renderer.php
affix.js
moxieplayer.swf
aes.h
notes
animated.less
warning.png
calendar.png
helper.js
foreach.js
base.h
runner.js
release.sh
collection.js
form.html
attrs.xml
tiny_mce_popup.js
format
ie-rtl.css
version.c
default-568h@2x.png
nand.txt
push.js
toolbar.js
zutil.h
shell.php
xml.php
node.h
codemirror.js
driver.php
pagination.html
archive.php
form_utils.js
crypto.h
inflate.c
single.php
media.php
errors.js
mctabs.js
editable_selects.js
.coveralls.yml
ka.js
inftrees.h
transform.js
inffixed.h
template.html
filter.h
bn.js
compiler.h
console.h
moment.min.js
status.h
modernizr.js
profile.js
inftrees.c
aclocal.m4
.csslintrc
device.h
tween.js
config.c
settings.json
custom.js
manipulation.js
diff.js
_layout.scss
inffast.h
text.png
getopt.h
table.h
checkbox.js
root.js
cpu.h
stack.h
inflate.h
constants.php
inffast.c
jquery-1.10.2.min.js
file.c
atomic.h
_normalize.scss
deflate.c
sitemap.xml
af.js
server.php
routing.yml
http.js
missing
callbacks.js
io.c
colorpicker.js
stats.h
throbber.gif