Just wondering how random the "pee in a cup" really is? As I have been popped for a 3rd time now in about 1 1/2 years. Not to mention this last week was particularly a pain in the butt. In between routes my boss caught me and said come talk to me when you get back from 2nd Rt. So, I return, fuel truck and reefer, put them away, etc. Go in go to bathroom and wash hands before seeing boss and of course all she has to say is we need a urine sample. So I get to sit in breakroom drinking water for two hours to accomplish this goal. Folks, I have been in government jobs since I was in high school. I worked the family farm from a very young age due to father in active military. I ain't never touched anything ever. The occasional beer and Jack Daniels w/ Cherry Coke is it. (Oh, its not normal to get a Christmas card from Bud and Jack... I didn't know.) Ok, occasional now almost rare. But in the younger days!!!!!



Reply With Quote

. No computer is capable of a TRUE random number. Most computers use what is called a seed. The seed is based usually on milliseconds, so time is used to create a random number. If you know exactly how a specific CPU handles generating random numbers, you can get the same exact random number to generate every time by knowing the seed factor. This said, random numbers generated by a computer can be figured out by an algorithm, and do have a repeating pattern. Generally in programming if you really want a good random number, you have to create a bunch of them using random seeds, then randomly pick one of the randomly generated numbers, and repeat the process a few times



