Die erste Version 0.1a In den ersten Tests hat sie unsere Label erstellt. Das offene Fenster stört ein wenig aber das mach ich erst weg wenn es stabil läuft. Würde mich über Feedback freuen. Stay tuned. Thorian >> Download << Share on Facebook
Share on Facebook
So this will be one of the more technical posts again. Currently I’m working on how to manage a whole bunch of Snoms together with a Gemeinschaft PBX but without their mechanism of auto provisioning. (I tried to use it but never was really happy with it i didn’t like the always rebooting and stuff.. [...]
Share on Facebook
I have to admit I don’t really like regular expressions but they come in handy too often to ignore them. Today i ran accross a site which offers a GREAT chat sheet for regular expressions so i want it to share with you. I hope you’ll like it as much as i do. Big Thanks [...]
Share on Facebook
Just a quick hookup I ran into the problem of creating a recursive file list in PHP and thought i might share my solution. function recursiveFileList ($dir) { $ret = array(); $d = dir($dir); while (false !== ($entry = $d->read())) { if (substr($entry,0,1) == “.”) { } elseif (is_dir($rep = $dir.$entry.”/”)) { $fi = recursiveFileList($rep); [...]
Share on Facebook
Long time no see but I’m not dead. I’m back in the mountains and by that the silent time of the year started for me. Today i want to present you with my solution to something i worked a while on as i had to batch convert a bunch of indd files to pdf and [...]
Share on Facebook