mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-27 14:54:05 -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:
|
aliases:
|
||||||
tags:
|
tags:
|
||||||
- cosc203
|
- cosc203
|
||||||
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: "Transport Layer"
|
title: "Data-Link-Layer"
|
||||||
aliases:
|
aliases:
|
||||||
tags:
|
tags:
|
||||||
- cosc203
|
- cosc203
|
||||||
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: "Network Layer"
|
title: "Network-Layer"
|
||||||
aliases:
|
aliases:
|
||||||
tags:
|
tags:
|
||||||
- cosc203
|
- cosc203
|
||||||
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: "Physical Layer"
|
title: "Physical-Layer"
|
||||||
aliases:
|
aliases:
|
||||||
tags:
|
tags:
|
||||||
- cosc203
|
- cosc203
|
||||||
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: "Data Link Layer"
|
title: "Transport-Layer"
|
||||||
aliases:
|
aliases:
|
||||||
tags:
|
tags:
|
||||||
- cosc203
|
- cosc203
|
||||||
@ -5,4 +5,27 @@ tags:
|
|||||||
- cosc203
|
- 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)
|
- [Schemas](notes/Schemas)
|
||||||
- [SQL](notes/SQL)
|
- [SQL](notes/SQL)
|
||||||
- [Networks](notes/network)
|
- [Networks](notes/network)
|
||||||
- [Application Layer](notes/Application Layer)
|
- [Application Layer](notes/Application-Layer.md)
|
||||||
- [Transport Layer](notes/Transport Layer)
|
- [Transport Layer](notes/Transport-Layer.md)
|
||||||
- [Network Layer](notes/Network Layer)
|
- [Network Layer](notes/Network-Layer.md)
|
||||||
- [Data Link Layer](notes/Data Link Layer)
|
- [Data Link Layer](notes/Data-Link-Layer.md)
|
||||||
- [Physical Layer](notes/Physical Layer)
|
- [Physical Layer](notes/Physical-Layer.md)
|
||||||
- [Wireless Layer](notes/Wireless Layer)
|
- [Wireless Layer](notes/Wireless-Networks.md)
|
||||||
- [Security Layer](notes/Security Layer)
|
- [Security Layer](notes/Network-Security.md)
|
||||||
- [Other Layer](notes/Other Layer)
|
- [Other Layer](notes/Networks-Other.md)
|
||||||
|
|
||||||
# Lectures
|
# Lectures
|
||||||
- [01-basic-html](notes/01-basic-html.md)
|
- [01-basic-html](notes/01-basic-html.md)
|
||||||
|
|||||||
@ -9,7 +9,7 @@ An dynamically typed interpreted scripting language to dynamically control websi
|
|||||||
|
|
||||||
# HTML DOM
|
# HTML DOM
|
||||||
(Document object model)
|
(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
|
- When a page loads it creates the DOM as a tree of objects
|
||||||
|
|
||||||
# Using js
|
# 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
|
await: keyword within as async function which makes code wait at a point for a task to finish
|
||||||
|
|
||||||
## Fetch
|
## 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