https://www.youtube.com/watch?v=9sh0VHVadqw
https://lichess.org/eUFkLwbk#15
https://duckduckgo.com/?q=CSS+only+multi-section+single-page+website+example+page
https://john-doe.neocities.org/
mount | grep ' / '
shall show the mount options, it prints this for my Debian WSL2 install:
/dev/sdc on / type ext4 (rw,relatime,discard,errors=remount-ro,data=ordered)
where relatime is a faster but less accurate version of atime…, WSL1 mounts may return noatime, where atime should be equal to mtime (not really), but it will still be modified with touch command. By default touch will update mtime and atime.
find . -maxdepth 1 -type f -amin -5
may return list of files accessed in last 5 minutes from current dir only.
ls -luathr
will return dir listing sorted by access time, newer last.
# simulate what would be deleted
find ./ -maxdepth 1 -type f -amin +60 -exec echo Would delete {} +
# carefull here, actual DELETION
# find . -maxdepth 1 -type f -amin +60 -delete
will delete files older that an hour from current dir.
We could mark file age by using specific touch, before atime (or mtime) related code is called, for example:
touch $file.wav && play $file.wav
https://www.youtube.com/watch?v=f8FhrqHHcNQ
Nick Irving is New York Times bestselling author and former Sergeant and Sniper with the Special Operations unit, 75th Ranger Regiment 3rd Ranger battalion. Nicknamed “The Reaper”.
strings -a -e b marilyn.aep | grep -i mar
# or interactive fuzzy finder:
strings -a -e b marilyn.aep | fzf
may return
maraRGB-kameraprofilRGB-Profil f
maraRGB-kameraprofilRGB-Profil f
MARILYN
strings -a -e b marilyn.aep | grep DIN | sort | uniq
may return
DINOffcPro
DINOffcPro-Medi
DINPro-Light
DINPro-Medium
DINPro-Regular
strings
-a or --all
-e b = encoding type is 16bit Unicode
The rest should be clear from examples.
Note: This will not find or display any multibyte chararacter correctly for unknown reasons.