vault backup: 2022-10-24 19:03:11

This commit is contained in:
Jet Hughes 2022-10-24 19:03:11 +13:00
parent 118a8b8e97
commit c8e4ebf682
11 changed files with 38 additions and 15 deletions

View File

@ -1,5 +1,5 @@
---
title: "Application Layer"
title: "Application-Layer"
aliases:
tags:
- cosc203

View File

@ -1,5 +1,5 @@
---
title: "Transport Layer"
title: "Data-Link-Layer"
aliases:
tags:
- cosc203

View File

@ -1,5 +1,5 @@
---
title: "Network Layer"
title: "Network-Layer"
aliases:
tags:
- cosc203

View File

@ -1,5 +1,5 @@
---
title: "Physical Layer"
title: "Physical-Layer"
aliases:
tags:
- cosc203

View File

@ -1,5 +1,5 @@
---
title: "Data Link Layer"
title: "Transport-Layer"
aliases:
tags:
- cosc203

View File

@ -5,4 +5,27 @@ tags:
- cosc203
---
# Static vs Dynamic Sites
Static
- Load pre-created files to a web serve
- Client requests these files from the server and displays them on the browser
Dynamic
- Some content is generated dynamicallt only when needed
# Server-Side vs Client-Side
Server
- UI Elements
- HTML CSS JS
- Runs within browser
Client
- Backend functionality: notifications, databases, etx
- PHP, JS, C, C#, Ruby, etc
- Runs on Server
# Databases
ORM: Object relational model
ODM: Object data model

View File

@ -39,14 +39,14 @@ tags:
- [Schemas](notes/Schemas)
- [SQL](notes/SQL)
- [Networks](notes/network)
- [Application Layer](notes/Application Layer)
- [Transport Layer](notes/Transport Layer)
- [Network Layer](notes/Network Layer)
- [Data Link Layer](notes/Data Link Layer)
- [Physical Layer](notes/Physical Layer)
- [Wireless Layer](notes/Wireless Layer)
- [Security Layer](notes/Security Layer)
- [Other Layer](notes/Other Layer)
- [Application Layer](notes/Application-Layer.md)
- [Transport Layer](notes/Transport-Layer.md)
- [Network Layer](notes/Network-Layer.md)
- [Data Link Layer](notes/Data-Link-Layer.md)
- [Physical Layer](notes/Physical-Layer.md)
- [Wireless Layer](notes/Wireless-Networks.md)
- [Security Layer](notes/Network-Security.md)
- [Other Layer](notes/Networks-Other.md)
# Lectures
- [01-basic-html](notes/01-basic-html.md)

View File

@ -9,7 +9,7 @@ An dynamically typed interpreted scripting language to dynamically control websi
# HTML DOM
(Document object model)
- JS can access and alter HTML elements
- JS can access and alter [html](notes/html.md) elements
- When a page loads it creates the DOM as a tree of objects
# Using js
@ -54,4 +54,4 @@ promise: object which represents the status of a function
await: keyword within as async function which makes code wait at a point for a task to finish
## Fetch
Used to request data from a server to update the page. Data is i
Used to request data from a server to update the page.