Mini work-hack! I guess some would call it a life hack, but I’m not sure it helps your life so much outside your work—and if your work is your life there are other problems to address. Anyway, I’ve been using this cool thing called AutoHotkey at work, which allows you to set hotkeys to type things for you. Essentially, I press ctrl+shft+X and it works its magic.
I have one for my email, one for the date (types the current date), which is super useful for naming files since we name them with 2020-01-09 [filename] to keep things in order. I’ve got one for our work address, which makes form-filling much faster, especially when you have to fill a form in 13 times because it keeps breaking. And finally—after over 4 years of typing “Ultimate Chicken Horse” 90,000,000 times—created a hotkey for it. I probably could have saved an entire 24h of work time and a sore pinky if I had done this years ago.

All of the credit goes to my co-founder Kyler for showing me this, and of course to the people who make this software. I’m sure there’s other software that do the same thing, but AutoHotkey has been very reliable for me for years and it’s a non-profit company making an open-source software. Download it here.
At this point you may have gotten what you need from this post, which is that you should use something like this to speed up your life. If you want to know how I set up the software at Clever Endeavour, read on.
I don’t think there’s a more basic way to use this software than the way I use it, which essentially follows the first steps of the beginner tutorial. My script looks like this:
^+u:: ;Send UCH
Send, Ultimate Chicken Horse
^+a:: ;Send address
Send, 123 Sesame Street, Montreal, QC, H2E 3R9
^+x:: ;Send email
Send, rich@somewherecool.com
^+d:: ; This hotstring replaces "]d" with the current date and time via the commands below.
FormatTime, CurrentDateTime,, yyyy-MM-dd ; It will look like 2018-01-29
SendInput %CurrentDateTime%
return
There are a ton of things that you can do with this software. At one point, Kyler was using it to do something like: open a program, move the mouse some number of pixels down and to the left, click, type something in, move the cursor again, press a button, and close the program.
Hope you enjoy! If you have questions, I’m probably not the best person to ask but they have damn good forums and tons of documentation exists about the software.
❤