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
Landing Page: | |
https://saltandpepper.mybalsamiq.com/projects/saltandpepper/Landing%20Page.jpeg?version=3&etag=DDhYKe8zX0qwERZMviUSc5t_JVVy32g2 | |
Results Page: | |
https://saltandpepper.mybalsamiq.com/projects/saltandpepper/Results.jpeg?version=4&etag=0L1K4n3DEd9f85yRTC7kjNg0JirrQmF3 |
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
Submitted to a few people. | |
I've changed it so it shows history of past results and | |
I think people want to see the latest result on it's own, | |
and then the following results can be much lower on the page. | |
Also have changed fonts and sizing, a bunch, but really feel | |
like this is stuck in the 90's. Going to look at other sites | |
as examples for ideas later today. People liked some basics, | |
adding border around images, moving ingredients list up a |
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://glitch.com/edit/#!/grateful-consonant | |
https://glitch.com/edit/#!/cold-cannon |
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: [], |
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
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
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
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
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
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); |