edit LOGIN home sitemapThis is starting to look better
Tue Jun 23 22:36:26 2026
Strange issue mangled my certs today. Looks like last time it updated httpd before today was on May 5th. Today it updated again. I restart httpd and it failed because Apache was trying to bind to port 443 which is occupied by my Go https server. Renaming the ssl.conf (reinstalled by default I think) fixed it, so I could get the correct http and https servers running on their respective ports. Hmm, adding a snippet for date, lol! No more --date-- in my new posts for me.

PS Okay, added date but it's more like return localtime() since I don't save these posts in a table like I should. New todo!


March 23rd, 2026
Today's chat with claude.ai about an error loading a *.gltf file in pyglet (a python gui module)


March 14th, 2026
I added a list of 100 Python exercises on gohacker.info after I switched out of Data Analytics and started the Google IT Automation with Python course instead.

Python seems very easy. I'm nearing the end of the 2nd module of the first part in the course. Also studied one of the builtin library functions this morning, configparser. It's a very nifty way to read/write ini files.

I will finish marking up the list as I push my solutions to my github repo


March 8th, 2026
Added a list of Go exercises that Google's Gemini generated for me on list
I mentioned to Gemini that I had done one of the fifth groups tasks and it gave this as a followup: followup


Dec 8th, 2025

Had to go and edit some parens out of image file names so my Perl/Tk image viewer could load them properly. Took me a minute or ten longer than it should have - very old code lol, like 2011'ish

for i in `ls *.jpg|grep "("`; 
  do  
  F=`echo $i | sed "sx(xx"|sed "sx)xx"`; 
  echo $i $F; 
  mv $i $F; 
  done


November 13th, 2025

Moved ssh access from FedoraServer zone to Trusted zone using firewall-cmd.

Allowed http/https access too.

Noted that outage on our internet the other day had changed my IP address.

Fixed sub auth{} in cms3.pm to allow posting from the new IP.

firewall-cmd --zone=Trusted --add-zone=192.168.1.20
firewall-cmd --zone=Trusted --add-zone=192.168.1.20 --permanent
firewall-cmd --zone=Trusted --add-service=ssh
firewall-cmd --zone=Trusted --add-service=ssh --permanent
firewall-cmd --zone=Trusted --add-service=http 
firewall-cmd --zone=Trusted --add-service=https 
firewall-cmd --zone=Trusted --add-service=http --permanent
firewall-cmd --zone=Trusted --add-service=https --permanent
firewall-cmd --zone=FedoraServer --remove-service=ssh
firewall-cmd --zone=FedoraServer --remove-service=ssh --permanent
# logged in a new terminal to verify. # note: my actual home IP isn't .1.20 =)


November 9th, 2025
Upgraded my nanode from F41 to F43 today. Dumped the 4 old domains and switched to new ones.
I kept the pages from zpoc.soon.it and made them load for c0m.or-g.net instead. A few edits in valid_domains and a lot of cleanup of non-active pages (over 600 of them) from the pages table. A few edits on pages that had links to the other domain fixed it.

I did miss the tar -cvf of my webfiles somehow so i need to see where i left my various .ico files. Otherwise, the upgrade and domain switch went very very well with just a psql import of the db dump. My boundless table survived intact, although i think i'm missing the htmx.js file now...

--date--
--post


--date--


comment bodycomment_timeuser
this is a comment2026-03-08 11:26:33.105917+00admin