Generated 2014-07-28 09:03:10.408600
Make a single PayPal payment (checkout) with MSDKv2
| # assumes imagemagick is present | |
| convert logo.png -alpha on -resize 192x192 -define icon:auto-resize="64,32,24,16" -background none favicon.ico |
| #!python | |
| # | |
| # "Hello World!" for RaspberryPi GPIO. Assumes you've correctly connected an LED to pin 5. | |
| # | |
| import RPi.GPIO as gpio | |
| import time | |
| LED_PIN = 5 |
| #!/env/python | |
| # coding=utf8 | |
| """ | |
| Converting Degrees, Minutes, Seconds formatted coordinate strings to decimal. | |
| Formula: | |
| DEC = (DEG + (MIN * 1/60) + (SEC * 1/60 * 1/60)) | |
| Assumes S/W are negative. |