Skip navigation.
Home
l'art pour l'art

Politik: Die Demokratie zerbröckelt

See all entries for

In Deutschland wird jetzt zensiert. Von den Bundestagsabgeordneten waren 389 dafür, 128 dagegen und 18 haben sich enthalten. Na wartet! Bei der nächsten Bundestagswahl werd' ich mich rächen. Ich wähl jetzt FDP. Das gruselt die Konservativen von SPD und CDU/CSU immer so sehr.

Politik: Hans-Peter Uhl deckt Skandal deutscher Universitäten auf

See all entries for

Hans-Peter Uhl (CSU) deckte kürzlich einen ungeheuerlichen Skandal des deutschen Bildungswesens auf: Deutsche Universitäten bilden Pseudo-Computerexperten aus. Da frage ich mich, ist mein Dipl.-Inf. überhaupt etwas wert? Wie es scheint hätte ich für Informatik Jura studieren müssen. Nicht aber Informatik.

Gut, daß wir einen Schlaumeier wie Hans-Peter Uhl unter uns haben, der weiß wie die Welt funktioniert.

TOAD: First steps with GNU C++0x lambda functions and closures

See all entries for

John Freeman's C++ Lambda implementation for GCC is still under development
but this weekend I have checked out the development branch of the SVN
repository and wrote the following code:

int main() {
  // create two GUI elements 
  TSlider *slider = new TSlider();
  TWindow *window = new TWindow();
 
  // whenever 'slider' is modified, take its value, convert it from
  // radians to degree and rotate the picture in 'window'
  slider->sigChanged.add(
    [slider, window] () -> void {
      window->setRotation(slider->getValue()*360.0/(2.0*M_PI));
    }
  ); 
     
  slider->setValue(3.1415);
  return 0;
}

I will wait until the C++ lambda code is merged into an official GCC release

TOAD: C++0x lambda functions and closures for GCC are under active development

See all entries for

Supported by the Google Summer of Code™, John Freeman, who is also a co-author of the specification, is working on C++0x lambda functions and closures for the GNU C++ Compiler in the GCC subversion repository. (project description)

I am indeed very excited!

It's Roberts A. Heinleins 100th birthday!

Today is Robert A. Heinlein's 100th birthday!