Mobile Continuous Delivery with a DevOps Mindset

Talk my colleague Patrick Debois gave at Velocityconf 2015. It touches a few of the same things I talked about in From Idea to App (or “How we roll at Small Town Heroes”) in a deeper way, along with a truckload of more information on how we do things at Small Town Heroes. This presentation …

Carbon – A simple PHP API extension for DateTime.

$carbon = new Carbon(‘first day of next week’); if ($carbon->isWeekend()) { echo ‘Party!’; } echo $carbon->addYear()->diffForHumans(); // ‘in 1 year’ Carbon is just a class which is designed to be used instead of DateTime. Due to extending DateTime, all DateTime methods are available to users of Carbon. Additionally, it implements a __toString method, allowing users …

Building a passion driven life

Having gone through quite a lot of changes on a personal level during the past two years, this quote by Jen Sutherland-Miller – taken from her blogpost F*ck Work-Life Balance – struck me as it’s exactly what I’ve been doing the last year: I gave myself permission to say, “Yes,” to the things that inspire …

Node debugging with TraceGL

TraceGL transforms your JavaScript, injecting monitoring code that produces a log of everything that happens. This log is streamed from the target – via the traceGL node.js process – to the UI for visualisation. The UI tries to display the resulting huge amount of information fast, and uses webGL to render everything. In the video …

d3-shape – Graphical primitives for visualization, such as lines and areas.

d3-shape: a small JavaScript library for drawing geometric shapes commonly found in data visualizations, with each shape driven by data through accessor functions. It works with both SVG and Canvas. Introducing d3-shape → d3-shape (GitHub) →

Apollo 17 in real-time

A real-time journey through the Apollo 17 mission. Relive every moment as it occurred in 1972. This is magnificent! It’s a timeshifted playback – with audio, photos, transcripts, etc. – of the events of Apollo 17, the last mission of the Apollo program which took us to the moon, exactly as they happened 43 years …

From Idea to App (or “How we roll at Small Town Heroes”)

Earlier this week I was invited to give a guestlecture to the students ICT at Odisee (my former employer, that’s correct), explaining the app development process, how we do certain things at Small Town Heroes, and how we implement QA throughout our process. You can check out the slides embedded below. You might recognize a …

ng-inspector – The AngularJS inspector pane for your browser

ng-inspector is a browser extension for Chrome, Safari and Firefox that adds an inspector pane to help you develop, debug and understand your AngularJS applications. Handy tool to see how exactly the scopes are nested and such. ng-inspector →

Full page transitions with jquery.smoothState.js

jquery.smoothState.js lets you add transitions to eliminate the hard cuts and white flashes of page loads that deface the beauty of the user experience. Works by hijacking links, requesting the target URL over XHR, and then replacing the content of a specified element on the current page with the contents of that same element from …