Search Results

1
vote

What’s the best tool or method to search for a specific word in a codebase?

find and grep will find the word you're looking for, but to replace it you need to use sed, awk or your favorite stream editing filter. …
27
votes

One SVN repository or many?

The single vs. multiple issue comes down to personal or organizational preference. Management of multiple vs. single mainly comes down to access control and maintenance. Access cont …
3
votes

How does TDD make refactoring easier?

TDD says write a failing test first. The test is written to show that the developer understands what the use case/story/scenario/process is supposed to achieve. You then write the …
0
votes

Best practices for storing database passwords

NTLM Authentication or LDAP-based (Active Directory) authentication should be available to you with a bit of effort. This would allow you to use your "windows authentication" across applications. …
5
votes

What are the best practices to log an error?

Apache Commons Logging is not intended for applications general logging. It's intended to be used by libraries or APIs that don't want to force a logging implementation on the API's user. …
1
vote

count vs length vs size in a collection

Adding to @gbjbaanb's answer... If "property" implies public access to the value, I would say that "method" is preferred simply to provide encapsulation and to hide the implementation. …
9
votes

Best practices, building trunk against trunk?

Hmm, I may be in a minority here, but this comes down to release management. Developing against the trunk of a set of shared components means, by definition, that the component …