diff --git a/assessment.md b/assessment.md new file mode 100644 index 0000000..d5b7bec --- /dev/null +++ b/assessment.md @@ -0,0 +1,17 @@ +# Riddles Lab Assessment + +Hi Tom, + +Everything looks almost right, though you have a funny bug, "jason" instead of "json" +in `get_random_riddle`. + +In your commit message you write, + +> 1. I often use my google home to add items to my +> grocery list. This probably will send some form of get request to google keep + +I think it's probably a POST request. GET requests should not change the state of +the system, and therefore should be safe to re-run multiple times. If you send the same +request to add an item to your shopping cart, you'll have a ton of stuff in your cart :) + +Chris