All posts by a.philippi
ping your site from all over the world
Use this link
http://www.just-ping.com/
regex – match string not beginning with word
/^((?!^TEST).)*$/
matches strings that DO NOT BEGIN with TEST
^((?!^(LOREM|IPSUM|LUGULUGU)).)*$
matches strings that
DO NOT BEGIN with LOREM
AND
DO NOT BEGIN with IPSUM
AND
DO NOT BEGIN with LUGULUGU
classicfm.nl via VLC
from the console
vlc http://213.75.57.117/CLASSICFMAAC
or – if you want no graphical interface
cvlc http://213.75.57.117/CLASSICFMAAC
Google thinks I can’t count to 4, recommends 3
wkhtmltopdf on freebsd 8.1 amd64
I compiled wkhtmltopdf 0.9.9 and 0.10.0_rc1 using the modified qt-version(git clone git://gitorious.org/+wkhtml2pdf/qt/wkhtmltopdf-qt.git wkhtmltopdf-qt). The resulting binary does not need an X Server.
The best results are delivered by the wkhtmltopdf 0.9.9
It took me a total of approx. 20 hours 🙂 …. but now I’m really proud 😀
You can download the zipped static binary here wkhtmltopdf 0.9.9:
wkhtmltopdf
Xvfb on freebsd
pgk_add – r xorg-vfbserver
or
cd /usr/ports/x11-servers/xorg-vfbserver
make
install logrotate on debian/ubuntu
i tried
sudo apt-get install
logrotate
that’s wrong!!
sudo apt-get install logwatch
is correct
typo3 layered menu bug update
Regarding http://bugs.typo3.org/view.php?id=16165 Torben Hansen said today:
“Since 0012376 got into the CORE (TYPO3 4.4.5), the TMENU_LAYERS of one of my TYPO3 sites don´t work anymore. I get exactly the same error (Too much recursion) as described in this bugreport. The menu-DIVs do not have unique IDs, which leads to this error.
The Bugfix in 0012376 works fine with menus having one sublevel. If you have 4 sublevels, it does not work correctly, since “substr(md5(‘gl’ . serialize($this->mconf)), 0, 6)” does not produce unique results.
The approach from this bugreport using PHP uniqid works great and every menu has its unique ID. “
So maybe the “uniqid-solution” – suggested by us – will be taken into consideration for future releases ….