These instructions are only needed if, like me, you don't want to have to trust glitch completely with permissions to read AND write your data on github directly.
This file contains hidden or 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
{ | |
"title": "Adana", | |
"ingredients": [ | |
"1 kg ground lamb", | |
"Kosher salt", | |
"4 teaspoons ground cumin, divided", | |
"4 tablespoons ground sumac, divided", | |
"4 tablespoon ground Urfa pepper flakes, divided", | |
"4 tablespoons ice-cold water" | |
], |
This file contains hidden or 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
[ | |
{ | |
"quote": "Life isn’t about getting and having, it’s about giving and being.", | |
"author": "Kevin Kruse" | |
}, | |
{ | |
"quote": "Whatever the mind of man can conceive and believe, it can achieve.", | |
"author": "Napoleon Hill" | |
}, | |
{ |
This file contains hidden or 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
function pickRandom(arr) { | |
let ix = Math.floor(Math.random() * arr.length); | |
return arr[ix]; | |
} |
( being moved to https://github.com/CodeYourFuture/syllabus/tree/master/others/netlify-hosting-instructions.md )
These instructions are for a React app that was initially created with the command create-react-app
.
This file contains hidden or 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
/* Welcome to the JS quiz! | |
* | |
* This is to help mentors know what we need to do better. | |
* | |
* You are welcome to use MDN to check syntax: https://developer.mozilla.org | |
*/ | |
/* Question 1 | |
* | |
* Write a function that takes two numbers and returns the the largest number of the two. |
This file contains hidden or 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
0,255 | |
0,255 | |
0,255 | |
0,255 | |
0,255 | |
6,249 | |
7,248 | |
7,248 | |
7,248 | |
6,249 |
This file contains hidden or 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
0,255 | |
0,255 | |
0,255 | |
0,255 | |
0,255 | |
13,242 | |
18,237 | |
24,231 | |
27,228 |
This file contains hidden or 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
let factor2 = 0 | |
let strip: neopixel.Strip = null | |
let maxNeighbourBrightness = 0 | |
let pxPos = 0 | |
let maxBrightness = 0 | |
let factor = 0 | |
let fPos = 0 | |
let braking = 0 | |
let accel = 0 | |
let speed = 0 |