From 882e97fe3ebf263daa8ee9f862032559cf01a195 Mon Sep 17 00:00:00 2001 From: mdecker62 Date: Wed, 25 Mar 2026 15:52:54 -0400 Subject: [PATCH] =?UTF-8?q?question=201.=20=20I=20regularly=20use=20Spotif?= =?UTF-8?q?y=20to=20stream=20music=20on=20my=20phone.=20One=20feature=20I?= =?UTF-8?q?=20like=20is=20the=20personalized=20playlist=20recommendations?= =?UTF-8?q?=20on=20the=20home=20screen.=20Behind=20the=20scenes,=20my=20de?= =?UTF-8?q?vice=20likely=20sends=20an=20HTTP=20GET=20request=20to=20Spotif?= =?UTF-8?q?y=E2=80=99s=20servers=20asking=20for=20recommended=20tracks=20b?= =?UTF-8?q?ased=20on=20my=20listening=20history.=20The=20server=20processe?= =?UTF-8?q?s=20this=20request,=20runs=20algorithms=20to=20select=20songs?= =?UTF-8?q?=20I=20might=20like,=20and=20sends=20back=20an=20HTTP=20respons?= =?UTF-8?q?e=20containing=20the=20playlist=20data=20in=20JSON=20format.=20?= =?UTF-8?q?My=20app=20then=20parses=20that=20response=20and=20displays=20t?= =?UTF-8?q?he=20recommended=20songs=20for=20me=20to=20play=20instantly.?= 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 7a3c414..3f8fde2 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