Day: September 18, 2022
10 posts
9 Figma Alternatives For A Blazingly Fast Increase In Your Productivity.
Many powerful design tools are available on the market, and Figma is undoubtedly one of them. However, with…
Top 9 Best UI Component Libraries/Frameworks in 2022 for Frontend Developers🔥
Introduction If you’re involved in web development, chances are that you’ve heard of UI component libraries and CSS…
Setting up the medusa server
Regarding medusa, the project is made up of different building blocks. For instance, you can run a server…
FullText index in MySQL
MySQL is one of the most used relational database management systems. We all know that it is fast…
Write typesafe APIs with zodios
Writing client APIs, that gives you autocompletion is time consuming. You allways endup writing the same kind of…
HOW TO COLLABRATE ON GITHUB
GitHub is an incredibly effective way to collaborate on development projects -track files -push. One of the most…
CSS Icon: Google Photos
I will create the Google Photos icon in this article using CSS only. Let’s look at how we…
Add QR code to React websites in 2 minutes 😎✨
Love them or hate them, the cool kids around the block use them. If you want to develop…
Manage Redis on AWS from Kubernetes
Using AWS Controller for Kubernetes and CDK for Kubernetes In this blog post, you will learn how to…
Javascript: IIFE – Immediately Invoked Function Expression
Regular function in javascript is: // function declaration function myFunction() { console.log('I am normal JS function'); } //…