A few months ago I wrote about the tech stack behind Adeptiq. That post covered the backend, the AI, the infrastructure. This one covers the part I didn’t talk about: the landing page of Adeptiq. Getting a good landing page up for a SaaS product shouldn’t be this hard. But we went through four tools and […]
Category Archives: Webdevelopment
I built a portfolio website for a photographer: dylancalluy.com
A couple of months ago, Dylan Calluy — an aspiring Antwerp-based photographer — asked me to build a portfolio website for him. He wanted a nice-looking gallery to share his work with the world. So we designed the website together. Then I handcrafted the responsive web application for him, combined with a sleek web interface […]
Website opgeleverd voor vioolbouwer Roland Eeckelaert
Deze week heb ik de website voor de vioolbouwer Roland Eeckelaert gelanceerd. Zo is ook deze Antwerpse luthier weer helemaal mee met de digitale wereld! Je kan de website bekijken op eeckelaert-vioolbouw.be.
Serving ownCloud with Caddy
In this post, I’ll walk you through how to set up ownCloud with Caddy for a secure, personal cloud service. I wrote this guide while configuring on Ubuntu 14. ownCloud A quick introduction to ownCloud for those who never heard about it (as found on Wikipedia): OwnCloud (stylized ownCloud) is a suite of client-server software […]
Website voor MBRACE
Website opgeleverd voor MBRACE een start-up die innovatieve festivalbandjes maakt.
Installing MAMP (Mac OS X Apache MariaDB PHP) using MacPorts
Update: I updated the blogpost for PHP 7 instead of PHP 5. If you want to update your current PHP 5 installation to a PHP 7 installation, see this blogpost: Migrating/updating from PHP 5 to PHP 7 on OS X (MacPorts). MacPorts is a BSD ports like package management system for OS X. The MacPorts Project is […]
CSS: semi-transparent border on images
When you display images on a white background (but also on other colors) you’d want to add a border to the image. But adding a ‘normal’ CSS border doesn’t always look very well. The solution: semi-transparant borders that are not positioned around, but on the images. This subtle design element will make your galleries look way […]
Create beautiful photo galleries with ‘Justified Gallery’
Organizing pictures of different sizes into a gallery can be a hard task, but using ‘Justified Gallery’, you can make good-looking — and responsive — photo galleries in minutes. ‘Justified Gallery’ is written in javascript, and renders the photos the same way as Flickr. First of all, you need to include the script and stylesheet, which […]
PHP fragments in Markdown
Ever wanted to use PHP variables and functions in a markdown file and use that file to generate HTML code from the Markdown syntax? Well, it isn’t too hard… Assume you want to parse the following file as Markdown, after executing the PHP fragment: <?php echo $var; ?> ——————- Some text… > Maecenas sed diam […]
MySQL database importeren via command line
De meeste mensen gebruiken phpMyAdmin of Adminer om hun databases te importeren op een server. Voor grote bestanden kan het echter vaak handig zijn om dit via command line te doen: mysql -u USERNAME -p -h HOST DATABASENAME < data.sql