EDDYMENS

Eddymens (List page)


Last updated 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 software application in other ...

Last updated 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 sent back again from the ...

Last updated 2023-03-06 21:44:02

What Is Pagination?

Pagination is the process of presenting large datasets or information in chunks instead of all at once. A very good example of this in action is Google search results. If you ever happen to scroll down to the bottom you will find a numbered list that you can click to see more results....

Last updated 2023-03-03 08:14:51

What Are Namespaces?

Namespaces refer to the act of creating a scope within which a set of code operates. Without namespaces, every part of your source code will have access to other unrelated parts. This means there is a chance for conflict within your codebase. For example, if you have the same variable na...

Last updated 2023-03-03 01:11:15

What Is Hashing?

Hashing is the process of altering or changing a piece of data into another form in an attempt to obfuscate it. A good example is hashing user passwords before storing them in the database. By hashing the password anyone with access to the database can only see the hashed version and no...

Last updated 2023-03-03 00:44:19

What Is A Constant Variable?

A constant variable is a variable that once defined cannot be changed throughout the execution of the source code. ...