- Learn IOS Development
- Learn to use a nosql database (Google Firebase)
- Learn to use geographic data
This web application functions as an exchange for parents to trade toys, children's clothes etc
- 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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This reviews JavaScript Ecosystem and CRA Build System
- 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.
- 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?
- True or false: If your JS script named
index.js
is included into the htmlindex.html
with `
NewerOlder