Skip to content

Instantly share code, notes, and snippets.

@sosmii
sosmii / mac-like-keybinds.ahk
Last active August 6, 2020 12:27
imitates emacs keybind in windows
!Left::send {Home}
!+Left::send +{Home}
!Right::send {End}
!+Right::send +{End}
!Up::send {PgUp}
!+Up::send +{PgUp}
!Down::send {PgDn}
@sosmii
sosmii / sleep.js
Last active August 8, 2019 09:19
a small util that let you sleep with async/await
module.exports = async milliSecond => {
return new Promise(resolve => setTimeout(resolve, milliSecond));
}