diff options
author | Adam T. Carpenter <atc@53hor.net> | 2020-11-29 08:53:22 -0500 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2020-11-29 08:53:22 -0500 |
commit | aa6ade8c1bc51bc8f379442bb00710438d1385fd (patch) | |
tree | d0a99de1f2ceec24c6fe15d61661f96a33a05d3b | |
parent | daa21252743400c83f9d46c7fdefc00058553d7f (diff) | |
download | 53hor-aa6ade8c1bc51bc8f379442bb00710438d1385fd.tar.xz 53hor-aa6ade8c1bc51bc8f379442bb00710438d1385fd.zip |
organized posts, added profile, started makefile
-rw-r--r-- | Makefile | 24 | ||||
-rw-r--r-- | about.html | 11 | ||||
-rw-r--r-- | contact.html | 5 | ||||
-rw-r--r-- | includes/stylesheet.css | 2 | ||||
-rw-r--r-- | index.html | 60 | ||||
-rw-r--r-- | posts/computing/2019-04-06-why-have-a-website-in-2019.html (renamed from computing/2019-04-06-why-have-a-website-in-2019.html) | 0 | ||||
-rw-r--r-- | posts/life/2019-07-21-dancing-the-shag-and-the-new-lion-king.html (renamed from life/2019-07-21-dancing-the-shag-and-the-new-lion-king.html) | 0 | ||||
-rw-r--r-- | posts/life/2019-07-28-i-finally-found-a-drink-i-like.html (renamed from life/2019-07-28-i-finally-found-a-drink-i-like.html) | 0 | ||||
-rw-r--r-- | posts/life/2019-08-11-marrying-my-best-friend.html (renamed from life/2019-08-11-marrying-my-best-friend.html) | 0 | ||||
-rw-r--r-- | posts/life/2020-04-10-the-obligatory-covid-19-post.html (renamed from life/2020-04-10-the-obligatory-covid-19-post.html) | 0 | ||||
-rw-r--r-- | posts/life/2020-04-10-wedding-photos-are-here.html (renamed from life/2020-04-10-wedding-photos-are-here.html) | 0 | ||||
-rw-r--r-- | posts/programming/2020-07-11-why-computer-science-at-w-m.html (renamed from programming/2020-07-11-why-computer-science-at-w-m.html) | 0 | ||||
-rw-r--r-- | posts/programming/2020-11-24-i-like-hyper-more-than-actix.html (renamed from programming/2020-11-24-i-like-hyper-more-than-actix.html) | 0 | ||||
-rw-r--r-- | posts/unix/2019-07-04-the-best-way-to-transfer-gopro-files-with-linux.html (renamed from unix/2019-07-04-the-best-way-to-transfer-gopro-files-with-linux.html) | 0 | ||||
-rw-r--r-- | posts/unix/2019-09-28-my-preferred-method-for-data-recovery.html (renamed from unix/2019-09-28-my-preferred-method-for-data-recovery.html) | 0 | ||||
-rw-r--r-- | posts/unix/2020-07-26-now-this-is-a-minimal-install.html (renamed from unix/2020-07-26-now-this-is-a-minimal-install.html) | 0 | ||||
-rw-r--r-- | posts/unix/dear-god-why-are-pdf-editors-such-an-ordeal.html (renamed from unix/dear-god-why-are-pdf-editors-such-an-ordeal.html) | 0 | ||||
-rw-r--r-- | posts/wheels/2019-06-07-how-to-start-and-drive-a-hudson-hornet.html (renamed from wheels/2019-06-07-how-to-start-and-drive-a-hudson-hornet.html) | 0 | ||||
-rw-r--r-- | posts/wheels/2019-07-04-yabs-yet-another-bad-shop.html (renamed from wheels/2019-07-04-yabs-yet-another-bad-shop.html) | 0 | ||||
-rw-r--r-- | posts/wheels/2019-08-30-keep-right-except-to-pass.html (renamed from wheels/2019-08-30-keep-right-except-to-pass.html) | 0 | ||||
-rw-r--r-- | profile/adamcarpenter.card | 24 | ||||
-rw-r--r-- | profile/adamcarpenter.html | 26 | ||||
-rw-r--r-- | profile/index.html | 0 | ||||
-rw-r--r-- | rss.xml | 117 |
24 files changed, 142 insertions, 127 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6a26510 --- /dev/null +++ b/Makefile @@ -0,0 +1,24 @@ +# simple date to RFC date: +# date -j -f "%Y-%m-%d" -R 2020-10-29 + +all: + echo done. + +serve: + python3.7 -m http.server 3000 + +resume: + echo unimplemented! + +post: + @read -p "Title: " TITLE; \ + read -p "Category: " CATEGORY; \ + SHORT_DATE=`date +"%Y-%m-%d"`; \ + LONG_DATE=`date -R`; \ + mkdir -p posts/$$category; \ + FILENAME=posts/$$category/`date +"%Y-%m-%d-"``echo $$title | tr "[:upper:]" "[:lower:]" | tr "[:blank:]" -`.html; \ + $$EDITOR $$FILENAME; \ + sed -i .bak '5 a\ + <item> <title>$$TITLE</title> <link>https://www.53hor.net/$$FILENAME</link> <guid>https://www.53hor.net/$$FILENAME</guid> <pubDate>$$LONG_DATE</pubDate> </item> + ' rss.xml + @@ -60,6 +60,17 @@ <article> <h1>About</h1> + + <p>My name is Adam Carpenter. On some sites I'm 53hornet.</p> + <p> + <img src="https://nextcloud.53hor.net/s/JybL4rc3AQZb3Hk/preview" /> + </p> + + <p> + I am a professional computer programmer, amateur Hudson driver, + mechanic, and caretaker, and a UNIX/FreeBSD enthusiast. I also see + myself as a loving husband and doting puppy parent. + </p> </article> </body> </html> diff --git a/contact.html b/contact.html index d6e00f2..386aeba 100644 --- a/contact.html +++ b/contact.html @@ -62,8 +62,9 @@ <h1>Contact Me</h1> <p> - You can write to mail at 53hor dot net. I also exist on the following - sites but may or may not use them that often. + You can write to <a href="mailto:atc@53hor.net">atc@53hor.net</a>. I + also exist on the following sites but may or may not use them that + often. </p> <ul> diff --git a/includes/stylesheet.css b/includes/stylesheet.css index 07cf18f..5024583 100644 --- a/includes/stylesheet.css +++ b/includes/stylesheet.css @@ -109,4 +109,6 @@ p img { max-width: 25em; height: auto; border-radius: var(--box-radius); + border-left: var(--box-border); + border-right: var(--box-border); } @@ -71,70 +71,78 @@ <ul> <li> - <a href="/programming/2020-07-11-why-computer-science-at-w-m.html" - >Why Computer Science at William and Mary? (2020-07-11)</a + <a href="/posts/unix/2020-07-26-now-this-is-a-minimal-install.html" + >Now This is a Minimal Install! <code>Sun, 26 Jul 2020</code></a > </li> <li> - <a href="/unix/2020-07-26-now-this-is-a-minimal-install.html" - >Now This is a Minimal Install! (2020-07-26)</a + <a + href="/posts/programming/2020-07-11-why-computer-science-at-w-m.html" + >Why Computer Science at William and Mary? + <code>Sat, 11 Jul 2020</code></a > </li> <li> - <a href="/life/2020-04-10-the-obligatory-covid-19-post.html" - >Obligatory COVID-19 Post (2020-04-10)</a + <a href="/posts/life/2020-04-10-the-obligatory-covid-19-post.html" + >Obligatory COVID-19 Post <code>Fri, 10 Apr 2020 </code></a > </li> <li> - <a href="/life/2020-04-10-wedding-photos-are-here.html" - >Wedding Photo Debacle (2020-04-10)</a + <a href="/posts/life/2020-04-10-wedding-photos-are-here.html" + >Wedding Photo Debacle <code>Fri, 10 Apr 2020</code></a > </li> <li> - <a href="/unix/2019-09-28-my-preferred-method-for-data-recovery.html" - >This is How I Do Data Recovery (2019-09-28)</a + <a + href="/posts/unix/2019-09-28-my-preferred-method-for-data-recovery.html" + >This is How I Do Data Recovery <code>Sat, 28 Sep 2019</code></a > </li> <li> - <a href="/wheels/2019-08-30-keep-right-except-to-pass.html" - >Right Lane is for Passing, Not Cruising (2019-08-30)</a + <a href="/posts/wheels/2019-08-30-keep-right-except-to-pass.html" + >Right Lane is for Passing, Not Cruising + <code>Fri, 30 Aug 2019 </code></a > </li> <li> - <a href="/life/2019-08-11-marrying-my-best-friend.html" - >I Married My Best Friend! (2019-08-11)</a + <a href="/posts/life/2019-08-11-marrying-my-best-friend.html" + >I Married My Best Friend! <code>Sun, 11 Aug 2019 </code></a > </li> <li> - <a href="/life/2019-07-28-i-finally-found-a-drink-i-like.html" - >I Finally Found a Drink I Like (2019-07-28)</a + <a href="/posts/life/2019-07-28-i-finally-found-a-drink-i-like.html" + >I Finally Found a Drink I Like <code> Sun, 28 Jul 2019 </code></a > </li> <li> - <a href="/life/2019-07-21-dancing-the-shag-and-the-new-lion-king.html" - >Dancing the Shag and The [New] Lion King (2019-07-21)</a + <a + href="/posts/life/2019-07-21-dancing-the-shag-and-the-new-lion-king.html" + >Dancing the Shag and The [New] Lion King + <code> Sun, 21 Jul 2019 </code></a > </li> <li> - <a href="/wheels/2019-07-04-yabs-yet-another-bad-shop.html" - >YABS: Yet Another Bad Shop (2019-07-04)</a + <a href="/posts/wheels/2019-07-04-yabs-yet-another-bad-shop.html" + >YABS: Yet Another Bad Shop <code>Thu, 04 Jul 2019 </code></a > </li> <li> <a - href="/unix/2019-07-04-the-best-way-to-transfer-gopro-files-with-linux.html" - >Offloading GoPro Footage the Easy Way (2019-07-04)</a + href="/posts/unix/2019-07-04-the-best-way-to-transfer-gopro-files-with-linux.html" + >Offloading GoPro Footage the Easy Way + <code>Thu, 04 Jul 2019 </code></a > </li> <li> <a - href="/wheels/2019-06-07-how-to-start-and-drive-a-hudson-hornet.html" - >How to Start and Drive a Hudson Hornet (2019-06-07)</a + href="/posts/wheels/2019-06-07-how-to-start-and-drive-a-hudson-hornet.html" + >How to Start and Drive a Hudson Hornet + <code>Fri, 07 Jun 2019 </code></a > </li> <li> - <a href="/computing/2019-04-06-why-have-a-website-in-2019.html" - >Why Have a Web Site in 2019? (2019-04-06)</a + <a href="/posts/computing/2019-04-06-why-have-a-website-in-2019.html" + >Why Have a Web Site in 2019? <code>Sat, 06 Apr 2019 </code></a > </li> </ul> diff --git a/computing/2019-04-06-why-have-a-website-in-2019.html b/posts/computing/2019-04-06-why-have-a-website-in-2019.html index f8520d4..f8520d4 100644 --- a/computing/2019-04-06-why-have-a-website-in-2019.html +++ b/posts/computing/2019-04-06-why-have-a-website-in-2019.html diff --git a/life/2019-07-21-dancing-the-shag-and-the-new-lion-king.html b/posts/life/2019-07-21-dancing-the-shag-and-the-new-lion-king.html index 692a132..692a132 100644 --- a/life/2019-07-21-dancing-the-shag-and-the-new-lion-king.html +++ b/posts/life/2019-07-21-dancing-the-shag-and-the-new-lion-king.html diff --git a/life/2019-07-28-i-finally-found-a-drink-i-like.html b/posts/life/2019-07-28-i-finally-found-a-drink-i-like.html index 447c454..447c454 100644 --- a/life/2019-07-28-i-finally-found-a-drink-i-like.html +++ b/posts/life/2019-07-28-i-finally-found-a-drink-i-like.html diff --git a/life/2019-08-11-marrying-my-best-friend.html b/posts/life/2019-08-11-marrying-my-best-friend.html index ab348e7..ab348e7 100644 --- a/life/2019-08-11-marrying-my-best-friend.html +++ b/posts/life/2019-08-11-marrying-my-best-friend.html diff --git a/life/2020-04-10-the-obligatory-covid-19-post.html b/posts/life/2020-04-10-the-obligatory-covid-19-post.html index aa948f6..aa948f6 100644 --- a/life/2020-04-10-the-obligatory-covid-19-post.html +++ b/posts/life/2020-04-10-the-obligatory-covid-19-post.html diff --git a/life/2020-04-10-wedding-photos-are-here.html b/posts/life/2020-04-10-wedding-photos-are-here.html index 01fc955..01fc955 100644 --- a/life/2020-04-10-wedding-photos-are-here.html +++ b/posts/life/2020-04-10-wedding-photos-are-here.html diff --git a/programming/2020-07-11-why-computer-science-at-w-m.html b/posts/programming/2020-07-11-why-computer-science-at-w-m.html index 9d98c9c..9d98c9c 100644 --- a/programming/2020-07-11-why-computer-science-at-w-m.html +++ b/posts/programming/2020-07-11-why-computer-science-at-w-m.html diff --git a/programming/2020-11-24-i-like-hyper-more-than-actix.html b/posts/programming/2020-11-24-i-like-hyper-more-than-actix.html index 33c5d9e..33c5d9e 100644 --- a/programming/2020-11-24-i-like-hyper-more-than-actix.html +++ b/posts/programming/2020-11-24-i-like-hyper-more-than-actix.html diff --git a/unix/2019-07-04-the-best-way-to-transfer-gopro-files-with-linux.html b/posts/unix/2019-07-04-the-best-way-to-transfer-gopro-files-with-linux.html index 15c776f..15c776f 100644 --- a/unix/2019-07-04-the-best-way-to-transfer-gopro-files-with-linux.html +++ b/posts/unix/2019-07-04-the-best-way-to-transfer-gopro-files-with-linux.html diff --git a/unix/2019-09-28-my-preferred-method-for-data-recovery.html b/posts/unix/2019-09-28-my-preferred-method-for-data-recovery.html index b63ba5a..b63ba5a 100644 --- a/unix/2019-09-28-my-preferred-method-for-data-recovery.html +++ b/posts/unix/2019-09-28-my-preferred-method-for-data-recovery.html diff --git a/unix/2020-07-26-now-this-is-a-minimal-install.html b/posts/unix/2020-07-26-now-this-is-a-minimal-install.html index 07a398a..07a398a 100644 --- a/unix/2020-07-26-now-this-is-a-minimal-install.html +++ b/posts/unix/2020-07-26-now-this-is-a-minimal-install.html diff --git a/unix/dear-god-why-are-pdf-editors-such-an-ordeal.html b/posts/unix/dear-god-why-are-pdf-editors-such-an-ordeal.html index 9adc833..9adc833 100644 --- a/unix/dear-god-why-are-pdf-editors-such-an-ordeal.html +++ b/posts/unix/dear-god-why-are-pdf-editors-such-an-ordeal.html diff --git a/wheels/2019-06-07-how-to-start-and-drive-a-hudson-hornet.html b/posts/wheels/2019-06-07-how-to-start-and-drive-a-hudson-hornet.html index e60e5f4..e60e5f4 100644 --- a/wheels/2019-06-07-how-to-start-and-drive-a-hudson-hornet.html +++ b/posts/wheels/2019-06-07-how-to-start-and-drive-a-hudson-hornet.html diff --git a/wheels/2019-07-04-yabs-yet-another-bad-shop.html b/posts/wheels/2019-07-04-yabs-yet-another-bad-shop.html index e1dcaa2..e1dcaa2 100644 --- a/wheels/2019-07-04-yabs-yet-another-bad-shop.html +++ b/posts/wheels/2019-07-04-yabs-yet-another-bad-shop.html diff --git a/wheels/2019-08-30-keep-right-except-to-pass.html b/posts/wheels/2019-08-30-keep-right-except-to-pass.html index 61f329f..61f329f 100644 --- a/wheels/2019-08-30-keep-right-except-to-pass.html +++ b/posts/wheels/2019-08-30-keep-right-except-to-pass.html diff --git a/profile/adamcarpenter.card b/profile/adamcarpenter.card new file mode 100644 index 0000000..2fad5ad --- /dev/null +++ b/profile/adamcarpenter.card @@ -0,0 +1,24 @@ +╓─────────────────────────────────────────────────────────────────────────────╖ +║ ,---. | ,---. | ║ +║ |---|,---|,---.,-.-. | ,---.,---.,---.,---.,---.|--- ,---.,---. ║ +║ | || |,---|| | | | ,---|| | ||---'| || |---'| ║ +║ ` '`---'`---^` ' ' `---'`---^` |---'`---'` '`---'`---'` ║ +║ | +║ +║ +║ - Professional Computer Programmer & Software Developer +║ - Experience with process automation, web applications, and IT operations. ║ +║ +║ +║ https://www.53hor.net +║ +║ +║ +║ +║ +║ +║ +║ +║ +║ +╙─────────────────────────────────────────────────────────────────────────────╜ diff --git a/profile/adamcarpenter.html b/profile/adamcarpenter.html new file mode 100644 index 0000000..3b88c22 --- /dev/null +++ b/profile/adamcarpenter.html @@ -0,0 +1,26 @@ +<!DOCTYPE html> +<html> + <head> </head> + <body> + <h1>Adam T. Carpenter</h1> + www.53hor.net | atc@53hor.net + + <h2>Summary</h2> + <h2>Education</h2> + <h2>Experience</h2> + <ul> + <li> + Technology Support Specialist at The College of William and Mary (Feb. + 2015 to May 2018) + </li> + <li> + Application Developer at Automatic Data Processing (Jun. 2018 - Present) + </li> + <li> + Freelance Web Application Designer and Developer (Jul. 2019 - Present) + </li> + </ul> + + <h2>Skills</h2> + </body> +</html> diff --git a/profile/index.html b/profile/index.html new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/profile/index.html @@ -1,99 +1,18 @@ -<?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE xml> -<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> - <channel> - <title>53hornet's Feed</title> - <link>https://www.53hor.net</link> - <atom:link href="https://www.53hor.net/rss.xml" rel="self" type="appitemcation/rss+xml" /> - <description>The World Wide Web pages of Adam Carpenter</description> - <image> - <url>https://www.53hor.net/includes/logo_diag.png</url> - <title>53hornet's Feed</title> - <link>https://www.53hor.net</link> - </image> - <item> - <title>Welcometh!</title> - <link>https://www.53hor.net</link> - <guid>https://www.53hor.net</guid> - <description>ho! thanketh thee f'r subscribing to mine own rss feedeth</description> - </item> - <item> - <title>Now This is a Minimal Install!</title> - <pubDate>Sun, 26 Jul 2020 00:00:00 -0500</pubDate> - <link>https://www.53hor.net/unix/2020-07-26-now-this-is-a-minimal-install.html</link> - <guid>https://www.53hor.net/unix/2020-07-26-now-this-is-a-minimal-install.html</guid> - </item> - <item> - <title>Why Computer Science at William and Mary?</title> - <pubDate>Sat, 11 Jul 2020 00:00:00 -0500</pubDate> - <link>https://www.53hor.net/programming/2020-07-11-why-computer-science-at-w-m.html</link> - <guid>https://www.53hor.net/programming/2020-07-11-why-computer-science-at-w-m.html</guid> - </item> - <item> - <title>Obligatory COVID-19 Post</title> - <pubDate>Fri, 10 Apr 2020 00:00:00 -0500</pubDate> - <link>https://www.53hor.net/life/2020-04-10-the-obligatory-covid-19-post.html</link> - <guid>https://www.53hor.net/life/2020-04-10-the-obligatory-covid-19-post.html</guid> - </item> - <item> - <title>Wedding Photos Are Here!</title> - <pubDate>Fri, 10 Apr 2020 00:00:00 -0500</pubDate> - <link>https://www.53hor.net/life/2020-04-10-wedding-photos-are-here.html</link> - <guid>https://www.53hor.net/life/2020-04-10-wedding-photos-are-here.html</guid> - </item> - <item> - <title>This is How I Do Data Recovery</title> - <pubDate>Sat, 28 Sep 2019 00:00:00 -0500</pubDate> - <link>https://www.53hor.net/unix/2019-09-28-my-preferred-method-for-data-recovery.html</link> - <guid>https://www.53hor.net/unix/2019-09-28-my-preferred-method-for-data-recovery.html</guid> - </item> - <item> - <title>Right Lane Is For Passing, Not Cruising</title> - <pubDate>Fri, 30 Aug 2019 00:00:00 -0500</pubDate> - <link>https://www.53hor.net/wheels/2019-08-30-keep-right-except-to-pass.html</link> - <guid>https://www.53hor.net/wheels/2019-08-30-keep-right-except-to-pass.html</guid> - </item> - <item> - <title>I Married My Best Friend!</title> - <pubDate>Sun, 11 Aug 2019 00:00:00 -0500</pubDate> - <link>https://www.53hor.net/life/2019-08-11-marrying-my-best-friend.html</link> - <guid>https://www.53hor.net/life/2019-08-11-marrying-my-best-friend.html</guid> - </item> - <item> - <title>I Finally Found a Drink I Like</title> - <pubDate>Sun, 28 Jul 2019 00:00:00 -0500</pubDate> - <link>https://www.53hor.net/life/2019-07-28-i-finally-found-a-drink-i-like.html</link> - <guid>https://www.53hor.net/life/2019-07-28-i-finally-found-a-drink-i-like.html</guid> - </item> - <item> - <title>Dancing the Shag and The [New] Lion King</title> - <pubDate>Sun, 21 Jul 2019 00:00:00 -0500</pubDate> - <link>https://www.53hor.net/life/2019-07-21-dancing-the-shag-and-the-new-lion-king.html</link> - <guid>https://www.53hor.net/life/2019-07-21-dancing-the-shag-and-the-new-lion-king.html</guid> - </item> - <item> - <title>YABS: Yet Another Bad Shop</title> - <pubDate>Thu, 04 Jul 2019 00:00:00 -0500</pubDate> - <link>https://www.53hor.net/wheels/2019-07-04-yabs-yet-another-bad-shop.html</link> - <guid>https://www.53hor.net/wheels/2019-07-04-yabs-yet-another-bad-shop.html</guid> - </item> - <item> - <title>Offloading GoPro Footage the Easy Way</title> - <pubDate>Thu, 04 Jul 2019 00:00:00 -0500</pubDate> - <link>https://www.53hor.net/unix/2019-07-04-the-best-way-to-transfer-gopro-files-with-linux.html</link> - <guid>https://www.53hor.net/unix/2019-07-04-the-best-way-to-transfer-gopro-files-with-linux.html</guid> - </item> - <item> - <title>How to Start and Drive a Hudson Hornet</title> - <pubDate>Fri, 07 Jun 2019 00:00:00 -0500</pubDate> - <link>https://www.53hor.net/wheels/2019-06-07-how-to-start-and-drive-a-hudson-hornet.html</link> - <guid>https://www.53hor.net/wheels/2019-06-07-how-to-start-and-drive-a-hudson-hornet.html</guid> - </item> - <item> - <title>Why Have a Web Site in 2019?</title> - <pubDate>Sat, 06 Apr 2019 00:00:00 -0500</pubDate> - <link>https://www.53hor.net/computing/2019-04-06-why-have-a-website-in-2019.html</link> - <guid>https://www.53hor.net/computing/2019-04-06-why-have-a-website-in-2019.html</guid> - </item> - </channel> -</rss> +<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE xml> <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> +<channel> <title>53hornet's Feed</title> <link>https://www.53hor.net</link> <atom:link href="https://www.53hor.net/rss.xml" rel="self" type="appitemcation/rss+xml" /> <description>The World Wide Web pages of Adam Carpenter</description> +<image> <url>https://www.53hor.net/includes/logo_diag.png</url> <title>53hornet's Feed</title> <link>https://www.53hor.net</link> </image> +<item> <title>Welcometh!</title> <link>https://www.53hor.net</link> <guid>https://www.53hor.net</guid> <description>ho! thanketh thee f'r subscribing to mine own rss feedeth</description> </item> +<item> <title>Now This is a Minimal Install!</title> <pubDate>Sun, 26 Jul 2020 00:00:00 -0500</pubDate> <link>https://www.53hor.net/unix/2020-07-26-now-this-is-a-minimal-install.html</link> <guid>https://www.53hor.net/unix/2020-07-26-now-this-is-a-minimal-install.html</guid> </item> +<item> <title>Why Computer Science at William and Mary?</title> <pubDate>Sat, 11 Jul 2020 00:00:00 -0500</pubDate> <link>https://www.53hor.net/programming/2020-07-11-why-computer-science-at-w-m.html</link> <guid>https://www.53hor.net/programming/2020-07-11-why-computer-science-at-w-m.html</guid> </item> +<item> <title>Obligatory COVID-19 Post</title> <pubDate>Fri, 10 Apr 2020 00:00:00 -0500</pubDate> <link>https://www.53hor.net/life/2020-04-10-the-obligatory-covid-19-post.html</link> <guid>https://www.53hor.net/life/2020-04-10-the-obligatory-covid-19-post.html</guid> </item> +<item> <title>Wedding Photos Are Here!</title> <pubDate>Fri, 10 Apr 2020 00:00:00 -0500</pubDate> <link>https://www.53hor.net/life/2020-04-10-wedding-photos-are-here.html</link> <guid>https://www.53hor.net/life/2020-04-10-wedding-photos-are-here.html</guid> </item> +<item> <title>This is How I Do Data Recovery</title> <pubDate>Sat, 28 Sep 2019 00:00:00 -0500</pubDate> <link>https://www.53hor.net/unix/2019-09-28-my-preferred-method-for-data-recovery.html</link> <guid>https://www.53hor.net/unix/2019-09-28-my-preferred-method-for-data-recovery.html</guid> </item> +<item> <title>Right Lane Is For Passing, Not Cruising</title> <pubDate>Fri, 30 Aug 2019 00:00:00 -0500</pubDate> <link>https://www.53hor.net/wheels/2019-08-30-keep-right-except-to-pass.html</link> <guid>https://www.53hor.net/wheels/2019-08-30-keep-right-except-to-pass.html</guid> </item> +<item> <title>I Married My Best Friend!</title> <pubDate>Sun, 11 Aug 2019 00:00:00 -0500</pubDate> <link>https://www.53hor.net/life/2019-08-11-marrying-my-best-friend.html</link> <guid>https://www.53hor.net/life/2019-08-11-marrying-my-best-friend.html</guid> </item> +<item> <title>I Finally Found a Drink I Like</title> <pubDate>Sun, 28 Jul 2019 00:00:00 -0500</pubDate> <link>https://www.53hor.net/life/2019-07-28-i-finally-found-a-drink-i-like.html</link> <guid>https://www.53hor.net/life/2019-07-28-i-finally-found-a-drink-i-like.html</guid> </item> +<item> <title>Dancing the Shag and The [New] Lion King</title> <pubDate>Sun, 21 Jul 2019 00:00:00 -0500</pubDate> <link>https://www.53hor.net/life/2019-07-21-dancing-the-shag-and-the-new-lion-king.html</link> <guid>https://www.53hor.net/life/2019-07-21-dancing-the-shag-and-the-new-lion-king.html</guid> </item> +<item> <title>YABS: Yet Another Bad Shop</title> <pubDate>Thu, 04 Jul 2019 00:00:00 -0500</pubDate> <link>https://www.53hor.net/wheels/2019-07-04-yabs-yet-another-bad-shop.html</link> <guid>https://www.53hor.net/wheels/2019-07-04-yabs-yet-another-bad-shop.html</guid> </item> +<item> <title>Offloading GoPro Footage the Easy Way</title> <pubDate>Thu, 04 Jul 2019 00:00:00 -0500</pubDate> <link>https://www.53hor.net/unix/2019-07-04-the-best-way-to-transfer-gopro-files-with-linux.html</link> <guid>https://www.53hor.net/unix/2019-07-04-the-best-way-to-transfer-gopro-files-with-linux.html</guid> </item> +<item> <title>How to Start and Drive a Hudson Hornet</title> <pubDate>Fri, 07 Jun 2019 00:00:00 -0500</pubDate> <link>https://www.53hor.net/wheels/2019-06-07-how-to-start-and-drive-a-hudson-hornet.html</link> <guid>https://www.53hor.net/wheels/2019-06-07-how-to-start-and-drive-a-hudson-hornet.html</guid> </item> +<item> <title>Why Have a Web Site in 2019?</title> <pubDate>Sat, 06 Apr 2019 00:00:00 -0500</pubDate> <link>https://www.53hor.net/computing/2019-04-06-why-have-a-website-in-2019.html</link> <guid>https://www.53hor.net/computing/2019-04-06-why-have-a-website-in-2019.html</guid> </item> +</channel> </rss> |