Convert a MySQL or Postgres database to SQLite
Published on Mon May 30 2022If you want to convert old MySQL-driven websites to static sites, a SQLite database on your harddrive could be helpful. Here is how to convert MySQL to SQLite.
Subscribable stores in React
Published on Sat May 21 2022Subscribable stores are a pattern which is relatively new for React applications.
Limit access of Strapi users to their own entries
Published on Sun May 15 2022What I wanted was that when a user requested a list of or a certain entity, the backend should only respond with entities which belong to the user. By default, Strapi would send all entities from everyone.
Strapi quirks you should know about
Published on Sat Apr 30 2022When I first came across Strapi, I had some misconceptions about it which are not immediately clear when reading about the framework in their docs.
A typed event system for Typescript
Published on Tue Apr 19 2022I wrote a simple, typed event emitter/subscriber system on the weekend.
Access denied for 'root'@'localhost'
Published on Thu Dec 09 2021MySQL won't let me authenticate as root user through an SSH tunnel in dbeaver.
Media Query organization in SASS
Published on Fri Nov 19 2021SASS makes working with media queries / breakpoints easy, if you apply this pattern
The Redirect Response pattern
Published on Mon Oct 04 2021Using HTTP callbacks with your API gives interesting possibilities to reduce client side javascript.
Introducing and using Obsidian
Published on Tue Sep 28 2021I discovered a valuable note-taking app I want to share with you
Mocking modules with jest and typescript
Published on Thu Dec 10 2020Since it took me some time to understand the behaviour and the jest docs don't tell much about it, I wanted to write down how to mock modules with jest and especially update the return values of module functions across your tests.
The new old school
Published on Wed Oct 14 2020My blog is finally online again. This time as a statically generated page. Here is how I made it.
Updates about react hook router
Published on Tue Apr 30 2019It's been about a month, since I released my initial version of hookrouter. Lots of things happened since then.
Modern and clean routing with hooks
Published on Thu Mar 21 2019A quick experiment about using hooks for routing in a react app turned out to be very flexible and powerful.
Create a react component as npm module
Published on Wed Mar 06 2019There are a lot of guides out there that advise you to use webpack to wrap up your components before publishing them to npm. This is absolutely not necessary. I would even consider it bad practice. Its much easier without webpack, too.