website

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

things-ive-read.html (3422B)


      1 <!DOCTYPE html>
      2 <html lang="en"><head>
      3 <meta http-equiv="content-type" content="text/html; charset=UTF-8">
      4   <meta charset="UTF-8">
      5   <title>Andrew Laack</title>
      6   <style>
      7 	.spacer{
      8 		height: 50px;
      9 	}
     10     .pgp-container {
     11       text-align: center;
     12       padding: 20px;
     13       margin-top: 20px;
     14       background-color: #ffffff;
     15       width: 100%;
     16       max-width: 900px;
     17       margin-left: auto;
     18       margin-right: auto;
     19     }
     20 
     21     .pgp-key {
     22       white-space: pre-wrap;
     23       word-wrap: break-word;
     24     }
     25     body {
     26       font-family:'Lucida Console', monospace;
     27       font-size: 18px;
     28       color: #111;
     29       background-color: white;
     30       max-width: 1280px;
     31       margin: 0 auto;
     32       padding: 0 50px;
     33       box-sizing: border-box;
     34     }
     35     .landing {
     36       display: flex;
     37       flex-direction: column;
     38       align-items: center;
     39       justify-content: center;
     40       min-height:100vh; min-height:100dvh;
     41       text-align: center;
     42     }
     43     svg { width: 100%; height: auto; }
     44     .svg-container { width: 100%; max-width: 400px; display: inline-block; }
     45     .separator { letter-spacing: -9px; }
     46     hr { border: none; height: 2px; background-color: lightgrey; width: 100%; margin: 30px auto; }
     47     table { border-collapse: collapse; text-align: center; width: 100%; }
     48     td {
     49       padding: 5px 20px;
     50       border: 1px solid #dddddd;
     51     }
     52     .quiet, .links-container a { color: inherit; }
     53     .links-container { font-size: 24px; margin: 20px; }
     54     .links-container a { text-decoration: none; margin: 0 10px; }
     55     .product-photo { display: block; max-height: 640px; width: 100%; margin: 0 auto; }
     56     .faqtable dt { margin-bottom: 0.75em; font-style: italic; }
     57     .faqtable dd { margin-left: 0; margin-bottom: 2em; }
     58 
     59 h1 {
     60 	font-family:'Lucida Console', monospace;
     61   	font-size: 2.25rem; 
     62   	margin-bottom: 20px;
     63   	text-align: left;
     64 }
     65 
     66 /* Styling for the navigation container */
     67 .navigation {
     68   	display: flex;
     69   	justify-content: left;
     70 	align-items: center;
     71 	gap: 15px;
     72   	font-size: 1.25rem; 
     73 	font-family:'Lucida Console', monospace;
     74 }
     75 
     76 /* Styling for the links */
     77 .navigation a {
     78   text-decoration: none;
     79   color: #333; /* Dark gray for a clean, modern look */
     80   transition: color 0.3s;
     81 }
     82 
     83 .navigation a:hover {
     84   color: #007bff; 
     85 }
     86 
     87 a {
     88   color: #007bff;
     89   text-decoration: none; 
     90 }
     91 
     92 a:hover {
     93   color: #0056b3; 
     94   text-decoration: underline; 
     95 }
     96 
     97 
     98 /* Styling for the separator */
     99 .separator {
    100   color: #ccc; /* Lighter gray for separator */
    101   font-weight: normal;
    102   margin: 0 5px;
    103 }
    104   </style>
    105 
    106 <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." />
    107 </head>
    108 <body>
    109 
    110 
    111 	<h1>
    112 		Things I've Read That Influenced Me
    113 	</h1>
    114     <ul>
    115         <li>
    116             <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
    117         </li>
    118         <ul>
    119             <li>
    120                 There are so many curiosities in computing if you are persistent enough.
    121             </li>
    122         </ul>
    123 
    124     <li>
    125         <a href="https://chrismorgan.info/no-query-strings">No Query Strings </a> - Read: 2026-05
    126         <ul>
    127             <li>
    128                 Call people out on their nonsense.
    129             </li>
    130         </ul>
    131 
    132 
    133 
    134 
    135     </li>
    136     </ul>
    137 </body>
    138 </html>