Skip to content

Instantly share code, notes, and snippets.

View dadsocks's full-sized avatar

Bill Taggart dadsocks

View GitHub Profile
User Story Short List
As a user, I should be able to search for valid twitter users
As a user, I should be able to save twitter users to my account
As a user, I should be able to retrieve the mood of a twitter user based upon their last tweet
As a user, I should be able to pull a personality profile of a twitter user
As a user, I should be able to delete twitter users from my account
User Screens
All User Screens Should be on one page for Desktop/Tablet Devices
Mobile Devices will have seperate screens
As a user, I should be able to create an account with moodify
As a user, I should be able to log-in to moodify with twitter
As a user, I should be able to update my log-in id
As a user, I should be able to update my password
As a user, I should be able to search for valid twitter users
As a user, I should be able to save twitter users to my account
As a user, I should be able to retrieve the mood of a twitter user based upon their last tweet
As a user, I should be able to pull a personality profile of a twitter user
As a user, I should be able to delete twitter users from my account
As a user, I should be able to log-out
Get All: db.restaurants.find()
Limit and Sort: db.restaurants.find().sort({name: 1}).limit(10)
Get by _id: db.restaurants.find({_id: ObjectId("59074c7c057aaffaafb10acb")})
Get by Value: db.restaurants.find({borough: "Queens"})
Count: db.restaurants.count()
Echo Endpoint: https://glitch.com/edit/#!/join/de4df1a9-6909-40f6-9a8d-b93ab63bc406
MadLibs: https://glitch.com/edit/#!/join/ee894513-636c-410a-bd2f-cf8bb415a65
Selected Character details need to hide on new movie selection
Missing Characters from Black Panther
Check Other Names
More info on the characters would be helpful
Fix Starting Movie Order
Prescribe a playlist based upon a particular Twitter User's Mood.
Uses 3 API's: Twitter, Watson, Spotify
- User enters twitter user name
- Pulls in 1-3 previous tweets
- Uses Watson API or something similar to analyze the mood of the tweet
- Prescribes a playlist from spotify to help match the mood of that user
@dadsocks
dadsocks / Quiz Questions
Created February 15, 2018 05:47
Quiz Questions
Question 1: What is Rick's last name? answer image: http://thevocalrange.com/wp-content/uploads/2017/08/Rick-Sanchez-Happy.jpg
a: Johnson
b: Sanchez
C: Jones
d: Williams
Question 2: What is Rick's universe number? answer image: https://theboar.org/wp-content/uploads/2017/09/rickandmorty_ep307_001_Tales_From_The_Citadel_ricklantis-1.jpg
a: C - 139
b: C - 137
c: C - 275
@dadsocks
dadsocks / Event Listeners
Created February 12, 2018 03:52
Event Listeners
https://repl.it/@taggarw/Cat-carousel-jQuery
https://repl.it/@taggarw/return-of-fizz-buzz
@dadsocks
dadsocks / Grokking Most Frequent Word
Created February 11, 2018 01:55
Grokking Most Frequent Word
The function getTokens(rawString) performs the following actions:
1. converts the string from the argument rawString to lowerCase
2. Splits the string into seperate items in an array
a. It splits them at the characters specified in the regular expression literal between the brackets ([]).
b. The + matches any of the items in the [] 1 or more times. So that if a ?? appears it would treat those as one ?
3. It then filters out "falsy" item; in this case empty strings.
4. Sorts the array A - Z
The function motFrequentWord(text) performs the following actions:
1. Declares the variable words
@dadsocks
dadsocks / Object Drills 2
Created February 10, 2018 18:07
Object Drills 2
https://repl.it/@taggarw/Make-student-reports-drill
https://repl.it/@taggarw/Enroll-in-summer-school-drill
https://repl.it/@taggarw/find-by-id-drill
https://repl.it/@taggarw/validate-object-keys-drill