Full stack applications that are decoupled (when the front end is totally detached from the backend) can have a lot of drawbacks. One of those is when communication between the two takes too long. Laggy response times from your backend greatly depreciates the user experience. Nobody likes waiting for stuff to load. And no – […]
Category Archives: JavaScript
JavaScript is considered to be the “language” of the web. It is one of the most expressive object oriented and functional programming available to date. These posts contain topics about JavaScript.
Code a multi-select input with Mantine, Prisma and NextJS
We’ve all seen this input before. A seemingly innocent input box and as soon as you focus and/or start typing – a list of suggestions appear. Not only that, you’re able to select multiple values, remove items from your selection – and even add a new one. This is typically used for fields such as […]
Just in: SolidStart is in Beta – Now what to build?
A few days ago the people behind SolidJS released their meta-framework of their own called SolidStart. I think this is a major development for SolidJS. This is probably one of the biggest missing piece of the puzzle. Let me explain. Most front end developers know, React is king at the moment. There are many things […]
Let’s build a Shopping Cart website with SolidJS and Bootstrap – Part 2
In the previous post, we’ve completed setting up the frame for our shopping cart website. We’ve added the routes, finished the product listing page, added filters – and we’ve even started an empty shell for the cart component. Note that if you want to simply download the code – head on to Github. If you’d […]
Let’s build a Shopping Cart website with SolidJS and Bootstrap – Part 1
So it’s been a while since I’ve posted a tutorial. I have been stagnant for a while, just using the same technologies for work and personal projects. Although recently, one framework caught my eye – SolidJS. It claims to have “true” reactivity and addresses many of the things I don’t like about React (such as […]
Common JavaScript snippets for data manipulation
I find myself having to look up how to do things in JavaScript. After years of doing so, I’ve realized that its pretty much a common set of techniques that look for when manipulating data. So I’ve decided to create this list. Note that this is by far not a complete list – and is […]