Programming Lesson Plans
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

202 lines
2.6 KiB

3 years ago
3 years ago
  1. # I just used whatever gitignore they used b/c I'm lazy
  2. .DS_Store
  3. Main
  4. # ---> C++
  5. # Prerequisites
  6. *.d
  7. # Compiled Object files
  8. *.slo
  9. *.lo
  10. *.o
  11. *.obj
  12. # Precompiled Headers
  13. *.gch
  14. *.pch
  15. # Compiled Dynamic libraries
  16. *.so
  17. *.dylib
  18. *.dll
  19. # Fortran module files
  20. *.mod
  21. *.smod
  22. # Compiled Static libraries
  23. *.lai
  24. *.la
  25. *.a
  26. *.lib
  27. # Executables
  28. *.exe
  29. *.out
  30. *.app
  31. # ---> Python
  32. # Byte-compiled / optimized / DLL files
  33. __pycache__/
  34. *.py[cod]
  35. *$py.class
  36. # C extensions
  37. *.so
  38. # Distribution / packaging
  39. .Python
  40. build/
  41. develop-eggs/
  42. dist/
  43. downloads/
  44. eggs/
  45. .eggs/
  46. lib/
  47. lib64/
  48. parts/
  49. sdist/
  50. var/
  51. wheels/
  52. share/python-wheels/
  53. *.egg-info/
  54. .installed.cfg
  55. *.egg
  56. MANIFEST
  57. # PyInstaller
  58. # Usually these files are written by a python script from a template
  59. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  60. *.manifest
  61. *.spec
  62. # Installer logs
  63. pip-log.txt
  64. pip-delete-this-directory.txt
  65. # Unit test / coverage reports
  66. htmlcov/
  67. .tox/
  68. .nox/
  69. .coverage
  70. .coverage.*
  71. .cache
  72. nosetests.xml
  73. coverage.xml
  74. *.cover
  75. *.py,cover
  76. .hypothesis/
  77. .pytest_cache/
  78. cover/
  79. # Translations
  80. *.mo
  81. *.pot
  82. # Django stuff:
  83. *.log
  84. local_settings.py
  85. db.sqlite3
  86. db.sqlite3-journal
  87. # Flask stuff:
  88. instance/
  89. .webassets-cache
  90. # Scrapy stuff:
  91. .scrapy
  92. # Sphinx documentation
  93. docs/_build/
  94. # PyBuilder
  95. .pybuilder/
  96. target/
  97. # Jupyter Notebook
  98. .ipynb_checkpoints
  99. # IPython
  100. profile_default/
  101. ipython_config.py
  102. # pyenv
  103. # For a library or package, you might want to ignore these files since the code is
  104. # intended to run in multiple environments; otherwise, check them in:
  105. # .python-version
  106. # pipenv
  107. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  108. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  109. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  110. # install all needed dependencies.
  111. #Pipfile.lock
  112. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  113. __pypackages__/
  114. # Celery stuff
  115. celerybeat-schedule
  116. celerybeat.pid
  117. # SageMath parsed files
  118. *.sage.py
  119. # Environments
  120. .env
  121. .venv
  122. env/
  123. venv/
  124. ENV/
  125. env.bak/
  126. venv.bak/
  127. # Spyder project settings
  128. .spyderproject
  129. .spyproject
  130. # Rope project settings
  131. .ropeproject
  132. # mkdocs documentation
  133. /site
  134. # mypy
  135. .mypy_cache/
  136. .dmypy.json
  137. dmypy.json
  138. # Pyre type checker
  139. .pyre/
  140. # pytype static type analyzer
  141. .pytype/
  142. # Cython debug symbols
  143. cython_debug/
  144. # ---> Java
  145. # Compiled class file
  146. *.class
  147. # Log file
  148. *.log
  149. # BlueJ files
  150. *.ctxt
  151. # Mobile Tools for Java (J2ME)
  152. .mtj.tmp/
  153. # Package Files #
  154. *.jar
  155. *.war
  156. *.nar
  157. *.ear
  158. *.zip
  159. *.tar.gz
  160. *.rar
  161. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  162. hs_err_pid*