Skip to content

Instantly share code, notes, and snippets.

View VictoriaVasys's full-sized avatar

Victoria Vasys VictoriaVasys

View GitHub Profile
@VictoriaVasys
VictoriaVasys / vv-prework.md
Last active January 22, 2017 23:03 — forked from mbburch/prework.md
Turing pre-work Gist

Turing School Prework- Victoria Vasys

Task A- Practice Typing:

  • screenshots of scores will be posted in comments

Task B- Algorithmic Thinking & Logic:

  • screenshots of completed sections will be posted in comments

Task C- Create your Gist:

Setting Group Expectations

Group Member Names:

  1. When are group members available to work together? What hours can each group member work individually? Are there any personal time commitments that need to be discussed?

  2. How will group members communicate? How often will communication happen, and how will open lines of communication be maintained?

  3. Which feature(s) does each group member want to work on? Which feature(s) does each group member not want to work on?

@VictoriaVasys
VictoriaVasys / sessions.md
Last active April 3, 2017 17:43 — forked from case-eee/sessions.md
Sessions, Cookies, and Flashes

Sessions, Cookies, and Flashes

  1. If we didn't have cookies and sessions, what would happen?
    There would be no data transfer/memory between each click of the page; victim of statelessness
  2. What is a cookie?
    object that you can access like a hash; store non-secure things in browser; expire
  3. What's the difference between a cookie and a session?
    session's data is serialized; more secure; expires at end of browser session. (session is maintained browser side, cookie = server-side)
  4. What's serialization and how does it come into play with sessions?
    Change format of storage; can't just read or edit- gives security