stevegreene.me - Steve Greene's Blog by sgreene570

Example domain paragraphs

May 14, 2022 Adding & Subtracting in Vim January 26, 2019 Switching to a Thinkpad t450s May 07, 2018 Deploying Go Revel Web Apps on OpenShift November 07, 2017 Using SSL With GitHub Pages and a Custom Domain October 05, 2017 Writing Struct Methods in Golang August 19, 2017 Disabling Sleep on Lid Close When Using Systemd to Shutdown July 12, 2017 Using Jittertrap to Detect Traffic June 16, 2017 Upgrading my Thinkpad x61 June 15, 2017 Using the Nvidia mc61 Ethernet Controller with Debian May 20, 2017 Switchin

The fact that github pages and github actions are completely free is amazing. I sure hope more infrastructure becomes free or even low cost in the coming years!

Using cntrl + a and cntrl + x in vim normal mode, you can increment or decrement any integer with wrapping. For example, if you had 9 somewhere in your text file, pressing cntrl + a with your cursor over 9 in normal mode will change 9 to 10 . But wait, there’s more. Vim repetitions allow for any integer to be added to any number by running cntrl + a n times. For example, typing 15 cntrl + a will add 15 to any currently highlighted integer. This is very useful. But wait, there’s even more. Vim supports binar