Skip to content

Instantly share code, notes, and snippets.

View SamanthaLFreeman's full-sized avatar
🎿

Samantha Freeman SamanthaLFreeman

🎿
  • Elevate Outdoor Collective
  • Denver, CO
View GitHub Profile

DTR: Define the Relationship

Project: Search and Rescue

Group Member Names:

  • Katie Williams
  • Samantha Freeman
  • Jori Peterson
  • Tyler Bierwirth
@SamanthaLFreeman
SamanthaLFreeman / reactHooks-research.md
Last active November 2, 2019 23:22
Push Yourself assignment - Mod 4

React Hooks Research

During my time at Turing I wanted to research React Hooks outside of the current FE curriculum. From what I had previously gathered, they are considered the current process used by many React developers. Thus steming my interest to learn more about them, so I can further develop my knowledge of React. Prior to my research I understood the basics of React Hooks, which is that they let you use state without writing a Class component. Thus your React components are only built with Functional components.

During my research my big take aways were the useState, useEffect and useContext hooks. The useState hook is the one that I had the most understanding of prior to my research. However, I didn't previously know how exactly the hook would let you use state in a function. It returns a pair of values; the current state and a function which will update the state. To define the current value of the state we pass it as an argument in the useState() method. Instead of using setState, we use t

The Post-Grad Job Search Action Plan

Step 1: Create a Calendar

image

Step 2: Help Us Help You

  1. What motivates you?

I want the opportunity to work in a career that is more fulfilling. A career where I feel like I am actually pushing myself and utilzing my brain.

HTML

  • What does a doctype do?

    • The <!DOCTYPE> declaration is not an HTML tag; it is an instruction to the web browser about what version of HTML the page is written in.
  • How do you serve a page with content in multiple languages?

    • If your document is HTML (ie. served as text/html), use the lang attribute to set the language of the document or a range of text.
  • What kind of things must you be wary of when designing or developing for multilingual sites?

    • Machine translation, no culture awareness, SEO not localized, special characters, dates
#!/bin/sh
# Script installs the current scaffolding version and pushes to GitHub
if [ -z "$1" ]
then
echo "Scaffolding version is not specified"
exit 2
fi
package_version=@k2sports/nuxt3-scaffolding@$1