I like to both gain and share knowledge. That’s why I like to talk at conferences and related events. This page gives an overview of upcoming as well as past talks.

Past Talks

Performance Awareness and Optimization

September 7, 2023WordCamp Netherlands 2023 | Slides | Video

In the fast-paced world of software development, it’s easy to get caught up in cutting-edge features, captivating user experiences and sleek designs. But we must not overlook another critical aspect: performance.

This talk will challenge you to adopt a performance-oriented mindset, and consider the impact of performance from the initial stages of your projects. Together, we’ll explore several guiding principles that drive performance and demonstrate how they can be applied to any software development context, regardless of the platform or language you work with.

Join in on the journey to unleash the hidden power of performance and elevate your software development skills to new heights.


[Workshop] An Introduction to Unit Testing (for WordPress)

June 15, 2018WordCamp Europe 2018 | Slides | Video

We’ve all had these “Wait, what? That worked the other day!” moments. They usually happen after we introduced a new feature but broke existing functionality in the process. This is why we often don’t feel confident that our code is working as expected. When developing plugins—or whole websites—this is important, though. Clients expect that making changes won’t break their sites. But can we be sure of that?

There is a solution for that, and it’s called Unit Testing! During this hands-on workshop, we’ll help you understand what testable code is and how to write unit tests for it. Armed with this knowledge, you’ll be able to prevent these embarrassing moments from ever happening again.

Co-hosted with my friends and fellow WordPressers Carl Alexander and Giuseppe Mazzapica.


[Workshop] React Beginner Workshop

May 6, 2018WordCamp Retreat Soltau 2018

In the ancient times, there only was TinyMCE. People made use of metadata, served in meta boxes, stored in individual database entries in a dedicated table, referencing posts that only had an unstructured content blob. And those were good times. Soon this will all change, with the arrival of Gutenberg, the whole new editing experience for your WordPress back end.

In this workshop, Thorsten will try to prepare you for Gutenberg and its Gutenblocks, making use of a potential future part of WordPress, namely: React.


The Hitchhiker’s Guide to the WordPress Coding Standards

May 4, 2018WordCamp Retreat Soltau 2018 | Slides | Video

Rules are meant to be broken. Nevertheless, rules are there for good reasons, and even more when you have a say in them.

In this talk, Thorsten will start by providing an overview of the rules and best practices for coding in the WordPress universe. If you want to know about code style, coding standards, code conventions, code quality—and why it all matters!—this talk is for you.

The second half of the talk will cover applying these rules via a WordPress-specific Composer package based on the well-known PHP_CodeSniffer tool. Both projects changed a lot recently, so you might learn something new. And now with Tide, this is getting more and more important for plugin and theme authors.


An Introduction to Unit Testing (for WordPress)

April 15, 2018WordCamp London 2018 | Slides | Video

If you are a software developer, you might have come across the term “testable code”. Almost always when someone refers to it they do it in the context of unit testing. So in order to understand, and then learn to how to write, testable code, you first have to understand unit testing. And this is what this talk is all about.

Thorsten first provides a high-level overview of unit testing in general, and classifies it in terms of test level, and testing methods and techniques. He then explores and explains different possible units. The second part of the talk is dominated by one of the key principles of unit testing: testing in isolation. What is it? How can it be done? What is this mocking that pops up here and there? Next, Thorsten shows different unit test examples, involving both PHP and JavaScript, and highlighting different (yet simplified) aspects of real-life code. Thorsten concludes with a few tips for writing good unit tests.


The Hitchhiker’s Guide to the WordPress Coding Standards

March 3, 2018WordCamp Antwerp 2018 | Slides | Video

Rules are meant to be broken. Nevertheless, rules are there for good reasons, and even more when you have a say in them.

In this talk, Thorsten will start by providing an overview of the rules and best practices for coding in the WordPress universe. If you want to know about code style, coding standards, code conventions, code quality—and why it all matters!—this talk is for you.

The second half of the talk will cover applying these rules via a WordPress-specific Composer package based on the well-known PHP_CodeSniffer tool. Both projects changed a lot recently, so you might learn something new. And now with Tide, this is getting more and more important for plugin and theme authors.


We Are Community

February 7, 2018 — Aachen WordPress Meetup | Slides

This is a semi-interactive Meetup presentation covering Meetups, WordCamps, WordPress Slacks and a bit of organizational stuff for the Aachen WordPress Meetup group.


Using PSR-7 Middleware in Your RESTful WordPress Projects

September 2, 2017WordCamp Nijmegen 2017 | Slides | Video

In the PHP world in general, there is a standard (recommendation) when it comes to HTTP messages: PSR-7. Despite things like Calypso, Gutenberg and the growing JavaScript codebase in general, WordPress is written in PHP. Thus, wouldn’t it be nice to do what the rest of the PHP world is doing? Isn’t there some way to leverage all the existing PSR-7 middleware and incorporate them into the WordPress REST API? Well, there is.

In this talk, Thorsten will give an overview of the PSR-7 HTTP message interfaces. After that, he will compare these with the structures of WordPress Core, and analyze whether or not they match with the PSR-7 interfaces. Finally, Thorsten will provide a closer look into an example implementation of PSR-7-compliant WordPress REST requests and responses, respectively, and explain their inner workings.


REST in Pieces

May 13, 2017WordCamp Berlin 2017 | Slides

Since both the infrastructure and the first set of endpoints of the WordPress REST API got merged into Core, it’s obvious for plugin and even theme authors to jump on the bandwagon. If you are interested in a sweeping statement about this, this one’s for you.

In the first part of this talk, Thorsten briefly looks back on the history of introducing a REST API to WordPress. He then comments on the current state of WordPress Core, and what we might expect in the (near) future.

The currently suggested way to develop using the WordPress REST API includes using a handful of functions and maybe writing up a custom class that extends a gigantic abstract controller class provided by WordPress Core. In essence, this results in procedural code, with the used functions not even being pure (as they are using global variables). That’s why the second part of this talk is about WP REST Starter, a Composer package for working with the WordPress REST API in an object-oriented fashion.

Using the interfaces and default implementations provided by WP REST Starter helps you write proper object-oriented code that is easier to understand, easier to extend, easier to test, and easier to maintain. Furthermore, in case the internals of the WordPress REST API will ever change, you can rely on WP REST Starter taking care of this, if possible. No need to adapt all your RESTful WordPress projects.


[Workshop] An Introduction to Unit Testing (for WordPress)

April 23, 2017WordCamp Vienna 2017 | Slides

If you are a software developer, you might have come across the term “testable code”. Almost always when someone refers to it they do it in the context of unit testing. So in order to understand, and then learn to how to write, testable code, you first have to understand unit testing. And this is what this workshop is all about.

Thorsten first provides a high-level overview of unit testing in general, and classifies it in terms of test level, and testing methods and techniques. He then explores and explains different possible units. The second part of the workshop is dominated by one of the key principles of unit testing: testing in isolation. What is it? How can it be done? What is this mocking that pops up here and there? Next, Thorsten shows different unit test examples, involving both PHP and JavaScript, and highlighting different (yet simplified) aspects of real-life code. Thorsten concludes with a few tips for writing good unit tests.


REST in Pieces

April 22, 2017WordCamp Vienna 2017 | Slides

Since both the infrastructure and the first set of endpoints of the WordPress REST API got merged into Core, it’s obvious for plugin and even theme authors to jump on the bandwagon. If you are interested in a sweeping statement about this, this one’s for you.

In the first part of this talk, Thorsten briefly looks back on the history of introducing a REST API to WordPress. He then comments on the current state of WordPress Core, and what we might expect in the (near) future.

The currently suggested way to develop using the WordPress REST API includes using a handful of functions and maybe writing up a custom class that extends a gigantic abstract controller class provided by WordPress Core. In essence, this results in procedural code, with the used functions not even being pure (as they are using global variables).

That’s why the second part of this talk is about WP REST Starter, a Composer package for working with the WordPress REST API in an object-oriented fashion. Using the interfaces and default implementations provided by WP REST Starter helps you write proper object-oriented code that is easier to understand, easier to extend, easier to test, and easier to maintain. Furthermore, in case the internals of the WordPress REST API will ever change, you can rely on WP REST Starter taking care of this, if possible.

No need to adapt any of your RESTful WordPress projects.


One Website, All the Languages

November 2, 2016WordCamp Geneva 2016 | Slides | Video

WordPress powers more than every fourth of all websites in the world, in one or more of the 6,500+ world languages. WordPress itself does not allow for multilingual content, though, so that’s where plugins come in handy. One of these is MultilingualPress: THE multisite-based free open source plugin for multilingual websites.

In this talk, Thorsten provides a short introduction to both MultilingualPress and WordPress multisite. By means of several user stories, he then explains how to set up your multilingual WordPress website with MultilingualPress.


An Introduction to Software Testing

October 29, 2016WordCamp Cologne 2016 | Slides

What is a test? Why should one test? Who should test? What, when, and how should be tested? These questions and more are to be answered. Primarily, this session is aimed at developers. Designers, and (technical) project leads and managers, however, are addressed as well, because they also take a part in the development process, and hence testing.


One Website, All the Languages

June 4, 2016WordCamp Antwerp 2016 | Slides | Video

WordPress powers more than every fourth of all websites in the world, in one or more of the 6,500+ world languages. WordPress itself does not allow for multilingual content, though, so that’s where plugins come in handy. One of these is MultilingualPress: THE multisite-based free open source plugin for multilingual websites.

In this talk, Thorsten provides a short introduction to both MultilingualPress and WordPress multisite. By means of several user stories, he then explains how to set up your multilingual WordPress website with MultilingualPress.


IT Certifications: What Are They Good For?

April 17, 2016WordCamp Nuremberg 2016 | Slides | Video

In this session, Thorsten explains IT certifications in general and how different they can be structured. He then provides several examples of what a certificate in the IT industry can mean for both employees and employers. Based on his experience from by now six seven certification exams with three different providers, Thorsten gives an overview of appropriate certifications for WordPress engineers.


How (Not) to Write Testable Code

April 16, 2016WordCamp Nuremberg 2016 | Slides | Video

This session is about writing code that can easily be tested. By means of negative examples, Thorsten explains what makes code rather hard to test, or even untestable. Each „bad practice“ is first presented in an abstract way, and then illustrated and discussed using one or more concrete PHP and JavaScript code examples. In the end, Thorsten shows how to solve the individual issues at hand, and thus produce testable code—even if you don’t test it yourself.


An Introduction to Software Testing

November 14, 2015WordCamp Berlin 2015 | Slides | Video

What is a test? Why should one test? Who should test? What, when, and how should be tested? These questions and more are to be answered. Primarily, this session is aimed at developers. Designers, and (technical) project leads and managers, however, are addressed as well, because they also take a part in the development process, and hence testing.


Brush Up Your Taxonomy Skills

November 14, 2015WordCamp Berlin 2015 | Slides | Video

With taxonomies and their individual terms, you can structure and categorize posts in various ways. That’s a matter of common knowledge. This session will broaden your mind, though, because there’s much more to taxonomies and terms. You can easily link individual taxonomies and synchronize their terms, you can use taxonomies for users, and you can facilitate taxonomies to store meta data. Finally, we will have a look at WordPress 4.4’s new feature: term meta.