Archive for Dezember, 2009

Fixed: Error 150:30 (Adobe CS4 licensing problem) – MAC

26. Dezember 2009 - Veröffentlicht in Allgemeines | 14 Kommentare »

The following script will solve the often and randomly occuring problem with Adobe CS4 Mac “licensing for this product has stopped working… Error:150:30

If this solves your problem (it will!) consider leaving a nice comment.
Maybe you even want to

Copy and paste this to Terminal.app, enter your user password when prompted and follow the instructions on the screen. During this process, as ~40MB Liscense recovery file provided by Adobe will be downloaded, executed and deleted afterwards. Make sure to view and agree with the license agreement for this piece of code before you run the script (chances are it will fail otherwise).

if [ "$(grep -o activate.adobe.com /etc/hosts)" = "activate.adobe.com" ];
then echo "/etc/hosts is already modified"
else
echo "127.0.0.1 activate.adobe.com" >> /etc/hosts
echo "/etc/hosts was successfully modified"
fi
sudo rm -rf "/Library/Application Support/adobe/adobe PCD/cache/cache.db"
sudo rm -rf "/Library/Preferences/FLEXnet Publisher"
say "Now, please wait for the download to finish."
curl -o LicenseRecovery111.dmg http://download.macromedia.com/pub/support/tools/LicenseRecovery111.dmg
sudo hdiutil attach LicenseRecovery111.dmg
sudo python '/Volumes/LicenseRecovery 11.6.1/LicenseRecovery/'LicenseRecover.py
sudo rm -rf ~/AdobeLicensingFilesBackup
sudo hdiutil detach "/Volumes/LicenseRecovery 11.6.1"
sudo rm LicenseRecovery111.dmg
say "Done! now start CS4 and enter your serial"
exit 0

This will perfom the steps suggested by Erik’s Brain and Jake’s Computer Blog. After completing these steps, you will need to re-enter your serial number, and CS4 will work again.

Be aware that this is not a crack! You will need a valid serial number.

If this doesn’t work for you:

  • let me know
  • check if Adobe’s Liscense Recovery tool was updated to a version other than 11.6.1 and  if so, modify this script accordingly, then let me know
  • check if you are using a Mac and if not, follow the advice given here.
  • remember that this is not a crack, you will need a valid serial number

Unerwartet: Heile aus Kopenhagen zurück.

16. Dezember 2009 - Veröffentlicht in Politik, unterwegs | Keine Kommentare »

Kopenhagen

11. Dezember 2009 - Veröffentlicht in Politik, unterwegs | Keine Kommentare »

…unterwegs nach Kopenhagen. Als offener und ungeduldiger Befürworter des Klimawandels werde ich nicht eher Ruhe geben, bis wir hier Mittelmeerklima haben, im Hochsommer mittags Siesta machen, und der Winter angenehme 20°C Abendsonne beschert.

Und wenn wir über das Ziel hinaus schießen, werd ich meinen Kindern im UV- und hitzegeschützten Bunker wenigstens erzählen können, ich wär “damals, Null-Neun Kopenhagen” dabei gewesen (in der Resistance quasi).

Deutsches Desaster in Afghanistan

9. Dezember 2009 - Veröffentlicht in Allgemeines | Keine Kommentare »

In Afghanistan bahnt sich das deutsche Desaster an: “Nur Doofe und Halbkriminelle wollen zur Polizei” berichtet die Sueddeutsche.

fixed: SPSS 17 / Mac OS X Snow Leopard issues

9. Dezember 2009 - Veröffentlicht in Allgemeines | 30 Kommentare »

SPSS 17 refuses to run or even install under Snow Leopard, due to incompatibility/neglect of Java 6 JRE. This can easily be fixed:

STEP 1:
run the following commands in Terminal or as a shell script (can be copied and pasted without individualization to your System)

cd ~/
curl -o java.1.5.0-leopard.tar.gz http://www.cs.washington.edu/homes/isdal/snow_leopard_workaround/java.1.5.0-leopard.tar.gz
tar -xvzf java.1.5.0-leopard.tar.gz
sudo rm /System/Library/Frameworks/JavaVM.framework/Versions/1.5
sudo rm /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0
sudo mv 1.5.0 /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0-leopard
sudo ln -s /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0-leopard /System/Library/Frameworks/JavaVM.framework/Versions/1.5
sudo ln -s /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0-leopard /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0
say "Now, in Utilities - java preferences edit the list entailing what your computer should use with programs: drag java1.5 32bit onto the top of the list. Happy analysis."
echo "Now, in Utilities - java preferences edit the list entailing what your computer should use with programs: drag java1.5 32bit onto the top of the list. Happy analysis."

STEP 2:
Please make sure to follow the suggestion this script outputs in the end: “Now, in Utilities -> java preferences edit the list entailing what your computer should use with programs: drag ‘java1.5 32bit’ onto the top of the list.”

What will this do to my machine? This will download and ‘install’ Java Version 5, which comes with OS/X Leopard on your machine bypass the reason for Snow Leopard incompatibility. Don’t worry, as V. 6 remains installed, no incompatibility issues will arise elsewhere.

STEP 2.1:
Install SPSS17 (if not already installed prior to Snow Leopard upgrade).

STEP 3:
edit /Applications/SPSSInc/Statistics17/SPSSStatistics17.0.app/Contents/bin/jvmcfg.ini (make sure to modify this path in case you decided not to install SPSS to the default directory):
nano /Applications/SPSSInc/Statistics17/SPSSStatistics17.0.app/Contents/bin/jvmcfg.ini and change line

jvm_lib_path1=/System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK/Libraries/

to

jvm_lib_path1=/System/Library/Frameworks/JavaVM.framework/Versions/1.5/Libraries/

STEP 4:
edit /Applications/SPSSInc/Statistics17/SPSSStatistics17.0.app/Contents/Info.plist (make sure to modify this path in case you decided not to install SPSS to the default directory):
nano /Applications/SPSSInc/Statistics17/SPSSStatistics17.0.app/Contents/Info.plist
and change

<key>CFBundleIdentifier</key>
    <string>com.spss.SPSSStatistics.17.0</string>

to

<key>CFBundleIdentifier</key>
    <string>com.spss.SPSSStatistics.17.1</string>

SPSS will now start without errors.
Bildschirmfoto 2009-12-09 um 15.12.36

Credits: This is a summary of tips I found here, here and here, where you will find further assistence in case this fails, which I am sure it won’t.

By the way, IBM! Feel to take this as inspiration for a patch/bugfix other than “purchase SPSS 18″!

Und sonst noch? #6

7. Dezember 2009 - Veröffentlicht in Allgemeines, Berlin, Politik, Presse | Keine Kommentare »

Laut Polizeibericht haben sich in der Nacht zum Nikolaustag ein paar Hooligans hier im Kiez das falsche Opfer ausgesucht: Einen bewaffneten Zivilpolizisten, der nach einem Warnschuss auch von der Schusswaffe Gebrauch machte.

Dumm gelaufen – gewissermaßen für beide Seiten.

Nicht jedoch für Bild, BZ und Co, die heute mit Ihren Titelbildern natürlich sofort die Verbindung zu brennenden Autos herstellen. Dass es sich um offensichtlich nicht besonders linke oder sozialkritische Täter handelt, spielt keine Rolle, denn: “Die Übergriffe der letzten Tage ermuntern auch offenbar unpolitische Jugendliche, auf Polizisten einzuprügeln” – Die Tatsache, dass Zivilpolizisten in Zivil rumlaufen, um also solche nicht erkannt zu werden, fällt einem BZ-Leser nämlich nicht von allein auf.

UPDATE 22:54h: Hier die Schlagzeile des Ansoßes… (und der Zusammenhang, in dem sie steht)

IMG_0877

…und ein halbwegs vernünftiger Artikel in der Sueddeutschen, die Ihren Lesern zutraut, die Hirnrissigkeit der Äußerung des Berliner Landesvorsitzenden der Deutschen Polizeigewerkschaft, Bodo Pfalzgraf in Ihrer vollen Breite zu erfassen, ohne dass es weiterer Erläuterungen bedarf: “Das muss ein klares Signal sein: Wer Polizisten angreift, der muss auch damit rechnen, dass die Schusswaffe gebraucht wird.” (sic! in der SZ, etwas abgewandelt von der offiziellen Pressemitteilung)

Unter uns: Ich hab nichts dagegen, wenn dämliche Schläger-Hooligans in Zukunft Angst davor haben müssen, dass ich eine Knarre habe. Blöd nur, dass selbst das sie anscheinend nicht zurückschrecken lässt, und ich auf die selbstverständliche Konsequenz, die ein Polizist dann ziehen (haha!) kann, verzichten muss.

“Kindermund tut Weisheit kund.”

1. Dezember 2009 - Veröffentlicht in Video | Keine Kommentare »

Computertechnik im Technikmuseum Berlin

1. Dezember 2009 - Veröffentlicht in Video | Keine Kommentare »

Eigentlich alles dabei, auch das Ergebnis.