Testimonials

Randomly chosen testimonials:

Database Key Generation

In several things that I do, I require some form of randomness (for example, secure primary keys for databases, with almost no chance of collision error). To do this, I use your site to create them. A simple generation of numbers between 0 and 35, and then change them into their base-36 equivalent, however long the sequence needs to be, and you have an virtually unguessable primary key sequence. You can’t guess what the next key in the sequence will be. Very useful for keeping people from being able to hack your customer list and finding out who does business with you (they might be able to guess one, but the next won’t be sequential, so they would have to start all over again to find the next). I also use it in my writing, to generate datasets for locations and people by assigning integers to various items and using the site to pick the ones that apply.

—John Anderson

Locksmith's Key Generation

I'm using Random.org to generate new discreet keys for each home or business rekeys, ensuring that no two customers will ever receive the same key bitting. I'm using the randomized sequence generator. For a 6 six pin lock, I enter the first two digits and let the generator pick the rest, i.e., 14XXXX.

There is a Maximum Adjacent Cut Specification (MACS) that varies from manufacturer to manufacturer. For instance, with a Schlage brand lock the maximum useable difference between two adjacent cuts on a key is 7 depths. This means throwing out many numbers generated randomly, but they're very easy to spot on a printed page. I begin using first two pins of 00 and progress them to 99. Even considering the toss outs, that will provide me with more key bittings than I will ever need.

I've only just begun using this, as I've just discovered your site, but it seems to work really well.

—Mike Bardsley CML

Using our randomizers for something interesting? Let us know!

Contribute a Testimonial