Today, I've shaved with a straight razor against the grain (for the second pass). I'm very proud that no blood has been shed and that the shave even is reasonably close.
Hab mich heute zum ersten Mal mit dem Rasiermesser auch gegen den Strich rasiert (als zweiten Durchgang) und bin jetzt sehr stolz, dass dabei kein Blut geflossen ist und die Rasur sogar halbwegs gründlich geworden ist.
I'm Test Infected again—this time it's about PHPUnit for my TYPO3 extension. I've written loads of tests during the last few days (discovering quite a few bugs in the process).
Ich bin mal wieder test-infiziert – diesmal mit PHPUnit für meine TYPO3-Extensions. Ich habe in den letzten Tagen massig Tests geschrieben (und dabei einige Bugs entdeckt).
How to permanently choose in Ubuntu/Kubuntu Linux which JRE should be used so you don't need to configure it manually for Eclipse, Install4J (thus also for i2Brain) etc. manually:
sudo update-alternatives --config java
For the Sun JRE, you also need to install the corresponding sun-java6-*
packages
beforehand.
So kann man in Ubuntu/Kubuntu Linux auswählen, welche JRE man dauerhaft benutzen will, damit man es für Eclipse, Install4J (und damit auch für i2Brain) etc. nicht immer manuell einstellen muss:
sudo update-alternatives --config java
Für die Sun-JRE benötigt man natürlich vorher noch die entsprechenden
sun-java6-*
-Pakete.
Life can go on again—during the last few weeks, I've dug through all seven volumes (Harry Potter this time, not the Dark Tower).
Das Leben kann wieder weitergehen – ich habe in den letzten Wochen alle sieben Bände gelesen (diesmal Harry Potter, nicht der dunkle Turm).
I've just faced the task to move the most important data of a TYPO3 installation. These were the challenges of this task:
So that's how I proceeded:
gunzip
.recode windows-1252..utf8 *.sql
mysql -u typo3 -p typo3
--default_character_set utf8 < content.sql
fileadmin
._cli_lowlevel
. Then update the reference index
on the command line:php-cli ./cli_dispatch.phpsh lowlevel_refindex -e
Ich stand gerade vor der Aufgabe, die wichtigsten Daten einer TYPO3-Installation umzuziehen. Dabei waren folgende Herausforderungen zu meistern:
Ich bin schließlich folgendermaßen vorgegangen:
gunzip
entpacken, falls sie gepackt waren.recode windows-1252..utf8 *.sql
mysql -u typo3 -p typo3
--default_character_set utf8 < content.sql
fileadmin
kopieren._cli_lowlevel
anlegen und dann auf der
Kommandozeile den Referenzindex aktualisieren:php-cli ./cli_dispatch.phpsh
lowlevel_refindex -e