Smart-Home am Beispiel der Präsenzerkennung im Raum Projektarbeit Lennart Heimbs, Johannes Krug, Sebastian Dohle und Kevin Holzschuh bei Prof. Oliver Hofmann SS2019
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.

.gitignore 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. *.orig
  2. *.pyc
  3. venv/
  4. bericht/lennart/old
  5. camera/venv
  6. camera/images
  7. camera/videos
  8. *.h264
  9. *.mp4
  10. .vscode/
  11. camera/.vscode/
  12. camera/.vscode/launch.json
  13. #--- tex ---
  14. ore latex/pdflatex auxiliary files:
  15. *.aux
  16. *.lof
  17. *.log
  18. *.lot
  19. *.fls
  20. *.out
  21. *.toc
  22. *.fmt
  23. *.fot
  24. *.cb
  25. *.cb2
  26. .*.lb
  27. ## Intermediate documents:
  28. *.dvi
  29. *.xdv
  30. *-converted-to.*
  31. # these rules might exclude image files for figures etc.
  32. # *.ps
  33. # *.eps
  34. # *.pdf
  35. ## Generated if empty string is given at "Please type another file name for output:"
  36. .pdf
  37. ## Bibliography auxiliary files (bibtex/biblatex/biber):
  38. *.bbl
  39. *.bcf
  40. *.blg
  41. *-blx.aux
  42. *-blx.bib
  43. *.run.xml
  44. ## Build tool auxiliary files:
  45. *.fdb_latexmk
  46. *.synctex
  47. *.synctex(busy)
  48. *.synctex.gz
  49. *.synctex.gz(busy)
  50. *.pdfsync
  51. ## Build tool directories for auxiliary files
  52. # latexrun
  53. latex.out/
  54. ## Auxiliary and intermediate files from other packages:
  55. # algorithms
  56. *.alg
  57. *.loa
  58. # achemso
  59. acs-*.bib
  60. # amsthm
  61. *.thm
  62. # beamer
  63. *.nav
  64. *.pre
  65. *.snm
  66. *.vrb
  67. # changes
  68. *.soc
  69. # comment
  70. *.cut
  71. # cprotect
  72. *.cpt
  73. # elsarticle (documentclass of Elsevier journals)
  74. *.spl
  75. # endnotes
  76. *.ent
  77. # fixme
  78. *.lox
  79. # feynmf/feynmp
  80. *.mf
  81. *.mp
  82. *.t[1-9]
  83. *.t[1-9][0-9]
  84. *.tfm
  85. #(r)(e)ledmac/(r)(e)ledpar
  86. *.end
  87. *.?end
  88. *.[1-9]
  89. *.[1-9][0-9]
  90. *.[1-9][0-9][0-9]
  91. *.[1-9]R
  92. *.[1-9][0-9]R
  93. *.[1-9][0-9][0-9]R
  94. *.eledsec[1-9]
  95. *.eledsec[1-9]R
  96. *.eledsec[1-9][0-9]
  97. *.eledsec[1-9][0-9]R
  98. *.eledsec[1-9][0-9][0-9]
  99. *.eledsec[1-9][0-9][0-9]R
  100. # glossaries
  101. *.acn
  102. *.acr
  103. *.glg
  104. *.glo
  105. *.gls
  106. *.glsdefs
  107. *.lzo
  108. *.lzs
  109. # uncomment this for glossaries-extra (will ignore makeindex's style files!)
  110. # *.ist
  111. # gnuplottex
  112. *-gnuplottex-*
  113. # gregoriotex
  114. *.gaux
  115. *.gtex
  116. # htlatex
  117. *.4ct
  118. *.4tc
  119. *.idv
  120. *.lg
  121. *.trc
  122. *.xref
  123. # hyperref
  124. *.brf
  125. # knitr
  126. *-concordance.tex
  127. # TODO Comment the next line if you want to keep your tikz graphics files
  128. *.tikz
  129. *-tikzDictionary
  130. # listings
  131. *.lol
  132. # luatexja-ruby
  133. *.ltjruby
  134. # makeidx
  135. *.idx
  136. *.ilg
  137. *.ind
  138. # minitoc
  139. *.maf
  140. *.mlf
  141. *.mlt
  142. *.mtc[0-9]*
  143. *.slf[0-9]*
  144. *.slt[0-9]*
  145. *.stc[0-9]*
  146. # minted
  147. _minted*
  148. *.pyg
  149. # morewrites
  150. *.mw
  151. # nomencl
  152. *.nlg
  153. *.nlo
  154. *.nls
  155. # pax
  156. *.pax
  157. # pdfpcnotes
  158. *.pdfpc
  159. # sagetex
  160. *.sagetex.sage
  161. *.sagetex.py
  162. *.sagetex.scmd
  163. # scrwfile
  164. *.wrt
  165. # sympy
  166. *.sout
  167. *.sympy
  168. sympy-plots-for-*.tex/
  169. # pdfcomment
  170. *.upa
  171. *.upb
  172. # pythontex
  173. *.pytxcode
  174. pythontex-files-*/
  175. # tcolorbox
  176. *.listing
  177. # thmtools
  178. *.loe
  179. # TikZ & PGF
  180. *.dpth
  181. *.md5
  182. *.auxlock
  183. # todonotes
  184. *.tdo
  185. # vhistory
  186. *.hst
  187. *.ver
  188. # easy-todo
  189. *.lod
  190. # xcolor
  191. *.xcp
  192. # xmpincl
  193. *.xmpi
  194. # xindy
  195. *.xdy
  196. # xypic precompiled matrices and outlines
  197. *.xyc
  198. *.xyd
  199. # endfloat
  200. *.ttt
  201. *.fff
  202. # Latexian
  203. TSWLatexianTemp*
  204. ## Editors:
  205. # WinEdt
  206. *.bak
  207. *.sav
  208. # Texpad
  209. .texpadtmp
  210. # LyX
  211. *.lyx~
  212. # Kile
  213. *.backup
  214. # gummi
  215. .*.swp
  216. # KBibTeX
  217. *~[0-9]*
  218. # auto folder when using emacs and auctex
  219. ./auto/*
  220. *.el
  221. # expex forward references with \gathertags
  222. *-tags.tex
  223. # standalone packages
  224. *.sta
  225. # Makeindex log files
  226. *.lpz