Search Results

0
votes

Why do we still program with flat files?

I have the same vision! I really wish this would exists. You might want to take a look at Fortress, a research language by Sun. It has special support for formulas in source code. The quote …
0
votes

What tool/application/whatever do you wish existed?

I would like to have a flat filesystem where tags instead of directories are used to keep files in order. This should include the system-wide file open/save dialogs as well as a descent standalone …
0
votes

How to name variables.

In DSLs and other fluent interfaces often variable- and method-name taken together form a lexical entity. For example, I personally like the (admittedly heretic) naming pattern where the verb is pu …
4
votes

What’s your favourite programming language, and its killer feature?

Smalltalk: write code while your program is running, no compile cycle at all! I really do not understand why no other language offers this!? Ruby and Python could both offe …
1
vote

What do you think of Model-driven Software Development?

Buzz. What I believe in, OTOH, is modeling at runtime. Instead of generating code, keep the model alive at runtime and let your application be a runtime interpreter of these models. …
29
votes

Does pair programming work?

You are lucky, Pair Programming is one of the few (if not the only) agile technique that has been validated in an empirical experiment. Read for yourself: …
0
votes

Why don’t we have two nulls?

You can always create an object and assign it to same static field to get a 2nd null. For example, this is used in collections that allow elements to be null. Internally they use a p …
0
votes

What is the most efficient Java Collections library?

To store millions of String in a map, take a look at http://code.google.com/p/flatmap …