Autocomplete in Finder

February 26th, 2009

Some of you may already be familiar that, OS X default shell in Terminal (tsch) has auto-complete feature. For instance, if you wanna type Downloads in the user’s home folder, you can just type Dow and press TAB. It’ll automatically complete the text to Downloads.

Tips

No Comments

What is This Code Coverage Thing?

February 18th, 2009

Good question if you really don’t know what it means :) I’ve more than 7 years of software development experience and to be honest, I’ve never seen a company who uses code coverage as a metric unfortunately. We’re developing a lot of beautiful software and in most cases we’re ending up with lots of code messes :( You can argue on why it happens like this, but I’m not gonna go into that today. Let’s get back to the main topic:

Agile

No Comments

Varargs Collection Factory Method

February 11th, 2009

If you read my double brace post, you might find it very handy. However, sometimes you might be warned by PMD or Checkstyle for this kind of usage. Because they don’t like this kind of usages. One way to fix this problem is putting either //no pmd or suppressing method for PMD.NonStaticInitializer.

Java

1 Comment