STATUS ÜBERPRÜFEN
I AM LISTENING TO
|

ARCHIV.

Development

Let’s Talk!

Suchen Sie einen zuverlässigen Partner, der Ihr Projekt auf die nächste Stufe bringt? Ob es um Entwicklung, Design, Sicherheit oder laufenden Support geht – ich würde mich gerne mit Ihnen unterhalten und sehen, wie ich Ihnen helfen kann.

Nehmen Sie Kontakt auf,
und lassen Sie uns gemeinsam etwas Erstaunliches schaffen!

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