In unseren Berufsalttag entwickeln wir eine Software. Wir erzeugen kein Gegenstand, sondern verrichten eine Tätigkeit, also ein Prozess, bei dem was hergestellt wird. Dabei ist es sehr wichtig sich auf dem Prozess und auf das Produkt zu konzentrieren. Kein Kunde wird sich freuen wenn sein Produkt nicht genau das leistet was er erwartet hat, oder […]
Read MoreEvent handling with PIMF php micro framework
Events can provide a great away to build de-coupled applications and allows you to tap into the core of your application without modifying its code. To fire an event, just tell the Event class the name of the event you want to fire: $responses = Event::fire(‚user.updated‘); Notice that we assigned the result of the fire […]
Read MorePHP Nuclear Reactor
Asynchronous programming is a way to create programs that can execute multiple parallel tasks faster in the same process by executing code while other parts if the programs wait for I/O operations to finish, like database accesses, file accesses, network accesses, etc.. ReactPHP is a low level library similar to JavaScript Node.js that can be […]
Read MoreLean Testing und eine Beobachtung der letzten Jahre – ein Gastbeitrag von Nils Langner
Über den Autor: Einige von euch kennen Nils vielleicht aus seinem Blog phphatesme, die anderen von Konferenzen oder ähnlichem. Vor einem Jahr hat er sich aufgemacht das “Lean Testing”-Vorgehen unter die Leute zu bringen. Das liegt hauptsächlich daran, dass diese Testing-Methodik wunderbar zum Internet passt, aber vielleicht auch, weil er mit Leankoala die erste “Software […]
Read More