Visual Studio 2010 & 2008 can’t handle source files with identical names in different folders?

So @Hans Passant pointed in the right direction, Thanks!! You don’t have to list the file, a folder is sufficient. Then if you look in the defined macros at the bottom of the VS 2010 list, you’ll see: %(RelativeDir)/ Univariate/ The problem, as posted, was actually a simplified version of what I’m working on — … Read more

CSS class naming convention

The direct answer to the question is right below this one, by Curt. If you’re interested in CSS class naming conventions I suggest to consider one very useful convention named BEM (Block, Element, Modifier). UPDATE Please read more about it here – http://getbem.com/naming/ – that’s a newer version that renders the following answer obsolete. Main … Read more

Java data transfer object naming convention?

Data Transfer Object classes should follow the name convention defined in the Java Language Specification: Names of class types should be descriptive nouns or noun phrases, not overly long, in mixed case with the first letter of each word capitalized. ClassLoader SecurityManager Thread Dictionary BufferedInputStream […] Suffixing a class name with DTO or Dto won’t … Read more