From fff5ea8e63b999960bc6ec5a3d9b933ea9cb2f91 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sat, 1 Nov 2025 16:25:58 +0200 Subject: Update content for html --- about/resources.html | 196 ++++++++++----------- .../2025-11-02-perl-new-features-and-foostats.html | 9 +- gemfeed/atom.xml | 11 +- index.html | 2 +- uptime-stats.html | 2 +- 5 files changed, 105 insertions(+), 115 deletions(-) diff --git a/about/resources.html b/about/resources.html index ad43c402..eda7c4ff 100644 --- a/about/resources.html +++ b/about/resources.html @@ -50,111 +50,111 @@ In random order:


Technical references



I didn't read them from the beginning to the end, but I am using them to look up things. The books are in random order:


Self-development and soft-skills books



In random order:


Here are notes of mine for some of the books

@@ -163,22 +163,22 @@ Some of these were in-person with exams; others were online learning lectures only. In random order:


Technical guides



@@ -197,20 +197,20 @@

Podcasts I liked



@@ -218,39 +218,39 @@

Newsletters I like



This is a mix of tech and non-tech newsletters I am subscribed to. In random order:


Magazines I like(d)



This is a mix of tech I like(d). I may not be a current subscriber, but now and then, I buy an issue. In random order:


Formal education



diff --git a/gemfeed/2025-11-02-perl-new-features-and-foostats.html b/gemfeed/2025-11-02-perl-new-features-and-foostats.html index a6dbf75e..b41f40fe 100644 --- a/gemfeed/2025-11-02-perl-new-features-and-foostats.html +++ b/gemfeed/2025-11-02-perl-new-features-and-foostats.html @@ -282,7 +282,6 @@ http://www.gnu.org/software/src-highlite -->
use v5.38;
 
 print "Hello, world!\n";    # old way
-
 say "Hello, world!";        # new way
 

@@ -298,13 +297,10 @@ http://www.lorenzobettini.it http://www.gnu.org/software/src-highlite -->
use v5.38;
 
-sub process_lines {
-    my @lines = @_;
-
+sub process_lines (@lines) {
     my sub trim ($str) {
         $str =~ s/^\s+|\s+$//gr;
     }
-
     return [ map { trim($_) } @lines ];
 }
 
@@ -424,8 +420,7 @@ http://www.lorenzobettini.it
 http://www.gnu.org/software/src-highlite -->
 
use feature qw(defer);
 
-sub parse_log_file {
-    my ($path) = @_;
+sub parse_log_file ($path) {
     open my $fh, '<', $path or die "Cannot open $path: $!";
     defer { close $fh };
 
diff --git a/gemfeed/atom.xml b/gemfeed/atom.xml
index f00451af..f7539dd9 100644
--- a/gemfeed/atom.xml
+++ b/gemfeed/atom.xml
@@ -1,6 +1,6 @@
 
 
-    2025-11-01T16:18:57+02:00
+    2025-11-01T16:25:00+02:00
     foo.zone feed
     To be in the .zone!
     
@@ -289,7 +289,6 @@ http://www.gnu.org/software/src-highlite -->
 
use v5.38;
 
 print "Hello, world!\n";    # old way
-
 say "Hello, world!";        # new way
 

@@ -305,13 +304,10 @@ http://www.lorenzobettini.it http://www.gnu.org/software/src-highlite -->
use v5.38;
 
-sub process_lines {
-    my @lines = @_;
-
+sub process_lines (@lines) {
     my sub trim ($str) {
         $str =~ s/^\s+|\s+$//gr;
     }
-
     return [ map { trim($_) } @lines ];
 }
 
@@ -431,8 +427,7 @@ http://www.lorenzobettini.it
 http://www.gnu.org/software/src-highlite -->
 
use feature qw(defer);
 
-sub parse_log_file {
-    my ($path) = @_;
+sub parse_log_file ($path) {
     open my $fh, '<', $path or die "Cannot open $path: $!";
     defer { close $fh };
 
diff --git a/index.html b/index.html
index fd1eebbe..99acb530 100644
--- a/index.html
+++ b/index.html
@@ -13,7 +13,7 @@
 

Hello!



-This site was generated at 2025-11-01T16:18:57+02:00 by Gemtexter
+This site was generated at 2025-11-01T16:25:00+02:00 by Gemtexter

Welcome to the foo.zone!

diff --git a/uptime-stats.html b/uptime-stats.html index de2e6dc0..674aeaf6 100644 --- a/uptime-stats.html +++ b/uptime-stats.html @@ -13,7 +13,7 @@

My machine uptime stats



-This site was last updated at 2025-11-01T16:18:57+02:00
+This site was last updated at 2025-11-01T16:25:00+02:00

The following stats were collected via uptimed on all of my personal computers over many years and the output was generated by guprecords, the global uptime records stats analyser of mine.

-- cgit v1.2.3