To view this content, you need to install Java from java.com


- sally mckay 8-08-2009 3:20 am


// made with processing - free at processing.org
PImage p2;
PImage click;
boolean go = true;
int totalTitles = 125;
PImage[] images = new PImage[totalTitles];
PImage[] handimages = new PImage[totalTitles];
boolean mouse = false;
void setup(){
size(300, 300);
for ( int i = 0; i< totalTitles; i++ )
{
images[i] = loadImage( "pointer2.png" );
handimages[i] = loadImage( "hand.png" );
}
}
void draw(){
noStroke();
fill (255, 10);
rect (0,0,width,height);
imageMode(CENTER);
smooth();
float d = dist( mouseX + 4, mouseY + 4, width/2, height/2);
int shortnum = int((320 - d)/3); // was /5
if (shortnum > 62){
go = true;
}
else{
go = false;
}
if (go == true){
int newshortnum = (shortnum - 64) * 2;
println(newshortnum);
for ( int i = 0; i< newshortnum; i++ ){
if (mouse == false){
image( images[i], random(width), random(height));
cursor(ARROW);
}
else{
image( handimages[i], random(width), random(height));
cursor(HAND);
}
}
}
}
void mouseReleased() {
mouse = false;
}
void mousePressed() {
mouse = true;
}

- sally mckay 8-08-2009 3:23 am


That is so fucking adorable, not-Sally!
- L.M. 8-08-2009 6:02 am


did you click on it?
- sally mckay 8-08-2009 6:10 am


not sally
- sally mckay 8-08-2009 6:10 am


Clicking and dragging is nice too.
- L.M. 8-08-2009 6:22 am


More fun is up on the best page on the internet http://www.bestpageontheinternet.com/
- sally mckay 8-08-2009 2:44 pm


Hi, Joe,
Just wanted to inform you that your GIF is on a Segway thread (scroll down).
Keep up the good work as guest blogger (but isn't it DRM not DMR?).
- tom moody 8-08-2009 2:58 pm


Bloody hell - Digital Rights Management, not Digital Media Rights. Dyslexia combined with laziness combined with self confidence: a dangerous combination.
Cool about the segway animation. I noticed it's here too. I'm having a virtual renaissance because my gmail hack got boingboinged last week.

statsboingboing
It was even mentioned in Leo Laporte's podcast! Joy!

not sally
- sally mckay 8-08-2009 6:14 pm


Congrats--that graph is insane. Is boing boing officially the new slashdot yet? (My role model is Steve Martin in The Jerk: "The new phone book's here! The new phone book's here! Page 73 - Johnson, Navin R.! I'm somebody now! Millions of people look at this book everyday! This is the kind of spontaneous publicity - your name in print - that makes people.")
- tom moody 8-08-2009 6:27 pm





add a comment to this page:

Your post will be captioned "posted by anonymous,"
or you may enter a guest username below:


Line breaks work. HTML tags will be stripped.