Skip to content

Instantly share code, notes, and snippets.

@Xeus
Xeus / values.md
Created December 25, 2012 06:01
Galapag.us Tribal Values

The Galapag.us Tribe

Our tribal values:

  • We believe that a primary goal of life is to maximize eudaimonia and to help others do the same.
  • We individuals own our own data, and can control its availability.
  • We believe in sharing and strength through interconnectedness.
  • We believe in transparency and accountability.
  • Our data is a powerful form of expression of our own identities, and we should be allowed to fully show and present that data identity and reputation in a free society.
  • We are each members of many tribes and have many identities and faces, and only through all layers combined can we be understood in context.
@Xeus
Xeus / genomesmidterm.pde
Created October 17, 2012 01:08
Understanding Genomes Midterm: Data Viz Tests for Galapag.us
int SIZE_BOX = 20;
int SIZE_BAR = 10;
int SIZE_GRID = 5;
color mindColor = color(255, 0, 0);
color heartColor = color(0, 255, 0);
color bodyColor = color(0, 0, 255);
import org.json.*;
String BASE_URL = "http://127.0.0.1:5000";
@Xeus
Xeus / Ball.pde
Created October 4, 2012 19:00
Glitching Breakout
import java.awt.geom.*;
public class Ball {
Rectangle rectangle;
// BALL PROPERTIES --
int width = 5;
int height = 5;
boolean hasStroke = false;
color strokeColor = #FFFFFF;
boolean hasFill = true;