reading-notes

Reading notes for Code Fellows!


Project maintained by William-Moreno Hosted on GitHub Pages — Theme by mattgraham

Application State with Redux

What are the advantages of storing tokens in “Cookies” vs “Local Storage”?

SuperTokens

Explain third party cookies

Third-party cookies are cookies that are set by a website other than the one you are currently on. The most common third-party entities are advertisers, marketers, and social media platforms.

Cookie Script

How do Pixel Tags Work?

When a user opens an email, visits a website, views your digital ad, or takes any other action, they are actually requesting the server to download any tracking pixel which happens to be attached to the content. These tracking pixels are commonly used for marketing.

Vocabulary Terms

Vocabulary Term Definition
cookies a small piece of data stored on the user’s computer designed to be a device used to remember stateful information or to record the user’s browsing activity Wikipedia
authorization the process of designating what resources a particular authenticated user has access to
access control a system such as RBAC (role-based access control) which uses assigned roles which already have associateed profiles detailing the authorization, or resources they have access to. A given user then merely needs to be assigned one of these roles to define what acess or aurthorization they have.
conditional rendering Conditional rendering is a term to describe the ability to render different user interface (UI) markup if a condition is true or false. In React, it allows us to render different elements or components based on a condition. Digital Ocean

Back to Main