Published 2023-03-09 00:19:24
What Is SAML?Security Assertion Markup Language (SAML) is an exchange format based on XML used to share identity information between an identity provider (IdP) and a softwa...
Published 2023-03-07 09:34:33
What Is A CSRF Token?A Cross-Site Forgery(CSRF) Token is a special encrypted string that is sent back from the server side to the client side or frontend of a web application. The token is s...
Published 2023-02-09 14:22:37
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 ...
Published 2023-02-08 20:27:29
A Way To Avoid Filling In Required FieldsDon't you just wish you could skip required input fields sometimes? Well, you actually can, let me show you how. The trick...
Published 2023-01-26 09:49:54
How To Find Differences Between WebpagesLet'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 2023-01-20 06:25:51
Linux & MacOS: Counting Files In A DirectoryYou 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...