Skip to content

Instantly share code, notes, and snippets.

View ericchase's full-sized avatar

ericchase ericchase

  • Houston, TX
  • 08:58 (UTC -05:00)
View GitHub Profile

Create a new repository on the command line

echo "# test" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/ericchase/test.git
git push -u origin main
#Requires AutoHotkey >=2.0 <2.1
#SingleInstance Force
#UseHook true
DetectHiddenWindows true
FileEncoding "UTF-8"
SendMode "Event" ; Event mode intersperses delays between actions. Needed for games.
SetTitleMatchMode 3 ; A window's title must exactly match WinTitle to be a match.
Thread "Interrupt", 15 ; Sets the priority or interruptibility of threads.