I hereby claim:
- I am ianjsikes on github.
- I am ianjsikes (https://keybase.io/ianjsikes) on keybase.
- I have a public key ASBp81yPJGs9KKcYJQASFVmbGxsQMUKkhTRaJKlznQCZywo
To claim this, I am signing this object:
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
# Set prefix to Ctrl-Space | |
unbind C-b | |
set -g prefix C-Space | |
bind Space send-prefix | |
# Enable 256 colors in tmux | |
set -g default-terminal "screen-256color" | |
# Start window indexing at 1 (makes it easier to switch windows using number keys) | |
set-option -g base-index 1 |
I hereby claim:
To claim this, I am signing this object:
Ian - Hey Everyone! |
simpleGradient fuchsia,color(100,200,200),yellow | |
move -3,-2,0 | |
scale 2.1 | |
x = 0 | |
y = 0 | |
5 times | |
x = 0 | |
y += 0.1 | |
move 0,y,0 | |
pushMatrix |
// Basic setup for a p5.js sketch | |
// This function gets called once at the start of the page load | |
function setup() { | |
// This creates an 800x800 HTML canvas element | |
createCanvas(800, 800); | |
} | |
// This function gets called ~60 times/second | |
function draw() { |
{ | |
"scripts": { | |
"compile": "webpack --progress", | |
"serve": "http-server" | |
} | |
} |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Hello World</title> | |
</head> | |
<body> | |
<div id="container"></div> | |
<script src="build/bundle.js"></script> | |
</body> | |
</html> |