AutoHotKey SQL Formatting Help

The script I posted back in (holy crap) 2012 has gotten several updates, and when I made the latest today, I decided to repost it, in case I need the updated version again later. It binds to Win+, and when invoked presents these options for manipulating whatever text is currently in the clipboard: 1: Sort/De-Dupe …

Words at the Center of a Horizontal Line

Neat CSS trick I hammered out today when I needed to create an “Or” between two sections of a web page: Bla bla bla Or bleh bleh bleh Minimal markup, works in IE8 (ugh, work), Chrome & Firefox. Code… <p class=”hrtext”>Or</p> <style> .hrtext {   display: block;   overflow: hidden;   text-align: center; } .hrtext:before, …