The lava-lamp generator is still available, I believe, but random bit generation there is VERY slow!

It is possible to use the "system time" as a seed, but even that isn't very random if you regularly turn off/restart your computer, since as I recall it gives time since startup, so the value is likely to lie within a relatively narrow range - a million seconds is about 11 days, if I recall, and even if you use ms you are still only looking at a range of ~10^9. Using "real life clock time" is also pretty rubbish - there were a number of online casinos that used that approach, and got badly stung, since it was possible to deduce what their time was within a few seconds, and then try all the sequences that arose (since their PRNG algorithm was known).
More usefully, modern computer systems provide "cryptographically secure" pseudo-random number generators - that should be good enough for essentially any use (unless the CIA made Intel build in a backdoor!
