Some are applicable to any APT-based distro.
To remove translations,
$ cd /etc ; echo "Acquire::Languages { \"none\"; };" > apt/apt.conf.d/99translation ; cd - >/dev/null
To automatically update system essentials,
$ apt install unattended-upgrades ; dpkg-reconfigure --priority=low unattended-upgrades
apt tool $ apt list --installed 2>/dev/null | grep installed
stderr to /dev/null. dpkg tool $ dpkg --get-selections | sed -n 's/^\([^\t]*\)\t.*$/\1/ p'
apt (assuming output was redirected into a file called temp.txt), run $ cat temp.txt | sed -n 's|^\(.*\)/.*$|\1| p'