Skip to content

Instantly share code, notes, and snippets.

@ChaunceyHoover
Created July 17, 2018 00:35
Show Gist options
  • Save ChaunceyHoover/afb46685621a047a13ec131a8a4faa10 to your computer and use it in GitHub Desktop.
Save ChaunceyHoover/afb46685621a047a13ec131a8a4faa10 to your computer and use it in GitHub Desktop.
Meme-Speak™ - rEPeaTEdLy turNs caPS LOCK oN and ofF sO yoU Can SPeAK LiKE ReaL memERs
; Meme-Speak™ - rEPeaTEdLy turNs caPS LOCK oN and ofF sO yoU Can SPeAK LiKE ReaL memERs
Repeat = False
; Turns meme-speak on
F1::
Repeat := True
while (Repeat) {
SetCapsLockState, on
Sleep, 10
SetCapsLockState, off
Sleep, 10
}
; Turns meme-speak off
F2::
Repeat := False
SetCapsLockState, off
@ChaunceyHoover
Copy link
Author

Uses AutoHotkey to execute. You can run it as a script or compile it to an executable; works fine either way.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment