Search Results

1
vote

When to use final

The development-time benefits of "final" are at least as significant as the run-time benefits. It tells future editors of the code something about your intentions. Marking a class "final" …
0
votes

How do you version your projects and manage releases?

You didn't mention if any of the projects access a database, but if any do, that might be another factor to consider. We use a major.minor.bugfix.buildnumber scheme similar to others described in …
1
vote

GET versus POST in terms of security?

Many people adopt a convention (alluded to by Ross) that GET requests only retrieve data, and do not modify any data on the server, and POST requests are used for all data modification. While one …