2
votes
What’s on your C++ cheatsheet?
I have a little copy of the operator precedence chart tacked to my cube wall.
…
0
votes
Concurrent data structure design
Well, to be thread-safe you're going to have to lock something at some point. One key thing is to make sure that the objects in your repository can be locked separately from the repository structur …
0
votes
Relation between word length, character size, integer size and byte
Kind of depends on what you mean by relation. The size of numeric types is generally a multiple of the machine word size. A byte is a byte is a byte -- 8 bits, no more, no less. A character is defi …
1
vote
Compute intersection of two edges
What you need are unit tests for your 4 methods and to test them thoroughly. Especially with line-segment intersections there are lots of end-cases, such as parallel slopes, coinc …
3
votes
How do you introduce unit testing into a large, legacy (C/C++) codebase?
One approach to consider is to first put a system-wide simulation framework in place that you could use to develop integration tests. Starting with integration tests might seem counter-intuitive, b …
3
votes
Howto elegantly extract a 2D rectangular region from a C++ vector
for (int r = startRow; r < endRow; r++)
for (int c = startCol; c < endCol; c++)
rect[r-startRow][c-startCol] = source[r*rowWidth+c];
…
