Skip to content

Instantly share code, notes, and snippets.

View SultanaK's full-sized avatar
💭
Full stack Developer with a focus on Frontend, Backend and Database.

KHANDAKER SULTANA SultanaK

💭
Full stack Developer with a focus on Frontend, Backend and Database.
View GitHub Profile
function adjacentElementsProduct(inputArray) {
var numbers = -100
for (var i = 0; i < inputArray.length; i++) {
if (inputArray[i] * inputArray[i + 1] >= numbers) {
numbers = inputArray[i] * inputArray[i + 1]
}
}
return numbers
}
Role Task Importance
As a new user I want to sign up for an account High
As a new user I want to save animation to my account High
As a returning new user I want to see animations High
As a returning user I should be able to search animation High
As a returning user I want to sign into my account High
As a returning user I want to update animation on the page High
As a returning user I want to delete animation on the page High
As a returning user I want to share my animation on social
media Low
App Name: Animation Station
Pages List:
-Landing Page: https://alenj-dmt.github.io/animation-station-wireframe/
-Editor Page: https://alenj-dmt.github.io/animation-station-wireframe/#editor
-Login/Register Page: https://alenj-dmt.github.io/animation-station-wireframe/#login
-Dashboard Page: https://alenj-dmt.github.io/animation-station-wireframe/#dashboard
-Profile Page: https://alenj-dmt.github.io/animation-station-wireframe/#profile
-MarketPlace: https://alenj-dmt.github.io/animation-station-wireframe/#marketplace
User flows: https://drive.google.com/file/d/1MDpSbP3C1EwIRhjR8U0V2wOXLF78Vdn8/view
@SultanaK
SultanaK / gist:4a6539475f8cdca310677c9e927e6143
Created October 29, 2020 01:54
Capstone2 --AnimationStation
Name: AnimationStation
Statement: AnimationStation is an app where a user can create and preview css animations by selecting properties from menus that are combined to generate the animation css and display the animation to the user.
1. Describe the HTTP requests/response lifecycle.
Amazing site on describing the entire process in visual detail.
https://dev.to/dangolant/things-i-brushed-up-on-this-week-the-http-request-lifecycle-
Amazing video describing the process with cool visual effects
https://www.youtube.com/watch?v=eesqK59rhGA
Slides courtesy of Chris Klanac and Thinkful
http://thinkful.slides.com/thinkful/node-express#/4
==================================CONVERSATIONAL===========================================
When a user/client types a URL into their favorite browser, the BROWSER understands this as
a request using the GET method to a server and first gets the protocol (http protocol in most instances),
-- Get all restaurants
SELECT * FROM restaurants;
-- Get Italian restaurants
SELECT * FROM restaurants
WHERE cuisine = 'Italian';
-- 10 Italian, subset
SELECT id, name FROM restaurants
WHERE cuisine = 'Italian'
@SultanaK
SultanaK / MoreQuestions.txt
Created October 14, 2020 22:50 — forked from rtanubra/MoreQuestions.txt
Node Practice Interview
https://courses.thinkful.com/mi-fundamentals-v1/checkpoint/1
--Referring to the fundemental section
RESTful APIs
Representational State Transfer. Software architecture style
Set of constraints that governs a specific set of web APIs
The information and decisions you would write in a good api documentation.
Main concerns of Rest:
Name: HouseWill
Link to live app: https://housewill-client.vercel.app/
Link to client repo: https://github.com/SultanaK/Housefull-client
Link to API repo: https://github.com/SultanaK/Housewill-Api
https://ancient-coast-06937.herokuapp.com/api/items
Do my users think the app is interesting or valuable?
It is interseting as I spoke to my two neighbours and I implement one more functionality.
Did my users encounter any bugs or broken features?
@SultanaK
SultanaK / gist:9e981b868a4e8b6316a90fe4598ff15c
Created September 2, 2020 03:41
Housewill wireframe link
Nme: Housewill
Landing page
https://repl.it/@Sultana218/AjarKookyConfiguration#index.html
Registration page
https://repl.it/@Sultana218/FullWelcomeService#style.css
Login page
https://repl.it/@Sultana218/CoralAmazingIntroductory#index.html

Capstone Pro Tips

Propose Your Idea

Every good app starts with an idea. Here are a few things that should be included in you proposal

  • Project Description
  • What problem does your project solve?
  • Who has this problem?
  • How will your project solve this problem?