Skip to content

Instantly share code, notes, and snippets.

View brennen's full-sized avatar

Brennen Bearnes brennen

View GitHub Profile
pi@raspberrypi ~ $ cat switch.py
import RPi.GPIO as GPIO
import time
GPIO.setmode(GPIO.BCM)
GPIO.setup(23, GPIO.IN, pull_up_down=GPIO.PUD_UP)
while True:
input_state = GPIO.input(23)
@brennen
brennen / checkmail_simple.py
Created April 27, 2015 05:55
checkmail_simple.py
#!/usr/bin/env python
from imapclient import IMAPClient
import sys
import time
DEBUG = True
HOSTNAME = 'imap.gmail.com'
USERNAME = 'your username here'
@brennen
brennen / checkmail.py
Last active June 15, 2017 16:23
checkmail.py
#!/usr/bin/env python
from imapclient import IMAPClient
import time
import RPi.GPIO as GPIO
DEBUG = True
HOSTNAME = 'imap.gmail.com'
sudo mv /usr/share/X11/xorg.conf.d/99-fbturbo.conf ~
echo 'export FRAMEBUFFER=/dev/fb1' >> ~/.profile
make sure these are in /etc/modules:
rpi_power_switch
spi-bcm2708
i2c-bcm2708
i2c-dev
stmpe_ts
@brennen
brennen / dmesg.txt
Last active August 29, 2015 14:16
dmesg again
[ 0.000000] Booting Linux on physical CPU 0xf00
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Initializing cgroup subsys cpuacct
[ 0.000000] Linux version 3.18.6-v7+ (root@vagrant-ubuntu-precise-32) (gcc version 4.8.3 20140106 (prerelease) (crosstool-NG linaro-1.13.1-4.8-2014.01 - Linaro GCC 2013.11) ) #1 SMP PREEMPT Thu Feb 26 03:18:12 UTC 2015
[ 0.000000] CPU: ARMv7 Processor [410fc075] revision 5 (ARMv7), cr=10c5387d
[ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[ 0.000000] Machine model: Raspberry Pi 2 Model B
[ 0.000000] cma: Reserved 8 MiB at 0x3a800000
[ 0.000000] Memory policy: Data cache writealloc
[ 0.000000] On node 0 totalpages: 241664
[ 0.000000] Booting Linux on physical CPU 0xf00
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Initializing cgroup subsys cpuacct
[ 0.000000] Linux version 3.18.6-v7+ (root@vagrant-ubuntu-precise-32) (gcc version 4.8.3 20140106 (prerelease) (crosstool-NG linaro-1.13.1-4.8-2014.01 - Linaro GCC 2013.11) ) #1 SMP PREEMPT Thu Feb 26 03:18:12 UTC 2015
[ 0.000000] CPU: ARMv7 Processor [410fc075] revision 5 (ARMv7), cr=10c5387d
[ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[ 0.000000] Machine model: Raspberry Pi 2 Model B
[ 0.000000] cma: Reserved 8 MiB at 0x3a800000
[ 0.000000] Memory policy: Data cache writealloc
[ 0.000000] On node 0 totalpages: 241664
#!/usr/bin/env php
<?php
define('LIBDIR', 'lib/');
require LIBDIR . 'classes/SparkLib/Autoloader.php';
SparkLib\Autoloader::setup();
use FeedWriter\Feed;
use FeedWriter\View\JSON;
use FeedWriter\View\XML;
use FeedWriter\View\CSV;
@brennen
brennen / snowday.pl
Last active December 16, 2015 08:39
Is it a snow day?
#!/usr/bin/env perl
use LWP::Simple;
$page = get('http://www.bvsd.org/');
if ($page =~ /troublebutton/m) {
print "yes.\n";
} else {
print "sorry.\n";
}
^ # start
(
(?U) # ??? - named capture group?
.+ # one or more of anything
\.php) # a literal ".php", but why the fuck is there a paren at the end of it?
(
(function( $ ){
var methods = {
init : function (options) {
},
render : function (target, data, labels, color) {
if (! (target && target.getContext))