Dump MySQL query to CSV less than 1 minute read mysql -e "select * from table;" -h HOST --port=PORT -u USER -p DATABASE > mydumpfile.csv Twitter Facebook LinkedIn Previous Next
Flask vs Django 2 minute read Introduction Flask and Django are two popular web development frameworks for Python. While they share many similarities, there are some key differences betwe...
Barrier: control multiple computers with one keyboard mouse less than 1 minute read Barrier is an open-source kvm software that allows you to control multiple computers with one keyboard and mouse.
Removing files older than 30 days less than 1 minute read find /path/to/ -type f -mtime +30 -name '*.mp4' -execdir rm -- '{}' \;