website

Personal website
git clone git://git.laack.co/website.git
Log | Files | Refs

commit edcfa0019abe739ec1ce00d2c7942b47eae68ebb
parent 3c0867120b7864592f3d167767967ea32fefc0da
Author: Andrew Laack <andrew@laack.co>
Date:   Tue, 15 Sep 2026 16:58:33 -0500

added a few blog posts I found interesting

Diffstat:
Athings-ive-read.html | 138+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 138 insertions(+), 0 deletions(-)

diff --git a/things-ive-read.html b/things-ive-read.html @@ -0,0 +1,138 @@ +<!DOCTYPE html> +<html lang="en"><head> +<meta http-equiv="content-type" content="text/html; charset=UTF-8"> + <meta charset="UTF-8"> + <title>Andrew Laack</title> + <style> + .spacer{ + height: 50px; + } + .pgp-container { + text-align: center; + padding: 20px; + margin-top: 20px; + background-color: #ffffff; + width: 100%; + max-width: 900px; + margin-left: auto; + margin-right: auto; + } + + .pgp-key { + white-space: pre-wrap; + word-wrap: break-word; + } + body { + font-family:'Lucida Console', monospace; + font-size: 18px; + color: #111; + background-color: white; + max-width: 1280px; + margin: 0 auto; + padding: 0 50px; + box-sizing: border-box; + } + .landing { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + min-height:100vh; min-height:100dvh; + text-align: center; + } + svg { width: 100%; height: auto; } + .svg-container { width: 100%; max-width: 400px; display: inline-block; } + .separator { letter-spacing: -9px; } + hr { border: none; height: 2px; background-color: lightgrey; width: 100%; margin: 30px auto; } + table { border-collapse: collapse; text-align: center; width: 100%; } + td { + padding: 5px 20px; + border: 1px solid #dddddd; + } + .quiet, .links-container a { color: inherit; } + .links-container { font-size: 24px; margin: 20px; } + .links-container a { text-decoration: none; margin: 0 10px; } + .product-photo { display: block; max-height: 640px; width: 100%; margin: 0 auto; } + .faqtable dt { margin-bottom: 0.75em; font-style: italic; } + .faqtable dd { margin-left: 0; margin-bottom: 2em; } + +h1 { + font-family:'Lucida Console', monospace; + font-size: 2.25rem; + margin-bottom: 20px; + text-align: left; +} + +/* Styling for the navigation container */ +.navigation { + display: flex; + justify-content: left; + align-items: center; + gap: 15px; + font-size: 1.25rem; + font-family:'Lucida Console', monospace; +} + +/* Styling for the links */ +.navigation a { + text-decoration: none; + color: #333; /* Dark gray for a clean, modern look */ + transition: color 0.3s; +} + +.navigation a:hover { + color: #007bff; +} + +a { + color: #007bff; + text-decoration: none; +} + +a:hover { + color: #0056b3; + text-decoration: underline; +} + + +/* Styling for the separator */ +.separator { + color: #ccc; /* Lighter gray for separator */ + font-weight: normal; + margin: 0 5px; +} + </style> + +<meta name="description" content="Andrew Laack's personal website showcasing research, machine learning projects, work experience, and studies in computer science. Explore code repositories, book recommendations, and find my contact information." /> +</head> +<body> + + + <h1> + Things I've Read That Influenced Me + </h1> + <ul> + <li> + <a href="https://purplesyringa.moe/blog/log-is-non-monotonic-in-php-and-lua/">log is non-monotonic in PHP and Lua</a> - Read: 2026-09 + </li> + <ul> + <li> + There are so many curiosities in computing if you are persistent enough. + </li> + </ul> + + <li> + <a href="https://chrismorgan.info/no-query-strings">No Query Strings </a> - Read: 2026-05 + <ul> + <li> + Call people out on their nonsense. + </li> + </ul> + + + + + </li> + </ul> +</body> +</html>