Skip to content

Instantly share code, notes, and snippets.

View laurajodz's full-sized avatar

Laura Jodz laurajodz

  • California
View GitHub Profile
@laurajodz
laurajodz / React component drills
Last active February 18, 2018 17:54
React component drills
https://calico-saver.glitch.me
https://glitch.com/edit/#!/calico-saver
https://abounding-pocket.glitch.me/
https://glitch.com/edit/#!/abounding-pocket
@laurajodz
laurajodz / gist:bca4b3168af2059df1f05d54d3b18dee
Last active January 2, 2018 21:58
Meal planning app #2
SHORT LIST OF USER STORIES FOR MVP
User should be able to:
* use test account credentials to log in
* search existing list of recipes
* select recipes to create meal plan (and see an indication that a recipe has been added and how many so far)
* view shopping list created automatically from recipes selected
* add/delete/modify shopping list items
* add/delete recipes on meal plan
* view all 3 - recipes, meal plan, shopping list - at any time
STATEMENT
This app simplifies meal planning...and your life. Imagine never again worrying about what to make for
dinner. Or never again missing just one ingredient for a great recipe. Wouldn't that be nice.
Let's get to planning. It's easy, fast and fun!
USER STORIES
A user should be able to:
* sign up
* log in
* change password
db.restaurants.find()
db.restaurants.find().sort({name: 1}).limit(10);
var documentId = ObjectId('59074c7c057aaffaafb0da64'); db.restaurants.findOne({_id: documentId});
db.restaurants.find({borough: "Queens"});
db.restaurants.count();
db.restaurants.find({'address.zipcode': '11206'}).count();
var objectId = db.restaurants.findOne({}, {_id: 1})._id; db.restaurants.remove({_id: objectId});
var objectId = db.restaurants.findOne({}, {_id: true})._id; db.restaurants.updateOne({_id: objectId},{$set: {name: "Bizz Bar Bang"}});
db.restaurants.updateMany({"address.zipcode": '10035'}, {$set: {"address.zipcode": '10036'}});
https://cosmic-music.glitch.me
https://six-overcoat.glitch.me
Users found the tool to work intuitively
Users appreciated the simple and clean interface
User bugs found:
map markers not showing up on mobile devices
can't clear out the Category radio button
User suggestions:
allow for multiple keywords and categories (note: Meetmap API will not let us search across multiple categories)
show current selections at top of page while viewing map
@laurajodz
laurajodz / index.js
Created November 27, 2017 22:16
Meetmap javascript
var map;
function initMap() {
var styles = [
{
"elementType": "geometry",
"stylers": [
{
"color": "#f5f5f5"
}
MeetMap: An app to help users see Meetups they're interested in on a map, by using data from both the Meetup API and the Google Maps API.
@laurajodz
laurajodz / gist:b78ba3c12403099533349bf5c87f0249
Created October 18, 2017 18:42
jQuery Event Listener Drills
https://repl.it/Icy2/latest
https://repl.it/GiQ8/latest
https://repl.it/FfGw/latest