Recently upgraded to the latest Ubuntu release and very annoyed about the built-in tracker eating up CPU like crazy. Here is an article that shows how to disable it https://t.co/dZCzTH2sGh #wtf
What are your most used commands? Mine are shown in the image, with "e" being an alias for opening an editor and "gac" for "git add . && git commit -a", so "git" is really my top command.
To view yours you can use:
history | awk '{print $2}' | sort | uniq -c | sort -rn | head
Converting a PDF to a PNG image with a white background
convert -density 96 -alpha remove -quality 100 -colorspace RGB in.pdf out.png
#imagemagick#commandline#imageprocessing
A really handy option of the tar command that I wasn't aware of is --exclude-vcs-ignores, which excludes files and directories ignored from version control, e. g. what you have in your .gitignorehttps://www.gnu.org/software/tar/manual/html_node/exclude.html
Open source software tip of the day: The detox utility renames files to make them easier to work with. It removes spaces and other such annoyances
https://t.co/VUat6dfyaG