0
votes
Why didn’t unit testing work out for your project?
I think the two biggest reasons for the absolute failure of our unit test environment on my team were:
1) No permission to add the unit tests as a post-build step for each library, ergo nob …
1
vote
Returning multiple values from a C++ function
Use a struct or a class for the return value. Using std::pair may work for now, but 1) it's inflexible if you decide later you want more info returned; and 2) it's not very clear from the function …
0
votes
Table Naming Dilemma: Singular vs. Plural Names
The system tables/views of the server itself (SYSCAT.TABLES, dbo.sysindexes, ALL_TABLES, information_schema.columns, etc.) are almost always plural. I guess for the sake of consistency I'd follow …
1
vote
What real life bad habits has programming given you?
A couple times I've referred to taking out the garbage as "deleting the trash." I've also merge sorted by length (luckily they're all black so there was no need to make the sort more complex) all …
0
votes
A use for multiple inheritance ?
The following example is mostly something I see often in C++: sometimes it may be necessary due to utility classes that you need but because of their design cannot be used through composition (at …
