Skip to content

Instantly share code, notes, and snippets.

View CheezItMan's full-sized avatar

Chris M CheezItMan

View GitHub Profile

Proposal

Product Plan - Suzanne Avitus

Learning Goals

  • Learn IOS Development
  • Learn to use a nosql database (Google Firebase)
  • Learn to use geographic data
@CheezItMan
CheezItMan / capstone-concept-1.md
Last active June 1, 2022 22:51
Capstone Concepts & Proposals

Capstone Concept - Alderta Matéo

Problem Statement #1

This web application functions as an exchange for parents to trade toys, children's clothes etc

MVP Feature Set

  1. As a new parent, I should be able to join the exchange via an invite email
  • An existing user can invite a new parent by entering their email.
#!/bin/bash
# Below is a script used at Ada to install needed software and some optional packages (Firefox Chrome etc).
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# Add path for homebrew to ~/.zshrc file
echo "export PATH=$PATH:/opt/homebrew/bin/" >> ~/.zshrc
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.zshrc
#!/bin/bash
# Below is a script used at Ada to install needed software and some optional packages (Firefox Chrome etc).
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# Add path for homebrew to ~/.zshrc file
echo "export PATH=$PATH:/opt/homebrew/bin/opt/homebrew/bin/" >> ~/.zshrc
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.zshrc
#!/bin/bash
# We'll be installing Homebrew in the /opt directory.
cd /opt
# Create a directory for Homebrew. This requires root permissions.
sudo mkdir homebrew
# Make us the owner of the directory so that we no longer require root permissions.
sudo chown -R $(whoami) /opt/homebrew

Stacy Lundquist

she :: her

206.450.4652

Educator. Advocate. CODER.


~Resume~
~Biography~

Stacy has always been the type of person to mesh professional and personal life when it comes to morals, missions, and goals. Which is why it is hard to keep bios short and to the point.

# Review the code below
# What questions do you have?
# What happens if the commented lines
# are uncommented?
MY_EARNINGS = 10
def sales_tax(amount)
# puts "tax = #{tax}"
# puts "amount = #{amount}"
#!/bin/bash
# install ohmyzsh
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# install homebrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
# install git
brew install git

Good VS Code Extensions

  • Bracket Pair Colorizer 2
  • Live Server
  • CSS Peek
  • ES7/React Snippets
  • Prettier Now
  • Python
  • Python Docstring
  • Better Comments??

Reading Review: JS Ecosystem

This reviews JavaScript Ecosystem and CRA Build System

Why do we need a build system for our client-side JS projects?

  1. What platform do client-side JS apps run on? This is different compared to Ruby CLI programs, which run on Terminal/command line, and Ruby on Rails apps, which run on a Heroku server.
  2. Without a build system, previously we have used a specific HTML tag to load a JS script, one-by-one, line-by-line. Which HTML tag loads a single JS script?
  3. True or false: If your JS script named index.js is included into the html index.html with `