I made spaghetti squash tonight – cut in half (although I’ve since learned to cut it the short way instead of the long way to get longer strands), rubbed with olive oil and salt, set for ten minutes, then roast at 375F for about 50 minutes. Once they were tender, I pulled the strands apart, added a little butter, pepper, and garlic.
Author: Lisa
Getting Cert Info From Host
An OpenSSL command to retrieve the cert chain from a host and parse out the CN and expiry info
[lisa@linux05 ~]# openssl s_client -connect 10.5.5.75:443 -servername lisa.rushworth.us -showcerts </dev/null 2>/dev/null | sed -n ‘/BEGIN CERTIFICATE/,/END CERTIFICATE/p’ | openssl x509 -noout -subject -startdate -enddate -nameopt RFC2253
subject=CN=lisa.rushworth.us
notBefore=Sep 2 03:28:34 2025 GMT
notAfter=Dec 1 03:28:33 2025 GMT











