Search Results

1
vote

How to make the cleanest code when reporting progress to a user?

A fairly simple and clean way would be to create an abstract class that has a do() method and abstract doTask() and getName() methods: do() { ReportProgress("Starti …
1
vote

How would you format/indent this piece of code?

Whatever Eclipse's auto-formatter gives me, so when the next dev works on that code and formats before committing, there aren't weird issues with the diff. …
7
votes

Do you inflate your estimated project completion dates?

Kirk : Mr. Scott, have you always multiplied your repair estimates by a factor of four? Scotty : Certainly, sir. How else can I keep my reputation as a mir …
1
vote

Database Development Mistakes Made by AppDevelopers

Dismissing an ORM like Hibernate out of hand, for reasons like "it's too magical" or "not on my database". Relying too heavily on an ORM like Hibernate and trying to …
1
vote

Optimizing Team Communication

IRC is great. They can copy/paste short bits of code, and not be distracted by it when they aren't actively using it. Also, I'd hate to wear a headset all day. …
4
votes

Web Application Development Process

I'm assuming you have some user stories, and requirements already. I like to create a rudimentary domain model (basically a class diagram), perhaps not having ALL of the fields that everything will …
0
votes

Dealing with commas in a CSV file

You can put double quotes around the fields. I don't like this approach, as it adds another special character (the double quote). Just define an escape character (usually backslash) and use it wher …
22
votes

How do you clear your mind after 8-10 hours per day of coding?

Swing dancing. Exercise and socializing and good music all at the same time. I do this twice a week, and it's the best thing I've found to keep me sane. (There are also women there. True s …
3
votes

Loop with switch vs. different loops

You mentioned you are stuck in 1.4 in a comment, so this should get you started on something similar to what Jon Skeet suggested, but as a typesafe enum. public abstract class Const …
7
votes

How much of the Mythical Man Month still applies?

The idea isn't that "large teams don't work", it's that "throwing people/money at the problem isn't the answer". Things like unit testing, separation of concerns, etc. are doing other things rather …
0
votes

Constructor with all class properties or default constructor with setters?

There are other strategies here, too. Before trying to figure out how to deal with lots of parameters, I think it is important to re-visit your design and look at whether your class is doing too mu …
0
votes

Picking good identifier names

Like kekoav, I am wary of naming something FooManager or FooController. Not only is it indicative …
1
vote

Java: ArrayList for List, HashMap for Map, and HashSet for Set?

I don't really have a "default", though I suppose I use the implementations listed in the question more often than not. I think about what would be appropriate for whatever particular problem I'm w …