Skip to content

Commit 7e28953

Browse files
committed
first commit to publication repository
1 parent 8077c08 commit 7e28953

File tree

79 files changed

+10159
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+10159
-0
lines changed

.gitignore

Lines changed: 394 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,394 @@
1+
### Emacs ###
2+
# -*- mode: gitignore; -*-
3+
*~
4+
\#*\#
5+
/.emacs.desktop
6+
/.emacs.desktop.lock
7+
*.elc
8+
auto-save-list
9+
tramp
10+
.\#*
11+
12+
# Org-mode
13+
.org-id-locations
14+
*_archive
15+
16+
# flymake-mode
17+
*_flymake.*
18+
19+
# eshell files
20+
/eshell/history
21+
/eshell/lastdir
22+
23+
# elpa packages
24+
/elpa/
25+
26+
# reftex files
27+
*.rel
28+
29+
# AUCTeX auto folder
30+
/auto/
31+
32+
# cask packages
33+
.cask/
34+
dist/
35+
36+
# Flycheck
37+
flycheck_*.el
38+
39+
# server auth directory
40+
/server/
41+
42+
# projectiles files
43+
.projectile
44+
45+
# directory configuration
46+
.dir-locals.el
47+
48+
# network security
49+
/network-security.data
50+
51+
52+
### Julia ###
53+
*.jl.cov
54+
*.jl.*.cov
55+
*.jl.mem
56+
deps/deps.jl
57+
58+
### JupyterNotebook ###
59+
.ipynb_checkpoints
60+
*/.ipynb_checkpoints/*
61+
62+
# Remove previous ipynb_checkpoints
63+
# git rm -r .ipynb_checkpoints/
64+
#
65+
66+
### JupyterNotebooks ###
67+
# gitignore template for Jupyter Notebooks
68+
# website: http://jupyter.org/
69+
70+
71+
# Remove previous ipynb_checkpoints
72+
# git rm -r .ipynb_checkpoints/
73+
74+
### Linux ###
75+
76+
# temporary files which can be created if a process still has a handle open of a deleted file
77+
.fuse_hidden*
78+
79+
# KDE directory preferences
80+
.directory
81+
82+
# Linux trash folder which might appear on any partition or disk
83+
.Trash-*
84+
85+
# .nfs files are created when an open file is removed but is still being accessed
86+
.nfs*
87+
88+
### MATLAB ###
89+
# Windows default autosave extension
90+
*.asv
91+
92+
# OSX / *nix default autosave extension
93+
*.m~
94+
95+
# Compiled MEX binaries (all platforms)
96+
*.mex*
97+
98+
# Packaged app and toolbox files
99+
*.mlappinstall
100+
*.mltbx
101+
102+
# Generated helpsearch folders
103+
helpsearch*/
104+
105+
# Simulink code generation folders
106+
slprj/
107+
sccprj/
108+
109+
# Matlab code generation folders
110+
codegen/
111+
112+
# Simulink autosave extension
113+
*.autosave
114+
115+
# Octave session info
116+
octave-workspace
117+
118+
### OSX ###
119+
# General
120+
.DS_Store
121+
.AppleDouble
122+
.LSOverride
123+
124+
# Icon must end with two \r
125+
Icon
126+
127+
# Thumbnails
128+
._*
129+
130+
# Files that might appear in the root of a volume
131+
.DocumentRevisions-V100
132+
.fseventsd
133+
.Spotlight-V100
134+
.TemporaryItems
135+
.Trashes
136+
.VolumeIcon.icns
137+
.com.apple.timemachine.donotpresent
138+
139+
# Directories potentially created on remote AFP share
140+
.AppleDB
141+
.AppleDesktop
142+
Network Trash Folder
143+
Temporary Items
144+
.apdisk
145+
146+
### PowerShell ###
147+
# Exclude packaged modules
148+
*.zip
149+
150+
# Exclude .NET assemblies from source
151+
*.dll
152+
153+
### PyCharm ###
154+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
155+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
156+
157+
# User-specific stuff
158+
.idea/**/workspace.xml
159+
.idea/**/tasks.xml
160+
.idea/**/usage.statistics.xml
161+
.idea/**/dictionaries
162+
.idea/**/shelf
163+
164+
# Generated files
165+
.idea/**/contentModel.xml
166+
167+
# Sensitive or high-churn files
168+
.idea/**/dataSources/
169+
.idea/**/dataSources.ids
170+
.idea/**/dataSources.local.xml
171+
.idea/**/sqlDataSources.xml
172+
.idea/**/dynamic.xml
173+
.idea/**/uiDesigner.xml
174+
.idea/**/dbnavigator.xml
175+
176+
# Gradle
177+
.idea/**/gradle.xml
178+
.idea/**/libraries
179+
180+
# Gradle and Maven with auto-import
181+
# When using Gradle or Maven with auto-import, you should exclude module files,
182+
# since they will be recreated, and may cause churn. Uncomment if using
183+
# auto-import.
184+
# .idea/modules.xml
185+
# .idea/*.iml
186+
# .idea/modules
187+
188+
# CMake
189+
cmake-build-*/
190+
191+
# Mongo Explorer plugin
192+
.idea/**/mongoSettings.xml
193+
194+
# File-based project format
195+
*.iws
196+
197+
# IntelliJ
198+
out/
199+
200+
# mpeltonen/sbt-idea plugin
201+
.idea_modules/
202+
203+
# JIRA plugin
204+
atlassian-ide-plugin.xml
205+
206+
# Cursive Clojure plugin
207+
.idea/replstate.xml
208+
209+
# Crashlytics plugin (for Android Studio and IntelliJ)
210+
com_crashlytics_export_strings.xml
211+
crashlytics.properties
212+
crashlytics-build.properties
213+
fabric.properties
214+
215+
# Editor-based Rest Client
216+
.idea/httpRequests
217+
218+
# Android studio 3.1+ serialized cache file
219+
.idea/caches/build_file_checksums.ser
220+
221+
### PyCharm Patch ###
222+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
223+
224+
# *.iml
225+
# modules.xml
226+
# .idea/misc.xml
227+
# *.ipr
228+
229+
# Sonarlint plugin
230+
.idea/sonarlint
231+
232+
### Python ###
233+
# Byte-compiled / optimized / DLL files
234+
__pycache__/
235+
*.py[cod]
236+
*$py.class
237+
238+
# C extensions
239+
*.so
240+
241+
# Distribution / packaging
242+
.Python
243+
build/
244+
develop-eggs/
245+
downloads/
246+
eggs/
247+
.eggs/
248+
lib/
249+
lib64/
250+
parts/
251+
sdist/
252+
var/
253+
wheels/
254+
pip-wheel-metadata/
255+
share/python-wheels/
256+
*.egg-info/
257+
.installed.cfg
258+
*.egg
259+
MANIFEST
260+
261+
# PyInstaller
262+
# Usually these files are written by a python script from a template
263+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
264+
*.manifest
265+
*.spec
266+
267+
# Installer logs
268+
pip-log.txt
269+
pip-delete-this-directory.txt
270+
271+
# Unit test / coverage reports
272+
htmlcov/
273+
.tox/
274+
.nox/
275+
.coverage
276+
.coverage.*
277+
.cache
278+
nosetests.xml
279+
coverage.xml
280+
*.cover
281+
.hypothesis/
282+
.pytest_cache/
283+
284+
# Translations
285+
*.mo
286+
*.pot
287+
288+
# Django stuff:
289+
*.log
290+
local_settings.py
291+
db.sqlite3
292+
293+
# Flask stuff:
294+
instance/
295+
.webassets-cache
296+
297+
# Scrapy stuff:
298+
.scrapy
299+
300+
# Sphinx documentation
301+
docs/_build/
302+
303+
# PyBuilder
304+
target/
305+
306+
# Jupyter Notebook
307+
308+
# IPython
309+
profile_default/
310+
ipython_config.py
311+
312+
# pyenv
313+
.python-version
314+
315+
# celery beat schedule file
316+
celerybeat-schedule
317+
318+
# SageMath parsed files
319+
*.sage.py
320+
321+
# Environments
322+
.env
323+
.venv
324+
env/
325+
venv/
326+
ENV/
327+
env.bak/
328+
venv.bak/
329+
330+
# Spyder project settings
331+
.spyderproject
332+
.spyproject
333+
334+
# Rope project settings
335+
.ropeproject
336+
337+
# mkdocs documentation
338+
/site
339+
340+
# mypy
341+
.mypy_cache/
342+
.dmypy.json
343+
dmypy.json
344+
345+
# Pyre type checker
346+
.pyre/
347+
348+
### Python Patch ###
349+
.venv/
350+
351+
### Vim ###
352+
# Swap
353+
[._]*.s[a-v][a-z]
354+
[._]*.sw[a-p]
355+
[._]s[a-rt-v][a-z]
356+
[._]ss[a-gi-z]
357+
[._]sw[a-p]
358+
359+
# Session
360+
Session.vim
361+
362+
# Temporary
363+
.netrwhist
364+
# Auto-generated tag files
365+
tags
366+
# Persistent undo
367+
[._]*.un~
368+
369+
### Windows ###
370+
# Windows thumbnail cache files
371+
Thumbs.db
372+
ehthumbs.db
373+
ehthumbs_vista.db
374+
375+
# Dump file
376+
*.stackdump
377+
378+
# Folder config file
379+
[Dd]esktop.ini
380+
381+
# Recycle Bin used on file shares
382+
$RECYCLE.BIN/
383+
384+
# Windows Installer files
385+
*.cab
386+
*.msi
387+
*.msix
388+
*.msm
389+
*.msp
390+
391+
# Windows shortcuts
392+
*.lnk
393+
394+
# End of https://www.gitignore.io/api/vim,osx,linux,julia,emacs,python,matlab,windows,pycharm,powershell,jupyternotebook,jupyternotebooks

0 commit comments

Comments
 (0)