Skip to content

Instantly share code, notes, and snippets.

View devvyn's full-sized avatar

Devvyn Murphy devvyn

View GitHub Profile
@emory
emory / matias-like one-handed qwerty for karabiner.xml
Created August 27, 2015 00:20
A Karabiner config to mimic the half-handed QWERTY behavior and layout of the Matias one-handed keyboards.
<root>
<item>
<!-- a brief discussion about this config was originally posted here https://groups.google.com/d/topic/osx-karabiner/4TdHyfImc-k I lifted it and changed the Name -->
<name>Matias Style One-handed Half-QWERTY</name>
<identifier>Half-QWERTY</identifier>
<autogen>
__HoldingKeyToKey__, KeyCode::SPACE, KeyCode::SPACE, KeyCode::VK_NONE, KeyCode::VK_CONFIG_SYNC_KEYDOWNUP_notsave_flip_hands
</autogen>
</item>
@willurd
willurd / web-servers.md
Last active April 26, 2024 12:46
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000