Skip to content

Instantly share code, notes, and snippets.

@Ransom527
Ransom527 / U2-L1-S3
Created May 26, 2017 00:51
Advanced Topics - U2_L1
isEven has constant run time complexity (O(1))
areYouHere has polynomial run time complexity (O(n^2))
doubleArrayValues has linear run time complexity (O(n))
naiveSearch has linear run time complexity (O(n))
createPairs has polynomial run time complexity (O(n^2))
generateFib has linear run time complexity (O(n))
efficientSearch has logarithmic run time complexity (O(log n))
findRandomElement has constant run time complexity (O(1)).
isPrime has linear run time complexity (O(n))
@Ransom527
Ransom527 / Full_Stack_Capstone_User_Stories
Created April 25, 2017 01:11
Full Stack Capstone MVP User Stories
1) As a user, I should be able to login with my email address and see a list of my notes.
2) As a user, I should be able to save new notes from the home screen.
3) As a user, I should be able to modify and delete existing notes in my list.
@Ransom527
Ransom527 / React_U3L1-Capstone_Design
Last active April 15, 2017 22:51
React Capstone User Story
As a user I need to be able to search for 2 different addresses. And have directions returned to me with a map(s).
@Ransom527
Ransom527 / Node_U3L2-3
Last active February 11, 2017 00:42
Node U3L2-3
This app will be an Interactive Node.js Gaming Quiz, that holds the answers in the server side; and checks submissions to return a true or false response.
The user will choose which console to take the quiz for, take the quiz, then see a score at the end; and in a quiz home dashboard.
1) User first sees a prompt for their email address.
2) After entering email, user sees a list of quizzes with their corresponding high score.
3) User selects a quiz from the list, begins quiz.
4) After quiz, game over screen appears and user clicks a 'start new game' button to return to the quiz list.
@Ransom527
Ransom527 / Node_U3L2-2
Last active February 6, 2017 01:02
Node U3L2-2
This app will be an Interactive Node.js Gaming Quiz, that holds the answers in the server side; and checks submissions to return a true or false response.
The user will choose which console to take the quiz for, take the quiz, then see a score at the end; and in a quiz home dashboard.
@Ransom527
Ransom527 / NodeU2L1
Created January 30, 2017 23:47
Node U2L1 Drills
// Get all
db.restaurants.find();
// Limit and sort
db.restaurants.
find().
sort({name: 1}).
limit(10);
@Ransom527
Ransom527 / NodeU2L2
Created January 27, 2017 06:16
NodeU2L2
text
@Ransom527
Ransom527 / NodeU1L1-Request-Response-Drills.txt
Last active January 13, 2017 03:51
Node U1L1 - Request & Response Drills
Mad Lib Generator: https://flippant-giraffe.gomix.me
A/B Test: https://fanatical-baseball.gomix.me
@Ransom527
Ransom527 / U3L5_Feedback-Iteration.txt
Created January 10, 2017 22:37
Unit 3, Lesson 5 - Feedback & Iteration
Text
@Ransom527
Ransom527 / U3L5_User-flow.txt
Created January 10, 2017 22:01
Unit 3, Lesson 5 - User Flow
The app will have a single screen within which the exchange rate selection and conversions will be displayed.