- 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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
NewerOlder