"Do you want fries with that.flv" is from Watchmen. http://garyc.s3.amazonaws.com/files/1251402061934.gif ('Something Dancing?') is from sponngebob, the children's television show. Mudloli.gif (an alien person thing?) is from an image a little girl (lolicon) in a swimsuit. It has been photoshopped to be an alien. PSG.mp3 (chiptune song) is from a flash animation of a dog dancing around, but only the first 10 seconds, looped over 30 seconds or so. I have no idea what it is from originally. also, here is a robot that draws things for sketchswap. Robot r = new Robot(); r.keyPress(KeyEvent.VK_ALT); r.delay(2); r.keyPress(KeyEvent.VK_TAB); r.delay(2); r.keyRelease(KeyEvent.VK_TAB); r.delay(2); r.keyRelease(KeyEvent.VK_ALT); r.delay(2); int sx = 273; int sy = 129; int ex = 1005; int ey = 678; File f = new File("image.bmp"); System.out.println(f.getAbsolutePath()); BufferedImage img = ImageIO.read(f); Raster rast = img.getData(); int data[] = new int[1]; r.setAutoDelay(0); for(int y = sy; y < ey; y+=2){ for(int x = sx; x < ex; x+=2){ rast.getPixel(x-sx,y-sy, data); if(data[0]==1){ r.mouseMove(x, y); r.mousePress(InputEvent.BUTTON1_MASK); do{ rast.getPixel(x-sx,y-sy, data); x++; } while(data[0]==1); r.mouseMove(x-1, y); r.mouseRelease(InputEvent.BUTTON1_MASK); } } }