How to Test Container Components in React
Assuming you would want to unit-test container components in React (i.e., connected components in a Redux-based project), or any component that is wrapped in a higher-order component (HOC) etc. really, here’s a simple thing you should always do: 👉 Also export the “naked” component! I am talking about something like this: // … export { […]
Three Things You Should Know About WordPress Filters
Oftentimes, people are using WordPress filters in a wrong way. This post tries to educate people on how to correctly filter data.
WordCamp Europe 2018: Recap
Recap post about my second WordCamp Europe, this time in Belgrade, Serbia, where I hosted a three-hours workshop on unit testing.
WordCamp Retreat Soltau 2018: Recap
This is my recap post about the very first WordCamp Retreat. It took place in Soltau, Germany, and was a fantastic debut event of a series with hopefully lots of successor events.
WordCamp London 2018: Recap
This is my recap post for WordCamp London 2018. It was my thirteenth WordCamp, the tenth time speaking, and the second time leading a contributor day table.
The Gutenberg Development Course by Zac Gordon
In this post, I briefly review the new Gutenberg Development course by Zac Gordon. Hint: It is awesome, and you should sign up for it right away.
WordCamp Europe 2018: Unit Testing Workshop
I’m super excited to be hosting a workshop on unit testing at WordCamp Europe 2018. If you want to know why that is, you might want to read this post.
WordCamp Antwerp 2018: Recap
This is my recap post of WordCamp Antwerp 2018, my twelfth WordCamp overall, and my ninth one as speaker.
Reasons Not to Speak at a Conference
Assuming you are both able and willing to speak at some conference. For what reasons would you decide to not apply, though?
Event Listeners and Business Logic
In this post, I want to share a simple, yet effective best practice when it comes to (JavaScript) event listeners, and code reuse.