Select the efi volume
dispart
list vol
sel vol 0
assign letter=M
exit
Scan windows
[Unit] | |
Description=some service | |
After=network.target | |
StartLimitIntervalSec=10 | |
[Service] | |
Type=simple | |
Restart=always | |
RestartSec=5 | |
User=someuser |
$SimplePairs = @( | |
0x3a, 0x1d # CapsLock > L Ctrl | |
0x1d, 0x3a # L Ctrl > CapsLock | |
) | |
$ExtendedPairs = @( | |
# 0x5d, 0xe0, 0x1d, 0xe0 # ContextMenu > R Ctrl | |
) | |
$ByteCount = 2 * $SimplePairs.Length + $ExtendedPairs.Length + 16 | |
$Remap = New-Object -TypeName byte[] -ArgumentList $ByteCount | |
$Remap[8] = $SimplePairs.Length/2 + $ExtendedPairs.Length/4 + 1 |
du -d 1 -h .| sort -h -r |
Select the efi volume
dispart
list vol
sel vol 0
assign letter=M
exit
Scan windows
Interesting case of figuring single label name on my desktop.
I have an openwrt homelab server at 192.168.1.200
with dnsmasq
installed.
DNS records set:
Hostnames IP address
homelab 192.168.1.200
homelab.lan 192.168.1.200
sudo adduser newusername
sudo usermod -aG sudo newusername
sudo visudo
# Add the line: newusername ALL=(ALL) NOPASSWD:ALL
sudo setcap cap_net_raw+p /usr/bin/arp-scan
# get notifications, look for the ID of the spam notification
gh api notifications
# mark that spam notification as read
gh api -X DELETE notifications/threads/$NOTIFICATION_ID
# jq delete all
gh api notifications | jq -r '.[] | select(.unread == true) | .id' | xargs -I {} gh api -X DELETE "notifications/threads/{}"
https://github.com/orgs/community/discussions/174310#discussioncomment-14474599
https://moonrepo.dev/docs/proto/commands/activate#caveats
Tool versions configured in the global ~/.proto/.prototools are not included by default. Pass --config-mode all during activation to include them
# example ~/some-space
> proto pin -c local python 3.13.5
# in fish config or current shell
proto activate fish | source
# check python shims
> echo $PATH