Abu Sayed
Musician | Singer | Lyricist | Composer | Music Producer | Web | Game | XR & Blockchain Developer
Tag Archives: unused
The best way to take away unused CSS

Hello✋ I discovered the way to take away unused CSS to be able to polish up the efficiency rating on Lighthouse. That is why I’ll share this methodology. As you possibly can see, if I delete unused CSS, it is going to enhance the web efficiency. Let’s begin to establish the unused CSS within the…
Python script to listing unused IP addresses in AWS VPC Subnet

I wrote a Python script to listing unused IP addresses (IPv4) in a subnet. I seek advice from Henry’s post. Mechanism Acquire the CIDR of the required subnet by DescribeSubnets Get the used non-public IP addresses within the specified subnet by DescribeNetworkInterfaces = Used IP addresses Calculate the Unused “IP addresses” = “CIDR IP addresses”…
Shell command for cleansing up git repositories from unused branches

Hey, On this brief publish I might prefer to share with you a easy resolution to the difficulty I am encountering every so often. The issue is that every of repositories I am actively engaged on is aggregating a number of branches, as a result of in my workflow, I am creating a brand new…
Robotically Take away Unused Node Modules utilizing Python – Python Developer

Robotically Take away Unused Node Modules utilizing Python We maintain a listing below the foundation of our tasks referred to as _dev_tools. It consists of Python scripts we will rapidly run, normally by urgent the Play button of the Code Runner extension in VS Code, to assist with mission administration. The secret’s creating instruments that…
One command to take away gigabytes of unused `node_modules` information – Node Developer

One command to take away gigabytes of unused `node_modules` information Programming is only one large cycle. Create or obtain a venture, set up your dependencies, construct one thing superb, and transfer on to the following one. Nonetheless, with node.js initiatives, there is a obtrusive downside. Each time you progress on to a different venture, you…
5 Most Unused and Ununderstood HTML Tags🚀 – HTML Dev Feed

5 Most Unused and Ununderstood HTML Tags🚀 Here are 5 most rare used html tags which we learn today. While they might familiar but still quite useful in some situations. So let’s start learning most 5 html unused tags… abbr tag abbr tag only used for define abbreviated words. You need to define a title…
Remove unused CSS from Svelte – JavaScript Dev Feed

Remove unused CSS from Svelte When I included Bulma CSS my css bundle size increased up to 1MB, which is quite large for a website. After purging unused css I was able to reduce the bundle size close to 140KBs which is much more acceptable. In this post I will describe the way I did…