-
Notifications
You must be signed in to change notification settings - Fork 0
/
class_prologues_hotkeys.ahk
84 lines (69 loc) · 1.95 KB
/
class_prologues_hotkeys.ahk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#SingleInstance force
run, class_prologues_tooltip.exe
outputDate(){
FormatTime, currentDateTime,, dd MMM yyyy
sendinput %currentDateTime% {enter}
}
:*:comm::
send, COMM 2110 – X01 : Interpersonal Communication {enter}
send, Andrew Ahlstrom {enter}
outputDate()
return
:*:networks::
:*:cs2960::
send, CS 2960 – 601 : Computer Networks II {enter}
send, Andrew Ahlstrom {enter}
outputDate()
return
:*:ethics::
:*:cs305::
send, CS 305G – 001 : Global, Social & Ethical Issues in Computer Science {enter}
send, Andrew Ahlstrom {enter}
outputDate()
return
:*:CS3410::
send, CS 3410 Human Factors in Software Development {enter}
send, Andrew Ahlstrom {enter}
outputDate()
return
:*:CS4230::
send, CS 4230 Software Testing and Quality Engineering {enter}
send, Andrew Ahlstrom {enter}
outputDate()
return
:*:architecture::
:*:cs4380::
send, CS 4380 – 001 : Advanced High Performance Computer Architecture {enter}
send, Andrew Ahlstrom {enter}
outputDate()
return
:*:CS4400::
send, CS 4400 Software Engineering II {enter}
send, Andrew Ahlstrom {enter}
outputDate()
return
:*:CS4450::
send, CS 4450 Analysis of Programming Languages {enter}
send, Andrew Ahlstrom {enter}
outputDate()
return
:*:software engineering::
:*:cs4550::
send, CS 4550 – 001 : Software Engineering III {enter}
send, Andrew Ahlstrom {enter}
outputDate()
return
:*:senior review::
:*:cs496::
send, CS 496R – 001 : Senior Review {enter}
send, Andrew Ahlstrom {enter}
outputDate()
return
$!q::
process, close, class_prologues_tooltip.exe
exitApp
return