0
votes
Order of items in classes: Fields, Properties, Constructors, Methods
There certainly is nothing in the language that enforces it in any way. I tend to group things by visibility (public, then protected, then private) and use #regions to group related things function …
2
votes
Best practices considered harmful?
I agree that the use of "best" in this context is often a misnomer. "Best" is usually "common" and too seldom has any basis in empirical or objectively verifiable evidence to support it. As others …
16
votes
How can I combat the “Not Invented Here” syndrome?
I think it depends on why they are rejecting the third-party stuff. Existence is not necessarily a good measure of fitness for use :)
I think it is generally true that when you use …
2
votes
What’s on your C++ cheatsheet?
I have a little copy of the operator precedence chart tacked to my cube wall.
…
6
votes
Simple but powerful programming language for a hobby software project
I agree with the votes for Python if you are doing console apps. But if you're doing GUI stuff then I think you're better off sticking with C# and WinForms. FWIW
…
1
vote
How many ‘rockstar’ programmers have you met?
After 20 years I've worked with a handful I would consider truly excellent. Many more who were quite good and I would gladly work with again.
I think all of the ones I've worked with who t …
1
vote
Tips on how to inoffensively help an older co-worker to become a developer instead of a code-monkey?
I think the pair programming is not a bad idea. If your organization supports it, accountability is a great tool for helping developers understand the consequences of their working style. Nothing t …
0
votes
Why you/I should not learn another language?
I think learning new languages is a good habit, providing you don't do it at the expense of missing deadlines :) However, I think it is important to be very selective about what new languages you …
7
votes
What is the worst C#/.NET gotcha?
Garbage collection and Dispose(). Although you don't have to do anything to free up memory, you still have to free up resources via Dispose(). This is an immensely easy thing to f …
0
votes
When does a code base become large and unwieldy?
A lot of the things that people have identified as indicating problems don't really have to do with the raw size of the codebase, but rather its comprehensibility. How does size relate to comprehen …
2
votes
If unit testing is so great, why aren’t more companies doing it?
I think part of the problem is that developers are expecting business people to have the same set of values and to really care about the answer to "should we unit test or not?". We don't get approv …
3
votes
When to use Data Transfer Objects and DataSets
I would keep it simple and always return a DataSet -- in short, use DataSet as a generic DTO. It's flexible, it's type-safe, it's available. Unless you get into some very hairy nested object models …
1
vote
Is this a good job description? What title would you give this position?
With only several years experience needed I'd call it a "Web engineer".
The position seems fairly unfocused: more of a jack of all trades than a specific position within a team...
…
1
vote
What’s with the love of dynamic Languages
I think both styles have their strengths. This either/or thinking is kind of crippling to our community in my opinion. I've worked in architectures that were statically-typed from top to bottom and …
