Attached you will find diagram of my home network + tracert. Please review before reading below, to help with context. I have two routers. One has my NAS server and regular daily traffic. The second router is setup with NordVPN with killswitch. The second router has all traffic going through […]
Monthly Archives: June 2023
I am building a chart that contains the total amount of rows and accounts assigned to a user in Excel 2016. The first issue is easy and I resolved it with a COUNTIF function, however the second part I’m not certain of the best way to do it… I wish […]
In order to prevent sleep, I have a script: tmux new-session -d -s "cafe" "caffeinate sleep infinity" This would run caffeinate forever in the background and not take up a terminal window that I must keep open. It worked for weeks but something seems to have changed and I’m not […]
I have a serial interface connected via USB. I have a simple white true loop checking every 15 minutes if /dev/ttyUSB0 exists (purpose is to execute some code if its not there): if [ -e /dev/ttyUSB0 ]; then It works well; however, it appears that if the device ever disconnects […]
I’m trying to be able to determine on the command line (so that I can do it from my scripting language) the drive letter for the last mounted drive on Windows 11. Up until recently, I have used the command wmic logicaldisk get name and then extracted the drive letter […]