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.

199 lines
2.6 KiB

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