Skip to content

Instantly share code, notes, and snippets.

View sharihobbs's full-sized avatar

Shari Hobbs sharihobbs

View GitHub Profile
@sharihobbs
sharihobbs / gist:c9b8c7e83d0e0e07cd142dddf4cc7ccd
Created April 27, 2018 16:22
React Communication Drills
Surprise
https://glitch.com/edit/#!/nippy-fairy
Rate Calculator
https://glitch.com/edit/#!/useful-cougar
Live Search
https://glitch.com/edit/#!/knowing-yarn
Navigation Bar
https://glitch.com/edit/#!/linen-ogre
Address Book
https://glitch.com/edit/#!/sulky-door
Slack - arisimon2
Feedback:
It looks really cool! One thing I noticed is that when you open a photo you can edit or delete it, but you can’t go back to the landing page without reloading. Don’t know if that’s intentional or not. Also it might be nice to sort the photos by the date that they’re added instead of it just being added on at the end.
Response: Sorting implemented by date and a button was added to the individual post screen that will allow you to cancel and go back to the home page.
Slack - christophergoot
Feedback:
Nice and simple. I like it, and think you can have a lot of fun styling it. The only feature I would like to see is a thumbnail preview after the image is selected. I tried two tests. The first (robots) managed to upload twice. Perhaps I pushed submit twice, I'm not entirely sure. The second test I attempted to upload a PDF file, which was permitted by the client, but resulted in an uncaught server error.
@sharihobbs
sharihobbs / gist:b45a13d2cc2ce4c9c7580887dcf6c943
Last active April 4, 2018 22:56
User Stories & Flow for Capture, a visual gratitude journal
MVP Stories:
As a user, I should be able to add posts with a photo, a timestamp, and a short note
As a user, I should be able to scroll through all posts to revisit past photo gratitudes
As a user, I should be able to log in to Capture
All Stories:
As a user, I should be able to sign up for Capture
*As a user, I should be able to log in to Capture
*As a user, I should be able to add posts with a photo, a timestamp, and a short note
*As a user, I should be able to scroll through all posts to revisit past photo gratitudes
@sharihobbs
sharihobbs / gist:f9c18af440afa8dd11bdcaff8e97150a
Last active March 22, 2018 21:04
Mongo Basics drills / SHobbs Solutions
Get all:
db.restaurants.find()
Limit and sort:
db.restaurants.find({ "name": { "$exists": true } }).limit(10).sort({ "name": 1})
Get by _id:
var oneRest = db.restaurants.findOne({}, {_id: 1})._id
db.restaurants.findOne({_id: oneRest});
Echo Endpoint
https://glitch.com/edit/#!/shocking-baker
Mad Lib Generator
https://glitch.com/edit/#!/violet-ease
@sharihobbs
sharihobbs / README-Template.md
Created February 26, 2018 18:20 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@sharihobbs
sharihobbs / gist:da15a763538dc5655a7dd6443382036b
Last active February 22, 2018 22:36
Recipe Search Project - User Feedback
Michelle Manzo - Slack/Full Stack Flex - Chrome on a Mac
“This is a cool project - I always seem to want something like this. One thing I would mention is to prompt your user to separate ingredients by commas. The first time I just randomly started typing in foods, but didn't separate them, which yielded no results. Maybe the placeholder text can have an example like (bacon, milk, eggs) or something like that. The copy list did work for me, I did not try e-mailing.”
Benjamin Modayil - Slack/Full Stack Flex - Chrome on a Mac
“I’ve noticed the “Copy List” functionality isn’t working and also I’m not able to proceed with any of the buttons after making the first search.I looked at the console and it seems you’re receiving a few errors.”
Robyn Randle - in person - iOS
“I noticed is that it wouldn't work if I put "lemons and cayenne and cilantro," I had to use commas. But I am quite sure if this not news and I don't know anyone that would use "and" instead of commas.vI tried entering the items without commas, ju
Helping home chefs search for and select recipes that use the ingredients they currently have on hand from over 1 Million options in the Recipe Puppy API. As an added feature, through the Wunderlist API, users may also create a shopping list with any ingredients needed for recipes they want to try at a later date.
Cat Carousel (please see my commented out code so we can discuss Wed) https://repl.it/Icy2/latest
Return of FizzBuzz https://repl.it/GiQ8/3073