Skip to content

Instantly share code, notes, and snippets.

View bkeating's full-sized avatar
🤙
Gettin’ SUM & CALCin’ out

Benjamin Keating bkeating

🤙
Gettin’ SUM & CALCin’ out
View GitHub Profile

Managing Your Music, Pictures and Home Videos

...

@bkeating
bkeating / etcc-meetup-020150730-home-automation.md
Last active August 29, 2015 14:26
Notes related to ETCC's meetup on home automation. http://etcc.io/
@bkeating
bkeating / etcc-metup-020150521-lock-picking.md
Last active August 29, 2015 14:21
Notes related to ETCC's first Lock Picking meetup

Lock Picking 101

Lock Picking 101 is an East Troy Computer Club meetup event held on May 21, 02015 located on the historic village square of East Troy, Wisconsin. http://etcc.io/

General Announcements / News

Software [you need to try]

@bkeating
bkeating / bpk_workshop_weather.ino
Created March 20, 2015 19:46
Ben's Workshop Weather. Arduino sketch to push DHT11 sensor data to data.sparkfun.com
#include <SPI.h>
#include <Ethernet.h>
#include "DHT.h"
#define DHTPIN 2
#define DHTTYPE DHT11
DHT dht(DHTPIN, DHTTYPE);
byte mac[] = {
@bkeating
bkeating / etcc-meetup-012915.md
Created January 29, 2015 14:52
Computer Club Meetup notes for Getting Things Done with Python on Jan 29th 02015

Getting Things Done with Python

@bkeating
bkeating / rangen.py
Last active August 29, 2015 14:10
Generate a range of random 'codes' for Santa on the Square photo service
import random
import string
import subprocess
from PIL import Image
from PIL import ImageFont
from PIL import ImageDraw
codes = []
for i in range(1, 251):
@bkeating
bkeating / sharing-freely-piratebox-(etccmeetup).md
Last active August 29, 2015 14:06
Sharing freely with a PirateBox (ETCC Meetup)

Sharing freely with a PirateBox (ETCC Meetup)

Watch this space for notes related to this meetup.

Software Hit List (apps you need to try)

  • Fenix - A simple static desktop web server
  • Flux - Adjusts your computer screens color to make your life better
  • Evernote - Excellent digital filing cabinet
@bkeating
bkeating / sound_sensor.ino
Created September 2, 2014 20:03
Basic sound sensor sketch for Arduino
/*
This is the code to make a LED blink with the music.
You have to set the threshold so it' sensible enough to make the led blink.
You connect an LED to PIN13 and the Sound Sensor to Analog Pin 0
*/
int led = 13;
int threshold = 500; //Change This
int volume;
@bkeating
bkeating / 2894Menu.coffee
Created September 2, 2014 19:54
East Troy's 2894 On Main cafe [food] menu for Hubot.
# Description:
# East Troy's 2894 On Main cafe [Food] menu for Hubot.
#
# Dependencies:
# "cheerio: "0.7.0"
#
# Configuration:
# None
#
# Commands:
@bkeating
bkeating / playing-with-css-(etccmeetup).md
Last active August 29, 2015 14:05
Playing with CSS (ETCC Meetup)

Playing with CSS (ETCC Meetup)

Watch this space for notes related to this meetup.

Software Hit List (apps you need to try)