From b323147e48d538a8db2e4b3d2cfe1ff3670ae1ed Mon Sep 17 00:00:00 2001 From: Chris Proctor Date: Tue, 21 May 2024 00:27:26 -0400 Subject: [PATCH] Add assessment --- assessment.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 assessment.md 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