Daily Shaarli

All links of one day in a single page.

April 27, 2021

The Hitchhiker’s Guide to Online Anonymity | How I learned to start worrying and love privacy

An incredibly thorough guide to online anonymity (and/or privacy) from laptop and phone handling through encryption to password and identity management.

Linux Hardening Guide | Madaidan's Insecurities

Extensive hardening guide from kernel, firewalls, swap, to userspace and more, covering pretty much all eventualities

linux - How to recursively find and list the latest modified files in a directory with subdirectories and times - Stack Overflow
thumbnail

Most flexible solution to the problem should be some variation of:

find $DIRECTORY -type f -print0 | xargs -0 stat --format '%Y :%y %n' | sort -nr | cut -d: -f2- | head