blog.dehlin.devStrapi 猸愶笍 V4 with Docker 馃惓 and HerokuIn this blog, we will continue from the previous adventures here and take it a step further, get it deployed to Heroku with our docker image. This will allow us to push our code directly to GitHub and automatically build and deploy our app. This is g...Feb 8, 2022路8 min read
blog.dehlin.dev馃惓 Docker with Strapi V4 馃専In this blog, we will set up our own Strapi 馃専 setup using Docker, docker-compose 馃惓. We will also use docker-compose to spin up a Postgres 馃捑 database and a local strapi instance. 馃殾 Requirements Docker NPM / Yarn (Yarn is recommended) Node 14 is ...Jan 10, 2022路10 min read
blog.dehlin.dev6 JS one-liners that save time.Here are 6 Js one-liners that just saves me time when I write code. Remove Duplicated from Array You can easily remove duplicates with Set in JavaScript. It's a lifesaver. const removeDuplicates = (arr) => [...new Set(arr)]; console.log(removeDuplic...Sep 20, 2021路2 min read
blog.dehlin.devCSS Experimental Overview (Chrome)Ever wanted to see an overview of all your CSS in Chrome? What colour scheme you are using, where you are using certain things. Do you have any unusable variables in CSS etc? To open the developer console in Google Chrome, open the Chrome Menu in the...Jul 30, 2021路1 min read
blog.dehlin.devThe VSCode ChecklistI get directed many questions about VSCode, and I get it you like it too! There are a few differences in how things are and what you should remember when using this. The Terminal The Terminal is NOT a VScode terminal. It's a Terminal, plain and simpl...Jul 6, 2021路10 min read