-
Notifications
You must be signed in to change notification settings - Fork 0
/
.lrc
2100 lines (2100 loc) · 98.9 KB
/
.lrc
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
# F1RLLK2K:~/.lrc by PipStuart <Pip@CPAN.Org> as an altern8 format for .lsrc ideally having new ~/bin/lrc gNR8 either from the other;
# $VERSION='0.0';$d8VS='O3RM0fee'; 2du:lrc optn2gNr8 altrn8 versN th@purposfuly varEz colrzof comon typz,add *[-_?]* NtrEz frm .zshrc hEr,audit oldz,ck /etc/*,
# add interaction2 lsd8 wN it Dtectz unrecognIzd XtNshNz offerng c@egOrEz with comon colr2autOm@ically insrt chOsN NtrEz,mk lrc gNr8 Xportd LS_COLORS 4 Eval,
# confirm all accept f0nt cOdez wi dash accepting Dfalt 4grnd thN redo NORMAL FILE LINK as no fi ln,Dtect cOlIdz OvrIdz&&warn,mAB 8trm aded2 TERM ls sumdA?;
# 819J2Pip:~/.lsrc by PipStuart <Pip@CPAN.Org> izAheavily modifId`dircolors`cfgfIl(Orig ~/.DIR_COLORS)wich setz $ENV{'LS_COLORS'} 4GNU`ls --color`&&`lsd8`;
# nOt:I'm pretty sure itz Chunz(!Takiz)`ls`&&`dircolors`th@cud!hndl (MULTI)?HARDLINK sO rEmMbr2kEp th@ lIn cmNtd out4her(&&kEptstng2cnfirm);
# Keywords COLOR,OPTIONS,&& EIGHTBIT (honored by Slackware dircolors) are recognized but ignored; TERMz && XtNsionz syncd2 2016;
# Copyright(C) 1996-2018 FreeSoftwareFound8ion,Inc. Copying and distribution of this file, with or without modific8ion, are permitted provided the
# copyright notice and this notice are preserved. BlO shud B a TERM per colrIzabl term-type. ck /etc/mime.types 4aditNl aprOprE8 NtrEz; mABmkUtl2Dtect thM?;
# Categoriez:rc cfg dif log muz it r(c) Y .2d*,.*shrc && cfg (incl this .lsrc && old DIR_COLORS filz),muz audio, difference,patch,&& log filz
# f0nt sh config exe muzrc f(0nt) o config filz, bookmarks, (basic) play-list filz,shell-scripts,DOS-style executablz, && f80p f0nt filz
# utf8 ls readme txt alias t(xt) W text filz && .ls, .vimperatorrc (vim-like plug-in for FireFox), .alias, .utf8, .readme, .TODO
# misc so cps dll lib autho l(ib) Kk librariez,DLLz,&& shared-objects && obscure rc,config,or authority filz (&& smal very dRk k sorta sEkret kategorE)
# html fp profile xml histo m(l) M HTML && YA?ML && XML && (detailed) play-list filz && .profile && .history filz, .help, .Makefile
# nasm pl cpp vim tcl pause c(pp) C src-cod&&PAUSE(Perl Authors Upload SErver)cfg file for putting modules on CPAN && .fbrc && .themes
# sql db csv tab ttf style d(b) c d8a && d8abase filz(SQL,CSV,TabDlim), .mysql
# sudo x xsl dtd rnd post x(sl) g .X && .x filz && .ds[pw] && ScrnSavercfilz
# 64 c@z:pkg o old tmp swp cache o(ld) r object&&other intermeD8 filz&&old,tmp,swp,lnk,or backup filz&&gener8d vim && zsh info filz
# z deb gz tar bz2 zip lock z(ip) R compressed archives && zips && cd rc filz, .stop, -errors
# docx qt png avi mov local p(ng) p img|vid 4m@z && (Open)?Office (word-processing,spreadsheet,present8ion,etc.) && other .bash_ fylz... thN!colrblox;
# Then should parse bottom directory commentz to focus on their context contained spread categoriez; The 12 colrz YoWKkMCcgrRp omitz G 4binz && B 4dirz;
# Maybe design8 commentz for which extensions should start with which interpret8ion approachez along with following customiz8ion directivez?;
# NCOLDEST:2du:add ~/.tldr/tldr/:.flake8 .markdownlintrc .gitattributes ~/.zef/store/M*.zef ~/.chrome/CrashpadMetrics-active.pma ~/.fltk/fltk.org/fltk.prefs
# ~/.raku-pod-render/highlights/highlight-filename-from-stdin.coffee ~/.emacs.d/test/shell.nix ~/.electrum/wallets/: default_wallet wallet_0
# ~/.electrum/certs/: *.co *.xyz *::1 *.de *.eu *.181 *.157 *.nl *.ml *.supplies *.not.fyi *.litepay.ch *.rows.io ~/.config/qutebrowser/quickmarks
# ~/.config/vlc/vlcrc ~/.config/wireshark/: recent recent_common ~/.config/nvm/.dockerignore ~/.config/nvim/init.luat ~/.config/midori/cookies
# ~/.config/gedit/accels ~/.config/dconf/user ~/.config/calcurse/conf ~/.config/bless/last.session ~/.config/VirtualBox/VirtualBox.xml-prev
# ~/.config/Signal/: QuotaManager QuotaManager-journal Preferences ~/.chrome/WidevineCdm/latest-component-updated-widevine-cdm
# ~/.chrome/ShaderCache/: data_0 data_1 data_2 data_3 ~/.chrome/Safe*Browsing/*.store ~/.chrome/Default/: *-journal LOCK LOG ~/.cache/nvim/log
# ~/.cache/linux-firmware-20230919/: GPL-2 GPL-3 *.Abilis *.IntcSST2 *.Marvell *.NXP *.OLPC *.agere *.ca0132 *.cadence *.cavium *.cnm *.cw1200 *.cypress …
# *.e100 *.go7007 *.kaweth *.linaro *.mediatek *.microchip *.moxa *.phanfw *.qla2xxx *.qla1280 *.rockchip *.siano *.wl1251 *.xc4000 *.xc5000 *.xc5000c …
# way more LICENSE.* WHENCE *.fw *.hex *.inp *.ucode *.pnvm *.dlmem
# ~/.cache/fontconfig/: *.cache-7 *.cache-9 ~/.cache/efreet/: *.eet *.exts ~/.cache/babl/babl-fishes /etc/: *.col catdocrc drirc environment exports …
# /etc/: gjackclockrc gjacktransportrc gozerrc group gshadow hostid hosts html2psrc issue jackrc ksysguarddrc magic nanorc networks octaverc …
# orpierc papersize passwd pdmenurc profile protocols rpc services shadow shells subgid subuid sudoers timezone wgetrc whoopsie wyrdrc ytalkrc zutilsrc ;
TERM Eterm
TERM ansi
TERM color-xterm # H4MM4MM4:`drc -p` now has just "*color*" here, which I find to be way too broad && offensively way inclusive;
TERM con[0-9]*x[0-9]* # l8st`drc -p`uses char-classes&&globz so no need2sprawl so many old varE8ionz (butIstil want2knO old Uniquez);
#ERM con132x25
#ERM con132x30
#ERM con132x43
#ERM con132x60
#ERM con80x25
#ERM con80x28
#ERM con80x30
#ERM con80x43
#ERM con80x50
#ERM con80x60
TERM cons25
TERM console
TERM cygwin
TERM *direct*
TERM dtterm
TERM eterm-color
TERM gnome
TERM gnome-256color
TERM hurd
TERM jfbterm
TERM konsole
TERM kterm
TERM linux # note that for GNUstep `/usr/bin/Terminal` from terminal.app pkg, it sets TERM to linux but should work wi ...
TERM linux-c # ... vt100, vt220, xterm, or similar others but is distinguished by set TERM_PROGRAM='GNUstep_Terminal'&&...
TERM mach-color # ... `man Terminal` shows the page was last upd8d on:`d8 4CH` so is over 15-Years-Old as of 2dAy:`d8 K2E`;
TERM mach-gnu-color
TERM mlterm
TERM putty
TERM putty-256color
TERM rxvt*
#ERM rxvt-256color
#ERM rxvt-cygwin
#ERM rxvt-cygwin-native
#ERM rxvt-unicode
#ERM rxvt-unicode-256color
#ERM rxvt-unicode256
TERM screen*
#ERM screen-256color
#ERM screen-256color-bce
#ERM screen-bce
#ERM screen-w
#ERM screen.Eterm
#ERM screen.rxvt
#ERM screen.linux
#ERM screen.xterm-256color
TERM st
TERM st-256color
TERM stterm # had2add this (which is not in `drc -p`) for all XtNsion colors2work in fast SmallTerm `stterm` (DrIvd frm st?)
TERM stterm-256color # `tsgr` prints unknown errors for \e[21m D bold-off Dbl-undrlin && \e[26m S reServed so chnging2tSt TERM
TERM terminator
TERM tmux*
TERM vt100
TERM xterm*
#ERM xterm-16color
#ERM xterm-256color
#ERM xterm-88color
#ERM xterm-color
#ERM xterm-debian
# ColorInitStrings for basic file types have codes: Attribute codes: 00=none 01=bold 08=concealed 04=underscore 05=blink 07=reverse
# 0 KRGY 3 4 BMCW 7 30+ Text (ForeGround) color codes: 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
# orange purple 40+ BackGround color codes: 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
RESET :N #rs= 00 00ReSet2"normal"colr&&mAB rEplAcingNORMAL&&FILEsinc theyRcomNtd out of rEcNt`dircolors -p`
NORMAL :N #no= 00 00riginal NOrmal Dflt (althO idealy everything shud Bcome something distinct)
FILE :N #fi= 00 00 normal FIle
DIR B #di= 01;34 01;34 normal DIrectory
LINK W #ln= 01;37 01;36 symbolic LiNk (if set2'target'instd of colr;codez,colr inherits file symlinked2)
MULTIHARDLINK :N #mh= 00 00 regular file with more than one link (Usd2B"HARDLINK"wi 44;37 B4 9A6J8d7P)
ORPHAN RcL #or= 01;31;46;05 01;31;40 sym------link to nonexistent file
MISSING WrL #mi= 01;37;41;05 00 && the MISSING file it points to (blinkng alert?)
EXEC G #ex= 01;32 01;32 file w/ EXECute permission (+x )
SETUID Wg #su= 01;37;42 00;37;41 file that is SETUID ( u+s)
SETGID kO #sg= 00;30;43 00;30;43 file that is SETGID ( g+s)
CAPABILITY kr #ca= 00;30;41 00;30;41 file with capability?
STICKY Wb #st= 01;37;44 00;37;44 dir w/ STICKY bit set && !other-writable (+t,o-w)
OTHER_WRITABLE Bg #ow= 01;34;42 00;34;42 dir w/ sticky bit !set && OTHER-WRITABLE ( o+w)
STICKY_OTHER_WRITABLE kP #tw= 00;30;45 00;30;42 dir w/ STICKY bit set && OTHER-WRITABLE (+t,o+w)
FIFO ok #pi= 00;33;40 00;33;40 pipe (First-In,First-Out)
SOCK M #so= 01;35 01;35 SOCKet
DOOR M #do= 01;35 01;35 DOOR (not sureYwas cmNtd outB4? I'd gues is POSIX||BSD-cNtric but!in Linux FylSys?)
BLK Yk #bd= 01;33;40 01;33;40 BLocK device driver
CHR Yk #cd= 01;33;40 01;33;40 CHaRacter device driver
#*$extension \s+ $color_init_string # $optional_comment
*done_upgrades R # prEpNdng thEse2!clobr l8r .XtNz
*bookmarks o
*known_hosts R #pp~/.config/compiz-1/compizconfig
*history M
*histfile p # ~/.cpan/
*makefile M
*Makefile G
*Metadata r #pp~/.config/gtk-3.0
*MANIFEST Y
*MAINTENANCE w
*installhtml M #pp~/.inst/perl-5.8.8
*INSTALL C #pp~/.(mplayer|schism|ssh|w3m)
*LICENSE W #pp~/.inst/(youtube-dl|perl*)
*AUTHORS C #pp~/.cpan (binary file?)
*Artistic W
*CHANGELOG Y
*Changes o
*CREDITS c
*Copying W
*coffee o # ~/.raku-pod-render/highlights/
*cookie c # ~/.w3m/
*cookiesrc g # ~/.dillo/
*pulse-cookie r
#*$extension \s+ $color_init_string # $optional_comment
#YY
#YY
*2du # .2d*, .*shrc && cfg (incl this .lsrc && old DIR_COLORS filz), muz audio, difference,patch,&& log filz
*2d8 o # .2d8 (new ToDate lyk():YMDhmsfjz2D8)
*2da # .2da (new Today stylz)
*2di R # .2di (new ToDie..4wut?)
*2dy # .2dy (new ToDyn..amix?)
*2do o # .2do (old ToDo.ls fylz)
*2de # .2de (old 2 Dey -> 2dA)
*4mtd O # H9NMDKNO:~/.irssi/ custom-aligned cfg && Dflt.theme filez (trying lower-case 'o' for non-2pal8 orange here);
*.am # AutoMake script (lIk my git clOnd source rEpO 4 xdg-desktop-portal-gtk, wich stil didn't rid syslog erorz)
*.ac o # AutoConf script (or maybe an AnonymousCoward on SlashDot or something)
*cfg
*cnf
*config y
*config~ r
*.config
*conf-sample
*nmconnection # L91M8nmc: /etc/NetworkManager/system-connections/* had DarjNet-5G && Samsung-SM-G950U =~ s/Samsung/Verizon/;
*ckm8 # my own SDL && Curses Chess program's game-recording output file-format; Above also .= '-8E51' MAC last4?;
*dox # my personal doQmNt8ion files (first used for logging my HTTPS://Screeps.Com 2torials progress)
*.dd # my personal ~/dox/dvl/GTrm/GnomTerm-dconf-dump file but could also be for DiskDriveD8aDuplic8ion files
*sgf # HTTPS://En.WikiPedia.Org/wiki/Smart_Game_Format which is used by HTTPS://Online-Go.Com
*pgn o # HTTPS://En.WikiPedia.Org/wiki/Portable_Game_Notation hopefully to be l8r loaded by ckm8
*fen C # HTTPS://En.WikiPedia.Org/wiki/Forsyth%E2%80%93Edwards_Notation hopefully to be l8r loaded by ckm8
*gnu # `jack_test` frame*-1024. but probably some GNU standard for config file formats
*git
*hax
*emacs o
*vimrc
*Hrc G # 8sh ~ fyl
*zrc G # ~ zshrc altern8
*brc G # ~ bashrc altern8
*.lrc G # lsd8 ls lsrc lrc
*.lsrc
*.lspci
*.lircrc I # InVega InDigo whIte yo! Not even sure what lirc && it's rEsourcez file refer to, but whatevz? :P m0 v !fnd;
*qrc # Qt5 && QMake ResourCe files that seem kinda similar to .sh or .ini variable-setting files
*bxrc
*shrc
*zshrc
*pshrc
*kshrc
*cshrc
*tcshrc
*bashrc
*pmixrc
*yiqsrc
*muttrc
*ttreerc
*properties
*categories # /etc/xdg/ filz
*renamecategories M # /etc/xdg/ filz
*codes C # /etc/xdg/ filz
*areas R # /etc/xdg/ filz
*recommended # /etc/zsh/newuser.zshrc.recommended
*minicpanrc
*slice M # /lib/systemd/system/ filz `man systemd.special` documents User&&Session or VirtualMachine&&Container Slices
*modes # /etc/fb.modes filz probably for: `fbset` Frame-Buffer configur8ionz with resolutionz && timingz etc.
*mount # /etc/systemd/system/ filz
*automount o # /lib/systemd/system/ filz
*message
*mesg # MEsSaGe az(ch@EmlInstantTxtMedia*) messagez
*ch3tm M # /**/*.ch3tm(chEtmz)azCheatSheet.htm HTML fylz
*ch3t # /**/*.ch3t (chEtz)prImrLE4 ~pip/dox/dvl/ref/(Vim|XML|Zsh|Perl|.*)(Cheat(Sheet)?)?.txt fylz2trnzitN2
*chat # GTalk|JabR|IRC|ICQ|Y!IM|AIM|XMPP|SMS|MMS|*IM.chat, mAB ~pip/dox/dvl/ref/*Cheat* canB .ch3t?
*cht # PyQt.cht (chRtz), ATIRadeonMSLose98Doze32BitDrvrz.CompressedHelpText?
*real # /etc/apparmor.d/ filz
*man # /etc/apparmor.d/ filz
*mSj
*msg
*gml
*GmAl
*gmail
*L0g
*dL0g
*dIL0g
*dlg # ~/mvz/lnf8 MooVeeZ linez script dialog fated
*pot p # ~/dvl/g8/jack/xdp/po/xdg-desktop-portal.pot maybe Portal or Project Object Texts wi MIME-Type && msgid strings
*Po # ~/dvl/g8/jack/xdp/src/.deps/xdg_desktop_portal-xdg-desktop-portal.Po mAB Pre-configured Object component lists
*IZ # NumbFuck/curs/ncurses/README.IZ
*key
*keys # NumbFuck/curs/include/
*aix4 o # NumbFuck/curs/include/
*hpux11 M # NumbFuck/curs/include/
*osf1r5 c # NumbFuck/curs/include/
*tail o # NumbFuck/curs/*/
*head # NumbFuck/curs/man/
*hin c # NumbFuck/curs/*/
*ref M # NumbFuck/curs/*/
*renames M # NumbFuck/curs/man/
*wide M # NumbFuck/curs/include/
*uwin p # NumbFuck/curs/include/
*supp p # NumbFuck/curs/misc/
*1m R # NumbFuck/curs/man/
*3x c # NumbFuck/curs/man/
*xsm # X.orgSessionManager (/etc/X11/xsm/*) or eXtraSimpleMusic or LEXIS-NEXIS Tracker
*ovpn # /etc/windscribe files
*ogg
*flac
*flf # FigLet Font (with fonts mainly being stored in /usr/share/figlet/ or my ~/dvl/f8/flet/*fonts*/ directories)
*tlf o # ToiLet Font (with fonts mainly being stored in /usr/share/figlet/ or my ~/dvl/f8/flet/*fonts*/ directories)
*plf
*pal8 # f80p pal8
*pipe # ~/.cache/corona/ fIlz th@wer sAvdby rEdIrectng STDOUT frm`curl https://corona-stats.online`wi subdirz||?pRamz
*prl # like .ini or .sh variable files that seem to accompany /usr/lib/ .so SharedObject library files
*tqd c # TorqDJ song in4m8ion fIl (by AvidTechnologyInc.) (from muz/mp3/unsorted/)
*spc # Super Nintendo PCM? muz
*rsn # RAR compressed archives of abov .spc fIl
*aac
*au
*ecs # ECASound ChainSetup files. Syntax is more or less the same as with the comparable command-line arguments.
*ecp # ECASound ChainPreset files. Used for storing effect and chain oper8or presets. See user’s guide for more docs.
*ews # ECASound Wave Stats. These files are used to cache waveform d8a && allow skipping to precise dur8ion points.
*mid
*midi
*mka
*m4a
*mpc
*mp2 o # MPEG-2 (mIt B Ethr audio or video fIl?) (from muz/mp3/misc/PowerPuffGirls-TechnoRemix.mp2 && lotz of old .arc)
*mp3
*MP3
*s3m
*S3M
*mod
*pod
*pa
*ra
*ram
*raw
*wav
*webm # ogg Media fIl or Movie for the web? Seems2Bjust audio fIlz whN coming from youtube-dl && Opus codec in gst123;
*opus # HTTP://Wiki.Xiph.Org/index.php/MIME_Types_and_File_Extensions ; Some UKF_Dubstep audio from youtube-dl;
*wma o # Windows Media Audio
*WMA o # Windows Media Audio
*xm
*.it
*trx o
*xib W # Qt5/qtbase/mkspecs files
*xcscheme Y # Qt5/qtbase/mkspecs files
*xcsettings o # Qt5/qtbase/mkspecs files
*plist p # Qt5/qtbase/mkspecs files
*soundlist
*modules
*torrent
*tor
*tbl # brltty character TaBLe for daemon driving refreshable console Braille display
*TAG # ~/.dvdcss/CACHEDIR.
*def
*dif
*diff
*ldif
*.list # /etc/apt/* Debian/Ubuntu sources
*distUpgrade o # /etc/apt/* Debian/Ubuntu sources
*apt o # such apt && Perl -MCPAN -e "install ..." && Force are lIkly lists of cmndz nEded 4 thOse package systems
*pmei C
*pmfi M
*qdocconf o # Qt5/qtbase/qmake/doc files
*qdoc # Qt5/qtbase/src/testlib files
*mm R # Qt5/qtbase/src/testlib files
*btree
*rules
*ini
*ini8 yk
*btx
*emx
*fnt # old-skool txt-mode(DOS?)char-fontz kinda like 8x16.psfz wo the header(wich my`etfp -s -f -o`can load)
*Fnt
*FNT
*sfd # SourceFontforge type Data? FontForge.SF.Net TypeData in *.sfd similR2 *.[ot]tf
*sf2 # /usr/share/sounds/sf2/MuseScore_General_Full.sf2 SoundFont v2 filz
*sf3 o # /etc/alternatives/MuseScore_General.sf3 SoundFont v3 filz (on Oni this sf3 sym-linx 2 the sf2 abov)
*.lut # LookUpTbl(EquBpu) the awesome Nip,SatoshiBeppu-san himself ;)
*slut o # LookUpTbl(EquBpu)azinSndFX,Sprite,Save,Secure,Stuff,Str,Sex,SmRt,sMpL,Scrot,Shot,SystM,Sum1,St8z,St@z..
*hlut o # LookUpTbl(EquBpu)azinH3AR.Uslut || HelpLkUpTable(eg, ~pip/dox/dvl/ref/vim.hlut)
*letter
*version
*symvers
*sysctl # /etc/sysctl.d files
*unmask
*ebuild
*2emrg
*md8a # ~/lib/Octology/p8/psps/gmap/ Map (terrain) D8a files for local manipul8ion of HTTPS://Screeps.Com Global Maps
*.data # /etc/defoma/
*data2 o # /etc/defoma/
*patch
*pid # /run/
*.al W
*.all W
*.erc
*.log
*_COLORS Y
*ls_clrz
*ls_colors
*LS_COLORS
*LS_COLORS-zsh
*LS_COLORS-Ryu
*LS_COLORS-4nt
*LS_COLORS-4NT
*LS_COLORS-Taki
*LS_COLORS-LBox
*DIR_COLORS
*dir_colors
*dirs
#oo
#oo
*G-Force # Lib-Vizualiz8ion GForce actor plug-in file that showed up in ~;
*locale
*.conf # config filz,(basic) play-list filz,shell-scripts,bookmarks,&& DOS-style executablz
*conffiles # /var/lib/dpkg/info/rxvt-unicode.conffiles
*dconf-defaults R # /etc/gdm3 files
*dconf # J6JMKNID:probably something like the output of `dconf dump /org/gnome/terminal/legacy/` to "load" l8r;
*dmrc # Dsktp Menu|Mngr? on Chun
*gtkrc
*toprc # nstd of htop, can input "zxcVm1t0" then g[2-4] to go2 sepR8 wndoz&&du similR inputz then W writez cnfg
*mmixrc
*alsarc R
*aumixrc
*jack3rc
*jackdrc p
*runescape # Jagex gAm Kyle (UserName:"I Am TRK") wanted 2 play together, but has horibly tiny unscalable UI on 24" 1080p
*default_mixer
*mikmod_playlist p
*mikmodrc
*dvdriprc
*bitchxrc
*bxp4prc
*fterc # FoldingTextEditor (for programmers)
*knsrc # /etc/xdg/konsole KoNSole ResourCe file
*inputrc
*joy2keyrc
*blackboxrc
*.pc
*Xrc G
*Xresources
*xtermcontrol
*index M # ~/.emacs.d/.git/
*doxy # file in Qt5 qtdeclarative/ project sub-directory
*Chromium # LICENSE file in Qt5 qtwebengine/ project sub-directory
*QT-LICENSE-AGREEMENT # LICENSE file in Qt5 qtbase/ project sub-directory && in `git clone git://code.qt.io/qt/qt5.git` qt5/
*milkytracker_config
*fbhighscores
*linux_logo
*packed-refs p # ~/.emacs.d/.git/
*description C # ~/.emacs.d/.git/
*.gitconfig
*.gitattributes
*.git-credentials r # MCDLATER:trying to get GitHub auth to work with token && creds cache;
*netrwhist # ~/.vim/
*opt # configure script parameter options file (with each option on a sepR8 line)
*options
*cvspass
*dynamic # /run/
*desktop
*dsktp
*nvdp
*nvp # NVidiaPr0fyl(128MyBRAM4TakizG4bsgO7400) || l.e.NverMathverixDbltrivLngKr0zCkIzingVrsezUrLAkingzPrpLpr88R
*email Y
*EmAl Y
*eml Y
*sig # 4um||eml .signature sigN82R typ fylz
*.SH # ~/.inst/perl-5.8.8/pod/Makefile.
*.sh
*.zsh
*psh
*ksh
*csh
*tcsh
*fish
*bash
*bat Y
*Bat Y
*BAT G
*btm G
*cti # brltty Character Table International for daemon driving refreshable console Braille display
*cmd
*com
*Com
*COM
*elf Y # /boot/memtest86+.elf (Executable Linux? Format)
*exe
*Exe
*EXE
*nexe
*opts # /etc/pcmcia/ && /usr/lib/pcmciautils/
*otf # OpenTypeFont
*Otf
*OTF
*f0nt # f80p f0nt fylz
*fon # Windows bitmapped FONt to accompany TTF?
*Fon
*FON
*face
*fgz p # .pcfFontFile GZipd
*hqx p # Mac FontFile||CmprsdArcZip? (mAB.hqx iz cmprSd arc of bin.sit Mac fnt thN?)
*sit # Mac FontFile||CmprsdArcZip?
*sfv # SimpleFileVerific8ion storing CRC32 cksumz from muz/mp3/sndtrx/KatamariDamacy-Fortissimo/
*swf # Adobe ShockWave Flash
*jfc # /etc/java-11-openjdk/jfr files
*ja # probably Japanese file from /etc/java-*-openjdk/ or /usr/(lib/(firefox|thunderbird)|share/aptitude)/
*bbl
*vrs # likely UTF-8 text file containing Bible VeRSes (possibly including some Hebrew transl8ions)
*rdf
*gws # NetGearRoutr GateWaySettings
*sub # configur8ion valid8ion Subroutine script, probably from the Free Software Foundation, Inc.
*subs # ~/muz/U2ba Music-Subtitles
*lrx # ~/muz/lrx MusicLyricSings
*lnx # LiNX like tabz && linkz && URL'z
*webloc
*urlview
*url # text filz containing web URLs
*URL
*use
*xl8 # ~/dvl/t8/**/xl8/ gener8d d8a-files from atMpt 2 autom8 complex transl8ion evalU8ions wi xdotool .xd2 scripts
*certs # /etc/java-11-openjdk/security files
*MANIFEST
*bookmarks
*gtk-bookmarks c # ~ file that I'd rather vary the color of seen commonly there than match other *.bookmarks elsewhere
#WW
#WW
*txt # text filz && .vimrc && .vimperatorrc (vim-like plug-in for FireFox)
*tXt
*TXT
*rtf
*dir
*.df
*.du IbI
*.ls C # try2difrNtE8 colrz of my growing number of LiSt filez as altern8ive to ubiquitous plain .txt filez
*lsh c # ICULHdWf:whIl mOst .ls fIlz abov wil stRt as just UTF8 [conf] 4m@z4 vim,l8r mA 4k off lIk this `lshw` varE8n;
*lst
*1st
*sym
*tiny # /etc/vim/ or /usr/bin/ or /usr/share/vim/ or /usr/share/doc/debhelper/examples/
*motd
*out
*cat
*canna
*alias # /etc/(X11/fonts/*/|dictd/)?
*allow
*fixed
*font
*u8 IkI
*utf
*utf8 JbI # old .txt && ASCII should be part-safe to mut8 && migr8 into decent UTF-8 as better; ## Italic SGR on; ##
*UTF8
*utf-8 QkI
*UTF-8
*iso8859
*ISO8859
*iso88591
*ISO88591
*iso8859-1
*ISO8859-1
*iso8859-15
*ISO8859-15
*vimperatorrc
*compiled
*keywords
*example
*.sample
*xmpl C
*trs # ~/dvl/g8/jack/xdp/ xdg-desktop-portal Test ReSults filz
*BY # ~/.cpan/sources/MIRRORED.BY
*ME # NumbFuck/curs/(form|menu)/READ.ME
*README
*readme
*inst # probably just UTF-8 or ASCII text-files containing any special install8ion instructions && notes
*INSTALL
*NEWS
*TODO
*COPYING
*LICENSE
*AUTHOR
*AUTHORS
*CHANGES
*ChangeLog
*master
#KK
#KK
*misc # libraries,DLLs,&& shared-objects && obscure rc,config,or authority filz
*lib
*Lib
*libs # ~/.inst/perl-5.8.8/ext.
*pods Y # ~/.inst/perl-5.8.8/extra.
*fnc o # ~/.inst/perl-5.8.8/embed.
*micro # ~/.inst/perl-5.8.8/(Makefile|README|Todo).
*devfs
*dll
*Dll
*DLL
*DS_Store
*.a
*.so
*.id
*.in
*.in~ r # ~/dvl/g8/jack/xdp/ xdg-desktop-portal presumably .h.in backup file from previous ./configure run
*cps
*rej # ~/dvl/c8/trm8/st/ REJected filz from attempted patching of source treez with .diff filz
*rnd
*_seed p
*_state c
*.token c # ~/.steam/
*mcoprc
*sysinit
*initialize
*.gitignore pbI
*.resources
*clockywock
*parentlock
*persistence p # ~/.dia/
*Xauthority
*ICEauthority
*ccaldbImports
*.settings-ported p # ~/.config/.gsd-keyboard.settings-ported
*dragonplayerrc g # ~/.config/
*kaffeinerc g # ~/.config/
*knfsshare g # ~/.config/
*kamosorc c # ~/.config/
*pluginrc g # ~/.dia/
*ftpquota
*forward w
*htaccess w
*hidden # in HTTPS://AskUbuntu.Com/questions/882562/how-can-i-change-or-hide-the-snap-directory as Nautilus dir hId list
#kk
#kk
*pw
*.pw
*pswd kbK
*prv8 kkV # immeD8 overidez of Foregrnd && backgrnd colrz plus inVisible SGR flag (so shud B dbl-clikabl but rarely seen)
#MM
#MM
*htm # HTML && YA?ML && XML && (detailed) play-list filz && .profile && .history filz
*HTM
*.html
*HTML
*TOML # apparNtly some othr Tcl Object Markup Language or smthng with rustup for cargo build inside nushell release
*toml
*qml # Qt Mark-up Language filz
*qmlc p # Qt Mark-up Language Cache filz (from ~/.cache/krita/qmlcache/)
*jsc o # Qt JavaScript? Cache filz (from ~/.cache/krita/qmlcache/)
*jso p # JavaScript (JohnSatoshi) perhaps converted Over to Other Octology d8 && b64 format for Perl(PipScrpt)purps?
*json
*jsonl mkI
*jshintrc C # Beppu-san's dot-file in MadSciLab/ta && tvaa2/ presumably for some JavaScript SHell integer resource maybe?
*npmrc p
*gypi
*gyp
*tmTheme p # TextMate (editor) color theme XML filz which also work for `bat` CLI syntax-highlighting
*wiki # MarkDown fIlz 4 VimWiki PlugIn
*xml~ p
*xml
*XML
*xhtml
*XHTML
*YAML
*yaml
*yml
*YML
# N2DL8f6n:when loading library /home/pip/dvl/t8/ogre/cmk-ogre-13.6/lib/Codec_Assimp.so.14.0 of Assimp - 5.0.0 - Open-Asset-Importer, Supported formats:
*3d
*3ds
*3mf
*ac
*ac3d
*acc
*amf
*ase
*ask
*assbin
*blend
*b3d
*bvh
*cob
*csm
*dxf
*enff
*fbx
*glb
*gltf
*hmp
*ifc
*ifczip
*irr
*irrmesh
*lwo
*lws
*lxo
*md2
*md3
*md5anim
*md5camera
*md5mesh
*mdl
*mot
*ms3d
*ndo
*nff
*off
*ogex
*pk3
*ply
*pmx
*prj
*q3o
*q3s
*scn
*sib
*smd
*stl
*stp
*ter
*uc
*vta
#*p P # ~/.log/p for prof.ls && pP pickProfile (2du in .zshrc instead of any /p$/ hEr, && aded dot 2 /\.x$/ BlO);
*.x
*x3d
*x3db
*xgl
*zae
*zgl
*DAE # took out dae, obj, && xml entries from above list since they were already here below && elsewhere
*dae # COLLADA Digital Asset Exchange filz
*hkx # HavoK (physics data) Xml filz
*HKX
*hko # HavoK (physics data) Xml filz
*HKO
*ppx # Pip's Poker XML filz
*roc # RazOrb Config filz
*usm # UCI Showdown Move filz
*fpx # FPal (Font && Palette) XML filz
*fp
*fpf
*fpp
*pal
*psf # PC Screen Font
*psfu p # PC Screen Font Unicode
*hlp # HeLP filz
*help
*desc # /usr/share/tasksel/ or ~/.mplayer/font/
*vars
*order
*portal # /usr/(local/)?share/xdg-desktop-portal/portals probably just for gnome-shell, gtk, && kde
*BUILDINFO # cadence 0.9.1-1 lists all my system's installed libraries with versions neatly after the variable section;
*MTREE K # cad && qjc qJackCtl seem to be the 2 awkward ways to setup JACK but I can't seem to get audio out of either;
*PKGINFO c # cadence output for makepkg && fakeroot with various bridges to JACK that don't seem to work for playback yet;
*.info
*inf
*img # putr-NetRtrG8Wz FirmWare IMaGe
*vti # VTK Image d8a from ParaView by KitwareInc. to visualize large d8a sets
*.ass o # Audio Sub-title System for like video overlay text for closed-captioning (from ~/.config/smplayer/*)
*m3u8 # basic playlist muz filz in a .txt simpleformat (presumably a UTF-8 variant from ~/.config/smplayer/*)
*m3u p # basic playlist muz filz in a .txt simpleformat (proly just listing filepath&&name/line,wi no metad8a)
*pls # PlayLiSt muz filz in a .ini style format
*tox # ~/.xine PlayList muz filz in a .json or MakeFile style format (also for mvz videos too)
*wpl # Windows PlayList muz filz in a XML format for Microsoft WindowsMediaPlayer
*spi
*itl p # iTunes Library
*aup # Audacity Project
*anx # HTTP://Wiki.Xiph.Org/index.php/MIME_Types_and_File_Extensions
*axv # HTTP://Wiki.Xiph.Org/index.php/MIME_Types_and_File_Extensions
*ogv # HTTP://Wiki.Xiph.Org/index.php/MIME_Types_and_File_Extensions
*ogx # HTTP://Wiki.Xiph.Org/index.php/MIME_Types_and_File_Extensions
*diz
*heavy p # /usr/share/cups/charsets/
*simple # /usr/share/cups/charsets/ or /usr/share/misc/ or ~/.subversion/auth/
*summary # configure script result summary output files
*subst-rule # /etc/defoma/
*.settings
*terminfo
*quiltrc
*emerald
*markers
*mailmap
*mmixer
*menus # /etc/ardour5 files
*menu
*.m4
*.md # MarkDown file like ~/.inst/youtube-dl/README.
*.mk
*mak
*make
*cmake
*textile # Tex-Tile file like ~/dvl/Ppl/bep/mad*/README.
*makefile
*Makefile
*MakeFile
*MAKEFILE
*vspscc
*yafray
*bitmap # MSWindows QuickTime/QTSystem/ or Safari/CoreFoundation.resources/CharacterSets/
*bhs # ~ bash_history
*zhs # ~ zsh_history
*his p # ~/.links2/links.his
*qtx p # MSWindows QuickTime/QTSystem/ or Safari/CoreFoundation.resources/CharacterSets/
*qts c # MSWindows QuickTime/QTSystem/ or Safari/CoreFoundation.resources/CharacterSets/
*.ui # Qt5 UserInterface files which go to bin/uic (seem to be XML without header d8a)
*.S
*.cf # /(etc|usr/share)/spamassassin/
*cgm # image format
*emf # image format
*dic # ~/.config/enchant/en_US. MT file && also posibl ~/dox/2du/8.dic uni4m list of dictionary && thesaurus NtrEz
*exc p # ~/.config/enchant/en_US. MT file
*atCBDC # ~/.config/google-chrome/.com.google.Chrome. (forget Chrome's spAcd fIlnAmz but mAB add -journal 2.zshrc)
*stamp # ~/.cache/unity/first_run. MT file
*.pb R # ~/.cache/compizconfig-1/ bin filz
*ttb # /etc/brltty/
*tti p # /etc/brltty/
*kti C # /etc/brltty/
*ktb c # /etc/brltty/
*atb Y # /etc/brltty/
*.la # ~/dvl/m8/sudo/plugins/sudoers/ filz which are GNU Libtool Librariez
*lss # Lynx Style Settings file like /etc/lynx.lss
*.logo # ASCII art file maybe containing ANSI escaped colors && figlet-gend text (e.g., /etc/issue.logo wi "Gentoo")
*login
*lesshst
*wget-hsts
*history
*zsh_history # .*history
*.profile c # .*profile
*zprofile c
*bash_profile c
*bash_history # .*history
*lvm_history
*psh_history
*ptksh_history
*mysql_history
*sqlite_history
*ratpoison_history
*fbhighlevelshistory
*nvidia-settings-rc
*concalcvariables p # console calQl8or more like cl than orpie
*captstate
*CAP c # IC4L6Her:added 4 AsusROG C6H BIOS upd8;
#CC
#CC
*asm # src-cod&&PAUSE(Perl Authors Upload SErver)cfg file for putting modules on CPAN && .fbrc && .themes
*nasm # NetwydAzMblur NAsm.Us
*nzm # NetwydAzMblur NAsm.Us
*nsm # NetwydAzMblur NAsm.Us
*nam # NetwydAzMblur NAsm.Us
*nas # NetwydAzMblur NAsm.Us
*.nb # Mathematica SrcCod(!IDa wer"NB"iz from,but myn iz:maze-gen4img-Hernan.Moraldo.Com.Ar_mazegen_code...)
*.n # NetwydAzMblur NAsm.Us
*.m
*.h o # C/C++ Header filz were Cyan like main src fIlz but plain ls was getting some kind of orange, so setting it
*.c # C source filz
*.cc
*.cp
*cli # ~/dox/putr/Oni/Oni-systemd-services file logging root commands used to manage running services
*app # Qt5/qtbase/mkspecs/macx-* filz (as well as GNUstep terminal.app binary,which will be green for XeQtable thO)
*cpp # C++ source filz
*cgi # probably Common-G8way-Interface or Computer-Gener8d-Image filz
*inc
*.src
*vlt # ~/.local/share/vlc/skins2/* VLC VideoLAN.Org Theme / skin2 filz
*vsc # VimScrptClipbord(eg:ptg2clip.vsc)
*vim
*.pdoc Y # PerlDoc text filz likely containing output from my `pdoc` Zsh alias or function to get POD && ANSI color it;
*.pd # /etc/alternatives/gemdefaultwindow.pd ->sym-link2-> /usr/lib/pd/extra/Gem/gemdefaultwindow-glx.pd (PointD8a?)
*.pe L:Y # PerlExec text filz likely containing output from my `pe` Zsh alias or function to get tXt && ANSI color it;
*.PL
*.pl # PerL script filz
*.pm # Perl Module filz
*.pm~ r # ~/.cpan/CPAN/MyConfig.
*.pm6
*.raku # Rakudo !Perl6 filz
*.rakumod # Rakudo !Perl6 modz
*.rakudoc Y # Rakudo !Perl6 POD6
*.rakutest M # Rakudo !Perl6 tstz
*.py # PYthon script filz
*pyc
*php
*pas # PAScal source filz
*pro R # acording 2 HTTPS://File.Org/extension/pro gNeric cros-plat4m project files (found in Cool-Retro-Term && Qt5)
*.pt # PipTyme||PerlTst
*.p
*.t
*.tp # TstPlan
*.tt # Template::Toolkit`ttree`
*tst
*tSt
*test
*load c # /etc/apache2/mods-available files
*save # /usr/share/doc/xfix/html/ or /usr/share/unity/icons/ or old SaveGamz
*sed # NumbFuck/curs/man/
*scm
*tcl
*lua # /etc/wireshark/init.lua
*awk
*bdf
*dia # ~/.dia default files
*.el # EmacsLisp
*.js
*gen
*.nfo # DemoSene iNFO(simLR2:file_id.diz)
*iso
*lang # /usr/share/source-highlight shl language definition files
*resx # MicroSoft's yucky .Net Resources XML,bleh!
*rnc # RELAX NG XML schema file
*rng # RELAX NG XML schema file
*xsd # W3C XML Schema Definition file
*xslt # eXtensible Style Language for Transformations file
*shtml
*source # /usr/share/doc/rxvt-unicode/README.source describing git command to obtain code repository
*senddoc # /etc/apparmor.d files
*schemas
*aliases
*globals
*preset # ~/.qmmp/eq .ini style file for storing the Equalizer settings between program invoc8ionz
*qmmprc c # ~/.qmmp/
*.build
*.snap G # containerized package 4m@z;
*flatpak G
*AppImage G
*ninja # meson advanced build filz used for GitHub flatpak's libportal to upd8 xdg-desktop-portal(-gtk)? there too
*pause
*prf # Kenta Cho Sh'mups preferences && high-score d8a like for Parsec47 and R-Rootage
*pri c # maybe Qt configure.pri as PRoject or PRofile Init or Include (&& also altern8 .prf files in similar loc8ions)
*.rc
*fbrc
*mrbrc
*captrc
*deityrc
*cgobanrc c
*kobodlrc
*glaxiumrc
*Dockerfile # L45M1623:added docker build description file (with much thanks to Beppu-san, who got this container rolling)!
*placeholder # /etc/cron.*/
*fallback # /etc/mysql/
*0verkill
*rafkill
*usermap
*mailcap
*termcap
*themes
*keyring M # ~/.local/share/keyrings
*keystore c # ~/.android/
*keyset # ~/.android/
*keymap # /etc/vga/ or /usr/(share/)?doc/w3m/ja/
*et4000 c # /etc/vga/
*env
*envd
*cenv
*gpg
*gpg~ c
*pgp
*sxp
*.xe # Octology a8.pm X-windows Event (`xte`) autom8ion wrapper script (stRted2dMonstr8 functionaliT of manual cmndz)
*xd2 # xdotool command script to gener8 ~/dvl/t8/**/xl8/ d8a files in attempt to autom8 complex transl8ion evalU8ions
*xinitrc g # ch2drkGrn from brItCyan .x* dflt4xinitz
*xinitrc-compiz
*xinitrc-flux2x2
*legacy-bootordering # /etc/init.d/ empty file
*dat
*DAT
*sql c # d8a && d8abase filz(SQL)
*sqlite c
*sqlite3 c
*sqlite-journal
*sqlite-shm M # ~/.local/share/zeitgeist/activity.
*sqlite-wal R # ~/.local/share/zeitgeist/activity.
*baseA Y # ~/.local/share/zeitgeist/fts.index
*baseB M # ~/.local/share/zeitgeist/fts.index
*DB # ~/.local/share/zeitgeist/fts.index
*db c
*db-journal # ~/.config/libaccounts-glib/accounts.
*db-shm M # ~/.config/libaccounts-glib/accounts.
*db-wal R # ~/.config/libaccounts-glib/accounts.
*csv c
*tab c
*tdb c # ~/.pulse
*x86_64-pc-linux-gnu c # ~/.cache/event-sound-cache.tdb.[0-9a-f]{32}.
*legal-displayed W # ~/.cache/motd.
*ai c # Adobe Illustrator
*psd c # Adobe PostScriptDocument?
*pif # 4Dos ProductIn4m80nFile?
#cc
#cc
*chm
*.cs # C#(yuck!,should be MS CDull or CFlat nstd,barely dsrvz colrng such filthy code-files,pretty turdz! =( )
*.ms # AutoDesk 3DStudio MaxScript
*MS
*pfa
*ipa # IPhone Applic8ion likely resulting from Expo && React_n8ive development for $99 AppStore license (Yearly)
*apk C # Android PacKages likely resulting from Expo && React_n8ive development for $25 PlayStore license (!once!)
*axa # HTTP://Wiki.Xiph.Org/index.php/MIME_Types_and_File_Extensions
*oga # HTTP://Wiki.Xiph.Org/index.php/MIME_Types_and_File_Extensions
*spx # HTTP://Wiki.Xiph.Org/index.php/MIME_Types_and_File_Extensions
*xspf # HTTP://Wiki.Xiph.Org/index.php/MIME_Types_and_File_Extensions
*ttf # TrueTypeFontz
*Ttf
*TTF
*reg
*bin
*cmnt
*defs
*keep
*mime
*mysql
*convs
*style # /usr/share/source-highlight shl filez
*tzlist # tzselect && tzwatch console clockz
*.access
*loaders
*xboardrc
*wavemonrc
*functions
*supported
#gg
#gg
*Xdefaults # .X && .x filz && .ds[pw] && ScrnSavercfilz # mAB g is already Dfalt so this section is sorta pointless
*xscreensaver
*xsl # eXtensible Style Language file
*xtc o # XML::Tidy Compressed file (probably just files in Tidy/t/ to test big xmlstrip results)
*xtb # XML::Tidy Binary file
*rni # RELAX NG XML schema Include file
*dtd # XML Document-Type Definition file
*atm # only /etc/hosts.atm cfg file?
*dsp
*dsw
*exp # ~/dvl/m8/sudo/plugins/sudoers/ file which probably is not just for Expect (as Vim detected it to be)
*aspx
*guess # ~/dvl/m8/sudo/config file which attempts to guess a canonical system name
*vcproj
*csproj
*ccaldb
*jython
*java G
*bfc G # /etc/java-6-openjdk/fontconfig.bfc or /**/*jre*/lib/fontconfig*.bfc
*pjt # Perl J? Tmpl8 #2du:pj1? && kdelnk
*sln
*sudo
*.state # /run/zed file
*client Y # /etc/exim4
*template # /etc/exim4
*textmaze P
*screenrc
*sversionrc
*weatherspect
*recently-used
*reload # /run/agetty file
*post
#rr
#rr
*part
*pre # object&&other intermediate filz&&old,tmp,swp,lnk,or backup filz&&generated vim && zsh info filz
*cnt R # old4Dos CouNT file?
*.o
*.og
*obj
*old
*orig
*dbug
*done
*lnk