Read more here https://opensource.com/article/19/5/python-3-default-mac
Saturday, July 1, 2023
Tuesday, June 27, 2023
SSH returns: no matching host key type found. Their offer: ssh-dss
Fix is
ssh -oHostKeyAlgorithms=+ssh-dss root@192.168.8.109
Read more here https://askubuntu.com/questions/836048/ssh-returns-no-matching-host-key-type-found-their-offer-ssh-dss
Wednesday, June 21, 2023
format decimal and doubles in Java to desired decimal places
To format numbers in java, simple
String.format("%.2f", 132.2372342)
Subscribe to:
Posts (Atom)