-
How Claude Code Helped Ship an Image Generation Feature in Half the Time
Saturday, 14 June 2025
I leveraged Claude Code to implement an AI image generation feature for Mytoori, comparing different AI models and sharing key learnings.
-
Prompt Engineering: Essential Do's and Don'ts for Beginners
Saturday, 31 May 2025
Master the art of prompt engineering with these essential do's and don'ts to get the best results from AI language models.
-
Deploy Astro Static on Deno Deploy
Sunday, 21 January 2024
With a little bit of workaround it's possible to deploy a static Astro site to deno deploy. Initially Astro's docs indicated only SSR was supported.
-
Applicants demo app
Friday, 30 September 2022
This is a simple demo app that get's a list of applicants from the server. Those applicants are listed in a table. The user can filter and sort them.
-
Finding tools on the web 🌍
Monday, 2 May 2022
Finding tools on the web is getting increasingly difficult with a regular search engine. This post talks about some of the places on the web that make this easy.
-
Recursive JS function
Monday, 10 January 2022
Loop over an array with a recursive function. In this case the array entry has a URL that should be validated before moving on to the next
-
The basics of publishing on NPM
Thursday, 14 October 2021
The pagination component created in another post will be published on NPM. It allows others to use the component in their React projects.
-
Pagination component in React
Wednesday, 18 August 2021
Let's build a pagination component. It should adhere to some basic UI interaction requirements. The goal is deliver an extra light component.
-
Electron's main and renderer process communication
Sunday, 18 April 2021
After setting up a basic ElectronJS, this article discusses the preload.js script. It's used to communicate between the main electron process and the unsafe renderer process. The latter is not allowed to access the fs API for security reasons.
-
Basic ElectronJS project using React
Sunday, 11 April 2021
Setup a basic electron (desktop) app using snowpack for ReactJS. This article demonstrates how to get up and running.No webpack and no create-react-app.