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 …
Author Archives: jpbroome
Needed: Automatic screenshots on window changes
I can’t find windows software anywhere that will attach to a window/process, and automatically take a screenshot of that window (or child windows) every x seconds or whenever a change is detected. If the attached-to app is running and a progress bar in it updates, or a confirmation popup appears, or the text in that …
Continue reading “Needed: Automatic screenshots on window changes”
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, …