I hereby claim:
- I am clayrichardson on github.
- I am clayrichardson (https://keybase.io/clayrichardson) on keybase.
- I have a public key ASBBbyOvYCDaAJyiGKcarUpGtGoz-Gngf51so0ln43ne2go
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #include <SD.h> | |
| #include <Wire.h> | |
| #include <Adafruit_Sensor.h> | |
| #include <Adafruit_LSM303_U.h> | |
| #include <Adafruit_BMP085_U.h> | |
| #include <Adafruit_L3GD20_U.h> | |
| #include <Adafruit_10DOF.h> | |
| /* Assign a unique ID to the sensors */ |
This is a simple way to backup your MySQL tables to Amazon S3 for a nightly backup - this is all to be done on your server :-)
Sister Document - Restore MySQL from Amazon S3 - read that next
this is for Centos 5.6, see http://s3tools.org/repositories for other systems like ubuntu etc
| #!/bin/bash | |
| set -ex | |
| # Swap file commands from: | |
| # https://www.digitalocean.com/community/articles/how-to-add-swap-on-ubuntu-12-04 | |
| # Create swapfile | |
| echo "Creating swap file..." | |
| dd if=/dev/zero of=/swapfile bs=1024 count=4096k |
| require 'ostruct' | |
| require 'optparse' | |
| require 'awesome_print' | |
| $stdout.sync = true | |
| options = {} | |
| OptionParser.new do |opts| | |
| opts.banner = "Usage: change_phabricator_prefix.rb [options]" |
| """ base58 encoding / decoding functions """ | |
| import unittest | |
| alphabet = '123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ' | |
| base_count = len(alphabet) | |
| def encode(num): | |
| """ Returns num in a base58-encoded string """ | |
| encode = '' | |
| from django.db import models | |
| class Manufacturer(models.Model): | |
| uuid = models.CharField(max_length = 100) | |
| name = models.CharField(max_length = 100) | |
| class Car(models.Model): | |
| uuid = models.CharField(max_length = 100) | |
| manufacturer = models.ForeignKey(Manufacturer) |
| import sys | |
| import os | |
| import time | |
| import uuid | |
| import random | |
| import signal | |
| import multiprocessing | |
| import numpy | |
| from optparse import OptionParser |
| import sys | |
| import time | |
| import random | |
| import signal | |
| import multiprocessing | |
| processes = [] | |
| def launch_process(number, kill_queue, child_connection): |
| import re | |
| import time | |
| import pprint | |
| import urllib2 | |
| import urllib | |
| from BeautifulSoup import BeautifulSoup as soup | |
| from random import choice | |
| def append_links(thumb_div): |