Skip to content

Instantly share code, notes, and snippets.

View loadedsith's full-sized avatar

Graham P Heath loadedsith

View GitHub Profile
@loadedsith
loadedsith / NoiseFeed.pde
Created March 9, 2013 19:49
A quick processing sketch demonstrating Perlin Noise and basic object oriented programming.
int starCount=0;
fallingStar[] stars;
int size = 10;
float seed = 0.0;
void setup() {
size(480, 480);
stars = new fallingStar[1];
stars[0] = new fallingStar(10,10);
noStroke();
@loadedsith
loadedsith / twitter sender
Last active December 14, 2015 16:19
processing twitter sender
/*
Just a simple Processing and Twitter thingy majiggy
RobotGrrl.com
Code licensed under:
CC-BY
*/
@loadedsith
loadedsith / php_serial.class.php
Created August 27, 2012 05:27 — forked from ahutchings/php_serial.class.php
PHP Serial Port Control Class by Rémy Sanchez with Modifications for OS X (Updated for 10.8 Mountain Lion, byGPH)
<?php
define ("SERIAL_DEVICE_NOTSET", 0);
define ("SERIAL_DEVICE_SET", 1);
define ("SERIAL_DEVICE_OPENED", 2);
/**
* Serial port control class
*
* THIS PROGRAM COMES WITH ABSOLUTELY NO WARANTIES !
* USE IT AT YOUR OWN RISKS !