Skip to content

Instantly share code, notes, and snippets.

View RobertVFrazier's full-sized avatar

Robert V Frazier RobertVFrazier

  • Simpsonville, SC
View GitHub Profile
@RobertVFrazier
RobertVFrazier / React unit 3 lesson 2 React Router drills.txt
Last active March 5, 2019 18:02
React unit 3 lesson 2 React Router drills
https://glitch.com/edit/#!/gabby-bear?path=src/components/single-email.js:29:31
@RobertVFrazier
RobertVFrazier / React unit 2 lesson 1 part 4 Action, React Redux drills.txt
Created February 7, 2019 16:51
React unit 2 lesson 1 part 4 Action, React Redux drills
Interest calculator I: Connecting
https://glitch.com/edit/#!/zonked-dance
Interest calculator II: Dispatching
https://glitch.com/edit/#!/pitch-woodwind
@RobertVFrazier
RobertVFrazier / React unit 2 lesson 1 part 2 Action, reducer and store drills.txt
Last active February 4, 2019 03:01
React unit 2 lesson 1 part 2 Action, reducer and store drills
i18n state:
https://glitch.com/edit/#!/lively-bottom?path=src/reducers/index.js:12:22
CRUD reducer:
https://glitch.com/edit/#!/humdrum-sardine?path=src/reducers/index.js:29:0
@RobertVFrazier
RobertVFrazier / React unit 1 lesson 1 part 8 Communication drills.txt
Created December 17, 2018 03:31
React unit 1 lesson 1 part 8 Communication drills
Surprise!
https://glitch.com/edit/#!/steel-whistle?path=src/components/surprise.js:28:0
Hourly rate calculator
https://glitch.com/edit/#!/robust-broker?path=src/components/rate-calculator.js:1:0
Live Search
https://glitch.com/edit/#!/peach-hardcover?path=src/components/character-list.js:9:5
@RobertVFrazier
RobertVFrazier / React unit 1 lesson 1 part 5 Component drills.txt
Created November 29, 2018 14:56
React unit 1 lesson 1 part 5 Component drills
Navigation Bar drill:
https://glitch.com/edit/#!/luminous-vulture?path=src/components/navigation-bar.js:9:42
Address book drill:
https://glitch.com/edit/#!/grateful-bamboo?path=src/components/address-book.js:28:41
1) Get all
Find the command that retrieves all restaurants.
db.restaurants.find()
2) Limit and sort
Find the command that makes the first 10 restaurants appear when db.restaurants is alphabetically sorted by the name property.
db.restaurants.find().sort({name: 1}).limit(10);
@RobertVFrazier
RobertVFrazier / request_and_response_exercises.txt
Last active April 6, 2018 12:01
request and response exercises
echo endpoint
https://weak-gauge.glitch.me
https://weak-gauge.glitch.me/echo/pets?cat=meow&dog=woof
https://glitch.com/edit/#!/weak-gauge?path=server.js:1:0
Mad lib generator
https://thorn-gold.glitch.me
https://glitch.com/edit/#!/thorn-gold?path=server.js:1:0
@RobertVFrazier
RobertVFrazier / Choosing_an_API.txt
Created March 1, 2018 04:11
Choosing an API for the API capstone project
I will use the Flickr API to convert text strings into a series of photographs of letters, similar in appearance to a ransom note.
I found an example of doing this, and I think it would be interesting to figure out how to do it myself in Jquery instead of PHP,
with a better user interface, and fixing the punctuation bugs I found when I tested it.
The user will enter a text string into a field, then click a button to submit it. A lightbox will pop up, displaying each character
(letter, numeral, or punctuation) as a photograph inside a square box. Clicking on any of the boxes will get a new, random photograph
of the same character. There will be a button labeled "X" in the upper-right corner of the lightbox; clicking this will close the
lightbox and return focus to the text input field.
@RobertVFrazier
RobertVFrazier / Robert_Frazier_Quiz_App.txt
Created February 12, 2018 23:35
Links for the quiz app - Robert Frazier
Link for github repository: https://github.com/RobertVFrazier/Quiz-program
Link for the web page hosted on github: https://robertvfrazier.github.io/Quiz-program/
@RobertVFrazier
RobertVFrazier / Objects_drills_2.txt
Created January 31, 2018 15:40
Objects drills 2
Make student reports
https://repl.it/@Robert_Frazier/Make-student-reports-drill
Enroll in summer school
https://repl.it/@Robert_Frazier/Enroll-in-summer-school-drill
Find by id
https://repl.it/@Robert_Frazier/find-by-id-drill
Validate object keys