Skip to content

Instantly share code, notes, and snippets.

View mischkiey's full-sized avatar

Miki mischkiey

  • Miami, FL
  • 10:33 (UTC -04:00)
View GitHub Profile
@mischkiey
mischkiey / USERSTORIES.md
Last active September 23, 2020 03:04
Thinkful EI - Third Capstone
@mischkiey
mischkiey / FELIX.md
Last active September 27, 2020 17:28
Thinkful EI - Third Capstone
@mischkiey
mischkiey / README.md
Last active July 17, 2020 03:12
Thinkful EI - First Capstone

First Capstone

Proposed App Name/s: Acclimate

Link to live app proposal: https://mischkiey.github.io/thinkful-ei-first-capstone/

Description

  • Acclimate is an informational and utility disaster management app
  • It aims to provide accurate, reliable, and useful information and tools to be able to handle impending disasters systematically and effectively

How It Works

@mischkiey
mischkiey / README.md
Last active June 20, 2020 23:56
m5-c3-how-web-apps-work-assignment

Write an analogy to describe the relationship between clients and servers.

Client or frontend is described as what gives us access to and allows some sort of interaction with the web [and its resources]. Servers are what exposes those resources to the user [of the client]. A somewhat good analogy for this relationship would be a library as the collection of resources (or web), a borrower as the user, and a librarian as the server but used in this context: a borrower visits a library and either looks at a catalog to find a specific resource or consults a librarian. Either way, both methods would lead to an "exposure of a resource" just as a server would.

@mischkiey
mischkiey / m4-c6-assignment-shopping-list-render-list.js
Last active June 8, 2020 01:12
m4-c6-assignment-shopping-list-render-list
****************************************************************************************************
// Function stub/pseudocode for add items user story
****************************************************************************************************
const addItemToShoppingList = function (newItemName) {
// Create object for new item & push to store database
// Generate ID with cuid()
store.items.push({id: cuid(), name: itemName, checked:false})