0
votes
What are best practices for designing XML schemas?
There's nothing inherently wrong with using an element or sub-element for every value you'd like to represent.
The main consideration is that sometimes it's cleaner to use an attribute. Sin …
10
votes
Is it better to make a new dev set up his own environment, or give him a premade VM?
Give the new developer instructions on how to set up his environment. It lets him start developing a good understanding of how the system works. If he's never exposed to the different third party c …
4
votes
Should I store all the text in my database in uppercase or in lowercase?
It obviously depends on what you'll need to do with the data later.
But if you're asking because you're interested in speeding up lookups later (e.g. searching by name, city, etc.), you may …
5
votes
Programming by guessing/hoping
As you surmise, it can be a product of being tired. Or lazy. Or ignorant. It's not much different than driving a car while sleepy in many respects.
It's very dangerous because the tired/laz …
3
votes
Database Design Best Practices
As with anything, the answer here is, "It Depends."
Databases can be used to do different things, and some of those things will require opposing directions in design and development.
…
25
votes
Which Development Practice Helps You the Most?
Unit Testing
The ability to repeatedly and reproducibly run the same tests on code allow for better practices all around. You can refactor code, fix bugs, and do anything else you'd like …
