Today I have been writing Processing sketches that fit within Twitter’s 140 character limit. Why, I don’t quite know, but it certainly is fun. Here are some of my attempts. My first attempt- a resizing circle thingy… int c,f;void setup(){size(640,480);c=0;f=255;colorMode(HSB);} void draw(){background(color(c,f,f));ellipse(320,240,c,c);c=(c++>255)?0:c;} My second attempt- printing the colour spect