Skip to content

Commit

Permalink
chore: Copy template from previous talks
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewfeickert committed Sep 24, 2024
1 parent aef9df4 commit 75f01cf
Show file tree
Hide file tree
Showing 102 changed files with 3,759 additions and 1 deletion.
54 changes: 54 additions & 0 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Deploy GitHub Pages

on:
push:
branches: ["main"]
tags: [v*]
pull_request:
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

concurrency:
group: "pages"
cancel-in-progress: true

jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Pages
uses: actions/configure-pages@v5

- name: Setup site for deployment
run: |
mkdir -p _site
cp -r assets _site/
cp -r figures _site/
cp index.html _site/
cp talk.md _site/
- name: Fix permissions if needed
run: |
chmod -c -R +rX "_site/" | while read line; do
echo "::warning title=Invalid file permissions automatically fixed::$line"
done
- name: Upload artifact
uses: actions/upload-pages-artifact@v3

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
162 changes: 162 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,162 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-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/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
.pybuilder/
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock

# poetry
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries.
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
#poetry.lock

# pdm
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
#pdm.lock
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
# in version control.
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
.pdm.toml
.pdm-python
.pdm-build/

# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# 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/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/

# PyCharm
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
18 changes: 18 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
makefile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
dir_path := $(dir $(makefile_path))
current_dir := $(notdir $(patsubst %/,%,$(dir_path)))

default: decktape

all: decktape

decktape: talk.md
docker run --rm -v ${dir_path}:/slides/ astefanutti/decktape:3.7.0 \
https://matthewfeickert-talks.github.io/${current_dir}/index.html \
talk.pdf
cp talk.pdf feickert_chep_2024_2024-10-21.pdf

decktape_local: talk.md
docker run --rm -t --net=host -v ${dir_path}:/slides astefanutti/decktape:3.7.0 \
http://localhost:8001 \
localhost_draft.pdf
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ Viewable online [here](https://matthewfeickert-talks.github.io/talk-chep-2024/).

## Abstract

The ATLAS experiment is in the process of developing a columnar analysis demonstrator, which takes advantage of the Python ecosystem of data science tools. This project is inspired by the analysis demonstrator from IRIS-HEP.
The ATLAS experiment is in the process of developing a columnar analysis demonstrator, which takes advantage of the Python ecosystem of data science tools.
This project is inspired by the analysis demonstrator from IRIS-HEP.
The demonstrator employs PHYSLITE OpenData from the ATLAS collaboration, the new Run 3 compact ATLAS analysis data format.
The tight integration of ROOT features within PHYSLITE presents unique challenges when integrating with the Python analysis ecosystem.
The demonstrator is constructed from ATLAS PHYSLITE OpenData, ensuring the accessibility and reproducibility of the analysis.
Expand Down
1 change: 1 addition & 0 deletions assets/auto-render.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added assets/fonts/FontAwesome.otf
Binary file not shown.
Binary file added assets/fonts/KaTeX_AMS-Regular.eot
Binary file not shown.
Binary file added assets/fonts/KaTeX_AMS-Regular.ttf
Binary file not shown.
Binary file added assets/fonts/KaTeX_AMS-Regular.woff
Binary file not shown.
Binary file added assets/fonts/KaTeX_AMS-Regular.woff2
Binary file not shown.
Binary file added assets/fonts/KaTeX_Caligraphic-Bold.eot
Binary file not shown.
Binary file added assets/fonts/KaTeX_Caligraphic-Bold.ttf
Binary file not shown.
Binary file added assets/fonts/KaTeX_Caligraphic-Bold.woff
Binary file not shown.
Binary file added assets/fonts/KaTeX_Caligraphic-Bold.woff2
Binary file not shown.
Binary file added assets/fonts/KaTeX_Caligraphic-Regular.eot
Binary file not shown.
Binary file added assets/fonts/KaTeX_Caligraphic-Regular.ttf
Binary file not shown.
Binary file added assets/fonts/KaTeX_Caligraphic-Regular.woff
Binary file not shown.
Binary file added assets/fonts/KaTeX_Caligraphic-Regular.woff2
Binary file not shown.
Binary file added assets/fonts/KaTeX_Fraktur-Bold.eot
Binary file not shown.
Binary file added assets/fonts/KaTeX_Fraktur-Bold.ttf
Binary file not shown.
Binary file added assets/fonts/KaTeX_Fraktur-Bold.woff
Binary file not shown.
Binary file added assets/fonts/KaTeX_Fraktur-Bold.woff2
Binary file not shown.
Binary file added assets/fonts/KaTeX_Fraktur-Regular.eot
Binary file not shown.
Binary file added assets/fonts/KaTeX_Fraktur-Regular.ttf
Binary file not shown.
Binary file added assets/fonts/KaTeX_Fraktur-Regular.woff
Binary file not shown.
Binary file added assets/fonts/KaTeX_Fraktur-Regular.woff2
Binary file not shown.
Binary file added assets/fonts/KaTeX_Main-Bold.eot
Binary file not shown.
Binary file added assets/fonts/KaTeX_Main-Bold.ttf
Binary file not shown.
Binary file added assets/fonts/KaTeX_Main-Bold.woff
Binary file not shown.
Binary file added assets/fonts/KaTeX_Main-Bold.woff2
Binary file not shown.
Binary file added assets/fonts/KaTeX_Main-Italic.eot
Binary file not shown.
Binary file added assets/fonts/KaTeX_Main-Italic.ttf
Binary file not shown.
Binary file added assets/fonts/KaTeX_Main-Italic.woff
Binary file not shown.
Binary file added assets/fonts/KaTeX_Main-Italic.woff2
Binary file not shown.
Binary file added assets/fonts/KaTeX_Main-Regular.eot
Binary file not shown.
Binary file added assets/fonts/KaTeX_Main-Regular.ttf
Binary file not shown.
Binary file added assets/fonts/KaTeX_Main-Regular.woff
Binary file not shown.
Binary file added assets/fonts/KaTeX_Main-Regular.woff2
Binary file not shown.
Binary file added assets/fonts/KaTeX_Math-BoldItalic.eot
Binary file not shown.
Binary file added assets/fonts/KaTeX_Math-BoldItalic.ttf
Binary file not shown.
Binary file added assets/fonts/KaTeX_Math-BoldItalic.woff
Binary file not shown.
Binary file added assets/fonts/KaTeX_Math-BoldItalic.woff2
Binary file not shown.
Binary file added assets/fonts/KaTeX_Math-Italic.eot
Binary file not shown.
Binary file added assets/fonts/KaTeX_Math-Italic.ttf
Binary file not shown.
Binary file added assets/fonts/KaTeX_Math-Italic.woff
Binary file not shown.
Binary file added assets/fonts/KaTeX_Math-Italic.woff2
Binary file not shown.
Binary file added assets/fonts/KaTeX_Math-Regular.eot
Binary file not shown.
Binary file added assets/fonts/KaTeX_Math-Regular.ttf
Binary file not shown.
Binary file added assets/fonts/KaTeX_Math-Regular.woff
Binary file not shown.
Binary file added assets/fonts/KaTeX_Math-Regular.woff2
Binary file not shown.
Binary file added assets/fonts/KaTeX_SansSerif-Bold.eot
Binary file not shown.
Binary file added assets/fonts/KaTeX_SansSerif-Bold.ttf
Binary file not shown.
Binary file added assets/fonts/KaTeX_SansSerif-Bold.woff
Binary file not shown.
Binary file added assets/fonts/KaTeX_SansSerif-Bold.woff2
Binary file not shown.
Binary file added assets/fonts/KaTeX_SansSerif-Italic.eot
Binary file not shown.
Binary file added assets/fonts/KaTeX_SansSerif-Italic.ttf
Binary file not shown.
Binary file added assets/fonts/KaTeX_SansSerif-Italic.woff
Binary file not shown.
Binary file added assets/fonts/KaTeX_SansSerif-Italic.woff2
Binary file not shown.
Binary file added assets/fonts/KaTeX_SansSerif-Regular.eot
Binary file not shown.
Binary file added assets/fonts/KaTeX_SansSerif-Regular.ttf
Binary file not shown.
Binary file added assets/fonts/KaTeX_SansSerif-Regular.woff
Binary file not shown.
Binary file added assets/fonts/KaTeX_SansSerif-Regular.woff2
Binary file not shown.
Binary file added assets/fonts/KaTeX_Script-Regular.eot
Binary file not shown.
Binary file added assets/fonts/KaTeX_Script-Regular.ttf
Binary file not shown.
Binary file added assets/fonts/KaTeX_Script-Regular.woff
Binary file not shown.
Binary file added assets/fonts/KaTeX_Script-Regular.woff2
Binary file not shown.
Binary file added assets/fonts/KaTeX_Size1-Regular.eot
Binary file not shown.
Binary file added assets/fonts/KaTeX_Size1-Regular.ttf
Binary file not shown.
Binary file added assets/fonts/KaTeX_Size1-Regular.woff
Binary file not shown.
Binary file added assets/fonts/KaTeX_Size1-Regular.woff2
Binary file not shown.
Binary file added assets/fonts/KaTeX_Size2-Regular.eot
Binary file not shown.
Binary file added assets/fonts/KaTeX_Size2-Regular.ttf
Binary file not shown.
Binary file added assets/fonts/KaTeX_Size2-Regular.woff
Binary file not shown.
Binary file added assets/fonts/KaTeX_Size2-Regular.woff2
Binary file not shown.
Binary file added assets/fonts/KaTeX_Size3-Regular.eot
Binary file not shown.
Binary file added assets/fonts/KaTeX_Size3-Regular.ttf
Binary file not shown.
Binary file added assets/fonts/KaTeX_Size3-Regular.woff
Binary file not shown.
Binary file added assets/fonts/KaTeX_Size3-Regular.woff2
Binary file not shown.
Binary file added assets/fonts/KaTeX_Size4-Regular.eot
Binary file not shown.
Binary file added assets/fonts/KaTeX_Size4-Regular.ttf
Binary file not shown.
Binary file added assets/fonts/KaTeX_Size4-Regular.woff
Binary file not shown.
Binary file added assets/fonts/KaTeX_Size4-Regular.woff2
Binary file not shown.
Binary file added assets/fonts/KaTeX_Typewriter-Regular.eot
Binary file not shown.
Binary file added assets/fonts/KaTeX_Typewriter-Regular.ttf
Binary file not shown.
Binary file added assets/fonts/KaTeX_Typewriter-Regular.woff
Binary file not shown.
Binary file added assets/fonts/KaTeX_Typewriter-Regular.woff2
Binary file not shown.
Binary file added assets/fonts/fontawesome-webfont.eot
Binary file not shown.
Loading

0 comments on commit 75f01cf

Please sign in to comment.