- Ritter
Sport strawberry yoghurt:
- Very strawberry-ish, and not too sweet. The crunchy bits are very nifty.
- Ritter
Sport Ramazotti:
- Quite unobtrusive. Not nasty, but nothing special either. Fortunately, the cordial isn't
very strong.
- GEPA
Bio Mint:
- Very yummy. A bit like After Eight, but not as nastily sweet.
- GEPA
Fairena Bio Blanc:
- Extremely tasty. Actually, the most tasty white chocolate I've ever eaten. It
definitely has character—quite unlike conventional white chocolate.
- Ritter
Sport Erdbeer-Jogurt:
- Sehr erdbeerig und angenehm wenig süß. Die Knusperstückchen darin sind ganz neckisch.
- Ritter
Sport Ramazotti:
- Ziemlich unaufdringlich. Nicht unangenehm, aber eben auch nichts Besonderes. Zum Glück kommt
der Kräuterlikör nicht so sehr durch.
- GEPA
Bio Mint:
- Sehr lecker. Ein bisschen wie After Eight, aber nicht so fies süß, und die
Minzcreme schleimt einen nicht so sehr zu.
- GEPA
Fairena Bio Blanc:
- Extrem lecker. Eigentlich ist das sogar die leckerste weiße Schokolade, die ich je
gegessen habe. Sie hat durchaus Charakter – ganz anders als konventionelle weiße
Schokolade.
Oliver @ 16:59 | Permalink |
0
comments/Kommentare
- Messbecher:
- das Gefäß, in dem der Messwein kredenzt wird
- Reisverschluss:
- das, was man bekommt, wenn man viel Klebreis isst und dazu zu wenig trinkt
- Besenrein:
- Partyspiel, nach dem die Teilnehmer manchmal im Krankenhaus landen
Oliver @ 18:36 | Permalink |
0
comments/Kommentare
Since I've been listening to podcasts while biking to the office, I've become aware of how loud
the usual traffic is. It's no wonder that living at a main traffic road increases the risk of
having a coronary.
Seitdem ich auf dem Weg ins Büro beim Fahrradfahren Podcasts höre, ist mir bewusst geworden, wie
laut der übliche Verkehr so ist. Kein Wunder, dass es das Herzinfarktrisiko erhöht, an einer
Hauptverkehrstraße zu wohnen.
Oliver @ 15:54 | Permalink
|
0 comments/Kommentare
- let the beardy grow for three days (on a weekend) and than shave again with a really sharp
straight razor
- finally find the time to repair the guitar (the head needed to be glued), put on some new
strings and than play guitar after not having played for a few months
- sitting at Starbucks on a Saturday and blogging without any hurry
- drei Tage lang (am Wochenende) den Bart wachsen lassen und dann in Ruhe mit einem ordentlich
scharfen Messer wieder rasieren
- sich endlich die Zeit nehmen, die Gitarre zu reparieren (der Kopf musste geleimt werden),
neue Saiten aufspannen und nach ein paar Monaten Pause wieder Gitarre spielen
- an einem Samstag in Ruhe bei Starbucks sitzen und zu bloggen
Oliver @ 15:46 | Permalink
|
0 comments/Kommentare
If there are dense
materials, shouldn't there also be intelligent materials?
Oliver @ 15:42 | Permalink |
0
comments/Kommentare
This script will photocopy a page from my USB scanner and print it to my 600dpi printer. It
works with Ubuntu Gutsy.
Black and white version
#!/bin/bash
TEMPFILE=/tmp/photocopy
echo "Scanning ..."
scanimage --format tiff --mode Lineart --resolution 600 -l 0 -t 0 -x 210 -y 297 > "$TEMPFILE".tif
echo "Converting ..."
tiff2ps "$TEMPFILE".tif > "$TEMPFILE".ps
echo "Printing ..."
lpr "$TEMPFILE".ps
echo "Removing temporary files ..."
rm -rf "$TEMPFILE".tif
rm -rf "$TEMPFILE".ps
echo "Finished."
Grayscale version
#!/bin/bash
TEMPFILE=/tmp/photocopy
echo "Scanning ..."
scanimage --format tiff --mode Gray --resolution 200 -l 0 -t 0 -x 210 -y 297 > "$TEMPFILE".tif
echo "Converting ..."
tiff2ps "$TEMPFILE".tif > "$TEMPFILE".ps
echo "Printing ..."
lpr "$TEMPFILE".ps
echo "Removing temporary files ..."
rm -rf "$TEMPFILE".tif
rm -rf "$TEMPFILE".ps
echo "Finished."
Dieses Skript kopiert die in meinem USB-Scanner eingelegte Seite und gibt sie auf meinem
600dpi-Drucker aus. Es funktioniert unter Ubuntu Gutsy.
Schwarzweiß-Version
#!/bin/bash
TEMPFILE=/tmp/photocopy
echo "Scanning ..."
scanimage --format tiff --mode Lineart --resolution 600 -l 0 -t 0 -x 210 -y 297 > "$TEMPFILE".tif
echo "Converting ..."
tiff2ps "$TEMPFILE".tif > "$TEMPFILE".ps
echo "Printing ..."
lpr "$TEMPFILE".ps
echo "Removing temporary files ..."
rm -rf "$TEMPFILE".tif
rm -rf "$TEMPFILE".ps
echo "Finished."
Graustufen-Version
#!/bin/bash
TEMPFILE=/tmp/photocopy
echo "Scanning ..."
scanimage --format tiff --mode Gray --resolution 200 -l 0 -t 0 -x 210 -y 297 > "$TEMPFILE".tif
echo "Converting ..."
tiff2ps "$TEMPFILE".tif > "$TEMPFILE".ps
echo "Printing ..."
lpr "$TEMPFILE".ps
echo "Removing temporary files ..."
rm -rf "$TEMPFILE".tif
rm -rf "$TEMPFILE".ps
echo "Finished."
Oliver @ 16:58 | Permalink |
3
comments/Kommentare