Skip to content

Instantly share code, notes, and snippets.

View QuinnCiccoretti's full-sized avatar

Quinn Ciccoretti QuinnCiccoretti

View GitHub Profile
@crosstyan
crosstyan / komorebic.ahk
Last active September 11, 2024 09:54
komorebic.ahk for AutoHotkey v2
#SingleInstance Force
WorkspaceNumber := 9
ArrayFromZero(Length){
temp := []
Loop Length {
temp.Push(A_Index-1)
}
return temp
@jwebcat
jwebcat / gist:5122366
Last active August 25, 2024 12:59 — forked from lemenkov/gist:1674929
Properly download from github using wget and curl
wget --no-check-certificate --content-disposition https://github.com/joyent/node/tarball/v0.7.1
# --no-check-cerftificate was necessary for me to have wget not puke about https
curl -LJO https://github.com/joyent/node/tarball/v0.7.1