Skip to content

Commit 75f01cf

Browse files
chore: Copy template from previous talks
1 parent aef9df4 commit 75f01cf

File tree

102 files changed

+3759
-1
lines changed

Some content is hidden

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

102 files changed

+3759
-1
lines changed

.github/workflows/pages.yml

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
name: Deploy GitHub Pages
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
tags: [v*]
7+
pull_request:
8+
workflow_dispatch:
9+
10+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
11+
permissions:
12+
contents: read
13+
pages: write
14+
id-token: write
15+
16+
concurrency:
17+
group: "pages"
18+
cancel-in-progress: true
19+
20+
jobs:
21+
deploy:
22+
environment:
23+
name: github-pages
24+
url: ${{ steps.deployment.outputs.page_url }}
25+
26+
runs-on: ubuntu-latest
27+
28+
steps:
29+
- name: Checkout
30+
uses: actions/checkout@v4
31+
32+
- name: Setup Pages
33+
uses: actions/configure-pages@v5
34+
35+
- name: Setup site for deployment
36+
run: |
37+
mkdir -p _site
38+
cp -r assets _site/
39+
cp -r figures _site/
40+
cp index.html _site/
41+
cp talk.md _site/
42+
43+
- name: Fix permissions if needed
44+
run: |
45+
chmod -c -R +rX "_site/" | while read line; do
46+
echo "::warning title=Invalid file permissions automatically fixed::$line"
47+
done
48+
49+
- name: Upload artifact
50+
uses: actions/upload-pages-artifact@v3
51+
52+
- name: Deploy to GitHub Pages
53+
id: deployment
54+
uses: actions/deploy-pages@v4

.gitignore

+162
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,162 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
share/python-wheels/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
MANIFEST
28+
29+
# PyInstaller
30+
# Usually these files are written by a python script from a template
31+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
32+
*.manifest
33+
*.spec
34+
35+
# Installer logs
36+
pip-log.txt
37+
pip-delete-this-directory.txt
38+
39+
# Unit test / coverage reports
40+
htmlcov/
41+
.tox/
42+
.nox/
43+
.coverage
44+
.coverage.*
45+
.cache
46+
nosetests.xml
47+
coverage.xml
48+
*.cover
49+
*.py,cover
50+
.hypothesis/
51+
.pytest_cache/
52+
cover/
53+
54+
# Translations
55+
*.mo
56+
*.pot
57+
58+
# Django stuff:
59+
*.log
60+
local_settings.py
61+
db.sqlite3
62+
db.sqlite3-journal
63+
64+
# Flask stuff:
65+
instance/
66+
.webassets-cache
67+
68+
# Scrapy stuff:
69+
.scrapy
70+
71+
# Sphinx documentation
72+
docs/_build/
73+
74+
# PyBuilder
75+
.pybuilder/
76+
target/
77+
78+
# Jupyter Notebook
79+
.ipynb_checkpoints
80+
81+
# IPython
82+
profile_default/
83+
ipython_config.py
84+
85+
# pyenv
86+
# For a library or package, you might want to ignore these files since the code is
87+
# intended to run in multiple environments; otherwise, check them in:
88+
# .python-version
89+
90+
# pipenv
91+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
93+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
94+
# install all needed dependencies.
95+
#Pipfile.lock
96+
97+
# poetry
98+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99+
# This is especially recommended for binary packages to ensure reproducibility, and is more
100+
# commonly ignored for libraries.
101+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102+
#poetry.lock
103+
104+
# pdm
105+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106+
#pdm.lock
107+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108+
# in version control.
109+
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
110+
.pdm.toml
111+
.pdm-python
112+
.pdm-build/
113+
114+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
115+
__pypackages__/
116+
117+
# Celery stuff
118+
celerybeat-schedule
119+
celerybeat.pid
120+
121+
# SageMath parsed files
122+
*.sage.py
123+
124+
# Environments
125+
.env
126+
.venv
127+
env/
128+
venv/
129+
ENV/
130+
env.bak/
131+
venv.bak/
132+
133+
# Spyder project settings
134+
.spyderproject
135+
.spyproject
136+
137+
# Rope project settings
138+
.ropeproject
139+
140+
# mkdocs documentation
141+
/site
142+
143+
# mypy
144+
.mypy_cache/
145+
.dmypy.json
146+
dmypy.json
147+
148+
# Pyre type checker
149+
.pyre/
150+
151+
# pytype static type analyzer
152+
.pytype/
153+
154+
# Cython debug symbols
155+
cython_debug/
156+
157+
# PyCharm
158+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
159+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
160+
# and can be added to the global gitignore or merged into this file. For a more nuclear
161+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
162+
#.idea/

Makefile

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
makefile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
2+
dir_path := $(dir $(makefile_path))
3+
current_dir := $(notdir $(patsubst %/,%,$(dir_path)))
4+
5+
default: decktape
6+
7+
all: decktape
8+
9+
decktape: talk.md
10+
docker run --rm -v ${dir_path}:/slides/ astefanutti/decktape:3.7.0 \
11+
https://matthewfeickert-talks.github.io/${current_dir}/index.html \
12+
talk.pdf
13+
cp talk.pdf feickert_chep_2024_2024-10-21.pdf
14+
15+
decktape_local: talk.md
16+
docker run --rm -t --net=host -v ${dir_path}:/slides astefanutti/decktape:3.7.0 \
17+
http://localhost:8001 \
18+
localhost_draft.pdf

README.md

+2-1

assets/auto-render.min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/fonts/FontAwesome.otf

132 KB
Binary file not shown.

assets/fonts/KaTeX_AMS-Regular.eot

70 KB
Binary file not shown.

assets/fonts/KaTeX_AMS-Regular.ttf

69.8 KB
Binary file not shown.

assets/fonts/KaTeX_AMS-Regular.woff

39.3 KB
Binary file not shown.

assets/fonts/KaTeX_AMS-Regular.woff2

32.4 KB
Binary file not shown.
19.4 KB
Binary file not shown.
19.1 KB
Binary file not shown.
11.9 KB
Binary file not shown.
10.4 KB
Binary file not shown.
18.8 KB
Binary file not shown.
18.5 KB
Binary file not shown.
11.6 KB
Binary file not shown.
10.2 KB
Binary file not shown.

assets/fonts/KaTeX_Fraktur-Bold.eot

35.4 KB
Binary file not shown.

assets/fonts/KaTeX_Fraktur-Bold.ttf

35.1 KB
Binary file not shown.

assets/fonts/KaTeX_Fraktur-Bold.woff

22.8 KB
Binary file not shown.

assets/fonts/KaTeX_Fraktur-Bold.woff2

20 KB
Binary file not shown.
34.1 KB
Binary file not shown.
33.8 KB
Binary file not shown.
22.3 KB
Binary file not shown.
19.4 KB
Binary file not shown.

assets/fonts/KaTeX_Main-Bold.eot

59.3 KB
Binary file not shown.

assets/fonts/KaTeX_Main-Bold.ttf

59.1 KB
Binary file not shown.

assets/fonts/KaTeX_Main-Bold.woff

34.6 KB
Binary file not shown.

assets/fonts/KaTeX_Main-Bold.woff2

28.8 KB
Binary file not shown.

assets/fonts/KaTeX_Main-Italic.eot

43.1 KB
Binary file not shown.

assets/fonts/KaTeX_Main-Italic.ttf

42.9 KB
Binary file not shown.

assets/fonts/KaTeX_Main-Italic.woff

24.3 KB
Binary file not shown.

assets/fonts/KaTeX_Main-Italic.woff2

20.5 KB
Binary file not shown.

assets/fonts/KaTeX_Main-Regular.eot

66.6 KB
Binary file not shown.

assets/fonts/KaTeX_Main-Regular.ttf

66.4 KB
Binary file not shown.

assets/fonts/KaTeX_Main-Regular.woff

36.7 KB
Binary file not shown.

assets/fonts/KaTeX_Main-Regular.woff2

30.5 KB
Binary file not shown.
39.1 KB
Binary file not shown.
38.8 KB
Binary file not shown.
22.6 KB
Binary file not shown.
19.6 KB
Binary file not shown.

assets/fonts/KaTeX_Math-Italic.eot

40.7 KB
Binary file not shown.

assets/fonts/KaTeX_Math-Italic.ttf

40.5 KB
Binary file not shown.

assets/fonts/KaTeX_Math-Italic.woff

23.3 KB
Binary file not shown.

assets/fonts/KaTeX_Math-Italic.woff2

20 KB
Binary file not shown.

assets/fonts/KaTeX_Math-Regular.eot

40.6 KB
Binary file not shown.

assets/fonts/KaTeX_Math-Regular.ttf

40.3 KB
Binary file not shown.

assets/fonts/KaTeX_Math-Regular.woff

23.2 KB
Binary file not shown.

assets/fonts/KaTeX_Math-Regular.woff2

19.9 KB
Binary file not shown.

assets/fonts/KaTeX_SansSerif-Bold.eot

33.4 KB
Binary file not shown.

assets/fonts/KaTeX_SansSerif-Bold.ttf

33.2 KB
Binary file not shown.
18.7 KB
Binary file not shown.
15.6 KB
Binary file not shown.
30.6 KB
Binary file not shown.
30.3 KB
Binary file not shown.
17.7 KB
Binary file not shown.
14.8 KB
Binary file not shown.
29.5 KB
Binary file not shown.
29.3 KB
Binary file not shown.
16.4 KB
Binary file not shown.
13.6 KB
Binary file not shown.

assets/fonts/KaTeX_Script-Regular.eot

24.5 KB
Binary file not shown.

assets/fonts/KaTeX_Script-Regular.ttf

24.3 KB
Binary file not shown.
13.5 KB
Binary file not shown.
12 KB
Binary file not shown.

assets/fonts/KaTeX_Size1-Regular.eot

13.1 KB
Binary file not shown.

assets/fonts/KaTeX_Size1-Regular.ttf

12.9 KB
Binary file not shown.

assets/fonts/KaTeX_Size1-Regular.woff

6.82 KB
Binary file not shown.
5.68 KB
Binary file not shown.

assets/fonts/KaTeX_Size2-Regular.eot

12.4 KB
Binary file not shown.

assets/fonts/KaTeX_Size2-Regular.ttf

12.1 KB
Binary file not shown.

assets/fonts/KaTeX_Size2-Regular.woff

6.53 KB
Binary file not shown.
5.43 KB
Binary file not shown.

assets/fonts/KaTeX_Size3-Regular.eot

8.39 KB
Binary file not shown.

assets/fonts/KaTeX_Size3-Regular.ttf

8.16 KB
Binary file not shown.

assets/fonts/KaTeX_Size3-Regular.woff

4.66 KB
Binary file not shown.
3.77 KB
Binary file not shown.

assets/fonts/KaTeX_Size4-Regular.eot

11.3 KB
Binary file not shown.

assets/fonts/KaTeX_Size4-Regular.ttf

11 KB
Binary file not shown.

assets/fonts/KaTeX_Size4-Regular.woff

6.3 KB
Binary file not shown.
5.05 KB
Binary file not shown.
34.9 KB
Binary file not shown.
34.7 KB
Binary file not shown.
20.2 KB
Binary file not shown.
16.9 KB
Binary file not shown.

assets/fonts/fontawesome-webfont.eot

162 KB
Binary file not shown.

0 commit comments

Comments
 (0)