reading-notes

Notes for Codefellows Code 401 301 201 and 102

Reading Class 36: Application State with Redux

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

thank you Dan Engel for such a brilliant concise summary !!!

  1. Local Storage
  1. Cookies

Explain 3rd party cookies.

Third-party cookies are cookies that are set by a website other than the one you are currently on. For example, you can have a “Like” button on your website which will store a cookie on a visitor’s computer, that cookie can later be accessed by Facebook to identify visitors and see which websites they visited.

How do pixel tags work?

A tag (or often called a pixel) is a short snippet of javascript (code) that does something on your website. In the context of marketing/advertising tags and pixels, they are often collecting some information about the visitor to a website and their behavior on the site.

Document the following Vocabulary Terms

cookies

resource They are pieces of code that web servers use to put information on a user’s browser, and then retrieve that information at a later time for various uses.

authorization

It’s a process of granting or denying access to resources. Mostly it happens after authentication.

access control

resource Access Control is a way of controlling what resources a user can create/read/update/delete given their role(s)

conditional rendering

resource 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. This concept is applied often in the following scenarios: Rendering external data from an API

Preview

Preparation Materials