Skip to content

Instantly share code, notes, and snippets.

View rodnolan's full-sized avatar

Rod Nolan rodnolan

  • Aquent
  • Brampton, ON, Canada
View GitHub Profile
@rodnolan
rodnolan / autohotkey.ahk
Created June 3, 2013 11:55
my autohotkey script, mainly for overcoming deficiencies in Windows Explorer
; IMPORTANT INFO ABOUT GETTING STARTED: Lines that start with a
; semicolon, such as this one, are comments. They are not executed.
; This script has a special filename and path because it is automatically
; launched when you run the program directly. Also, any text file whose
; name ends in .ahk is associated with the program, which means that it
; can be launched simply by double-clicking it. You can have as many .ahk
; files as you want, located in any folder. You can also run more than
; one .ahk file simultaneously and each will get its own tray icon.
@rodnolan
rodnolan / antHelpers.reg
Last active December 14, 2015 03:29
antHelpers.reg adds three options to my context menu in Windows Explorer which I use to speed the task of packaging and deploying BlackBerry WebWorks applications. This works in conjunction with the Ant Build Script (https://github.com/rodnolan/Ant-Build-Script and/or https://github.com/blackberry/BB10-WebWorks-Community-Samples/tree/master/Ant-…
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\*\shell]
[HKEY_CLASSES_ROOT\*\shell\BB build]
[HKEY_CLASSES_ROOT\*\shell\BB build\command]
@="cmd.exe /K \"ant\""
[HKEY_CLASSES_ROOT\*\shell\BB editProps]