WIP
@ -1 +0,0 @@
|
||||
./static/_redirects
|
@ -1,8 +0,0 @@
|
||||
---
|
||||
title: Old Quebec
|
||||
date: 2017-06-21
|
||||
extra:
|
||||
cover_image: /photos/2017-06-21-old-quebec.preview.jpeg
|
||||
---
|
||||
|
||||

|
@ -1,8 +0,0 @@
|
||||
---
|
||||
title: Stormy Street in Quebec
|
||||
date: 2017-06-21
|
||||
extra:
|
||||
cover_image: /photos/2017-06-21-stormy-quebec-street.preview.jpeg
|
||||
---
|
||||
|
||||

|
@ -1,8 +0,0 @@
|
||||
---
|
||||
title: Montmorency Falls
|
||||
date: 2017-06-22
|
||||
extra:
|
||||
cover_image: /photos/2017-06-22-montmorency-falls.preview.jpeg
|
||||
---
|
||||
|
||||

|
@ -1,8 +0,0 @@
|
||||
---
|
||||
title: Rocky Shore
|
||||
date: 2017-08-04
|
||||
extra:
|
||||
cover_image: /photos/2017-08-04-rocky-shore-halifax.preview.jpeg
|
||||
---
|
||||
|
||||

|
@ -1,10 +0,0 @@
|
||||
---
|
||||
title: Halifax Port
|
||||
date: 2019-08-04
|
||||
extra:
|
||||
cover_image: /photos/2019-08-04-halifax-port.preview.jpeg
|
||||
---
|
||||
|
||||

|
||||
|
||||
*Shot at [PSA International](https://www.globalpsa.com/)'s Halifax port.*
|
@ -1,10 +0,0 @@
|
||||
---
|
||||
title: Jacob's Ladder
|
||||
date: 2019-08-09
|
||||
extra:
|
||||
cover_image: /photos/2019-08-09-jacobs-ladder.preview.jpeg
|
||||
---
|
||||
|
||||

|
||||
|
||||
*Shot at Jacob's Ladder, a stairway in Victoria Park, Truro, Nova Scotia.*
|
@ -1,8 +0,0 @@
|
||||
---
|
||||
title: My Desk
|
||||
date: 2020-07-19
|
||||
extra:
|
||||
cover_image: /photos/2020-07-19-my-desk.preview.png
|
||||
---
|
||||
|
||||

|
@ -1,10 +0,0 @@
|
||||
---
|
||||
title: Two Cars
|
||||
date: 2020-07-23
|
||||
extra:
|
||||
cover_image: /photos/2020-07-23-two-cars.preview.png
|
||||
---
|
||||
|
||||

|
||||
|
||||
*Two Cars* was shot from a few hundred feet in the air on a DJI Mavic Mini.
|
@ -1,10 +0,0 @@
|
||||
---
|
||||
title: Above the Thames
|
||||
date: 2020-07-24
|
||||
extra:
|
||||
cover_image: /photos/2020-07-24-above-the-thames.preview.jpg
|
||||
---
|
||||
|
||||

|
||||
|
||||
Looking down at the Thames River in the heart of London, Ontario.
|
@ -1,8 +0,0 @@
|
||||
---
|
||||
title: Snow Day in Space
|
||||
date: 2022-01-18
|
||||
extra:
|
||||
cover_image: /photos/2022-01-18-snow-day-in-space.preview.jpg
|
||||
---
|
||||
|
||||

|
@ -1,10 +0,0 @@
|
||||
---
|
||||
title: Icy Shore
|
||||
date: 2022-03-06
|
||||
extra:
|
||||
cover_image: /photos/2022-03-06-icy-shore.preview.jpg
|
||||
---
|
||||
|
||||

|
||||
|
||||
Shot at Sixteen Mile Creek in Oakville, Ontario.
|
@ -1,6 +0,0 @@
|
||||
---
|
||||
title: Photography
|
||||
sort_by: date
|
||||
template: "photo-timeline.html"
|
||||
---
|
||||
|
@ -1,8 +0,0 @@
|
||||
---
|
||||
title: Privacy Policies
|
||||
---
|
||||
|
||||
The following documents define the privacy policies for various things I've made:
|
||||
|
||||
- Applications
|
||||
- [Slice](/privacy/applications/slice) (WearOS watch face)
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
title: Slice Privacy Policy
|
||||
---
|
||||
|
||||
The "Slice" watch face for WearOS does not intentionally collect any data. It does not connect to the internet, and it does not use any third-party services.
|
@ -1,37 +0,0 @@
|
||||
import re
|
||||
from pathlib import Path
|
||||
|
||||
REPO_ROOT = Path(__file__).parent.parent
|
||||
|
||||
# Find all MD and HTML files
|
||||
md_files = list(REPO_ROOT.rglob("*.md"))
|
||||
html_files = list(REPO_ROOT.rglob("*.html"))
|
||||
|
||||
# Ignore any files in the `public` directory
|
||||
md_files = [f for f in md_files if "public" not in f.parts]
|
||||
html_files = [f for f in html_files if "public" not in f.parts]
|
||||
|
||||
# Result storage
|
||||
external_assets = set()
|
||||
|
||||
# Find Markdown images
|
||||
for file in md_files:
|
||||
body = file.read_text()
|
||||
for match in re.finditer(r"!\[.*?\]\((.*?)\)", body):
|
||||
link = match.group(1)
|
||||
if link.startswith("http"):
|
||||
external_assets.add((file, link))
|
||||
|
||||
# Search HTML
|
||||
for file in html_files:
|
||||
body = file.read_text()
|
||||
for match in re.finditer(r'src="(.*?)"', body):
|
||||
link = match.group(1)
|
||||
if link.startswith("http"):
|
||||
external_assets.add((file, link))
|
||||
|
||||
# Print all external assets
|
||||
for file_path, link in external_assets:
|
||||
# Strip the prefix off the file path
|
||||
file_path = file_path.relative_to(REPO_ROOT)
|
||||
print(f"{file_path}:\t{link}")
|
@ -1,66 +0,0 @@
|
||||
import argparse
|
||||
import sys
|
||||
import re
|
||||
import frontmatter
|
||||
import yaml
|
||||
from pathlib import Path
|
||||
|
||||
BLOG_POST_RE = re.compile(r"^\d{4}-\d+-\d+-(.*)\.md$")
|
||||
|
||||
|
||||
def main() -> int:
|
||||
# Handle program arguments
|
||||
ap = argparse.ArgumentParser(
|
||||
description="Fixes the `aliases` field in the front matter of markdown files"
|
||||
)
|
||||
ap.add_argument(
|
||||
"--root",
|
||||
type=Path,
|
||||
default=Path(__file__).parent.parent / "content" / "blog",
|
||||
help="The root directory to search for markdown files",
|
||||
)
|
||||
args = ap.parse_args()
|
||||
|
||||
# Find all markdown files
|
||||
md_files = list(args.root.glob("**/*.md"))
|
||||
print(f"Found {len(md_files)} markdown files")
|
||||
|
||||
# Handle each file
|
||||
for file in md_files:
|
||||
print(f"Processing: {file}")
|
||||
|
||||
# Determine what the alias path should be
|
||||
title_matches = BLOG_POST_RE.match(file.name)
|
||||
if not title_matches:
|
||||
print("Skipping file, not a blog post")
|
||||
continue
|
||||
|
||||
title = title_matches.group(1)
|
||||
correct_alias = f"/blog/{title.lower()}"
|
||||
print("Correct alias:", correct_alias)
|
||||
|
||||
# Load and parse the frontmatter
|
||||
post = frontmatter.load(file)
|
||||
|
||||
# Get the list of aliases
|
||||
aliases = post.metadata.get("aliases", [])
|
||||
|
||||
# If the alias is already correct, skip it
|
||||
if correct_alias in aliases:
|
||||
print("Found correct alias")
|
||||
continue
|
||||
|
||||
# Otherwise, add the correct alias
|
||||
aliases.append(correct_alias)
|
||||
|
||||
# Write out the new frontmatter
|
||||
post.metadata["aliases"] = aliases
|
||||
file_contents = frontmatter.dumps(post, sort_keys=False)
|
||||
file_contents += "\n"
|
||||
file.write_text(file_contents)
|
||||
|
||||
return 0
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
sys.exit(main())
|
10
src/404.html
Normal file
@ -0,0 +1,10 @@
|
||||
---
|
||||
layout: default
|
||||
title: Not Found
|
||||
permalink: /404.html
|
||||
---
|
||||
|
||||
<h2>Not Found</h2>
|
||||
<p>
|
||||
The page you were looking for was not found.
|
||||
</p>
|
@ -15,7 +15,43 @@
|
||||
|
||||
<body>
|
||||
<header>
|
||||
|
||||
<div class="title-card">
|
||||
<img src="/assets/profile-photos/2022/460x460.webp" alt="A photo of Evan Pratten">
|
||||
<div>
|
||||
<span class="name">Evan Pratten</span>
|
||||
<hr>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="mailto:evan@ewpratten.com">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<path
|
||||
d="M 3 8 L 3 26 L 29 26 L 29 8 Z M 7.3125 10 L 24.6875 10 L 16 15.78125 Z M 5 10.875 L 15.4375 17.84375 L 16 18.1875 L 16.5625 17.84375 L 27 10.875 L 27 24 L 5 24 Z" />
|
||||
</svg>
|
||||
evan@ewpratten.com
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://linkedin.com/in/ewpratten">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<path
|
||||
d="M 7.5 5 C 6.132813 5 5 6.132813 5 7.5 L 5 24.5 C 5 25.867188 6.132813 27 7.5 27 L 24.5 27 C 25.867188 27 27 25.867188 27 24.5 L 27 7.5 C 27 6.132813 25.867188 5 24.5 5 Z M 7.5 7 L 24.5 7 C 24.785156 7 25 7.214844 25 7.5 L 25 24.5 C 25 24.785156 24.785156 25 24.5 25 L 7.5 25 C 7.214844 25 7 24.785156 7 24.5 L 7 7.5 C 7 7.214844 7.214844 7 7.5 7 Z M 10.4375 8.71875 C 9.488281 8.71875 8.71875 9.488281 8.71875 10.4375 C 8.71875 11.386719 9.488281 12.15625 10.4375 12.15625 C 11.386719 12.15625 12.15625 11.386719 12.15625 10.4375 C 12.15625 9.488281 11.386719 8.71875 10.4375 8.71875 Z M 19.46875 13.28125 C 18.035156 13.28125 17.082031 14.066406 16.6875 14.8125 L 16.625 14.8125 L 16.625 13.5 L 13.8125 13.5 L 13.8125 23 L 16.75 23 L 16.75 18.3125 C 16.75 17.074219 16.996094 15.875 18.53125 15.875 C 20.042969 15.875 20.0625 17.273438 20.0625 18.375 L 20.0625 23 L 23 23 L 23 17.78125 C 23 15.226563 22.457031 13.28125 19.46875 13.28125 Z M 9 13.5 L 9 23 L 11.96875 23 L 11.96875 13.5 Z" />
|
||||
</svg>
|
||||
ewpratten
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<nav>
|
||||
<hr>
|
||||
<ul>
|
||||
<li><a href="/">Home</a></li>
|
||||
<li><a href="/blog">Blog</a></li>
|
||||
<li><a href="/radio">Radio</a></li>
|
||||
<li><a href="/music">Music</a></li>
|
||||
</ul>
|
||||
<hr>
|
||||
</nav>
|
||||
</header>
|
||||
<main>
|
||||
{{ content }}
|
||||
|
@ -13,10 +13,99 @@ body {
|
||||
// Default background color
|
||||
background-color: #f0f0f0;
|
||||
|
||||
// Remove all link decoration
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: blue;
|
||||
}
|
||||
|
||||
header {
|
||||
font-family: "IBM Plex Serif", serif;
|
||||
|
||||
.title-card {
|
||||
margin: 1em;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
|
||||
img {
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
}
|
||||
div {
|
||||
margin-left: 1em;
|
||||
height: max-content;
|
||||
.name {
|
||||
margin: 0;
|
||||
font-size: 2rem;
|
||||
font-weight: 700;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
hr {
|
||||
margin: 0;
|
||||
}
|
||||
ul {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
li {
|
||||
list-style: none;
|
||||
a {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
|
||||
svg {
|
||||
display: inline-block;
|
||||
margin-right: 1px;
|
||||
height: 1em;
|
||||
width: 1em;
|
||||
filter: invert(9%) sepia(97%) saturate(6581%) hue-rotate(247deg)
|
||||
brightness(94%) contrast(144%);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
nav {
|
||||
ul {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
li {
|
||||
list-style-type: none;
|
||||
font-weight: 500;
|
||||
&:not(:first-child)::before {
|
||||
content: " · ";
|
||||
margin-left: 0.25em;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
main {
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: "IBM Plex Serif", serif;
|
||||
border-bottom: 1px solid #d7dde3;
|
||||
padding-bottom: 0.3em;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 0;
|
||||
margin-bottom: 16px;
|
||||
padding: 0 0.25em;
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
img {
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 194 KiB After Width: | Height: | Size: 194 KiB |
Before Width: | Height: | Size: 124 KiB After Width: | Height: | Size: 124 KiB |
Before Width: | Height: | Size: 898 KiB After Width: | Height: | Size: 898 KiB |
Before Width: | Height: | Size: 2.1 MiB After Width: | Height: | Size: 2.1 MiB |
Before Width: | Height: | Size: 226 KiB After Width: | Height: | Size: 226 KiB |
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
8
src/blog.html
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
layout: default
|
||||
title: Blog
|
||||
---
|
||||
|
||||
{% for post in site.posts %}
|
||||
{{post}}
|
||||
{% endfor %}
|
@ -22,4 +22,4 @@ I am currently:
|
||||
Some of the more notable things I've worked on in the past are:
|
||||
|
||||
- The animated TV series [PAW Patrol](https://www.imdb.com/title/tt3121722/) and [Daniel Spellbound](https://www.imdb.com/title/tt13983670/)
|
||||
- A [fleet of robots](/robotics/5024) at Raider Robotics
|
||||
- A [fleet of robots](/robotics/5024) at Raider Robotics <sup>test</sup>
|
||||
|