Skip to content

Instantly share code, notes, and snippets.

View spencerwooo's full-sized avatar
🍊
An orange

Spencer (Shangbo Wu) spencerwooo

🍊
An orange
View GitHub Profile
@spencerwooo
spencerwooo / ohmy.ahk
Last active December 11, 2018 11:36
My autohotkey
#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.
#q:: ; Windows + Q closes active window
WinGetTitle, Title, A
PostMessage, 0x112, 0xF060,,, %Title%
return
@spencerwooo
spencerwooo / hyper.js
Last active December 4, 2018 12:37
My hyper.js details
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'canary',