Programming

JTL Wawi zu DHL Intraship Version 0.1 Alpha

Posted by on March 7, 2012 at 8:53 pm

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

Snom 360 in corporate network

Posted by on October 30, 2010 at 8:57 pm

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.. [...]

Regular Expression Cheat Sheet

Posted by on May 12, 2010 at 9:31 am

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 [...]

PHP function to create a recursive file list

Posted by on December 22, 2009 at 7:29 pm

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); [...]

Adobe Indesign Online Batch Conversion to different file formats

Posted by on December 22, 2009 at 7:27 pm

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 [...]