Skip to content

Instantly share code, notes, and snippets.

View mmansion's full-sized avatar

MIKHAIL MANSION mmansion

View GitHub Profile
# Aliases for common git commands. E.g., enter "git d" for "git diff"
# These settings live in the ~/.gitconfig file.
[alias]
b = branch
ba = branch -a
ci = commit
co = checkout
d = diff
dc = diff --cached
@mmansion
mmansion / TouchEvents.pde
Created November 1, 2012 04:26 — forked from vvasabi/TouchEvents.pde
Touch Events in Processing.js
void setup() {
size(400, 300);
background(255);
}
void touchMove(TouchEvent touchEvent) {
// empty the canvas
noStroke();
fill(255);
rect(0, 0, 400, 300);