Those who try to play videos on a fresh installed Ubuntu are likely to be confronted with the problem of missing codecs. The good news is that, even though these are not present by default, they are still available and can be easily installed with apt or apt-get. The codecs are part of the ubuntu.restricted-extras…
Month: May 2022
VS-StudioCode
I have recently begun using Visual Studio Code for development on linux. It is a fine Editor, and it seems as there is an extension for almost every development or dev-ops related task. Although I am far from being an expert and for the most part use only a very small part of the available…
linux: find -exec
Find is a fine command of itself, however what elevates find to the next level is its ability to execute other commands. The argument for that is -exec. -exec consists of 3 parts: command arguments delimiter The syntax is: find <path/to/search> [search expression] -exec <command> <arguments> <delimiter> The command This is just any command that…