A nice write-up counts as "extra" towards portfolio credit.
You can skip the last part (non-blocking sockets)
Reverse-engineer the protocol for the simple chat server scsrv.py and the write talk and listen client programs for this server. Your talk and listen clients should take the machine_address and port of the server as command line parameters. For example:
python3 talk.py glasscat.wartburg.edu 2001
Write a server that listens for http connections on port 2080 and then echos back the headers of the HTTP request that was sent. For example, this is what I see in my browser when I go to the URL, http://localhost:2080/test.it
GET /test.it HTTP/1.1 Host: zellep50:2080 Connection: keep-alive Cache-Control: max-age=0 User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36 Upgrade-Insecure-Requests: 1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8 Accept-Encoding: gzip, deflate Accept-Language: en-US,en;q=0.9
Note: Your server will need to produce a proper HTTP response in order for this to work. At the very minimum you will need the status line and header fields such as:
Connection: Close Content_type: text/plain
Create a HTML document either for yourself or a group (real or fictitious) that you are in. Your document should consist of several pages and contain examples of the HTML elements that are used in exercises 2.1--2.14 (pp 93,94) of the textbook. Using audio, video, and organization elements (Sections 2.10--2.12) earns extra points.
Your site does not need to be "serious" or particularly complex, but it should definitely reflect your interests and personality. Looks are not critical, but try to structure the provided information well. Plan out what goes on the main page vs what is in separate pages that you link to.
Use style sheets to make your pages from the previous assignment look nicer. Use an external style sheet to give all your pages some basic uniform look, and use an embedded stylesheet on at least one of the pages to change it up a bit. You may look at style sheets from online sites for guidance, but please try to understand and write your own rules. Do not just copy someone else's style verbatim. If I have any questions about your style rules, I will quiz you.
Create a course.css style sheet to style the index.html and syllabus.html pages for CS 280. You may also modify the embedded style sheets. DO NOT MODIFY THE HTML! If I like a design better than my default version, it earns an "A", and I will use it for the rest of the semester.