AutoHotKey
Over the weekend, I spent some time exploring the potential of AutoHotKey . This programme was not designed specifically for architects, but it has useful applications in the field nevertheless. Essentially, this is a programming language that lets users code their own keyboard shortcuts. The AHK file has to be open for it to work, but by appending a script file to the startup folder (accessable on windows by hitting Windows+R and entering "shall:startup" into the resulting pop-up window), you can open and run it in the background whenever your computer starts up. I've only spent a couple of hours playing around with it, but already, I've created a few cool shortcuts I'd like to share. Let's start with a super simple one: #q:: { Send "benjaminjamesrowley@gmail.com" } Let's go line by line: Declare a keyboard combination. I've chosen Windows (indicated by the #) + Q. The double colon indic...