CHECKING STATUS
I AM LISTENING TO
|

ARCHIVE.

Let’s Talk!

Looking for a reliable partner to bring your project to the next level? Whether it’s development, design, security, or ongoing support—I’d love to chat and see how I can help.

Get in touch,
and let’s create something amazing together!

The Contact Form 7 for WordPress is a nice simple plugin to build contact forms fast. But when it comes to making it completely multilingual it lacks a bit. I am currently creating a website with 13 different languages, that would mean to create the same contact form 13 times, not really practical :) I am […]

WPML for WordPress is a powerful plugin to build a multi-language setup. But it still comes short in some areas, especially when it comes to a custom integration into plugins or when using custom post-types. Normally this function should return the id of the linked translated content, but has not worked for me in some cases […]

The Horizontal Accordion provides a vast amount of options to adjust its settings to your liking and allows you to integrate it fast into your website. You have complete design freedom and can interact with the plugin through css, plugin methods and external function calls. The plugin is under constant development. I deliver the foundation […]

header(‘Cache-Control: no-cache, must-revalidate’);header(‘Expires: Mon, 26 Jul 1997 05:00:00 GMT’);header(‘Content-type: application/json’); The first two headers prevent the browser from caching the response and the third sets the correct MIME type for JSON. Than just output your JSON data $data = array( “fire” => 1, “water” => 0, “earth” => 1, “air” => 1, ); echo json_encode($data); exit;

Audiosprite is a node.js ffmpeg wrapper to concat small audio files into one single file. It even allows you to define the gap between each file. It also outputs a howler.js compliant JSON configuration file for simple copy and paste. This saves a lot of work, when using audio sprites in your web projects. audiosprite -f howler –autoplay bg_loop […]

Adding audio to a web project can be really a pain in the …. . Howler.js makes it almost painless to add audio for desktop or mobile solutions. Just used the audio sprite feature in one of my projects to allow switching between sounds. Works perfectly on iOS after the first touch event. howler.js / Github Check […]

If you want to prevent google to provide duplicate content from you,  you can easily force www for your domains by simply using a small rewrite rule for the htaccess. RewriteEngine onRewriteCond %{HTTP_HOST} !^www.your_domain.com$RewriteRule ^(.*)$ http://www.your_domain.com/$1 [R=301] CheersAlexander