Search Results

2
votes

Why are Vi and Emacs popular ?

Joel might say: "You have to learn C, and you have to code C using vi or emacs". …
5
votes

Is Unit Testing worth the effort?

Unit tests are also especially useful when it comes to refactoring or re-writing a piece a code. If you have good unit tests coverage, you can refactor with confidence. Without unit tests, it is …
0
votes

DoSomethingToThing(Thing n) vs Thing.DoSomething()

In general, if "something" is an action that "thing" naturally knows how to do, then you should use thing.doSomething(). That's good OO encapsulation, because otherwise DoSomethingToThing(thing) w …
3
votes

Is it just me or are interfaces overused?

Basic rule of thumb: If you only have a single class implementing an interface, and if you can't think of another possible implementation of the interface, you don't need an interface, at least no …
3
votes

The single most useful Emacs feature

Have M-x shell open a new shell instead of putting the existing shell buffer in the foreground: (add-hook 'shell-mode-hook '(lambda (&rest ignore) (rename-buffer (generate-new-bu …