Search Results

1
vote

Single most effective practice to prevent arithmetic overflow and underflow

I think you are missing one very important option in your list: choose the right programming language for the job. There are many programming languages which do not have these problems, because the …
12
votes

Best Practices & Principles for GUI design

Never ask "Are you sure?". Just allow unlimited, reliable undo/redo. …
9
votes

What’s the best way to define a class in javascript

The best way to define a class in JavaScript is to not define a class. Seriously. There are several different flavors of object-orientation, some of them are: class-b …
6
votes

Design By Contract and Test-Driven Development

I think there is overlap between DbC and TDD, however, I don't think there is duplicated work: introducing DbC will probably result in a reduction of test cases. Let me explain. In …
29
votes

Why should I use ‘li’ instead of ‘div’?

Im not sure why i need to use ul-li vs simply using divs when listing items. I can make both look exactly the same That there is the key word i …
2
votes

Is it more important to get the problem done or to write programs that are easy to follow?

A lot of the answers say that a good programmer should know to throw his principles over board when faced with an impossible deadline. I disagree. I think, a good programmer is one that can perform …
1
vote

Why not use exceptions as regular flow of control?

I don't think there is anything wrong with using Exceptions for flow-control. Exceptions are somewhat similar to continuations and in statically typed languages, Exceptions are more powerful than c …
7
votes

Do formal methods of program verfication have a place in industry?

Well, Sir Tony Hoare joined Microsoft Research about 10 years ago, and one of the things he started was a formal verification of the Windows NT kernel. Indeed, this was one of the reasons for the l …
0
votes

How to write unit tests for database calls

The whole point of a unit test is to test a unit (duh) in isolation. The whole point of a database call is to integrate with another unit (the database). Ergo: it doesn't make sen …
1
vote

How can I practice better object-oriented programming?

Try some programming in Self, one of the most pure OO languages around. So pure, in fact, that it doesn't even have classes, only objects. It a …
1
vote

Antipatterns with Ruby on Rails

Not learning Ruby. …