permissions
Permalink: https://wizardzines.com/comics/permissions/
Since https://github.com/RustScan/RustScan claims to be fast I tried first a trivial SYN scan to my file server:
sudo nmap -sS -p- haaparousku
I got the list of ports in about one second (bit more or less). Then I tried rustscan and got bored enough to finally SIGINT it:
rustscan --addresses haaparousku
Not sure I get the improvement here… Also command-line is not “tactile :-)
Something definitely to improve in Rust command-line apps is not to think arguments as an object tree that you feed into clap crate. That’s just lazy.
Instead a better metaphor for a great command-line interface is something like a game pad that you can “play” easily. That’s why nmap has been relevant for decades.
Glue on pizza is apparently not enough, how about bogus AI mushroom foraging books
https://www.reddit.com/r/LegalAdviceUK/comments/1etko9h/family_poisoned_after_using_aigenerated_mushroom/
Registration for @linuxplumbersconf reopened
'"This year there was a huge demand to attend #LinuxPlumbers Conference in person and at last we were able to add more places and reopen the registration."'
https://lpc.events/blog/current/index.php/2024/08/16/registration-is-now-reopened/
Hallituksen halu poistaa työntekijöitä maasta on outo https://www.hs.fi/mielipide/art-2000010631106.html
Outo, typerä, paha, valitse adjektiivisi. Taantumuskopla on sitä kaikkea.
It would be sometimes useful if #QEMU w/o libvirt could interpret domain XML to some level.
Like for instance if you want to CI kernel, that would be one use case for this.
For the sake of example, here’s the QEMU command-line that I use as starting point for any kernel testing/CI:
qemu-system-x86_64 \
-M pc \
-monitor unix:monitor.sock,server,nowait \
-serial unix:serial.sock,server,wait \
-drive file=disk.img,if=virtio,format=raw \
-net nic,model=virtio \
-net user,hostfwd=tcp::10022-:22 \
-rtc base=localtime \
-nographic \
-chardev socket,id=chrtpm,path=${SWTPM_DIR}/swtpm-sock \
-tpmdev emulator,id=tpm0,chardev=chrtpm \
-device ${QEMU_TPM_DEVICE},tpmdev=tpm0 \
-bios /usr/share/edk2/ovmf/OVMF_CODE.fd \
"$@"