Skip to content

Instantly share code, notes, and snippets.

@mistic100
mistic100 / Mediakeys.ahk
Last active May 1, 2024 00:47
Media keys shortcuts for AutoHotkey
; AutoHotkey Media Keys
^!Space::Send {Media_Play_Pause}
^!Left::Send {Media_Prev}
^!Right::Send {Media_Next}
^!NumpadMult::Send {Volume_Mute}
^!NumpadAdd::Send {Volume_Up}
^!NumpadSub::Send {Volume_Down}
@asawilliams
asawilliams / bracket_to_dot
Created June 6, 2012 23:03
chnages the format of a serialized object to use dot notation instead of brackets
// params is serialized object
params.replace(/%5B([a-zA-Z]+)%5D/g, '.$1');