Welcome. With this blog I'm sharing some of my code with the community.
Drupal and PHP 8: everything you need to know
Drupal 10 (release already in June 2022) needs PHP 8. It will not be possible to run Drupal 10 on PHP 7 or earlier.
Add bulk redirects with an EventSubscriber in Drupal 9
We know the Redirect module is an awesome way to create redirects for individual paths. But after a migration I needed to do some typical redirections.
How to upgrade from Drupal 8 to 9 with composer [blog post + screen cast]
This blogposts gives you a summary on how to upgrade to drupal 9 and fix all composer issues.
Tailwind css responsive footer full example
I was building a website with Tailwind and thought it would be nice to share this generic footer html with you.
How to programmatically update an entity reference field in drupal 8
Drupal 8 is becoming more and more API-first based. This means a lot of imports and exports of data will be done. A thing you might face here, is that the updating of entity reference fields is a bit tricky. Here I'll show you how it is done.
Create paragraphs and attach to node programmatically in drupal 8
Paragraphs give great power to drupal 8. This code will show you how you can add them programmatically, for example when importing stuff.
Disable block caching in drupal 8
When creating custom blocks, sometimes you need to make sure the block is never cached f.e. when including dynamic links.