What is Hermes Agent? Definition, features, and how it works

https://www.hostinger.com/tutorials/what-is-hermes-agent/?utm_source=google&utm_medium=cpc&utm_id=20388283603&utm_campaign=Generic-Tutorials-DSA-t1|NT:Se|LO:USA&utm_term=&utm_content=812450858786&gad_source=1&gad_campaignid=20388283603&gbraid=0AAAAADMy-haKYlDQn_iIc8W_1omb2vhhs&gclid=Cj0KCQjw-frTBhCvARIsADv4XY6tCsblbg1QaYHb7zelLJW_CimWRfTcMQ0Y3mEVARFOc4sRrij2P4waAta0EALw_wcB

Install on Pi

https://itsfoss.com/hermes-desktop-remote-gateway/

Posted in Computing, Smart Home | Leave a comment

NPR: Photos: See the best photos from the solar eclipse : The Picture Show

https://www.npr.org/sections/the-picture-show/2026/08/12/nx-s1-5929788/photos-best-photos-from-solar-eclipse

Posted in Space | Leave a comment

Neil deGrasse Tyson explains why a Queen song by Brian May is one that scientists love

https://www.upworthy.com/neil-degrasse-tyson-explains-why-a-queen-song-by-brian-may-is-one-that-scientists-love/

Posted in Uncategorized | Leave a comment

The Times of India: A robot traveled to Great Pyramid via hidden path and stopped in front of a door that had remained sealed

https://timesofindia.indiatimes.com/technology/tech-news/a-robot-traveled-to-great-pyramid-via-hidden-path-and-stopped-in-front-of-a-door-that-had-remained-sealed-for-4500-years-heres-what-happened/articleshow/133221874.cms

Posted in Robot News | Leave a comment

Free things to do in Memphis, TN

https://www.facebook.com/share/r/1G4jqkEepn/

Posted in Uncategorized | Leave a comment

Thought of the day from Chinese philosopher Confucius: “Learning without thought is labor lost; thought without learning is perilous.”

https://spacedaily.com/m-thought-of-the-day-from-chinese-philosopher-confucius-learning-without-thought-is-labor-lost-thought-without-learning-is-perilous/

Posted in Uncategorized | Leave a comment

PBS broadcaster loses access to  70 years of TV history

https://www.tomshardware.com/software/cloud-storage/nine-pbs-loses-access-to-70-years-of-data-after-contracted-cloud-storage-vendor-goes-defunct-public-tv-channel-sues-iron-mountain-data-center-which-hosts-archival-materials-to-ensure-preservation

Posted in Computing, Networking | Leave a comment

7 simple gadgets that can make your home smarter for under $100 | ZDNET

https://www.zdnet.com/home-and-office/smart-home/simple-smart-home-gadgets-under-100/

Posted in Smart Home | Leave a comment

My Ansible Install on a PI

Useful Links:
https://geektechstuff.com/2019/06/25/installing-ansible-raspberry-pi/
https://docs.ansible.com/projects/ansible/latest/reference_appendices/config.html#ansible-configuration-settings-locations

Did the install commands:
sudo apt-get update
sudo apt-get upgrade
sudo apt install ansible

this did not create the default directory /etc/ansible or the default config files so had to do the following:
sudo mkdir -p /etc/ansible
sudo touch /etc/ansible/ansible.cfg /etc/ansible/hosts

ansible-config init –disabled > ansible.cfg
sudo mv ansible.cfg /etc/ansible/ansible.cfg

Now check the config:
ansible –version

Now edited the hosts file for ansible
sudo pico -w /etc/ansible/hosts

and put in a test group:

[test]
192.168.0.1
192.168.0.2

errored as predicted in https://geektechstuff.com/2019/06/25/installing-ansible-raspberry-pi/ but I did not like the solution of ssh keys, so I found how to add name and password to host file:
[test]
192.168.0.212

[test:vars]
ansible_user=user
ansible_password=*******

and that worked for what I want (to be able to log into switches and routers to run commands

Host 192.168.0.*
kexalgorithms +diffie-hellman-group-exchange-sha1,diffie-hellman-group14-sha1,diffie- hellman-group1-sha1
HostkeyAlgorithms +ssh-rsa
PubkeyAcceptedAlgorithms +ssh-rsa
Ciphers +aes128-cbc,3des-cbc,aes192-cbc,aes256-cbc

had to modify hosts file as follows:

[sw]
192.168.0.12
192.168.0.22
192.168.0.32
192.168.0.42

[sw:vars]
ansible_connection=network_cli
ansible_network_os=cisco.ios.ios
ansible_user=cisco
ansible_password=clasS

[router]
192.168.0.11
192.168.0.21
192.168.0.31
192.168.0.41

[router:vars]
ansible_connection-network_cli
ansible_network_os_cisco.ios.ios
ansible_user=cisco
ansible_password=class

then got error so I had to do the following:
sudo apt-get update && sudo apt-get install -y python3-paaramiko

After that I tested with the following command:
ansible sw -m ansible.netcommon.cli_command -a “command=’show ip interface brief'”

and got correct response from connected/configured switch! YAY!

other useful command for testing is:
ansible sw -m ansible.netcommon.cli_command -a “command=’show version | include Cisco IOS”

ansible sw -m ansible.netcommon.cli_command -a “command=’show version | include register”



Posted in Networking | Leave a comment

Archaeologists Lift 80-Ton Stones From the Sea, Believed to Be Part of One of the Seven Wonders of the Ancient World

https://dailygalaxy.com/2026/08/alexandria-lighthouse-stone-blocks-found/

Posted in Uncategorized | Leave a comment