This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# By default, X-Box 360-compatible controllers are detectable but dysfunctional because they expect the host | |
# to send a particular USB control transfer with some sort of initialization command. | |
# This udev rule will invoke a trivial Python script automatically when the gamepad is connected that emits | |
# the required initialization command. | |
# | |
# Integration: | |
# 1. Put this rule into /etc/udev/rules.d/51-xbox-gamepad.rules | |
# 2. Install pyusb for the root's Python: sudo pip install pyusb | |
# 3. Reload udev rules as root: udevadm control --reload-rules && udevadm trigger | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;Iconify.scm | |
;=========================== | |
;Author...Giuseppe Bilotta | |
;Modified for Gimp 2.4.6+ by Ouch67 | |
;http://www.gimptalk.com/forum/broken-scripts-t33501.html | |
;Resubmission to Gimp Plugin Registry & GimpTalk by Gargy | |
;Modified for Gimp 2.8 by Roland Clobus | |
;------------ | |
;Description...: Iconify plug-in converts a single layer of a single image into a multi-layered image ready to be saved as a Windows icon. | |
;The new image will contain all standard sizes (16x16, 32x32, 48x48) at all standard bit depths (16 colors, 256 colors, 32-bit RGBA), with transparency support. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew install qt # should already be done | |
brew install qwt # should already be done | |
brew install portaudio # should already be done | |
brew install wget # makes some downloading easier | |
# set up your virtualenv (`workon friture` if you've already created it) | |
mkvirtualenv friture | |
cd /tmp |