-
Notifications
You must be signed in to change notification settings - Fork 83
/
sam-gh-files-mixedcase-top10000.txt
10000 lines (10000 loc) · 112 KB
/
sam-gh-files-mixedcase-top10000.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
index.js
README
__init__.py
style.css
.gitattributes
CONTRIBUTING.md
Gemfile
LICENSE.md
CHANGELOG.md
Rakefile
.editorconfig
bower.json
app.js
setup.py
bootstrap.min.css
composer.json
bootstrap.min.js
jquery.js
COPYING
logo.png
main.js
bootstrap.js
bootstrap.css
README.txt
robots.txt
index.php
.jshintrc
glyphicons-halflings-regular.woff
glyphicons-halflings-regular.ttf
glyphicons-halflings-regular.svg
glyphicons-halflings-regular.eot
pom.xml
AUTHORS
Gruntfile.js
.gitkeep
requirements.txt
project.pbxproj
main.css
build.gradle
.htaccess
readme.md
jquery.min.js
AndroidManifest.xml
fontawesome-webfont.woff
fontawesome-webfont.ttf
fontawesome-webfont.eot
Dockerfile
fontawesome-webfont.svg
readme.txt
.npmignore
strings.xml
Gemfile.lock
.project
404.html
test.js
license.txt
.gitmodules
FontAwesome.otf
Info.plist
gulpfile.js
version.rb
AssemblyInfo.cs
gradlew
gradlew.bat
gradle-wrapper.properties
gradle-wrapper.jar
_variables.scss
contents.xcworkspacedata
spec_helper.rb
settings.gradle
styles.xml
ic_launcher.png
server.js
config.js
utils.js
README.rst
icon.png
_mixins.scss
glyphicons-halflings-regular.woff2
TODO
_config.yml
font-awesome.min.css
Contents.json
MANIFEST.in
INSTALL
config.php
variables.less
ChangeLog
.classpath
bootstrap-theme.min.css
main.cpp
modules.xml
index.rst
.DS_Store
application.js
main.m
mixins.less
loading.gif
gradle.properties
CMakeLists.txt
.bowerrc
dimens.xml
vcs.xml
bootstrap-theme.css
misc.xml
conf.py
default.html
.eslintrc
karma.conf.js
footer.html
font-awesome.css
build.xml
styles.css
Makefile.am
CNAME
README.markdown
CHANGELOG
MainActivity.java
utils.py
configure.ac
build.sh
script.js
main.c
bootstrap.css.map
header.html
project.properties
composer.lock
VERSION
apple-touch-icon.png
test.html
favicon.png
screenshot.png
fontawesome-webfont.woff2
common.js
packages.config
models.py
.babelrc
proguard-rules.pro
Main.storyboard
colors.xml
activity_main.xml
.rspec
Program.cs
autoload.php
Procfile
phpunit.xml.dist
background.png
Readme.md
util.js
500.html
setup.cfg
LICENCE
bootstrap-theme.css.map
ui-icons_222222_256x240.png
package-lock.json
manifest.json
index.md
org.eclipse.jdt.core.prefs
_icons.scss
about.html
init.js
config.h
close.png
ui-bg_glass_65_ffffff_1x400.png
config.ru
_list.scss
core.js
NEWS
login.html
normalize.css
app.css
webpack.config.js
.name
page.html
search.js
CHANGES
AppDelegate.h
blank.gif
bootstrap.php
config.json
post.html
_core.scss
install.sh
profiles_settings.xml
glyphicons-halflings.png
App.config
appveyor.yml
CONTRIBUTORS
encodings.xml
ajax-loader.gif
en.yml
AppDelegate.m
glyphicons-halflings-white.png
settings.py
ui-bg_flat_0_aaaaaa_40x100.png
ui-icons_2e83ff_256x240.png
views.py
routes.rb
config.yml
_path.scss
web.xml
build.js
test.rb
ui-icons_cd0a0a_256x240.png
_larger.scss
_fixed-width.scss
_stacked.scss
_bordered-pulled.scss
main.scss
_rotated-flipped.scss
dialog.css
NOTICE
ui-icons_454545_256x240.png
InfoPlist.strings
config
home.html
component.json
example.html
font-awesome.scss
base.html
default.css
head.html
urls.py
environment.rb
.keep
main.go
Parser.php
core.less
icons.less
link.js
ui-bg_glass_95_fef1ec_1x400.png
ui-icons_888888_256x240.png
ui-bg_flat_75_ffffff_40x100.png
reset.css
application.rb
Vagrantfile
ui-bg_glass_75_dadada_1x400.png
main.py
ui-bg_glass_75_e6e6e6_1x400.png
client.js
util.h
version.h
font-awesome.less
header.php
npm.js
default.js
functions.php
ui-bg_glass_55_fbf9ee_1x400.png
css.js
run.sh
list.less
compiler.xml
ui-bg_highlight-soft_75_cccccc_1x100.png
User.php
.eslintignore
Cache.php
rails
tests.py
changelog
phpunit.xml
path.less
boot.rb
footer.php
autogen.sh
test_helper.rb
common.h
manage.py
application_controller.rb
workspace.xml
production.rb
yarn.lock
fixed-width.less
bordered-pulled.less
stacked.less
rotated-flipped.less
larger.less
tsconfig.json
development.rb
base.js
user.js
test
config.py
ajax.js
modal.js
en.js
control
inflections.rb
loader.gif
CODE_OF_CONDUCT.md
index.css
Exception.php
application_helper.rb
stylesheet.css
MIT-LICENSE.txt
data.js
underscore.js
build.properties
mime_types.rb
ISSUE_TEMPLATE.md
button.js
node.js
test.py
backtrace_silencers.rb
collapse.js
make.bat
README.rdoc
console
422.html
editor.css
search.png
event.js
add.png
session_store.rb
form.js
update.php
options.js
database.yml
image.js
spinner.gif
ie.css
arrow.png
text.js
dropdown.js
File.php
config.rb
wsgi.py
.jscsrc
main.xml
tox.ini
logo.svg
configure
de.js
admin.py
fr.js
dashboard.js
Main.java
global.js
wrap_parameters.rb
helpers.js
plugin.js
print.css
es.js
copyright
types.h
Controller.php
Resources.resx
utils.h
html5shiv.js
lock.png
theme.js
ru.js
rules
buttons.less
filter.js
grid.less
delete.png
comment.js
json2.js
resource.h
base.css
CHANGES.md
it.js
forms.less
Podfile
xcschememanagement.plist
validate.js
functions.js
install.php
help.png
layout.html
nl.js
lt.js
jquery.form.js
main.h
queue.js
pl.js
util.py
map.js
bg.png
bootstrap.less
docker-compose.yml
setup
jquery.cookie.js
default.png
hash.h
prettify.js
compat
angular.min.js
tooltip.js
qunit.js
license
template.js
logo.gif
browser.js
MIT-LICENSE
require.js
base.py
application.html.erb
schema.rb
is.js
Resources.Designer.cs
jquery.min.map
template.php
util.c
test.txt
application.css
respond.min.js
about.js
ApplicationTest.java
search.php
api.js
LICENSE-MIT
swfobject.js
pagination.less
fi.js
Makefile.in
cs.js
example.js
ja.js
tr.js
dashboard.css
json.js
marker.png
wrap.js
config.xml
log4j.properties
History.md
alerts.less
markdown.js
app.php
1.jpg
PULL_REQUEST_TEMPLATE.md
image.png
ca.js
search.html
debug.h
date.js
Settings.settings
navs.less
_grid.scss
progress-bars.less
Doxyfile
list.h
carousel.less
da.js
navbar.less
md5.h
Config.php
.bower.json
.dockerignore
table.js
tables.less
seeds.rb
Thumbs.db
AppDelegate.swift
_buttons.scss
MANIFEST.MF
jquery-ui.min.js
tests.js
folder.png
CREDITS
type.less
utilities.less
changelog.txt
attributes.js
tooltip.less
mask.png
bg.js
pt.js
hr.js
hu.js
javascript.js
scaffolding.less
ui-icons_ffffff_256x240.png
DB.php
he.js
sv.js
qunit.css
http.php
fa.js
anchor.js
edit.png
file.js
ar.js
Session.php
License.txt
login.php
feed.xml
sk.js
dropdowns.less
ro.js
Base.php
jquery-ui.css
ko.js
humans.txt
modals.less
scripts.js
test.c
code.less
2.jpg
pager.less
breadcrumbs.less
el.js
close.less
button-groups.less
debug.js
transition.js
.mailmap
demo.html
prettify.css
rake
thumbnails.less
popovers.less
component-animations.less
wells.less
media.less
1.png
uk.js
mocha.opts
tab.js
editor.js
media.js
scope_settings.xml
Settings.Designer.cs
theme.css
effects.js
LaunchScreen.xib
style.scss
vi.js
gradle.xml
log.h
screen.css
database.php
apple-touch-icon-precomposed.png
icons.png
cache.php
toolbar.css
lv.js
router.js
logger.js
bundle
CHANGELOG.txt
common.css
responsive-utilities.less
menu.js
LaunchScreen.storyboard
2.png
plus.png
_animated.scss
concat.js
custom.css
error.h
nb.js
project.xml
offset.js
timer.h
error.png
_base.scss
trans.gif
user.rb
package-info.java
zh-cn.js
et.js
package.js
settings.php
plugins.js
parser.js
twitter.png
3.jpg
MAINTAINERS
delay.js
id.js
xhr.js
index.html.erb
constants.js
sr.js
support.js
th.js
layout.css
Table.php
test.sh
page.php
admin.php
proguard-project.txt
serialize.js
angular.js
makefile
routes.js
gl.js
Podfile.lock
preview.html
exceptions.py
user.php
md5.c
theme.less
demo.js
menu.png
print.less
User.java
web.config
filter_parameter_logging.rb
MANIFEST
demo.css
view.js
rss.png
install-sh
cli.js
sl.js
main.html
ms.js
utils.c
selector.js
net.h
panels.less
.ruby-version
Date.php
random.h
star.png
store.js
alert.js
media.css
labels.less
common.py
Core.php
events.js
cron.php
bootstrap-responsive.min.css
file.png
login.css
underscore-min.js
parse.js
wheel.png
.jshintignore
slice.js
amd.js
Input.php
menu.css
log.js
hi.js
3.png
routes.php
carousel.js
Request.php
_forms.scss
toString.js
session.php
app.config
normalize.less
init.h
highlight.js
index.txt
404.php
Registry.php
cache.h
jquery-ui.min.css
zlib.h
math.js
crc32.c
ViewController.h
log.c
pt-br.js
crc32.h
Utils.java
mk.js
about.php
admin.js
progress.gif
post.js
about.md
4.jpg
scrollspy.js
eu.js
bg.jpg
facebook.png
jquery-ui.js
list-group.less
debug.c
run.js
Configuration.php
colors.css
indexOf.js
favicon-32x32.png
changelog.md
Router.php
cy.js
Constants.java
request.js
Model.php
refresh.png
ViewController.m
up.png
bootstrap-responsive.css
Email.php
select.js
farbtastic.js
TestCase.php
Category.php
edit.php
Loader.php
load.js
farbtastic.css
common.c
error.c
POTFILES.in
platform.h
hash.c
sidebar.php
badges.less
compat.h
all.js
parser.h
string.h
popover.js
ic_launcher-web.png
eo.js
file.h
comments.php
image.php
stdint.h
Item.php
setup.sh
THANKS
zconf.h
bs.js
upload.php
html5.js
error.js
config.guess
COPYING.txt
init.c
progress.js
config.h.in
favicon-16x16.png
string.js
UserInterfaceState.xcuserstate
config.sub
bootstrap.min.css.map
xmlrpc.php
HISTORY.md
fr.po
Readme.txt
forms.py
time.h
arrows.png
clean.js
km.js
minus.png
internal.h
de.po
index.jade
socket.h
input-groups.less
glyphicons.less
jumbotron.less
protocol.h
sha1.c
buffer.h
anchor.gif
buttons.png
_reset.scss
browserconfig.xml
fr-ca.js
queue.h
deprecated.js
async.js
port.h
defaults.js
BUGS
getopt.c
controls.png
classes.js
site.css
codemirror.css
org.eclipse.core.resources.prefs
misc.h
0001_initial.py
compress.c
Author.php
timer.c
memory.h
slider.js
circle.yml
loader.js
prop.js
video.png
core.h
profile.php
.coveragerc
io.h
Log.php
jsonp.js
settings.js
find.js
moxieplayer.swf
auth.js
fo.js
thread.h
animated.less
4.png
misc.c
path.js
release.sh
en-gb.js
affix.js
tiny_mce_popup.js
Changes
view.php
attrs.xml
Response.php
ie-rtl.css
AUTHORS.txt
Default-568h@2x.png
file.php
error.html
zutil.h
Logger.php
format
form_utils.js
no.png
test.php
inflate.c
version.c
intro.js
menu.php
aes.h
mctabs.js
editable_selects.js
.coveralls.yml
ka.js
content.php
inftrees.h
format.h
push.js
inffixed.h
users.js
pagination.html
basic.js
moment.min.js
en-ca.js
inftrees.c
deferred.js
form.html
codemirror.js
aclocal.m4
key.h
.csslintrc
bn.js
block.h
single.php
manipulation.js
inffast.h
Output.php
_layout.scss
en-au.js
version.js
list.js
custom.js
getopt.h
diff.js
warning.png
Profiler.php
config.c
settings.json
Web.config
inflate.h
users.php
inffast.c
jquery-1.10.2.min.js
transform.js
_normalize.scss
deflate.c
event.h
routing.yml
modernizr.js
sitemap.xml
base.h
callbacks.js
throbber.gif
preview.png
text.png
mutex.h
readme.html
helper.js
calendar.png
animated-overlay.gif
io.c
crossdomain.xml
af.js
missing
status.h
Event.php
file.c
.rubocop.yml
dialog.js
runner.js
it.po
contributing.md
system.h
test.h
query.js
todo.txt
archive.php
template.html
login.js
jquery.validate.min.js
Guardfile
tslint.json
sync.js
_typography.scss
cpu.h
Makefile.PL
tags.js
image.less
rtl.css
constants.h
errors.js
buffer.c
express.js
code.png
socket.c
err.h
color.js
ReadMe.txt
atomic.h
doc.go
TODO.md
version.txt
array.js
crypto.h
sprite.png
jasmine.js
forms.css
category.php
random.c
profile.js
down.png
sort_asc.png
memory.c
sort_desc.png
stack.h
dimensions.js
traversing.js
menu.html
sample.js
project.clj
Tween.js
console.h
constants.py
compiler.h
license.md
services.yml
create.js
theme.min.js
contact.html
post.php
string.c
cache.c
new.html.erb
ready.js
clearfix.less
benchmark.js
spacer.gif
cache.inc
ExampleUnitTest.java
_spinning.scss
filter.h
Source.php
License
access.js
document.png
size.less
cookies_serializer.rb
table.h
client.c
device.h
vendor-prefixes.less
stats.h
opacity.less
thread.c
styles.js
android-support-v4.jar
5.png
Security.php
border-radius.less
gradients.less
admin.css
bg.gif
Memcache.php
center-block.less
xml.js
progress-bar.less