maybe i'll get extra cudo's for doing this in cpp, the effect isnt so cool, but eh.... i win!
#include <PixelToaster.h>
using namespace PixelToaster;
int width = 320;
int height = 240;
int xpos;
int ypos;
Display display( "EnToXiCoDeD", width, height, Output::Fullscreen );
vector<Pixel> pixels( width * height );
int main()
{while ( display.open() ) { xpos = rand() % width;
ypos = rand() % height;
pixels[xpos+ypos*width].g = 1.0f;
display.update( pixels );
}}