7
votes
What’s so wrong about using GC.Collect()?
Well, obviously you should not write code with real-time requirements in languages with non-real-time garbage collection.
In a case with well-defined stages, there is no problem with trigge …
0
votes
What is the best way to produce random double on POSIX?
/dev/urandom is not POSIX, and is not generally available.
The standard way of generating a double uniformly in [0,1) is to generate an integer in the range [0,2^N) and divide by 2^N. So p …
2
votes
Build Numbers synchronicity when delivering on multiple OS platforms.
There aren't any downsides that I can see. You want to be able to reproduce the build, so each should say what the build is. If it's the same build, it should be the same build number.
…
