I’m using a simple bash script to copy, via rsync, a series of files and directories from a USB stick to a MacBook. The code is (partially) as follows: #!/bin/bash declare -A BACKUP_INFOS BACKUP_INFOS=( [/Users/<username>/Documents]="/Volumes/CORSAIR128/.abook /Volumes/CORSAIR128/.vimrc /Volumes/CORSAIR128/argomentare /Volumes/CORSAIR128/articoli /Volumes/CORSAIR128/bibliografie" ) for dest_dir in "${!BACKUP_INFOS[@]}" do mkdir -p "$dest_dir" src="${BACKUP_INFOS[$dest_dir]}" rsync […]
Daily Archives: September 8, 2025
I’ve been trying to get this driver to work on my k3s cluster for around 2 days now without any luck. I followed the repo guide and several others only but can’t it to work. My synology-csi-node pods just won’t come up, they keep throwing and error Error: connection.go:154] Connecting […]
We used PHY VSC8572 on our custom board(based on video kit) in SGMII mode together with PolarFire SOC under Linux. We are able to boot Linux. We observe media detection in linux (link up, link down, 10/100/1000). We are able to setup the media loopback – far end loopback – […]
I have a set of images saved to my computer that were captured from a trail camera. The trail camera was out for multiple days, and I have over 2,000 photos captured from it. These photos are broken up into individual folders based on the day they were taken (e.g […]
There are a number of HDMI to USB Capture cards for Windows, Linux & Mac systems. They also recommend use of apps like OSB Studio to view and capture the contents. In a few cases I notice HDMI to USB capture cards listed with Support HDCP (*version*) in their specifications. […]
I have a very simple “kiosk” style Windows 11 Pro setup where I disabled the loading of the desktop environment (explorer.exe) at (auto) login, and run a startup AHK script to disable pretty much every possible shortcut key. So it’s not a real kiosk in the strictest sense, just operates […]