I hereby claim:
- I am rschuetzler on github.
- I am rschuetzler (https://keybase.io/rschuetzler) on keybase.
- I have a public key is ASD1UGpYq9lNtyFhAyGZABkRjEFMA_elK1YyPd1UfRS8dgo
To claim this, I am signing this object:
\documentclass{article} | |
\usepackage{graphicx} | |
% \usepackage{biblatex} | |
\graphicspath { {figs/} } | |
\begin{document} | |
This is me referencing Figure~\ref{fig:smile}. |
I hereby claim:
To claim this, I am signing this object:
I’ve been teaching data communications to undergraduate students for years, and for graduate students for only slightly less time. Over this time I’ve accumulated a whole bunch of interesting supplementary readings, videos, and activities to make things more interesting. This is the list so others can use it. If you have suggested additions, let me know. I’m happy to find more!
I started this list way too late, so I know I'm missing most of them. Please submit others you know of so we can complete the list.
x = 1 | |
if x > 3: | |
print("X is big") | |
else: # Invalid syntax error | |
print("X is small") |
import frontmatter | |
from pathlib import Path | |
import re | |
import os | |
import errno | |
p = Path("./posts") | |
for path in p.glob("*.markdown"): | |
with open(path, mode="r", encoding="UTF-8") as f: |
#!/usr/bin/env bash | |
# Place in .platform/hooks/postdeploy directory | |
sudo certbot -n -d YOURDOMAINHERE --nginx --agree-tos --email YOUREMAILHERE |