EDDYMENS

Published a year ago

How To Find Broken External Links On Your Website

Finding broken internal links is somewhat straightforward because these are links you created, so when you make changes you are well aware to double-check to see if these links still work. When it comes to external links, thus referencing URLs from other websites, we can never tell when th...

Published a year ago

Why Add Noopener & Noreferrer To Your Links?

is an tag attribute that causes a link to open up in a new tab. There is also thus without the underscore , this causes every link you click on from the parent page to open up in the same new tab. Infact you can set to any value and all links with the same value will be previewed using...

Published a year ago

A Way To Avoid Filling In Required Fields

Don't you just wish you could skip required input fields sometimes? Well, you actually can, let me show you how. I know you see an empty snippet below, but trust me and copy its content and paste it into the required input field. The field should stop barking a...

Published a year ago

How To Find Differences Between Webpages

Let's say you made some internal improvements to your website, it could be an improvement to loading speed. Such a change should not change the look of your website. Sometimes changes we make impact unrelated parts of our website without us knowing, eg: a font is no longer applied to the t...

Published a year ago

Linux & MacOS: Counting Files In A Directory

You can count the number of files in a directory with the wc command . wc outputs the total number of newlines, bytes, and words. To count the number of files and fold...

Published a year ago

How To Install Different Versions Of NodeJS

There are many reasons why you might need a different version of NodeJS. For instance, running an app that relies on an older version of NodeJS. NVM is a NodeJS version manag...