
I was feeling guilty about ordering our new Nespresso Citiz machine but now I realise it is actually an essential Healthy living enabler.



As we arrive Montreux for the start we came upon a Fresh Bread vending machine ... ah only in Switzerland.

Marcus asks: Can we use of damn helicopter or are you going to force me to take the train?
I guess we chose the train
I've been assured by the bigwigs in presentations at work that the project I am working on is simply the most critical IT upgrade of the next 18 months. Michel and I participate the Build phase of a new AIX based SAP ECC6 (ERP Central Component 6) level template.
Having downgraded our Lounge TV screen from a 2560x1600 pixel panel to a mere 1920x1080 HD panel an extra thought came to mind.
Well I can confirm that the low point of the weekend was when I grabbed what should have been an inert cable that I was trying to solder and experienced the thrill of 240V coursing through my body. And the high point was living to tell the tale ....
We soon found out that whatever set of switches we chose the unit did not switch on or switch off as expected.







So just recently we upgraded our GPS. The previous Garmin V was so old that it did not even have a colour display, or even a voice for turn by turn instructions.
The essential packers tool: Nespresso coffee (no instant coffee for us posh movers)
This is the profile of the run, but with this profile I expect to spend quite some time walking! As such I am taking my carbon fibre waling poles with me.

We study the map trying to figure how to get home. Notice that Bouveret is nowhere on the map. We had 1 hour to find a Bouveret sign and if not we would double back to Lake Tanay to get the bus.
We have just run up this mountain! And then walked back down.




We ready the essentials: Peanut butter, GPS and iPhone.
First up Agata is driving equipped with a healthy smile
Our new budget Navigon 7310 GPS doing a great job. Although with no manual except the online one on the device the route programming is a bit hit and miss.
We are carrying some Appenzeller cheese contraband so how appropriate that le fromage passes his home.
And then the rain started
3 hours later it is still raining
Arrival Munich and we are so happy
Agata the bookworm is already reading, whilst our host proudly shows us some Xbox skills
Waldek is about to serenade us
Apparently this is not a Dolce and Gabbana T shirt
Marcus and the flower
Entrance to the BMW land munich : homage to all things BMW
BMW foyer - impressive
3 around the M3
Some kind of fast car
2398cc BMW P86/8, weight 95Kg, revs to 19000 rpm, developing 720 BHP
BMW architecture
BMW Museum
BMW spiral
We stumble upon the 24 hour Munich Olympic Park cycle race
For 10 minutes this man proved that phone ghetto blasters are not just for teenagers
Arrival at Neuschwanstein, the inspiration for Sleeping Beauty's castle
View to the Bridge
Macus and Agata posing
Hello Daisies
And then there were 3 in front of the Castle
Waldek
Castle View
The Ferrari four from Luxemborg
Leaving Neuschwanstein for Lausanne the parking ticket machine sums up our weekend

A short article on howto copy from 8" to 3.5" diskettes
Assumptions: You have a Cromemco cromix computer with a DPU or XPU (dual processor card) and a Cromix operating system that has been generated to include a Uniform floppy driver
Caveat: If you run Cromix on a 68020 system without a Z80 slave processor then I find any attempt to read CPM or CDOS diskettes using the cdosopy -l command will hang the whole system!
In all cases below note my configuration:
A: drive 5.25" 360K
B: drive 3.5" emulation of an 8" drive
C: drive 8" physical drive
Operating System has Uniform Floppy driver installed
The Uniform diskette format has all tracks formatted at double density, 512 bytes per sector (normally). In particular Side 0 track 0 is not in Single Density. This a diskette created in that format is more likely able to be read by a modern imaging program
initflop -v -u 512 ufdb
makfs -b 2 ufdb #
readall ufdb # verify integrity
free ufdc # should print out free space or rude message if wrong diskette format e.g. cromix format
rcopy -l 10 /dev/ufdc /dev/ufdb # this is only going to take a few minutes. So much more efficient that cptree
check ufdb # run icheck and dcheck
d /
mount -r /dev/ufdb /db
find /db -print
unmount ufdb
* Place both the source 8" and unformatted target 3.5" into disk drives
initflop -v -u 512 ufdb
makfs -b 2 ufdb #
readall ufdb # verify integrity
free fdc # should print out free space or rude message if wrong diskette format e.g. cromix format
config /bin/cptree.bin 128K # do this once only
mount -r fdc -dc
mount ufdb /db
mode -pa
cptree -fv /dc /db # may take some time
unmount ufdc
unmount ufdb # flush buffers and unmount target
check ufdb # run icheck and dcheck
d /
mount -r /dev/ufdb /db
find /db -print
unmount ufdb
Worst case because it is slow, some of the source filenames will be illegal and therefore cant be copied with this method and lastly since on my faster Cromemco 68020 system cdoscopy hangs so cannot be used.
initflop -v -u 512 ufdb
makfs -b 2 ufdb #
readall ufdb # verify integrity
free fdc # should print out free space or rude message if wrong diskette format e.g. cromix format
mount ufdb /db
mode -pa
d /db
cdoscopy -bv fdc "*.*" # perform the copy
unmount ufdb # flush buffers and unmount target
check ufdb # run icheck and dcheck
d /
mount -r /dev/ufdb /db
find /db -print
unmount ufdb