Categories
Uncategorized

Converting E-Mail from Outlook to *

After I converted from Windows last year I still avoided to convert my old emails. Well – this weekend the time has come. After a long hard road of try and error I came to the following conclusion:

1) Setup a new Virtual Machine with Windows XP (includes Outlook Express)
2) Install Microsoft Outlook Trial in this VM
3) Install Thunderbird in this VM

4) Open your PST files in your Outlook trial version and copy all the mails to the main PST.
5) Open Outlook Express and select “import mails from Outlook”
6) Open Thunderbird and select “import mails from Outlook Express”

7) Transfer Thunderbird’s MBOX files to Thunderbird on your Mac.
On PC the Local Folders can be found in a path like this: C:\Documents and Settings\Administrator\Anwendungsdaten\Thunderbird\Profiles\********.default\Mail\Local Folders
On Mac it’s found in a dir like ~/Library/Thunderbird/Profiles/********.default/Mail/Local Folders

Categories
Uncategorized

Cross Golf Saisonabschluss

Auch im Dezember konnte die hartgesottene Anhängerschaft des Kiesgruben-Golf nicht davon abgebracht werden, den Saisonabschluss mit einer gepflegten Runde bei nur knapp über Null Grad ausklingen zu lassen…
[nggallery id=2]

Categories
Uncategorized

chinesisch für bayern

heid scheint d’sunn so schee – i kunn kaum schaun

Categories
Uncategorized

Der neue Audi A8

Endlich ist es soweit: Der neue Audi A8 wurde in Miami der ?-ffentlichkeit vorgestellt. Hier ein paar Resonanzen:

Allgemeine Artikel:

heise.de

Audi MMI Touch:

wall street journal
gizmodo.de
gizmodo.com
carbuyersnotebook.com
autospies.com
audi.de

Categories
Uncategorized

Audi Commercials

Official Commercials

http://vimeo.com/1761831 (Audi TTS)
http://www.dailymotion.com/video/x8fce0_audi-quattro_auto (Audi Quattro)
http://vimeo.com/4060100 (Clean Diesel)
http://www.youtube.com/watch?v=aVQKrxSOx7Q (A4 clean diesel)
http://www.youtube.com/watch?v=GStcrh43yXQ (Q5 unboxed)
http://www.youtube.com/watch?v=H6OZiHzbsNQ&NR=1 (Audi – all in one)

Test drives

http://www.dailymotion.com/video/x49n1o_audi-r8-test-drive-manualgearcom_auto (R8, ManualGear)
http://www.dailymotion.com/video/x7hfwn_audi-q5_auto (Q5, France)
http://www.dailymotion.com/video/x4r85n_audi-rs6-avant_auto (RS6, AutoBild, Germany)

Categories
Uncategorized

Backup/Restore SVN repositories

backup:

svnadmin dump /path/to/repo | gzip -c > myBackup.gz

restore:

svnadmin load /path/to/repo < /path/to/dumpfile.dump

after restoring, don’t forget to set the rights accordingly (forgetting that will mark you as noob):

chown -R svn:www-data /path/to/repo
chmod -R g+w /path/to/repo
Categories
Uncategorized

Herbst 2009

[nggallery id=1]

Categories
Uncategorized

lightroom shortcuts

r = crop
k = adjustment brush
h = hide adjustment nodes

Categories
Uncategorized

e.solutions Job-Börse online

Audi’s neues Joint-Venture zur Entwicklung des nächsten MMI-Systems hat nun seine Stellenangebote online geschaltet:
http://esolutions-jobs.de/

Categories
Uncategorized

Eclipse C++ in OSX :: program is not a recognized executable

This morning I encountered a strange debugging problem in Eclipse. I couldn’t set the executable in my debug configurations because the executable wasn’t recognized. Strange enough as I could perfectly execute it from command line. After a bit of try/error and internet investigation I finally found the answer. From OSX snow leopard on, gcc seems to build 64 bit executables by default. And those won’t be recognized from Eclipse in return. To solve the error, you’ve got to explicitly set your architecture to i386.

Enter your project properties and add the command line option “-arch i386” for each C++ Linker, C++ Compiler and C Compiler. After a clean build, you should be clear to debug again. In Linker options make sure to NOT set it up as -Xlinker option.