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
[ | |
{ | |
"name": "Champion Svanir Shaman Chief", | |
"level": 10, | |
"region": "Shiverpeak Mountains", | |
"zone": "Wayfarer Foothills", | |
"area": "Frunsenfell Creek", | |
"times": [ | |
"0:15", | |
"2:15", |
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
[ | |
{ "year": 2022, "time": "2022-9-8 8:20 PM EDT", "week": "REG1", "away": "BUF", "home": "LA" }, | |
{ "year": 2022, "time": "2022-9-11 1:00 PM EDT", "week": "REG1", "away": "NO", "home": "ATL" }, | |
{ "year": 2022, "time": "2022-9-11 1:00 PM EDT", "week": "REG1", "away": "CLE", "home": "CAR" }, | |
{ "year": 2022, "time": "2022-9-11 1:00 PM EDT", "week": "REG1", "away": "SF", "home": "CHI" }, | |
{ "year": 2022, "time": "2022-9-11 1:00 PM EDT", "week": "REG1", "away": "PIT", "home": "CIN" }, | |
{ "year": 2022, "time": "2022-9-11 1:00 PM EDT", "week": "REG1", "away": "PHI", "home": "DET" }, | |
{ "year": 2022, "time": "2022-9-11 1:00 PM EDT", "week": "REG1", "away": "IND", "home": "HOU" }, | |
{ "year": 2022, "time": "2022-9-11 1:00 PM EDT", "week": "REG1", "away": "NE", "home": "MIA" }, | |
{ "year": 2022, "time": "2022-9-11 1:00 PM EDT", "week": "REG1", "away": "BAL", "home": "NYJ" }, |
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/sh | |
yarn init . -y | |
mkdir -p src/db/ | |
yarn add express winston express-winston | |
yarn add --dev eslint babel-eslint prettier nodemon | |
cat > src/logger.js <<EOF | |
import winston from 'winston'; |
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/sh | |
git init . | |
yarn init . -y | |
echo "node_modules/" > .gitignore | |
echo "coverage/" >> .gitignore | |
echo ".next" >> .gitignore | |
echo ".nyc_output" >> .gitignore | |
echo "public/" >> .gitignore |
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
import React from 'react'; | |
import { makeStyles } from '@material-ui/core/styles'; | |
import List from '@material-ui/core/List'; | |
import ListItem from '@material-ui/core/ListItem'; | |
import ListItemIcon from '@material-ui/core/ListItemIcon'; | |
import ListItemText from '@material-ui/core/ListItemText'; | |
import Divider from '@material-ui/core/Divider'; | |
import InboxIcon from '@material-ui/icons/Inbox'; | |
import DraftsIcon from '@material-ui/icons/Drafts'; |
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
[ | |
{ "date": "2018-09-06", "time": "8:20pm", "away": "Falcons", "home": "Eagles", "tv": "NBC" }, | |
{ "date": "2018-09-09", "time": "1:00pm", "away": "Bills", "home": "Ravens", "tv": "CBS" }, | |
{ "date": "2018-09-09", "time": "1:00pm", "away": "Steelers", "home": "Browns", "tv": "CBS" }, | |
{ "date": "2018-09-09", "time": "1:00pm", "away": "Bengals", "home": "Colts", "tv": "CBS" }, | |
{ "date": "2018-09-09", "time": "1:00pm", "away": "Titans", "home": "Dolphins", "tv": "FOX" }, | |
{ "date": "2018-09-09", "time": "1:00pm", "away": "49ers", "home": "Vikings", "tv": "FOX" }, | |
{ "date": "2018-09-09", "time": "1:00pm", "away": "Texans", "home": "Patriots", "tv": "CBS" }, | |
{ "date": "2018-09-09", "time": "1:00pm", "away": "Buccaneers", "home": "Saints", "tv": "FOX" }, | |
{ "date": "2018-09-09", "time": "1:00pm", "away": "Jaguars", "home": "Giants", "tv": "FOX" }, |
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
[ | |
Simple adder. Adds all available inputs and outputs the sum | |
Use it on https://codepen.io/lsmoura/full/ZxPqyE/ | |
Make sure to set the result type to 'number' | |
] | |
> Leave current memory position blank | |
>,[>,] Read all the inputs until zero | |
<< Go to the memory space to accumulate the number from the next space |
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
brew update | |
brew upgrade | |
brew install node npm yarn | |
cd ~ | |
npm install -g create-react-app | |
create-react-app first-app | |
cd first-app |
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
// Returns true if *all* parameters are true | |
const all = (...args) => ( | |
args.reduce( | |
(answer, current) => answer && current, | |
true | |
) | |
); | |
// Returns true if *any* of the parameters is true | |
const any = (...args) => ( |
NewerOlder