Search Results

0
votes

Should I store all the text in my database in uppercase or in lowercase?

Slightly off topic but... NEVER trust client side formatting of ANYTHING. …
1
vote

Is a “Confirm Email” input good practice when user changes email address?

Typing things twice is frustrating and doesn't prevent copy&paste errors or even some typos. I would use an authenticate/activate schema with a roll back to the old address if the activ …
0
votes

Do you usually set the default value before or set it in the else?

I generally set the "default" value and use if statements to modify it. If no default exists then only the if statements. int timeout = 100; if (moreTime) timeout = 1000; int searc …
0
votes

How many classes should a programmer put in one file?

I prefer 1 to 1 for classes unless the inner class will be entirely private. Even then I usually break it out for ease of finding it and tracking changes in SVN. …
0
votes

Any SQL database: When is it better to fetch a whole table instead of querying for particular rows?

Trust that the SQL server will do a better job of both caching and filtering than you can afford to do yourself (unless performance testing shows otherwise.) Note that I said "afford to do" …
0
votes

What’s a good way to backup (and maybe synchronize) your development machine?

You can use the linux "dd" command line utility to clone a hard drive. Just boot from a linux cd, clone or restore your drive and reboot. It works great for Windows/Mac drives too. This wil …
0
votes

Do you compile and run code very often or write large code pieces at once?

I like do a lot of debug/trace logging (I seldom use the IDE's debugger) so I often run an incomplete piece of code to see that the log output is what I expected. I usually use unit tests (even if …
0
votes

SVN management on a project that uses absolute paths.

I have to deal with a similar configuration (project files in the SVN repository.) The primary issue is that someone will "fix" the path for their system and then check in the changes (which kills …
4
votes

A good place to put autogenerated code?

Summary of best practices: Make it repeatable Create generated code as part of a build process. Don't check generated code into source control. (Do check in the sour …
3
votes

How to set up maven for two separate projects that depend on the same jar.

You shouldn't be adding the .jars into your projects. You should be adding JAR dependencies to your .pom files. Maven will download the .jars for you. You will have to create .pom files for each …