Just in case someone wants a random generator application I just made one for fun. Here's the link
[link removed - you must have 20 posts before posting links, or have permission from the administration]
its only 100kb so its not big.
If you use this, and want it to do something else, just tell me.

Here's the code if someone's interested in c++. Its a very simple program.
Code:
	 #include <iostream.h>
			 #include <time.h>
			 #include <stdlib.h>
			 #include <conio.h>

			 void main()
			 {cout<<"Press 1, and maybe keep it pressed for some time.\n";
			  int s1=0,s2=0;int c=0;
			  randomize();
			 while(1)
			 {char x;
			 x=getch();

			 if(x=='1')
				{
			 s1=random(3)-1; s2+=s1;
			 cout<<++c<<".you: "<<s1<<"score: "<<s2<<endl;
				}

			 }
			  }