Kreatives Austoben  
5.10.16, 12:39 - Dies und Das
gepostet von web doc
Manchmal ist es geil sein eigener Chef zu sein.
Keiner wagt es einen aufzuhalten, wenn man mit der Sprühdose durch die Räume geht und Wände beschmiert.







Es röhrt wieder im Taunus 
25.9.16, 07:30 - Dies und Das
gepostet von web doc

Seit ein paar Jahren hat der hohe Hochtaunus wieder ein signifikantes Vorkommen an Hirschen. Und mir kommt es sogar so vor, als ob das auch steigt. Vorigen Donnerstag habe ich 5(!) bloeker aus verschiedenen Richtungen gezaehlt.
Es ist ein unglaublich schoenes Gefuehl, dass die Lebensbedingungen fuer den Wildbestand derart verbessert wurden, und ein noch schoeneres morgens vor Sonnenaufgang mit dem Hundi durch die Felder zu spazieren und dem Treiben der Triebe zu lauschen.

un wech
webdoc

UPDATE
http://www.usinger-anzeiger.de/lokales/ ... 350867.htm
:'(
PocketCHIP 
18.9.16, 10:52 - Linux
gepostet von web doc
Mein neuestes Spielzeug



Seit freitag morgen kann ich ihn endlich in den Haenden halten: den Pocketchip
Ein Einplatinencomputer à la Raspberry Pi mit GB Flashspeicher und Wlan an Board; kombiniert mit Touchscreen, Akku und echter Tastatur. Ein kleiner Linux portable sozusagen.



Unglaublich geil das Ding

Vorinstalliert ist eine zugeschnittene Debiandistribution und die virtuelle Spielkonsole PICO-8

Ich habe gleich einen Gameboyemulator, einen Mediaplayer und Firefox installiert und war positiv ueberrascht: alles laeuft ohne Probleme.



genug gesabbelt: ich muss weiterzocken

]

Datasette C64 Tape Rettung 
11.9.16, 09:29 - retro & C64
gepostet von web doc
Sonntag Morgen, 7 Uhr, alles schläft, ich rette alte C64 Tapes



Danke Eni und Silvan für den Dachbodenfund. vlt finde ich eine Perle ;)
ISO/IEC 646 and my Olivetti Printer 
5.9.16, 10:30 - retro & C64
gepostet von web doc
Last year or so I got the chance to reanimate an old Olivetti Typewriter ET compact 60 with a parallel printer interface. The most difficult part was to get it printing german Umlaute (öäü). I wrote a small script with linux "sed" command replacing the ö character with others that would fit on my Typewriter to print an ö
(example: sending an '|' results in a printed 'ö')
the linux command goes like
sed 's/ö/|/g'


I never found any instuctions on how to use this typewriter correct or which set of characters are replaced by others, and even the internet is unaware.

After changing the printer driver lately the character replacementscript did not work anymore as expected, so I had to re-Do it and dig a bit deeper to find out what is going on:
the characters for äöü have decimal values of 123, 124 and 125...
So I decided to find the corresponding codepage used.
Its: ISO/IEC 646-DE, a 7 bit coded character set used from the 60s to the end 80s (and btw. true german ASCII).
The detailed name is ISO 646-021 National Standard DIN 66003 (Code page 1011, 20106)

Is anybody out there who knows how to get windows printing to 7bit ISO 646-DE printers?

My solution is to simply to replace the characters (as shown here) and print the replaced text.

You can save the folowing script under cygwin and run it like "./replace.sh input.txt output.txt"
sed 's/|/</g;s/ü/}/g;s/ö/|/g;s/ä/{/g;s/Ä/[/g;s/Ö/\\/g;s/Ü/]/g;s/ß/~/g;s/«/"/g;s/»/"/g;s/$/\r/'  $1 >$2


Why does this work, even though the txt file is saved in utf-8?
The first 128 of the 2,164,864 characters in utf-8 are plain ASCII (sadly not the german version 😄 ).

<<alpha <Zurück | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | Weiter> omega>>