2024-01-31 12:07:32
This commit is contained in:
parent
7b7ed70b5e
commit
53d6b179c7
26
.obsidian/workspace.json
vendored
26
.obsidian/workspace.json
vendored
@ -4,16 +4,16 @@
|
||||
"type": "split",
|
||||
"children": [
|
||||
{
|
||||
"id": "12142c95ed24c02b",
|
||||
"id": "ddfaaf202c7faed6",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "4512014e685326f2",
|
||||
"id": "8db4168c46ad14cb",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "UNB/Year 4/Semester 2/STAT2593/2024-01-31.md",
|
||||
"file": "UNB/Year 4/Semester 2/CS3873/2024-01-31.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
}
|
||||
@ -85,7 +85,7 @@
|
||||
"state": {
|
||||
"type": "backlink",
|
||||
"state": {
|
||||
"file": "UNB/Year 4/Semester 2/STAT2593/2024-01-31.md",
|
||||
"file": "UNB/Year 4/Semester 2/CS3873/2024-01-31.md",
|
||||
"collapseAll": false,
|
||||
"extraContext": false,
|
||||
"sortOrder": "alphabetical",
|
||||
@ -102,7 +102,7 @@
|
||||
"state": {
|
||||
"type": "outgoing-link",
|
||||
"state": {
|
||||
"file": "UNB/Year 4/Semester 2/STAT2593/2024-01-31.md",
|
||||
"file": "UNB/Year 4/Semester 2/CS3873/2024-01-31.md",
|
||||
"linksCollapsed": false,
|
||||
"unlinkedCollapsed": true
|
||||
}
|
||||
@ -125,7 +125,7 @@
|
||||
"state": {
|
||||
"type": "outline",
|
||||
"state": {
|
||||
"file": "UNB/Year 4/Semester 2/STAT2593/2024-01-31.md"
|
||||
"file": "UNB/Year 4/Semester 2/CS3873/2024-01-31.md"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -156,20 +156,22 @@
|
||||
"table-editor-obsidian:Advanced Tables Toolbar": false
|
||||
}
|
||||
},
|
||||
"active": "4512014e685326f2",
|
||||
"active": "8db4168c46ad14cb",
|
||||
"lastOpenFiles": [
|
||||
"UNB/Year 4/Semester 2/CS3873/2024-01-31.md",
|
||||
"UNB/Year 4/Semester 2/CS2333/2024-01-22.md",
|
||||
"UNB/Year 4/Semester 2/CS2333/2024-01-24.md",
|
||||
"UNB/Year 4/Semester 2/CS2333/2024-01-26.md",
|
||||
"UNB/Year 4/Semester 2/CS2333/2024-01-29.md",
|
||||
"UNB/Year 4/Semester 2/STAT2593/2024-01-31.md",
|
||||
"UNB/Year 4/Semester 2/CS3873/2024-01-15.md",
|
||||
"UNB/Year 4/Semester 2/CS3873/2024-01-29.md",
|
||||
"UNB/Year 4/Semester 2/STAT2593/2024-01-29.md",
|
||||
"UNB/Year 4/Semester 2/STAT2593/2024-01-31.md",
|
||||
"UNB/Year 4/Semester 2/STAT2593/2024-01-26.md",
|
||||
"UNB/Year 4/Semester 2/CS2333/2024-01-24.md",
|
||||
"UNB/Year 4/Semester 2/CS3873/2024-01-26.md",
|
||||
"UNB/Year 4/Semester 2/CS2333/2024-01-26.md",
|
||||
"UNB/Year 4/Semester 2/CS3873/2024-01-24.md",
|
||||
"UNB/Year 4/Semester 2/CS3873/2024-01-22.md",
|
||||
"UNB/Year 4/Semester 2/STAT2593/2024-01-24.md",
|
||||
"UNB/Year 4/Semester 2/CS2333/2024-01-22.md",
|
||||
"UNB/Year 4/Semester 2/CS2333/2024-01-19.md",
|
||||
"UNB/Year 4/Semester 2/CS3873/2024-01-19.md",
|
||||
"UNB/Year 4/Semester 2/STAT2593/2024-01-22.md",
|
||||
@ -184,8 +186,6 @@
|
||||
"Semester 2/STAT2593/2024-01-19.md",
|
||||
"Semester 2/STAT2593/Untitled",
|
||||
"Semester 2/CS3873/2024-01-17.md",
|
||||
"Semester 2/CS3873/2024-01-15.md",
|
||||
"Semester 2/CS2333/2024-01-15.md",
|
||||
"Semester 2/STAT2593",
|
||||
"Semester 2",
|
||||
"Semester 1",
|
||||
|
26
UNB/Year 4/Semester 2/CS3873/2024-01-31.md
Normal file
26
UNB/Year 4/Semester 2/CS3873/2024-01-31.md
Normal file
@ -0,0 +1,26 @@
|
||||
Lecture Topic: Advanced HTTP
|
||||
|
||||
# HTTP2
|
||||
Goal is to reduce latency, but keep the same methods, status codes, and header fields. Changes how data is formatted and transmitted between clients
|
||||
- Prioritises transmission of requested objects, and give a request a weight to each request to indicate priority
|
||||
- Server pushes additional objects to client, by sending multiple responses to a single client request, before receiving explicit
|
||||
- Head of line blocking
|
||||
- Before in HTTP 1.1 the request are blocked by large requests, as objects are delivered in sequence, and a workaround is to setup multiple TCP connections to request many objects at once
|
||||
- In version 2, objects are divided into *frames* and frame transmission is interleaved in a round robin fashion
|
||||
|
||||
# HTTP3
|
||||
Improved performance even further by using streaming, by using the "QUIC" protocol over a bare UDP connection
|
||||
|
||||
# HTML Versions
|
||||
- HTML 1.0 Is written by Tim Berners-Lee
|
||||
- HTML 1,2,3,4, 4.01 published in in 1999
|
||||
- XHTML is an extensible version of HTML, based on XML
|
||||
- HTML5
|
||||
- New elements, section for documents, figure for content flow, video, audio, canvas for multimedia
|
||||
- New APIs to prompt users, like alert(), confirm(), prompt(), and printing with print()
|
||||
HTML is a markup language that uses tags
|
||||
|
||||
(list and explanation of common html tags)
|
||||
|
||||
# CSS
|
||||
CSS defines the visual style of a document
|
Loading…
Reference in New Issue
Block a user