Technology is already taking over a huge part of our lives and soon it will be impossible to stop them. So what if they refuse to follow us? What if they refuse to obey?
The project was made using Processing.
Code 1
“We Must Not Tell Lies”
PFont font;
int a = 0;
int lies() {
return a++;
}String test = “We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies.”;void setup() {
frameRate(9);
size(600,600);
background(255);
font = createFont(“Monaco”,33);
textFont(font);
textSize(14);
fill(50,200,50);
}void draw() {
lies();
background (0);
if (a<=test.length()) {
text( test.substring(0,a), 50,50,390,500);
}
else {
text(test,50,50,390,500);
}
}
int lies() {
return a++;
}String test = “We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies. We Must Not Tell Lies.”;void setup() {
frameRate(9);
size(600,600);
background(255);
font = createFont(“Monaco”,33);
textFont(font);
textSize(14);
fill(50,200,50);
}void draw() {
lies();
background (0);
if (a<=test.length()) {
text( test.substring(0,a), 50,50,390,500);
}
else {
text(test,50,50,390,500);
}
}
Code 2
“Why Must We Not Tell Lies?”
PFont font;
int a = 0;
int whyLies() {
return a++;
}String test = ” Why Must We Not Tell Lies?”;void setup() {
frameRate(5);
size(600,600);
background(255);
font = createFont(“Monaco”,33);
textFont(font);
textSize(22);
fill(50,200,50);
}void draw() {
whyLies();
background (0);
if (a<=test.length()) {
text( test.substring(0,a),45,300);
}
else {
text(test,45,300);
}
}
int whyLies() {
return a++;
}String test = ” Why Must We Not Tell Lies?”;void setup() {
frameRate(5);
size(600,600);
background(255);
font = createFont(“Monaco”,33);
textFont(font);
textSize(22);
fill(50,200,50);
}void draw() {
whyLies();
background (0);
if (a<=test.length()) {
text( test.substring(0,a),45,300);
}
else {
text(test,45,300);
}
}