media="(prefers-color-scheme: dark)"
/>
<meta charset="UTF-8" />
- <title>Ben's Books</title>
+ <title>Ben's Bookshelf</title>
<link rel="stylesheet" href="/styles/main.css" />
<style>
ol {
+ font-weight: bold;
list-style-position: inside;
}
+ ul {
+ font-weight: normal;
+ padding-bottom: 2rem;
+ }
+
ul::before {
content: '';
}
</head>
<body>
<header>
- <h1>Ben's Books</h1>
+ <h1>Ben's Bookshelf</h1>
</header>
<main>
<ol reversed start="2022">
<li>
<ul>
- <li>The Boys in the Boat - Daniel James Brown - Reading</li>
+ <li>The Saga of Hervor and Heidrek - Jackson Crawford - Reading</li>
+ <li>Fundamentals of the Faith - Peter Kreeft - Reading</li>
+ <li>The Poetic Edda - Jackson Crawford - 4/5</li>
+ <li>The Great Polar Fraud - Anthony Galvin - 4/5</li>
+ <li>The Saga of the Volsungs - Jackson Crawford - 4/5</li>
+ <li>The Boys in the Boat - Daniel James Brown - 4/5</li>
<li>The Ghost Map - Steven Johnson - 3/5</li>
</ul>
</li>
</ul>
</li>
</ol>
+
+ <p>
+ Before 2021 I hadn't read much since middle school. As a kid I loved to
+ read, but all the garbage I had to read in high school and college
+ convinced me that reading was no fun. Fortunatly I rediscovered how
+ great a book can be in 2021 þanks to
+ <i>The Last Place on Earth</i>, and I've been trying to make up for lost
+ time ever since.
+ </p>
</main>
</body>
</html>
</header>
<main>
<p class="dropcap">
- I am a software developer in Nashville, Tennissee. For ðe past two
- years I've been working on ðe Marketing Technology team at
+ I am a software developer in Nashville, Tennissee. For ðe past
+ þree years I've been on ðe Platform Engineering team at
<a href="https://www.ramseysolutions.com">Ramsey.</a> Before ðat I
was in school at
<a href="https://www.anselm.edu">Saint Anselm College,</a>
where I got a bachelor's degree in Computer Science, and minored in
Philosophy and German.
</p>
- <p class="dropcap">
- For fun I enjoy hiking, reading, and listening to music. Ðe tallest
- mountain I have climbed is Mount Washington (6k ft) in New Hampshire. A
- few of my favorite auþors are Howard Pyle, G. K. Chesterton, C. S.
- Lewis, and Roland Huntford. Some musicians I like are
- <a href="https://www.thomasbergersen.com">Thomas Bergersen,</a>
- <a href="https://triodhoore.com">Trio Dhoore,</a> and
- <a href="https://www.weirdal.com">"Weird Al" Yankovic.</a>
- </p>
- <p class="dropcap">
+ <p>
Like a lot of oðer devs, I often spend my free time coding. Many of
my side projects are hosted on
<a href="http://git.benlarson.xyz">my git server.</a> One of ðese is
>Stack Overflow.</a
>
</p>
+ <p class="dropcap">
+ Some oðer þings I enjoy are hiking, reading, and listening to
+ music. Ðe tallest mountain I have climbed is Mount Washington (6k
+ ft) in New Hampshire. A few of my favorite auþors are Howard Pyle,
+ G. K. Chesterton, C. S. Lewis, and Roland Huntford. Some musicians I
+ like are
+ <a href="https://www.thomasbergersen.com">Thomas Bergersen,</a>
+ <a href="https://triodhoore.com">Trio Dhoore,</a> and
+ <a href="https://www.weirdal.com">"Weird Al" Yankovic.</a>
+ </p>
+ <p>
+ At any given time ðere's usually some random topic I'm idly
+ researching. Recently I've been learing about Germanic cultures and
+ languages, especially Old Norse and Old English. Ðe characters eth
+ (Ðð) and thorn (Þþ) are used in some languages to
+ represent ðe "th" sounds in "then" and "thin" respectively, and I've
+ used ðem on ðis page because ðey are cool.
+ </p>
</main>
</body>
</html>
--background-color-primary: #fff;
--background-color-header: #eee;
+ --background-image-primary: linear-gradient(45deg, #fff);
+
--text-color-primary: #333;
--text-color-links: #08f;
--text-shadow: 0 0 1px rgba(100, 100, 100, 0.7),
0px 1px rgba(255, 255, 255, 0.3);
- --separator-color: #ddd;
+ --separator-color: #00000020;
}
@media (prefers-color-scheme: dark) {
--background-color-primary: #181818;
--background-color-header: #000;
- --text-color-primary: #eee;
+ --background-image-primary: repeating-linear-gradient(
+ 45deg,
+ #0a0a0a,
+ #0a0a0a 4px,
+ #1a1a1a 4px,
+ #1a1a1a 8px
+ );
+
+ --text-color-primary: #ddd;
--text-color-links: #0af;
--text-shadow: 0 0 1px rgba(200, 200, 200, 0.6);
- --separator-color: #282828;
+ --separator-color: #ffffff18;
}
}
font-family: lingua-franca, serif;
font-size: 19pt;
background-color: var(--background-color-primary);
+ background-image: var(--background-image-primary);
color: var(--text-color-primary);
text-shadow: var(--text-shadow);
}
header {
background-color: var(--background-color-header);
padding: 6rem 3rem 3rem 3rem;
- box-shadow: 0 -1px var(--separator-color) inset;
+ box-shadow: 0 1px var(--separator-color);
}
h1 {