Skip to content

Instantly share code, notes, and snippets.

@chriscarlsondev
chriscarlsondev / Minced-FeedbackandIteration.md
Last active August 12, 2019 17:00
Feedback and iterations after deploying

User Feedback

User Feedback Action Taken
Erica, techie user who viewed app previously - Suggested that a cancel button be added to Add Recipe page
-Liked that the numerical fields (minutes, servings, etc.) made it easy for her to enter a number on her mobile device
- Added cancel button
-No action taken
Melissa, casual tech user - Likes how easy it is to navigate the app. Wishes the UI looked better. - No action taken since UI enhancement will happen later as part of the project
Elizabeth, casual tech user - Wished there was a way to delete a recipe. - Added buttons, routes and pages that allows people to delete a recipe entirely.
John, casual tech user - Suggested that the recipes on the homepage be in alphabetical order - Updated SQL query to sort results by recipe title in alphabetical order
@chriscarlsondev
chriscarlsondev / Minced-StaticClientFeedback.md
Last active August 8, 2019 23:12
Feedback on the Static Client for Minced

Minced App

Links

User Feedback

User Feedback Action Taken
Erica - Confused about the format that input should be provided in when entering a new recipe
- Wondered why the tasks didn't stay when she navigated away from the page
- Added additional help text above the fields to provide an example
- Explained that this was just the frontend version of the code and that I needed backend functionality in place in order to save changes over time
Melissa - Requested that there be a way to edit and delete a recipe you've already entered- Requested a way to search for an existing recipe- Thought that the app overall worked well but the general look of the app needed to be improved in order for her to be interested in using it. - Not selected a story for the MVP, but may end u
@chriscarlsondev
chriscarlsondev / Minced-ScreenInventory.md
Last active August 8, 2019 22:36
Screen Inventory for the Minced App

Minced App

Screens

The Minced App will include the followig screens initially:

  1. Landing Page
  2. Home Page
  3. Add Recipe Page
  4. View Recipe Page
@chriscarlsondev
chriscarlsondev / Minced-UserStories.md
Last active August 8, 2019 01:33
User Stories for the Minced App
Role Task Importance
As a new user I want to sign up for an account High
As a returning user I want to add a new recipe with a title, ingredients, and step-by-step instructions High
As a returning user I want to delete a recipe High
As a returning user I want to update an existing recipe High
As a returning user I want to add the number of servings that a recipe makes High
As a returning user I want to add a prep time to a recipe High
As a returning user I want to add a cooking time to a recipe High
As a returning user I want to add notes on the equipment needed to complete a recipe Medium
@chriscarlsondev
chriscarlsondev / Minced.md
Created August 8, 2019 01:25
Proposal for my second full stack capstone project

Minced is a web app for foodies who need a way to easily save and organize your recipes and make them easily accessible on any desktop or mobile device.

1. Get all restaurants Write a query that returns all of the restaurants, with all of the fields.

SELECT * FROM restaurants

2. Get Italian restaurants Write a query that returns all of the Italian restaurants, with all of the fields

SELECT * FROM restaurants where cuisine = 'Italian'

@chriscarlsondev
chriscarlsondev / MuchToDo-FeedbackandIteration.md
Last active July 22, 2019 12:33
Feedback and iterations after deploying

User Feedback

User Feedback Action Taken
Erica, techie user who viewed app previously - Noticed the due dates changed format after being added
-Thought it was confusing that different categories had the same color
- Updated app to not display the full UTC timestamp but to only display the date portion
-Will update colors of categories as part of final UI polishing
Melissa, casual tech user - Likes how easy it is to navigate the app. Wishes the UI looked better. - No action taken since UI enhancement will happen later as part of the project
Elizabeth, casual tech user - Thought the top navigation menu was confusing. Home didn't take you back to the initial screen but instead to the page of lists. - Updated top links
John, casual tech user - Liked how easy the interface was to use on his mobile device - Will keep this in mind when I do final polishing of the UI in a future module
@chriscarlsondev
chriscarlsondev / MuchToDo-StaticClientFeedback.md
Last active July 21, 2019 03:41
Feedback on the Static Client for MuchToDo

MuchToDo App

Links

User Feedback

User Feedback Action Taken
Erica - Added a category and expected the category to show up on the main page of the app after added instead of as an option when adding a new Category
- Wondered why the tasks didn't stay when she navigated away from the page
- No action taken
- Explained that this was just the frontend version of the code and that I needed backend functionality in place in order to save changes over time
Melissa - Thought that the app overall worked well but the general look of the app needed to be improved in order for her to be interested in using it. - No action taken since UI enhancement will happen later as part of the project
@chriscarlsondev
chriscarlsondev / MuchToDo-ScreenInventory.md
Last active July 20, 2019 19:31
Screen Inventory for the MuchToDo App

MuchToDo App

Screens

The MuchToDo App will include the followig screens initially:

  1. Landing Page
  2. Home Page
  3. Add New Task Page
  4. Add New Category Page
@chriscarlsondev
chriscarlsondev / MuchToDo-UserStories.md
Last active January 13, 2022 17:06
User Stories for the MuchToDo Todo List App
Role Task Importance
As a new user I want to sign up for an account High
As a returning user I want to add a new to do list item High
As a returning user I want to delete an existing to do list item High
As a returning user I want to update an existing to do list item High
As a returning user I want to check off a completed to do list item High
As a returning user I want to create categories for my to do list items Medium
As a returning user I want to assign a category to my to do list item Medium
As a returning user I want to assign a due date for my to do list item Medium