Tutorial: Create a Simple Diary with Autohotkey

Autohotkey is an free software utility that allows users to automate repetitive tasks. For this example, we’ll create a simple script that can be invoked by pressing a keyboard shortcut and it lets you capture thoughts from any other program.

Assuming that you have already installed Autohotkey, copy paste the following script into notepad and save the file as, say, “diary.ahk” – always use quotes for the file name else Notepad will add the .txt extension to the script.

^!A::
  ; Show the Input Box to the user_._
  inputbox, text, Diary,,,300,100

  ; _Format the time-stamp._
  current=%A_DD%/%A_MM%/%A_YYYY%, %A_Hour%:%A_Min%

  ; _Write this data to the diary.txt file._
  fileappend, %current% - %text%\`n, diary.txt
return

autohotkey guiNow double-click the above file for Autohotkey to create a simple diary application – you can trigger this application from any application in Windows by pressing the the Ctrl+Alt+A keyboard shortcut.

The entries are stored in the diary.txt file in the same directory with automatically generated time stamps.

autohotkey output

Amit Agarwal is a web geek, solo entrepreneur and loves making things on the Internet. Google recently awarded him the Google Developer Expert and Google Cloud Champion title for his work on Google Workspace and Google Apps Script.

Awards & Recognition

Google Developer Expert

Google Developer Expert

Google awarded us the Developer Expert title recogizing our work in Workspace

ProductHunt Golden Kitty

ProductHunt Golden Kitty

Our Gmail tool won the Lifehack of the Year award at ProductHunt Golden Kitty Awards

Microsoft MVP Alumni

Microsoft MVP Alumni

Microsoft awarded us the Most Valuable Professional title for 5 years in a row

Google Cloud Champion

Google Cloud Champion

Google awarded us the Champion Innovator award for technical expertise

Want to stay up to date?
Sign up for our email newsletter.

We will never send any spam emails. Promise 🫶🏻