Search Results

1
vote

When declaring an enum, should you force the type to byte for under 256 entities?

The only reason to do this is if you are storing or transmitting this value using a defined protocol that demands the field to be of that size. …
5
votes

Alternative to binaries in Subversion

I'm sure there are weighty arguments against this bad practice You have the wrong presumption that committing "build artifacts" to the version control is a ba …
7
votes

What are common UI misconceptions and annoyances?

Useless spinners, turned into simple animations Applications that use spinners to entertain users while doing some time-demanding operation... but instead of updating the s …
3
votes

Bitfield manipulation in C

The union usage has undefined behavior according to the ANSI C standard, and thus, should not be used (or at least not be considered portable). From the …