Last active
October 29, 2025 13:52
-
-
Save LewisGet/820274af5cfde48f645b9ad33044ef2c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # linux | |
| **/lib | |
| **/lib32 | |
| **/lib64 | |
| **/usr/bin | |
| **/usr/sbin | |
| **/usr/lib | |
| **/usr/local/lib | |
| **/usr/local/bin | |
| **/dev | |
| **/proc | |
| **/sys | |
| **/run | |
| **/tmp | |
| # win system | |
| **/$Recycle.Bin | |
| **/System Volume Information | |
| **/Windows | |
| **/Program Files | |
| **/Program Files (x86) | |
| **/pagefile.sys | |
| **/hiberfil.sys | |
| # mac | |
| **/.DS_Store | |
| **/.Spotlight-V100 | |
| # **/.Trashes # i think ill hide something in side | |
| **/.fseventsd | |
| # project | |
| ## python | |
| *.pyc | |
| **/__pycache__ | |
| /venv | |
| /.venv | |
| ## java | |
| /target | |
| /build | |
| *.class | |
| *.jar | |
| *.war | |
| # ide | |
| *.log | |
| *.tmp | |
| *~ | |
| *.pid | |
| .classpath | |
| # .project ## adobe file need this name | |
| .settings | |
| # version control | |
| **/.git | |
| **/.svn | |
| **/.hg | |
| # train | |
| *.pt | |
| *.npy | |
| *.savetensor | |
| *.cpkt | |
| # Adobe | |
| # Adobe Premiere Pro / Media Encoder | |
| **/Adobe/Common/Media Cache Files | |
| **/Adobe/Common/Media Cache | |
| # Adobe After Effects | |
| **/Adobe/After Effects/Disk Cache | |
| **/Adobe/After Effects/Temporary | |
| # Adobe Audition | |
| **/Adobe/Common/Peak Files | |
| **/Adobe/Audition/Cache | |
| **/Adobe/Common/Media Cache Files | |
| **/Adobe/Common/Media Cache |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment