Skip to content

Instantly share code, notes, and snippets.

View NickFoden's full-sized avatar
🐯
I'm here live, i'm not a cat.

Nick Foden NickFoden

🐯
I'm here live, i'm not a cat.
View GitHub Profile
@NickFoden
NickFoden / landing and results page
Created March 23, 2017 03:56
Salt And Pepper Wire Frames
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
@NickFoden
NickFoden / Feedback.rtf
Created March 26, 2017 17:52
Salt And Pepper Feedback
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
@NickFoden
NickFoden / node-001v5 project 1.1.6
Last active April 8, 2017 14:32
Glitch Submissions
https://glitch.com/edit/#!/grateful-consonant
https://glitch.com/edit/#!/cold-cannon
@NickFoden
NickFoden / solutions.js
Created April 15, 2017 17:53
Solutions to Mongo Basics
var myRestaurant = {
... address: {},
... borough: "Queens",
... cuisine: "Colombian",
... grades: [],
Header
https://glitch.com/edit/#!/burly-stage
Address Book
https://glitch.com/edit/#!/sudden-bean
https://flannel-policeman.glitch.me
https://fortune-library.glitch.me
https://summer-antler.glitch.me
https://viridian-viscose.glitch.me/
https://wave-range.glitch.me
@NickFoden
NickFoden / Clerk Challenge
Last active July 25, 2017 02:43
Clerk Challenge
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;
@NickFoden
NickFoden / Nick Available
Last active August 9, 2017 21:54
Nick Available
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
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);