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!

Simple little snippet, that can easily be used in conjunction with wp_update_user() /* Generate Unique User Nicename */ function generate_unique_user_nicename( $x ) { // set up args to query $args = array( ’search‘ => sanitize_title( $x ), ’search_columns‘ => array( ‚user_nicename‘ ) ); // query for user $user_url_exists = new WP_User_Query( $args ); $results = $user_url_exists->get_results(); […]

Logstalgia is a website traffic visualization tool that replays or streams web-server access logs as a pong-like battle between the web server and an never ending torrent of requests. Requests appear as colored balls (the same color as the host) which travel across the screen to arrive at the requested location. Successful requests are hit […]

CodeCombat is a multiplayer programming game for learning how to code. The ultimate goal of CodeCombat is to bring more users into the field of computer programming by making the logic and syntax more accessible and enjoyable to learn. The end game is to educate a whole new generation of computer programmers that started their […]

Quickly draw a leader line in your web page. <div id=“start“>start</div> <div id=“end“>end</div> // Add new leader line from `start` to `end` (HTML/SVG elements, basically). new LeaderLine( document.getElementById(’start‘), document.getElementById(‚end‘) ); Leaderline @ Github

We often have some posts that we would like to promote and keep at the first page of the blog. When you are using pagination, the sticky posts will be added to the standard posts, making the post count per page uneven. If you want to keep your posts per page count consistent, there is […]

Font Face Observer is a fast and simple web font loader. You can use it to load fonts and customise your browser’s font loading behaviour. Font Face Observer gives you control over web font loading using a simple promise based interface. It doesn’t matter where your fonts come from: host them yourself, or use a […]

Fun Fun Fun :) var sql = require(’sql.js‘); // or sql = window.SQL if you are in a browser // Create a database var db = new sql.Database(); // NOTE: You can also use new sql.Database(data) where // data is an Uint8Array representing an SQLite database file // Execute some sql sqlstr = „CREATE TABLE […]

What is a @font-face? @font-face is a CSS at-rule used to define custom fonts for use on web pages. It allows web designers and developers to specify downloadable fonts that can be used to render text on their websites, regardless of whether the font is installed on the user’s device. What is the FOUT, FOIT […]

Due to Google AMP (Accelerated Mobile Pages) , I have been looking for a way to effectively do Syntax Highlighting without Javascript in pure PHP. I was about to write my own, when I found an older article from phoboslab. Thanks Dominic for saving me some time ;) Its not perfect, but close enough. A simple Syntax Highlighting Class that does just that. […]

Again another Google AMP article, this time dealing with Syntax Highlighting. If you have a code centric website, this is important. In one of my last articles I talked about a Generic Syntax Highlighter.   This time I want to show you, how to add Syntax Highlighting with GeSHi to a custom template in AMP-WP. FIRST SOME RESOURCES Please read up on […]