Let's Make Money 
Der neue Film von Erwin Wagenhofer wird in der November Ausgabe von Neon erläutert. Der Typ hat viel von der heutigen Gesellschaft verstanden. Aus dem Interview:

Herr Wagenhofer, Ihr Film beginnt mit dem Lockruf der Banken "Lassen Sie Ihr Geld arbeiten". Wie sieht das aus, wenn Geld arbeitet?. Das sieht aus wie in der City of London, dem grössten Finanzplatz der Welt. Dort arbeiten zwei Millionen Menschen in Finanzdienstleistungssektor. Aber die produzieren nichts. Jedenfalls nicht in einem wirtschaftlichen Sinn. Da entsteht kein Produkt. Die Wirtschaft hat sich von der Realität abgekoppelt.

Oder aus demselben Artikel:

Wenn bei uns die Guthaben wachsen, dann steigen woanders die Schulden.


[ 2 comments ] ( 22 views )   |  permalink  |   ( 3 / 218 )
Effective Java, Second Edition 
Bereits bei der ersten Auflage von Effective Java von Joshua Block handelt es sich um einen Klassiker der Java-Literatur. Wenn nach sieben Jahren einen überarbeitete Neuauflage erscheint, darf man gespannt sein, wie sich die Sprachänderungen vor allem durch Java 5 und 6 hier niederschlagen. Ich habe es schon bestellt...

[ 1 comment ] ( 4 views )   |  permalink  |   ( 2.8 / 191 )
JarInspector on Mac OS X 
There is a tiny little utility that let's you inspect *ar files on the Mac OS platform. The software is available here.

[ 2 comments ] ( 65 views )   |  permalink  |   ( 2.9 / 172 )
Pour les amoureux de la montagne... 
En famille, exclues les grandes randonnées alpines. Une altitude de plus de 1'500m semble déconseillée pour un enfant en bas âge (mais je pense que l'on peut pousser quand même jusqu'à 2'000m, nom d'une pipe).

Dans la jungle des cabanes du CAS, je cherchais un guide pour m'indiquer des cabanes adéquates pour les familles. Après quelque temps, je l'ai trouvé et l'ai posé ici.

Bonne journée.

[ add comment ]   |  permalink  |   ( 2.7 / 467 )
What does "> /dev/null 2>&1" mean? 
Here's an example command:
wibble > /dev/null 2>&1
Output redirection

The greater-thans (>) in commands like these redirect the program's output somewhere. In this case, something is being redirected into /dev/null, and something is being redirected into &1.

Standard in, out, and error

There are three standard sources of input and output for a program. Standard input usually comes from the keyboard if it's an interactive program, or from another program if it's processing the other program's output. The program usually prints to standard output, and sometimes prints to standard error. These three file descriptors (you can think of them as "data pipes") are often called STDIN, STDOUT, and STDERR.

Sometimes they're not named, they're numbered! The built-in numberings for them are 0, 1, and 2, in that order. By default, if you don't name or number one explicitly, you're talking about STDOUT.

Given that context, you can see the command above is redirecting standard output into /dev/null, which is a place you can dump anything you don't want (often called the bit-bucket), then redirecting standard error into standard output (you have to put an & in front of the destination when you do this).

The short explanation, therefore, is "all output from this command should be shoved into a black hole." That’s one good way to make a program be really quiet!

[ add comment ]   |  permalink  |  related link  |   ( 2.9 / 497 )

Back Next