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
import React, { Component } from "react"; | |
import firebase from "../config/firebase"; | |
import { | |
FormGroup, | |
ControlLabel, | |
FormControl, | |
Button, | |
Form | |
} from "react-bootstrap"; | |
import "./components-css/login.css"; |
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
package main | |
import "fmt" | |
func main() { | |
k := 0 | |
j := 1 | |
for k < 12 { | |
k++ | |
for j < k*2 { |
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
// export const snapshotToArray = snapshot => { | |
// let returnArr = []; | |
// snapshot.forEach(childSnapshot => { | |
// let item = childSnapshot.val(); | |
// item.key = childSnapshot.key; | |
// returnArr.push(item); | |
// }); | |
// return returnArr; |
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
const generatePlayerBoard = (numberOfRows, numberOfColumns) => { | |
let board = []; | |
for (let i = 0; i < numberOfRows; i++){ | |
let row = []; | |
for ( let j = 0; j < numberOfColumns; j++) { | |
row.push(' '); | |
} | |
board.push(row); |
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
Eastern/ NY Times | |
8/10/17 - Thursday - 7:00-8:00 | |
8/14/17 - Monday - 9:00-10:00, or 11:00-12:00 | |
8/15/17 - Tuesday - 7:00-8:00, 8:00-9:00, 9:00-10:00, or 11:00-12:00 | |
8/16/17 - Wednesday - 9:00-10:00 | |
8/17/17 - Thursday - 7:00-8:00, 8:00-9:00, 9:00-10:00, 10:00-11:00, or 11:00-12:00 | |
@nickfoden |
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 peopleInLine = []; | |
function tickets(peopleInLine) { | |
let ticket25 = 0; | |
let ticket50 = 0; | |
let ticket100 = 0; | |
for (i = 0; i < peopleInLine.length; i++) { | |
if (peopleInLine[i] === 100) { | |
if (ticket50 >= 1 && ticket25 >= 1) { | |
ticket50 -= 1; | |
ticket25 -= 1; |
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
https://viridian-viscose.glitch.me/ | |
https://wave-range.glitch.me |
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
https://flannel-policeman.glitch.me | |
https://fortune-library.glitch.me | |
https://summer-antler.glitch.me |
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
Header | |
https://glitch.com/edit/#!/burly-stage | |
Address Book | |
https://glitch.com/edit/#!/sudden-bean |
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
var myRestaurant = { | |
... address: {}, | |
... borough: "Queens", | |
... cuisine: "Colombian", | |
... grades: [], |