Restore from template
This commit is contained in:
parent
91fbec798b
commit
dd4894accb
157
.gitignore
vendored
Normal file
157
.gitignore
vendored
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
# Byte-compiled / optimized / DLL files
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
*$py.class
|
||||||
|
|
||||||
|
# pycharm configs
|
||||||
|
.idea
|
||||||
|
|
||||||
|
# C extensions
|
||||||
|
*.so
|
||||||
|
|
||||||
|
# Distribution / packaging
|
||||||
|
.Python
|
||||||
|
build/
|
||||||
|
develop-eggs/
|
||||||
|
dist/
|
||||||
|
downloads/
|
||||||
|
eggs/
|
||||||
|
.eggs/
|
||||||
|
lib/
|
||||||
|
lib64/
|
||||||
|
parts/
|
||||||
|
sdist/
|
||||||
|
var/
|
||||||
|
wheels/
|
||||||
|
*.egg-info/
|
||||||
|
.installed.cfg
|
||||||
|
*.egg
|
||||||
|
MANIFEST
|
||||||
|
|
||||||
|
# PyInstaller
|
||||||
|
# Usually these files are written by a python script from a template
|
||||||
|
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
||||||
|
*.manifest
|
||||||
|
*.spec
|
||||||
|
|
||||||
|
# Installer logs
|
||||||
|
pip-log.txt
|
||||||
|
pip-delete-this-directory.txt
|
||||||
|
|
||||||
|
# Unit test / coverage reports
|
||||||
|
htmlcov/
|
||||||
|
.tox/
|
||||||
|
.coverage
|
||||||
|
.coverage.*
|
||||||
|
.cache
|
||||||
|
nosetests.xml
|
||||||
|
coverage.xml
|
||||||
|
*.cover
|
||||||
|
.hypothesis/
|
||||||
|
.pytest_cache/
|
||||||
|
|
||||||
|
# Translations
|
||||||
|
*.mo
|
||||||
|
*.pot
|
||||||
|
|
||||||
|
# Django stuff:
|
||||||
|
*.log
|
||||||
|
local_settings.py
|
||||||
|
db.sqlite3
|
||||||
|
|
||||||
|
# Flask stuff:
|
||||||
|
instance/
|
||||||
|
.webassets-cache
|
||||||
|
|
||||||
|
# Scrapy stuff:
|
||||||
|
.scrapy
|
||||||
|
|
||||||
|
# Sphinx documentation
|
||||||
|
docs/_build/
|
||||||
|
|
||||||
|
# PyBuilder
|
||||||
|
target/
|
||||||
|
|
||||||
|
# Jupyter Notebook
|
||||||
|
.ipynb_checkpoints
|
||||||
|
|
||||||
|
# pyenv
|
||||||
|
.python-version
|
||||||
|
|
||||||
|
# celery beat schedule file
|
||||||
|
celerybeat-schedule
|
||||||
|
|
||||||
|
# SageMath parsed files
|
||||||
|
*.sage.py
|
||||||
|
|
||||||
|
# Environments
|
||||||
|
.env
|
||||||
|
.venv
|
||||||
|
env/
|
||||||
|
venv/
|
||||||
|
ENV/
|
||||||
|
env.bak/
|
||||||
|
venv.bak/
|
||||||
|
|
||||||
|
# Spyder project settings
|
||||||
|
.spyderproject
|
||||||
|
.spyproject
|
||||||
|
|
||||||
|
# Rope project settings
|
||||||
|
.ropeproject
|
||||||
|
|
||||||
|
# mkdocs documentation
|
||||||
|
/site
|
||||||
|
|
||||||
|
# mypy
|
||||||
|
.mypy_cache/
|
||||||
|
|
||||||
|
#Intellij
|
||||||
|
vcs.xml
|
||||||
|
|
||||||
|
# data generated by parser
|
||||||
|
/data
|
||||||
|
|
||||||
|
# autogenerated
|
||||||
|
/docs/source/reference/
|
||||||
|
|
||||||
|
# docs output
|
||||||
|
/docs/build/
|
||||||
|
|
||||||
|
# Caches
|
||||||
|
/.cache
|
||||||
|
|
||||||
|
# Emacs
|
||||||
|
\#*\#
|
||||||
|
.\#*
|
||||||
|
|
||||||
|
# JetBrains
|
||||||
|
.idea
|
||||||
|
|
||||||
|
# Temporary
|
||||||
|
*~
|
||||||
|
|
||||||
|
*.aux
|
||||||
|
*.nav
|
||||||
|
*.toc
|
||||||
|
*.log
|
||||||
|
*.out
|
||||||
|
*.blg
|
||||||
|
*.bbl
|
||||||
|
*.synctex.gz
|
||||||
|
*.fdb_latexmk
|
||||||
|
*.fls
|
||||||
|
*.prv
|
||||||
|
*.lot
|
||||||
|
*.lof
|
||||||
|
/auto
|
||||||
|
msc-michal-maciaszek.pdf
|
||||||
|
msc-michal-maciaszek.zip
|
||||||
|
autozoil-log.txt
|
||||||
|
stats.txt
|
||||||
|
abstract.txt
|
||||||
|
supplement.zip
|
||||||
|
the-appendix.pdf
|
||||||
|
sentences.txt
|
||||||
|
arxiv-msc-michal-maciaszek.pdf
|
||||||
|
arxiv-msc-michal-maciaszek.tar.gz
|
10
.gitlab-ci.yml
Normal file
10
.gitlab-ci.yml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
variables:
|
||||||
|
PAPER_ID: "msc-michal-maciaszek"
|
||||||
|
|
||||||
|
# In order to run via `gitlab-runner exec docker ...` locally,
|
||||||
|
# run `./run-gitlab-runner.sh docker ...`.
|
||||||
|
# THIS IS AN UGLY WORK-AROUND
|
||||||
|
include:
|
||||||
|
- project: 'research/paper-cutter'
|
||||||
|
ref: '4.2.1'
|
||||||
|
file: 'main.yml'
|
0
autozoil-via-docker.sh
Normal file → Executable file
0
autozoil-via-docker.sh
Normal file → Executable file
0
extract-score-files.pl
Normal file → Executable file
0
extract-score-files.pl
Normal file → Executable file
0
helpers/flatten-structure.pl
Normal file → Executable file
0
helpers/flatten-structure.pl
Normal file → Executable file
0
helpers/generate-pdf-from-arxiv-package.sh
Normal file → Executable file
0
helpers/generate-pdf-from-arxiv-package.sh
Normal file → Executable file
0
helpers/get-sentences.sh
Normal file → Executable file
0
helpers/get-sentences.sh
Normal file → Executable file
0
helpers/pdf-to-plain-text.sh
Normal file → Executable file
0
helpers/pdf-to-plain-text.sh
Normal file → Executable file
0
helpers/prepare-arxiv-package.sh
Normal file → Executable file
0
helpers/prepare-arxiv-package.sh
Normal file → Executable file
0
helpers/stats.sh
Normal file → Executable file
0
helpers/stats.sh
Normal file → Executable file
0
helpers/strip-references.pl
Normal file → Executable file
0
helpers/strip-references.pl
Normal file → Executable file
0
helpers/synchro.sh
Normal file → Executable file
0
helpers/synchro.sh
Normal file → Executable file
0
install-hooks.sh
Normal file → Executable file
0
install-hooks.sh
Normal file → Executable file
0
run-gitlab-runner.sh
Normal file → Executable file
0
run-gitlab-runner.sh
Normal file → Executable file
Loading…
Reference in New Issue
Block a user