Search Results

1
vote

What are the best alternatives to notepad?

@htanata +1 to gedit. It is my choice when writing ruby, groovy and trying some java code. Kind Regards …
4
votes

What JavaScript library would you choose for a new project and why?

jQuery because of QUnit. :-) …
1
vote

What are “best practices”?

@Ash Totally agree with you about context. To me, the best best practice is common sense. Kind Regards …
2
votes

What are the most commonly used anti-patterns?

Code without tests (or testability)! Kind Regards …
2
votes

How to remain employable in the face of constant technological change

My advice: keep walking! Wait, is not that. Keep Learning. :-D But learn the conc …
3
votes

Opinion of Hosted SVN providers?

+1 for Assembla. A easy to use out of the box svn with trac and other tools. Kind Regards …
2
votes

Refactor Mercilessly or Build One To Throw Away?

When talking about Agile, you could do both, but in a general way, you will do spikes (prototypes) only to try specif …
3
votes

How do you build a culture of collaboration in your team?

If your team is small and you are communicating just inside it, forget the wiki. Try something like coding dojos, lighting talks, some development brainstorms and, more important, get out of the of …
3
votes

What’s the golden code/comment ratio?

Sorry, there is not rule of thumb. Frameworks and libraries, per instance, requires much more comments because programmers will be customers and haven't time to read code every time they need to in …
6
votes

Best practices considered harmful?

There is no such thing like "best practices". There is "best practices for a given context". Kind Regards …
30
votes

To ternary or not to ternary?

Use when you have expressions that are very simple: int a = (b > 10) ? c : d; Avoid to chain ternary operators: int a = b > 10 ? c < 20 ? …
7
votes

Java core API anti-Patterns. What is wrong?

java.util.Calendar is a example of bad API design. Try to calculate the difference in days between two calendars and you will see that code is not readable/clear/succinct. APIs to handle date …
0
votes

Do you personally identify with your code?

I call my self a problem solver. Well, software problem solver. :-) In The Psychology of Computer Programming …