So you want to put a non-websafe font on your site and you don’t like any of the Google options? You can convert any TTF into a WOFF2 for the web using a command line tool! Google maintains free software (MIT) command-line utilities to compress and decompress WOFF2 files. This will convert from TTF to …
Category Archives: Uncategorized
PHP to MySQL date formats
Here’s the PHP date format needed to create a date that is compatible with MySQL or MariaDB’s DATETIME type.
SSH Key Login
I can never remember how to do this, so here’s the simple step-by-step for logging-in from client$ to server$ Create your key client$ ssh-keygen Generating public/private rsa key pair. Enter file in which to save the key (/home/user/.ssh/id_rsa): Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in /home/user/.ssh/id_rsa. …