Perihelion Blog

Recursive Queries in MySQL 8

Sometimes you’ll encounter the need to perform recursive queries (queries that refer to themselves) and it was somewhat frustrating to find workarounds in previous versions of MySQL. MySQL 8, however, …

Configuring SSH for GitHub on Ubuntu

If you don’t want to add your password every time you do a git fetch or git pull cd ssh-keygen -t rsa cat .ssh/id_rsa.pub  cd /<path>/<to>/<repo>/ git remote show origin git remote set-url …