I hereby claim:
- I am cnelsonsic on github.
- I am cnelsonsic (https://keybase.io/cnelsonsic) on keybase.
- I have a public key ASD8cW_q2_sKod_SxM8_pHdYPKPJVBrAkC_gTo2GIVUpNQo
To claim this, I am signing this object:
| """ | |
| Displays WoW health and mana status on a Razer Chroma keyboard. | |
| Installation (Windows): | |
| $ virtualenv venv | |
| $ pip install requests | |
| $ easy_install pillow | |
| Usage: | |
| - Run WoW client fullscreen on main monitor |
I hereby claim:
To claim this, I am signing this object:
| ### Keybase proof | |
| I hereby claim: | |
| * I am cnelsonsic on github. | |
| * I am cnelsonsic (https://keybase.io/cnelsonsic) on keybase. | |
| * I have a public key ASD8cW_q2_sKod_SxM8_pHdYPKPJVBrAkC_gTo2GIVUpNQo | |
| To claim this, I am signing this object: |
| #!/bin/bash | |
| # Add this to your desktop startup manager, or drop it into ~/.config/autostart | |
| xinput set-int-prop "Logitech USB Trackball" "Evdev Wheel Emulation Button" 8 8 | |
| xinput set-int-prop "Logitech USB Trackball" "Evdev Wheel Emulation" 8 1 | |
| xinput set-prop "Logitech USB Trackball" "Evdev Wheel Emulation Axes" 6 7 4 5 |
| '''A command line utility to sort a list of things. | |
| It presents you two options, from which you pick the "best". | |
| The list is sorted and presented to you in sorted order. | |
| So, given a file with some things in it: | |
| $ cat things.txt | |
| asdf | |
| qwer | |
| zxcv |
| #!/bin/env python2.7 | |
| '''This module loads the Jimmy John's menu from their website and provides | |
| you with a random selection from their main (numbered) sandwich menu. | |
| Recommended usage is to just run it as a script. | |
| ''' | |
| from BeautifulSoup import BeautifulSoup | |
| import requests | |
| import random | |
| import re |