From ba40bd8c61c69ad436a7dfe61786a93c25ea21be Mon Sep 17 00:00:00 2001 From: mdecker62 Date: Wed, 25 Mar 2026 15:54:29 -0400 Subject: [PATCH] =?UTF-8?q?question=201.=20=20I=20regularly=20use=20Spotif?= =?UTF-8?q?y=20to=20stream=20=20music=20on=20my=20phone.=20One=20feature?= =?UTF-8?q?=20I=20like=20is=20the=20personalized=20playlist=20recommendati?= =?UTF-8?q?ons=20on=20the=20home=20screen.=20Behind=20the=20scenes,=20my?= =?UTF-8?q?=20device=20likely=20sends=20an=20HTTP=20GET=20request=20to=20S?= =?UTF-8?q?potify=E2=80=99s=20servers=20asking=20for=20recommended=20track?= =?UTF-8?q?s=20based=20on=20my=20listening=20history.=20The=20server=20pro?= =?UTF-8?q?cesses=20this=20request,=20runs=20algorithms=20to=20select=20so?= =?UTF-8?q?ngs=20I=20might=20like,=20and=20sends=20back=20an=20HTTP=20resp?= =?UTF-8?q?onse=20containing=20the=20playlist=20data=20in=20JSON=20format.?= =?UTF-8?q?=20My=20app=20then=20parses=20that=20response=20and=20displays?= =?UTF-8?q?=20the=20recommended=20songs=20for=20me=20to=20play=20instantly?= =?UTF-8?q?.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit question 2. Yes, this lab made me realize that every app or website I use is constantly sending and receiving HTTP requests in the background. Even simple actions, like loading a playlist or checking the weather, involve multiple requests and responses I never notice. It makes me appreciate how much coordination happens behind the scenes to make technology feel instant and seamless. --- notes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notes.md b/notes.md index 3f8fde2..7a3c414 100644 --- a/notes.md +++ b/notes.md @@ -5,7 +5,7 @@ Read the request and response shown on lines 1-32 of the lab. Choose five lines from the request and/or the response. For each, make an inference about the meaning of the line, and some situation in which it might be useful. You are welcome to research the meanings of these headers, but it's also -fine to speculate for now.. +fine to speculate for now. Answers: line: Connection: keep-alive