A website that I’ve found to be very helpful whilst diving into creating Hybrid Apps (be it with or without Ionic) is Gone Hybrid, containing quite a few helpful articles to get you kickstarted on a few specific things such as adding audio effects, animations, etc. Gone Hybrid | Start Developing Hybrid Mobile Apps With …
Category Archives: Elsewhere
Vibrant.js – Extract prominent colors from an image
Usage is simple: var vibrant = new Vibrant(img); var swatches = vibrant.swatches() for (var swatch in swatches) if (swatches.hasOwnProperty(swatch) && swatches[swatch]) console.log(swatch, swatches[swatch].getHex()) Works by reading in the image, placing it onto a <canvas> element, and then getting all pixel information from that canvas. Vibrant.js →
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 …
Continue reading “Mobile Continuous Delivery with a DevOps Mindset”
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 …
Continue reading “Carbon – A simple PHP API extension for DateTime.”
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.
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 …
Continue reading “From Idea to App (or “How we roll at Small Town Heroes”)”