Is there a random generator for linux with a nice GUI, which can generate a random integer between two integers and display it with a large fontsize?
|
|
I don't know any software. Google didn't come up with something either. Guess this is too simple a problem. It should be about 30 lines of code if you wrote it in a scripting language. You could also create a LibreOffice spreadsheet to do that. Shouldn't be terribly difficult. Edit 1:
Below is a quick and dirty perl script I coded. You should be able to modify it yourself. When you run it with
Edit2ObsessiveFOSS asked me to include another generator for random numbers (as it is this script uses Perl's build-in one). You can see a sketch on howto do it in my other answer. |
|||||||||||||||||
|
|
ObsessiveFOSS asked to implement the Blum, et al. cryptographically secure pseudo-random number generator. Here is my sketch on how to do it. The other code stays the same as in my earlier answer. One just has to replace the
As mentioned it is incomplete. One would have to use bitwise operators to extract useful random numbers, shift and scale them to fit between |
||||
|
