perfectionism

What can I do to not worry about always having perfect code and having future scope creep?

I find it an issue nowadays where I spend a lot of time worrying about small details and spending lots of time thinking about whether or not certain things will be an issue in the future. Is there some sort of strategy or technique that I can use to mentally just not worry about it? ...

Generating "too perfect" random numbers

A good RNG ought to pass several statistical tests of randomness. For example, uniform real values in the range 0 to 1 can be binned into a histogram with roughly equal counts in each bin, give or take some due to statistical fluctuations. These counts obey some distribution, I don't recall offhand if it's Poisson or binomial or what, ...

Is there a better way to avoid an infinite loop using winforms?

I am using .Net 3.5 for now. Right now I am using a using trick to disable and enable events around certain sections of code. The user can change either days, hours, minutes or total minutes, and that should not cause an infinite cascade of events (e.g. minutes changing total, total changing minutes, etc.) While the code does what I wan...