Kategorie: Tutorials

  • [:en]Profiling with MySQL[:de]Profiling mit MySQL

    [:en]Whenever you encounter a query slower than you expected, and you’re sure you’ve done everything in your power to ensure your tables are properly optimized and indexed, you might want to profile it. MySQL has an inbuild profiler, which allows you to see very detailed for what part of the query how much time has…

  • [:en]Firebug: logging features[:de]Firebug: Logfunktionen

    [:en]Many developers think of Firebug as the mother of all web tools. There’s a reason for it, because Firebug contains sophisticated tools to do nearly everything you need being a web developer, starting with little css experiments, debugging complex jscript-applications, profiling of web pages and many more. Not commonly known is how to create your…

  • [:en]DOS: creative WAIT command[:de]kreatives WAIT-Kommando für DOS

    [:en]Maybe you’ve encountered this before: there is no direct way to add a simple command like WAIT x seconds in DOS. While forging an easy solution for a simple task, I’ve found a nice, create way of solving this: [php] PING 1.1.1.1 -n 1 -w 25000 >nul [/php] Yes, indeed. The PING-command is used to…

  • [:en]visualizing sorting algorythms[:de]Visualisierung von Sortierverfahren

    [:de]Die Entwicklung von Sortierverfahren mag zwar für Nicht-Entwickler etwas wie schwarze Magie wirken, ist aber für einen Entwickler Grundwissen. Eine gute, Coffescript-basierte Seite, welche dieses doch manchmal relativ abstrakte Thema on-thy-fly visualisiert, kann hier gefunden werden: http://visualsort.appspot.com [:en]The development of sorting algorythms may look for non developers a little bit like black magic, but it…

  • [:de]Modultests mit PHPUnit[:en]Unittests with PHPUnit

    [:de]Eine kleine private Exkursion in die Tiefen einer OpenSource-Gemeinde hat mir mal wieder vor Augen gehalten, wie man sich das Coder-Dasein durch die Verwendung von Modultests („UnitTests“) vereinfachen kann. Nicht jeder benutzt sie, jeder sollte. In der PHP-Programmierung ist die ideale Software hierfür PHPUnit. Die Software wird im GitHub verteilt, ist gut dokumentiert, weit verbreitet…