• Skip to main content
  • Skip to footer

Notes to Self

  • Aviation Weather from NOAA Plugin
    • KZZV
    • Bad Shortcode
    • Simple Metar
  • Meetings

Mark Chouinard / February 1, 2020

Change Vim Cursor in Different Modes

To change the shape of the cursor in different modes, you can add the following into your .vimrc:

Mark Chouinard / December 18, 2019

How I Enabled HTTP/2 with Apache on Ubuntu 18.04

Switch from mod_php to FPM: sudo apt install php7.4-fpm sudo a2enmod proxy_fcgi sudo a2enconf php7.4-fpm sudo a2dismod php7.4 sudo a2dismod mpm_prefork sudo a2enmod mpm_event sudo systemctl restart apache2 Enable mod_http2: sudo a2enmod http2 sudo systemctl restart apache2 Add this to /etc/apache2/apache2.conf to enable HTTP/2: Protocols h2 http/1.1 Verify at https://http2.pro/

Mark Chouinard / December 16, 2019

Modify Headers of Specific Post

Mark Chouinard / September 3, 2019

Swift – Convert json to plist

plutil -convert xml1 in.json -o out.plist xml1 – x-ray mike lima 1 From SO

Mark Chouinard / June 9, 2017

Fix Redirect Loop After Genesis Upgrade

Add remove_action( ‘genesis_upgrade’, ‘genesis_upgrade_redirect’ ); to functions.php, reload admin without ?page=genesis-upgraded in URL, clear cache, re-save Genesis settings, remove added code.

Mark Chouinard / May 13, 2016

Nudging Myself Toward Better Git Commit Messages

In an effort to improve my Git commit messages I’ve decided to employ a commit message template. This starts with a file in my Home directory vi ~/.git-commit-msg-template Three simple lines beginning with # so if I ignore them, so does Git. # What this commit does # Why this commit is being made # […]

« Previous Page
Next Page »

Footer

Copyright © 2025 · machouinard · Log in