Encode videos with Docker & Handbrake

Looking for a cheap solution to encode videos I created a docker container and an encoding script to automate this. Dockerfile: FROM ubuntu RUN /bin/bash -c ‘apt update && apt -y install handbrake-cli cpulimit psmisc’ COPY . / RUN /bin/bash…

KDE Plasma 5.14 is out

New in Plasma 5.14 New Features There’s a new Display Configuration widget for screen management which is useful for presentations. The Audio Volume widget now has a built in speaker test feature moved from Phonon settings. The Network widget now…

Solve authentication issue on mariadb

When installing Mariadb on Ubuntu I always have the problem of root  password not set and authentication plugin set to unix_socket. The  commands below solve the issues. # change to root sudo -s # stop mariadb server systemctl stop mariadb…