From 68fb297cb0d7beb5db22478b12112891ddccf496 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Sun, 3 Aug 2025 14:41:52 -0700 Subject: [PATCH 1/4] Reference a new Book Recommendation page on the Lists page. --- pages/lists.php | 59 ++++++++++++++++++++++++++++++++++++------------- 1 file changed, 44 insertions(+), 15 deletions(-) diff --git a/pages/lists.php b/pages/lists.php index ec87496..6352be1 100755 --- a/pages/lists.php +++ b/pages/lists.php @@ -12,25 +12,54 @@

Lists

-
-

Gear

-

Apps

- - -
+ +
+

+ + Books + +

+

- Gear that I find critical to my life. + TBD/TODO: Berk page description goes here!

- -
- - -

- Apps that I use frequently on a degoogled Android phone. + Another line fortesting. +

+

+ Yet another line fortesting. +

+
+
+ + +
+

+ + Apps (Repo TBD/TODO) + +

+
+

+ Obtaiumiun config for apps that I use on a degoogled Android phone. +

+
+
+ + +
+

+ + Gear + +

+
+

+ Important gear I recommend.

-- 2.49.1 From 70774266104ba335f0f8d1f0494d44f65bedc55f Mon Sep 17 00:00:00 2001 From: Hyperling Date: Tue, 12 Aug 2025 05:46:07 -0700 Subject: [PATCH 2/4] Change to just use one page after all. --- pages/{lists.php => resources.php} | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) rename pages/{lists.php => resources.php} (73%) diff --git a/pages/lists.php b/pages/resources.php similarity index 73% rename from pages/lists.php rename to pages/resources.php index 6352be1..832f821 100755 --- a/pages/lists.php +++ b/pages/resources.php @@ -4,26 +4,23 @@ -->
-

Lists

+

Lists of Resources

- - Books - + Books

- TBD/TODO: Berk page description goes here! + TBD/TODO: Berk list description goes here!

Another line fortesting. @@ -31,6 +28,17 @@

Yet another line fortesting.

+
    +
  • + The Peaceful Warrior +
  • +
  • + TBD: Name of book on healing through breathing and posture. +
  • +
  • + The Untethered Soul / Living Untethered +
  • +
@@ -52,10 +60,7 @@

- - Gear - + Gear

-- 2.49.1 From 98e52e68331c56e27609ba79796d633c5b6a26ae Mon Sep 17 00:00:00 2001 From: Hyperling Date: Fri, 19 Sep 2025 13:07:26 -0700 Subject: [PATCH 3/4] Add SEO type tags. --- pages/helpers/header.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pages/helpers/header.php b/pages/helpers/header.php index 4f2350b..1d57e9b 100755 --- a/pages/helpers/header.php +++ b/pages/helpers/header.php @@ -29,4 +29,17 @@ + + + + + + + + + + + + + -- 2.49.1 From e5542ed8bb4ab72a534e6bd659929c822e34727e Mon Sep 17 00:00:00 2001 From: Hyperling Date: Fri, 19 Sep 2025 13:21:36 -0700 Subject: [PATCH 4/4] Fix typo, --w was not getting recognized. --- run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.sh b/run.sh index 2790b0c..d3a145b 100755 --- a/run.sh +++ b/run.sh @@ -103,7 +103,7 @@ find files/photos/ -name "*".html -print -delete log "Sleeping for '$count' while waiting for $photos_uri to come up." sleep $count log "Checking if $photos_uri is available." - http_code="`curl --silent --fail --w '\n%{http_code}' localhost$photos_uri | tail -n 1`" + http_code="`curl --silent --fail -w '\n%{http_code}' localhost$photos_uri | tail -n 1`" log "Check for $photos_uri responded with '$http_code'." if (( $count >= 10 )); then log "Giving up on loading $photos_uri after '$count' attempts." -- 2.49.1