Skip to content

Instantly share code, notes, and snippets.

Name of your app: theConsole
Link to live static version: https://theconsole-thankful-cassowary.now.sh
Link to repo on GitHub: https://github.com/tsimpkins73/theConsole
The user feedback you collected:
I spoke with my mentor regarding this project and his feedback.
He discussed with me the redundancy of a tags and categories assortment since they
provide overly similar fuctions to the app.
1. The user will begin at the Landing page:
https://tsimpkins73.github.io/theConsole/wireframes/LandingPage%20Wireframe
From there the user will choose to login or sign up for the site.
2. If the user chooses to login they will be brought to the Login page:
https://tsimpkins73.github.io/theConsole/wireframes/LoginPage%20Wireframe
On this screen the user will enter their pre-determined username & password and submit to login
V1:
Role Story Priority
As A User I want to see the latest posts High
As A User I want to search posts Medium
As A User I want to read posts High
As A User I want to comment on posts Medium
As A User I want to "Like/Dislike" posts Low
As A User I want to find posts by category Low
As A User I want to find posts by tags Low
As An Admin I want to add posts to the database High
I will be creating a blog that delivers Web-Development related articles & stories.
The articles will be retrieved from and posted to a database.
Authorized users will be able to post new articles to the site.
This blog will be named "theConsole".
@tsimpkins73
tsimpkins73 / create-shopping-list.sql
Created September 15, 2019 14:52
Shopping list Assignment & Drills
CREATE TYPE grocery AS ENUM (
'Main',
'Snack',
'Lunch',
'Breakfast'
);
CREATE TABLE IF NOT EXISTS shopping_list (
id INTEGER PRIMARY KEY GENERATED BY DEFAULT AS IDENTITY,
name TEXT NOT NULL,
const fs = require('fs');
const path = require('path');
const source = process.argv[2];
const target = process.argv[3];
// read contents of source
const contentsOfSource = fs.readFileSync(source, 'utf-8');
// get lines of source into an array, remove empty lines
User mentioned it would be good if they could create a favorites list of characters to retrieve later.
Screen inventory:
• Landing Page
• Search w/ favorites list
• Search w/ Character Information
• Search w/ Character Information & Stories
• Search w/ Character Information & Events
• Search w/ Character Information & Movies
User flow:
Landing Page loads -----> User Types in a character name in the text box ----->
Does this API require authentication?
a: Yes, for most requests.
Does this API support CORS?
a: yes
Find the events search endpoint documentation. Describe in detail the response format of the events search endpoint.
What are the limitations placed on the number of requests that can be made?
Role Task Importance
As A User I want to search for a new character High
As A User I want to see a description of High
the character
As A User I want to see a picture of High
the character
As A User I want to see the stories Medium
the character was in
As A User I want to see the events Medium