Skip to content

Instantly share code, notes, and snippets.

View jjculber's full-sized avatar

Justin Culbertson jjculber

  • RepairTech, Inc
View GitHub Profile

Keybase proof

I hereby claim:

  • I am jjculber on github.
  • I am justinc (https://keybase.io/justinc) on keybase.
  • I have a public key whose fingerprint is 3B6C F258 D536 1D4F 0431 770A 175E 4FC2 A5C3 B18D

To claim this, I am signing this object:

@jjculber
jjculber / pvt.js
Last active December 25, 2015 15:59 — forked from anonymous/pvt.js
//Global Functions & Set Up
function drawCircle() {
var c=document.getElementById("c");
var ctx=c.getContext("2d");
ctx.beginPath();
ctx.arc(250,150,50,0,2*Math.PI);
ctx.fillStyle = "#F00";
ctx.fill();
ctx.strokeStyle = "#F00";
@jjculber
jjculber / pvt.js
Created October 16, 2013 04:06 — forked from anonymous/pvt.js
//Global Functions & Set Up
function drawCircle() {
var c=document.getElementById("c");
var ctx=c.getContext("2d");
ctx.beginPath();
ctx.arc(250,150,50,0,2*Math.PI);
ctx.fillStyle = "#F00";
ctx.fill();
ctx.strokeStyle = "#F00";