Skip to content

Instantly share code, notes, and snippets.

id state county rate
10001 Delaware Kent County 5.1
10003 Delaware New Castle County 4.5
10005 Delaware Sussex County 3.7
34001 New Jersey Atlantic County 7.1
34005 New Jersey Burlington County 5
34007 New Jersey Camden County 6
34015 New Jersey Gloucester County 5.6
34021 New Jersey Mercer County 4.9
34029 New Jersey Ocean County 5.4
id state county rate
42001 Pennsylvania Adams County 4.5
42003 Pennsylvania Allegheny County 5.9
42005 Pennsylvania Armstrong County 8
42007 Pennsylvania Beaver County 6.8
42009 Pennsylvania Bedford County 5.8
42011 Pennsylvania Berks County 5.6
42013 Pennsylvania Blair County 5.7
42015 Pennsylvania Bradford County 6.5
42017 Pennsylvania Bucks County 5.2
<html>
<head>
<style>
body {
background-color:#000000;
margin: 0px;
padding: 0px;
}
</style>
</head>
@colinowens
colinowens / RandomLineChart
Created May 12, 2014 02:08
Random Graph Lines With Save Output
int a =300;
int b= 775;
int numberOfTimes = 1;
boolean randomColor = false;
int s = second();
int m = minute();
int h = hour();
@colinowens
colinowens / panorama.pde
Last active December 11, 2015 00:18
Panorama. Colin Owens
// Code for panorama project
// 2009 Colin Owens
// For DMI, Dynamic Media Institute
import processing.video.*;
Movie video;
PImage picker;
PFont fontA;
@colinowens
colinowens / mouseTracking.pde
Last active March 25, 2020 00:09
Mouse tracking (outside of sketch window) in Processing
// trackScreen by Colin Owens
// Using JAVA mouseInfo for a bit of hackiness
// Use to your heart's content with attribution
// 2010
import java.awt.*;
import java.applet.*;
import java.awt.event.*;
import java.awt.event.MouseListener;
import java.awt.event.MouseEvent;
@colinowens
colinowens / 1_5_color_and_alpha.pde
Created October 2, 2012 04:09
Processing 1.5: Color and Alpha
/*
Example code
Written as Processing Examples
by Scott Murray and Colin Owens
Copyleft, 2010
*/
color backgroundColor;
color rectangleFill;
color circleColor;
@colinowens
colinowens / 1_4_motion_time_and_variables.pde
Created October 2, 2012 04:07
Processing 1.4: Motion and Time Variables
/*
Example code
Written as Processing Examples
by Colin Owens and Scott Murray
Copyleft, 2010
*/
int wholeNumber = 7;
float decimalNumber = 173.45;
boolean yeaOrNay = true;
@colinowens
colinowens / 1_3_fill_and_stroke.pde
Created October 2, 2012 04:05
Processing 1.3: Fill and Stroke
/*
Example code
Written as Processing Examples
by Scott Murray and Colin Owens
Copyleft, 2010
*/
//Sets the window size to 500 by 500
size(500, 500);
@colinowens
colinowens / 1_2_coordinates_and_shapes.pde
Created October 2, 2012 04:02
Processing 1.2: Coordinates and Shapes
/*
Example code
Written as Processing Examples
by Colin Owens and Scott Murray
Copyleft, 2010
*/
//Sets the window size to 500 by 500
size(500, 500);