Skip to content

Instantly share code, notes, and snippets.

View Avisa-GA's full-sized avatar
📌

Avisa Sheverin Avisa-GA

📌
  • OmniScent | General Assembly
  • Santa Clara, CA
  • 07:20 (UTC -06:00)
  • LinkedIn in/avisasheverin
View GitHub Profile

Frontend Masters: AWS for Frontend Engineers

You should have the following completed on your computer before the workshop:

  • Install the AWS CLI.
  • Have Node.js installed on your system. (Recommended: Use nvm.)
    • Install yarn with brew install yarn.
  • Create an AWS account. (This will require a valid credit card.)
  • Create a Travis CI account. (This should be as simple as logging in via GitHub).
@Avisa-GA
Avisa-GA / machine.js
Created October 28, 2021 18:48
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
@Avisa-GA
Avisa-GA / github.css
Created August 13, 2021 14:59 — forked from theconektd/github.css
Github Markdown CSS - for Markdown Editor Preview
body {
font-family: Helvetica, arial, sans-serif;
font-size: 14px;
line-height: 1.6;
padding-top: 10px;
padding-bottom: 10px;
background-color: white;
padding: 30px; }
body > *:first-child {
@Avisa-GA
Avisa-GA / intro_to_react_native.md
Created July 23, 2021 22:10 — forked from iscott/intro_to_react_native.md
Cheatsheet: Intro to React Native

Intro to react-native cheatsheet

By Ira Herman

Notes to help you get started in react-native.

Cheatsheet Objectives

  • Explain how react-native apps work, native UI with JS for logic.
  • Explain what Expo does.
@Avisa-GA
Avisa-GA / ds_and_algos.md
Created July 13, 2021 15:38 — forked from iscott/ds_and_algos.md
Intro to Datastructures and Algorithms Cheat Sheet

RESTful Routes to CRUD Mapping

Example resource: fruits

In I.N.D.U.C.E.S. route order:

URL HTTP Verb Action Notes
/fruits/ GET index INDEX when a user types localhost:3000/fruits in browser this route shows a list or index of all fruits
/fruits/new GET new NEW when a user types localhost:3000/fruits/new in browser this route shows the user a form to create a NEW fruit