Skip to content

Instantly share code, notes, and snippets.

View Lucho2027's full-sized avatar
:dependabot:
Going at it!

Luis Lucho2027

:dependabot:
Going at it!
View GitHub Profile
- User interviewed and feedback was received from Brian Rempe - Owner of the Gym - I was able to gather the following
notes:
- Nickname should not be required on the registration form. -> Initially I though this would be
crucial . However, I will remove this field from the form. My backend can receive the Nickname as Null.
- Format of Posted Workout all of the text comes as a string. -> Need to work on figuring out
how to style the string that is currently save as content on backend to present the workout in a
- Workout entry should only be available for the trainer. -> I am not sure how to solve this. I will probably use
a private route to post Work outs and leave the comment to the public.
-> Accenture (10/28/2019)-> After my grilfriend meeting a person that works for Accenture
I decided to reach out and keep the connection. He was kind enough to provide me with his contact card and reach out to me through LinkedIn.
started the conversation with the following message:
Luis Rodriguez 4:23 PM
Good Morning Noah,
We met briefly at the Bloomington, IL airport via my girlfriend Beth. I wanted to thank you for both your kindness to her on the plane and for your kindness and professional gesture in connecting with me afterwards. As you can see from my LinkedIn, the majority of my education and work experience has been in manufacturing. I am currently working towards a career change into a developer role and I am within months of completing the Thinkful Engineering Flex Program (Full-Stack developer). Currently my exposure has been to front-end apps (HTML, CSS, JS, Git, Github and ReactJS), and I will be trained in (Node.js, data structure and algorithms ) by the program completion.
I have looked i
-Crossfit Influence App
Live: https://crossfit-influence-app.now.sh/
Repo: https://github.com/Lucho2027/crossfit-influence-app/tree/static
Feedback - Brian Rempe: I would like to see the site look closer to https://crossfitpc.com/
I would like to see the addition of the comments from the users and see it implemented.
Right now is a step on the right direction.
App Name: Cross-Fit Influence
Screen Inventory
- Landing Page -> https://repl.it/@LuisRodriguez15/CrossFit-Influence-Land-Page-1
Description of the app / of the cross fit gym
- Workout of the Day (only logged-in users) -> https://repl.it/@LuisRodriguez15/Cross-Fit-Influence-wireframe-screen-2
user / admin log in screen
Sign-Up screen for new users
-Returning user and logged in
- I have a friend that owns a gym and this its current web page : http://www.crossfitinfluence.com/
On this webpage The trainers at the gym will post daily workouts. In addition trainees or users visiting the webpages can comment on the workouts or other postings created by the Admin.
I would like to use react and have the opportunity to modernize the look and feel of this webpage at the same time I can provide a friend with a better portal for his users
Heidy A. - Continous Improvement Analyst - Question asked regarding the app -
- How does the user knows how many minutes have passed of downtime every hour.
- Would the summary information be available to be exported or how could it be graphed? It needs a better graphical representation.
-Currently the app have a good core application - it needs some features to drive it home.
Brian R. - Manufacturing Engineer -
Aesthetically looks ok - Would like to see a grafical representation of the data , taken from the ddata summary as well as a filtering option.
Author Comment: These features are a good idea to make the app a more robust tool.
Elizabeth F. - Sr. VAVE Engineer -
Landing page - With explanation on how to use app - https://repl.it/@LuisRodriguez15/Production-Tracker-wireframe-1-Land-Page
Sign Up screen - Allow the user to create account - This one is together with the landing page
Log in screen - Allow user to log in - Very similar to Sign Up - https://repl.it/@LuisRodriguez15/Production-Tracker-wireframe-1-Land-Page
Work center selection page (MVP will take directly to one work center)
Data entry section - https://repl.it/@LuisRodriguez15/Production-Tracker-wireframe-screen-2
- Units produced per hour + Down time in minutes and reason - Need to develop a form that includes the reason
-Data summary page - Select a query for a time period. Here information should be graphed to represent how work center is doing versus goal and biggest detractors.
-User Flow Chart -> https://i.imgur.com/mriKsIC.jpg
Role Task Importance
As an administrator I want to view all user accounts High
As an administrator I want to set accounts for users High
As an administrator I want to compile data and download reports High
As an administrator I want to be able to edit data entry High
As an administrator I want to assign workcenters to users Medium
As an administrator I want to see live feedback of the data entry Medium
As an administrator I want to be able to provide Standard work for the lead as a guide to balance the line Low
As a New User I want to understand how to use the app High
As a New User I want to create my account and set a password High
@Lucho2027
Lucho2027 / shopping-list-service.js
Created January 5, 2020 17:53
Module 21 - Checkpoint 14 - Creating services
const shoppingListService={
getAllitems(knex){
return knex.select('*').from('shopping_list')
},
insertItem(knex, newItem){
return knex
.insert(newItem)
.into('shopping_list')
.returning('*')
.then(rows => {
@Lucho2027
Lucho2027 / shopping-list-service.js
Created January 5, 2020 17:53
Module 21 - Checkpoint 14 - Creating services
const shoppingListService={
getAllitems(knex){
return knex.select('*').from('shopping_list')
},
insertItem(knex, newItem){
return knex
.insert(newItem)
.into('shopping_list')
.returning('*')
.then(rows => {