Skip to content

Instantly share code, notes, and snippets.

View andrewvaughan's full-sized avatar
🇺🇦

Andrew Vaughan andrewvaughan

🇺🇦
View GitHub Profile
#include <stdbool.h>
#include <AnalogKeypad.h>
#include <Servo.h>
// Arduino Pin Assignments
#define PIN_KEYS A0
#define PIN_SERVO 9
#define PIN_LED 13
// Servo Configurations
@andrewvaughan
andrewvaughan / piboard.md
Last active April 3, 2022 14:46
Create a Raspberry Pi Rotating Dashboard

These instructions were performed on a RaspberryPI 2 with a proper heatsink.

Install NOOBS

  1. Follow these instructions to install NOOBS with a Mac.
  2. Choose "Raspbian" from the selected options when installing.

Configure the Pi

@andrewvaughan
andrewvaughan / photoshop.less
Created June 6, 2014 17:53
Less with Photoshop Mixins
// Use Less.js 1.3.2 or higher to compile.
.round-box(@tl: 9, @tr: 9, @br: 9, @bl: 9) {
@val: ~'@{tl}px' ~'@{tr}px' ~'@{br}px' ~'@{bl}px';
-moz-border-radius: @val;
-webkit-border-radius: @val;
-o-border-radius: @val;
-ms-border-radius: @val;
-khtml-border-radius: @val;
@andrewvaughan
andrewvaughan / osx_setup.md
Last active March 2, 2023 02:12
Mac OSX Setup

Mac OSX Bootstrap

Upgrade to Mavericks

  1. Install Mavericks via the App Store.

Secure The Machine