mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-27 06:44:07 -06:00
vault backup: 2022-10-24 19:03:11
This commit is contained in:
parent
118a8b8e97
commit
c8e4ebf682
@ -1,5 +1,5 @@
|
||||
---
|
||||
title: "Application Layer"
|
||||
title: "Application-Layer"
|
||||
aliases:
|
||||
tags:
|
||||
- cosc203
|
||||
@ -1,5 +1,5 @@
|
||||
---
|
||||
title: "Transport Layer"
|
||||
title: "Data-Link-Layer"
|
||||
aliases:
|
||||
tags:
|
||||
- cosc203
|
||||
@ -1,5 +1,5 @@
|
||||
---
|
||||
title: "Network Layer"
|
||||
title: "Network-Layer"
|
||||
aliases:
|
||||
tags:
|
||||
- cosc203
|
||||
@ -1,5 +1,5 @@
|
||||
---
|
||||
title: "Physical Layer"
|
||||
title: "Physical-Layer"
|
||||
aliases:
|
||||
tags:
|
||||
- cosc203
|
||||
@ -1,5 +1,5 @@
|
||||
---
|
||||
title: "Data Link Layer"
|
||||
title: "Transport-Layer"
|
||||
aliases:
|
||||
tags:
|
||||
- cosc203
|
||||
@ -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
|
||||
|
||||
|
||||
@ -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)
|
||||
|
||||
@ -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.
|
||||
Loading…
Reference in New Issue
Block a user