[READ-ONLY] Mirror of https://github.com/mrgnw/scripts.
0

Configure Feed

Select the types of activity you want to include in your feed.

Initial commit

author
Morgan
date (Dec 20, 2023, 12:50 AM -0700) commit e00db300
+303
+303
.gitignore
··· 1 + .vscode 2 + # Created by https://www.toptal.com/developers/gitignore/api/python,macos,swift,go 3 + # Edit at https://www.toptal.com/developers/gitignore?templates=python,macos,swift,go 4 + 5 + ### Go ### 6 + # If you prefer the allow list template instead of the deny list, see community template: 7 + # https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore 8 + # 9 + # Binaries for programs and plugins 10 + *.exe 11 + *.exe~ 12 + *.dll 13 + *.so 14 + *.dylib 15 + 16 + # Test binary, built with `go test -c` 17 + *.test 18 + 19 + # Output of the go coverage tool, specifically when used with LiteIDE 20 + *.out 21 + 22 + # Dependency directories (remove the comment below to include it) 23 + # vendor/ 24 + 25 + # Go workspace file 26 + go.work 27 + 28 + ### macOS ### 29 + # General 30 + .DS_Store 31 + .AppleDouble 32 + .LSOverride 33 + 34 + # Icon must end with two \r 35 + Icon 36 + 37 + 38 + # Thumbnails 39 + ._* 40 + 41 + # Files that might appear in the root of a volume 42 + .DocumentRevisions-V100 43 + .fseventsd 44 + .Spotlight-V100 45 + .TemporaryItems 46 + .Trashes 47 + .VolumeIcon.icns 48 + .com.apple.timemachine.donotpresent 49 + 50 + # Directories potentially created on remote AFP share 51 + .AppleDB 52 + .AppleDesktop 53 + Network Trash Folder 54 + Temporary Items 55 + .apdisk 56 + 57 + ### macOS Patch ### 58 + # iCloud generated files 59 + *.icloud 60 + 61 + ### Python ### 62 + # Byte-compiled / optimized / DLL files 63 + __pycache__/ 64 + *.py[cod] 65 + *$py.class 66 + 67 + # C extensions 68 + 69 + # Distribution / packaging 70 + .Python 71 + build/ 72 + develop-eggs/ 73 + dist/ 74 + downloads/ 75 + eggs/ 76 + .eggs/ 77 + lib/ 78 + lib64/ 79 + parts/ 80 + sdist/ 81 + var/ 82 + wheels/ 83 + share/python-wheels/ 84 + *.egg-info/ 85 + .installed.cfg 86 + *.egg 87 + MANIFEST 88 + 89 + # PyInstaller 90 + # Usually these files are written by a python script from a template 91 + # before PyInstaller builds the exe, so as to inject date/other infos into it. 92 + *.manifest 93 + *.spec 94 + 95 + # Installer logs 96 + pip-log.txt 97 + pip-delete-this-directory.txt 98 + 99 + # Unit test / coverage reports 100 + htmlcov/ 101 + .tox/ 102 + .nox/ 103 + .coverage 104 + .coverage.* 105 + .cache 106 + nosetests.xml 107 + coverage.xml 108 + *.cover 109 + *.py,cover 110 + .hypothesis/ 111 + .pytest_cache/ 112 + cover/ 113 + 114 + # Translations 115 + *.mo 116 + *.pot 117 + 118 + # Django stuff: 119 + *.log 120 + local_settings.py 121 + db.sqlite3 122 + db.sqlite3-journal 123 + 124 + # Flask stuff: 125 + instance/ 126 + .webassets-cache 127 + 128 + # Scrapy stuff: 129 + .scrapy 130 + 131 + # Sphinx documentation 132 + docs/_build/ 133 + 134 + # PyBuilder 135 + .pybuilder/ 136 + target/ 137 + 138 + # Jupyter Notebook 139 + .ipynb_checkpoints 140 + 141 + # IPython 142 + profile_default/ 143 + ipython_config.py 144 + 145 + # pyenv 146 + # For a library or package, you might want to ignore these files since the code is 147 + # intended to run in multiple environments; otherwise, check them in: 148 + # .python-version 149 + 150 + # pipenv 151 + # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 152 + # However, in case of collaboration, if having platform-specific dependencies or dependencies 153 + # having no cross-platform support, pipenv may install dependencies that don't work, or not 154 + # install all needed dependencies. 155 + #Pipfile.lock 156 + 157 + # poetry 158 + # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. 159 + # This is especially recommended for binary packages to ensure reproducibility, and is more 160 + # commonly ignored for libraries. 161 + # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control 162 + #poetry.lock 163 + 164 + # pdm 165 + # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. 166 + #pdm.lock 167 + # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it 168 + # in version control. 169 + # https://pdm.fming.dev/#use-with-ide 170 + .pdm.toml 171 + 172 + # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm 173 + __pypackages__/ 174 + 175 + # Celery stuff 176 + celerybeat-schedule 177 + celerybeat.pid 178 + 179 + # SageMath parsed files 180 + *.sage.py 181 + 182 + # Environments 183 + .env 184 + .venv 185 + env/ 186 + venv/ 187 + ENV/ 188 + env.bak/ 189 + venv.bak/ 190 + 191 + # Spyder project settings 192 + .spyderproject 193 + .spyproject 194 + 195 + # Rope project settings 196 + .ropeproject 197 + 198 + # mkdocs documentation 199 + /site 200 + 201 + # mypy 202 + .mypy_cache/ 203 + .dmypy.json 204 + dmypy.json 205 + 206 + # Pyre type checker 207 + .pyre/ 208 + 209 + # pytype static type analyzer 210 + .pytype/ 211 + 212 + # Cython debug symbols 213 + cython_debug/ 214 + 215 + # PyCharm 216 + # JetBrains specific template is maintained in a separate JetBrains.gitignore that can 217 + # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore 218 + # and can be added to the global gitignore or merged into this file. For a more nuclear 219 + # option (not recommended) you can uncomment the following to ignore the entire idea folder. 220 + #.idea/ 221 + 222 + ### Python Patch ### 223 + # Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration 224 + poetry.toml 225 + 226 + # ruff 227 + .ruff_cache/ 228 + 229 + # LSP config files 230 + pyrightconfig.json 231 + 232 + ### Swift ### 233 + # Xcode 234 + # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 235 + 236 + ## User settings 237 + xcuserdata/ 238 + 239 + ## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) 240 + *.xcscmblueprint 241 + *.xccheckout 242 + 243 + ## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) 244 + DerivedData/ 245 + *.moved-aside 246 + *.pbxuser 247 + !default.pbxuser 248 + *.mode1v3 249 + !default.mode1v3 250 + *.mode2v3 251 + !default.mode2v3 252 + *.perspectivev3 253 + !default.perspectivev3 254 + 255 + ## Obj-C/Swift specific 256 + *.hmap 257 + 258 + ## App packaging 259 + *.ipa 260 + *.dSYM.zip 261 + *.dSYM 262 + 263 + ## Playgrounds 264 + timeline.xctimeline 265 + playground.xcworkspace 266 + 267 + # Swift Package Manager 268 + # Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. 269 + # Packages/ 270 + # Package.pins 271 + # Package.resolved 272 + # *.xcodeproj 273 + # Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata 274 + # hence it is not needed unless you have added a package configuration file to your project 275 + # .swiftpm 276 + 277 + .build/ 278 + 279 + # CocoaPods 280 + # We recommend against adding the Pods directory to your .gitignore. However 281 + # you should judge for yourself, the pros and cons are mentioned at: 282 + # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control 283 + # Pods/ 284 + # Add this line if you want to avoid checking in source code from the Xcode workspace 285 + # *.xcworkspace 286 + 287 + # Carthage 288 + # Add this line if you want to avoid checking in source code from Carthage dependencies. 289 + # Carthage/Checkouts 290 + 291 + Carthage/Build/ 292 + 293 + # Accio dependency management 294 + Dependencies/ 295 + .accio/ 296 + 297 + # Code Injection 298 + # After new code Injection tools there's a generated folder /iOSInjectionProject 299 + # https://github.com/johnno1962/injectionforxcode 300 + 301 + iOSInjectionProject/ 302 + 303 + # End of https://www.toptal.com/developers/gitignore/api/python,macos,swift,go