blob: 3485b158159f32d906523afa73b4a6fb8cf8277f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
<?php
if ("/now" == $_SERVER['REQUEST_URI']) {
printf('<a href="https://nownownow.com/about"><h1>Now</h1></a>');
} else {
printf('<h2>Now</h2>');
}
?>
<p>
What am I up to now?
</p>
<h3>Work</h3>
<ul>
<li>Refactor, refactor, refactor</li>
<li>Spurring attention toward technical debt remediation</li>
<li>Lunch and learns on network security and probing, parallel processing</li>
</ul>
<h3>Hobbies</h3>
<ul>
<li>New brake calipers and tires for Ol' Blue!</li>
<li>New DnD campaign!</li>
<li>Writing lots of fiction, esp. short stories</li>
</ul>
<h3>Life</h3>
<ul>
<li>Dolphin-watching on the James River via Jetski (happy Clementine!)</li>
<li>Praying for owls to show up in my owl house</li>
<li>Hitting 30, #oof</li>
</ul>
<p>
<em>Last updated 2025-10-21</em>
</p>
|