Montag, 30. April 2007

locate a line of code

Sometimes you want to know in which file and line a method is defined.
This snippet should do that job.

Labels: ,

Sonntag, 29. April 2007

Favourite Firefox Plugins

  1. firebug
  2. web developer toolbar
  3. html validator
  4. venkman
  5. devboi
  6. Tab Mix Plus
  7. Save Session
http://kb.mozillazine.org/Command_line_arguments

Labels:

Donnerstag, 26. April 2007

Really simple templates with ruby

Example:
template = 'Hello #{name}!'
name = 'Paul'
puts eval(%{"#{template}"}) # => Hello Paul!
name = 'Holger'
puts eval(%{"#{template}"}) # => Hello Holger!
Note that the template definition use a single qutoed string, so no variables are evaluated within the template string.
Also note that the template can't use unescaped double quotes, because the template evaluation uses them to delimit the template string.

Labels: ,

Positives Denken


...korrekt, korrekt, jefällt ma, jeht ab!

Labels:

Mittwoch, 25. April 2007

Warum kann man die Programmiersprache Ruby empfehlen?

  • 100% objektorientiert(alles ist ein Objekt)
  • sehr dynamisch
    • monkey patching
  • konsistent(entwickelt nach dem Prinzip der geringsten Überraschung)
  • verlangt nur ein Minimum an syntaktischer Disziplin
  • integrierte DSL's lassen sich einfach implementieren
  • Funktionale Programmierung wird unterstützt
...die Liste läßt sich sicher noch verlängern. Welche Argumente gibt es noch?

Labels: ,

Montag, 23. April 2007

Evolution of Dance

Labels: ,

Linkliste 2.0

The Machine is Us...

Web 2.0 oder Das Web sind wir
web2null

Labels:

Donnerstag, 19. April 2007

Ubuntu - Wie alles begann

Ein definiertes Fernziel und es konnte losgehen.

Labels: