When I right click a file in Windows 11, there is an option for “AI actions” in the context menu. How do I remove it?
Daily Archives: March 5, 2026
I cannot figure out how to search through the list (in Column D), under Plan Name to find the unique name and then populate a list under B2 (where the result box is). What is the best way to accomplish this? Lot Home Design Title Look Plan Name 0128 Daffodil […]
I need to copy a few hundred emails from one Exchange mailbox to another. Both are through Office 365 with Godaddy and are added to my default Mac Mail client. Most e-mails are 10-20 KB in size, some are >200 KB. Nothing crazy and well below the limit set in […]
I’m building a small SOC/home‑lab and I’m struggling with the networking in VirtualBox. I’d like some advice on the correct way to wire this so that: All lab VMs live on their own subnet(s), not directly on my home LAN. Lab machines can reach the Internet through pfSense which would […]
I have a script that goes like this: #!/bin/bash # https://stackoverflow.com/a/821419 set -Eeuo pipefail _SUBJECT='Taskwarrior ghistory.daily' _TO='me@me.me' _TMP2=$(mktemp /tmp/tmp.XXXXXXXXXX.log) _TMP=$(mktemp /tmp/tmp.XXXXXXXXXX.png) _CMD="/usr/bin/unbuffer /usr/bin/task rc:${HOME}/.config/task/taskrc ghistory.daily -minut_45 end.after:tomorrow-1wk 2> '${_TMP2}'" /usr/bin/timeout 10s /usr/bin/bash -c "${_CMD}" | ${HOME}/go/bin/textimg -o ${_TMP} # tee /dev/tty | echo "${_CMD}" | mutt -a "${_TMP}" -s "$_SUBJECT" […]