diff --git a/docs/Configs/Guides/Guide Dataview.md b/docs/Configs/Guides/Guide Dataview.md
deleted file mode 100644
index a9749764..00000000
--- a/docs/Configs/Guides/Guide Dataview.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-tags:
- - guide
-share: true
----
-file.inlinks AS "Mentions"
\ No newline at end of file
diff --git a/docs/Configs/Guides/Guide Excalibrain.md b/docs/Configs/Guides/Guide Excalibrain.md
deleted file mode 100644
index 8dacfd05..00000000
--- a/docs/Configs/Guides/Guide Excalibrain.md
+++ /dev/null
@@ -1,24 +0,0 @@
----
-tags:
- - guide
-share: true
----
-### Ontology
-
-**Parents**
-inception, North, origin, Parent, parent domain, parents, people, source, u, up
-
-**Children**
-Child, children, contributes to, d, down, leads to, nurtures, South
-
-**Left-Side Friends**
-advantages, alternatives, Friend, friends, j, Jump, Jumps, pros, similar, supports
-
-**Right-Side Friends**
-cons, disadvantages, missing, opposes
-
-**Previous (Friends)**
-Before, prev, Previous, w, West
-
-**Next (Friends)**
-After, e, East, n, next
\ No newline at end of file
diff --git a/docs/Configs/Guides/Guide Obsidian.md b/docs/Configs/Guides/Guide Obsidian.md
deleted file mode 100644
index f05dbb71..00000000
--- a/docs/Configs/Guides/Guide Obsidian.md
+++ /dev/null
@@ -1,49 +0,0 @@
----
-tags:
- - guide
-share: true
----
-[Markdown Cheatsheet](https://rentry.org/how)
-# Heading 1
-## Heading 2
-### Heading 3
-#### Heading 4
-##### Heading 5
-###### Heading 6
-
-## Styles
-
-Body
-**Bold**
-_Italic_
-~~Strikethrough~~
-
-## Formats
-
-- Bullet Point
-- Bullet Point
- - Nested Bullet Point
-1. Numbered List
-2. Numbered List
- 1. Nested Numbered List
-- [x] Checkbox [completion:: 2024-01-01]
->Quote
->Multi line
-
-Break Line
-___
-
-## References
-
-Reference to a [[./index|File]]
-Reference to a [[Guide Obsidian#Heading 1|Heading]]
-Reference to a [[../../../2024-01-01#^025433|Paragraph]]
-Inline Reference![[Guide Obsidian#Styles|Configs/Guides/Guide Obsidian > Styles]]
-## Shortcuts
-
-Ctrl = Enable Hover Preview On Links
-Alt + E = Toggle Source Mode
-Ctrl + Alt + A = Emoji Toolbar
-Ctrl + Alt + T = Modify Task
-Drag + Ctrl + Drop = Embed / Transclude
-[Multiple Cursors](https://help.obsidian.md/Editing+and+formatting/Multiple+cursors)
diff --git a/docs/Configs/Guides/Guide Publisher.md b/docs/Configs/Guides/Guide Publisher.md
deleted file mode 100644
index 32295d92..00000000
--- a/docs/Configs/Guides/Guide Publisher.md
+++ /dev/null
@@ -1,286 +0,0 @@
----
-tags:
- - guide
-share: true
----
-## Setup
-
-https://squidfunk.github.io/mkdocs-material/setup/
-
-## Share
-
-```
-share: false
-path:
-links:
- mdlinks: false
- convert: true
- internals: false
- nonShared: false
-embed:
- send: false
- remove: keep
- char: -%3E
-attachment:
- send: true
- folder:
-dataview: true
-hardBreak: false
-multipleRepo:
- - owner: ThinkWithPbody
- repo: TWP-Share
- branch: main
- autoclean: true
- - owner: ThinkWithPbody
- repo: TWP-Share
- branch: temp
- autoclean: true
-copylink:
- base: https://TWP-Share.github.io/TWP-Share
-```
-
-## mkdocs.yml
-
-```
-site_name: Notes by Yifu
-site_description: Shared Obsidian Pages
-site_url: https://thinkwithpbody.github.io/TWP-Obsidian-Share
-site_author: Yifu Ding
-
-theme:
- name: 'material'
- logo: assets/meta/favicons.png
- favicon: assets/meta/favicons.png
- custom_dir: overrides
- font:
- text: Roboto
- code: Roboto Mono
- language: en
- palette:
-
- # Light mode
- - media: "(prefers-color-scheme: light)"
- scheme: default
- primary: white
- accent: deep purple
- toggle:
- icon: material/lightbulb
- name: Switch to dark mode
-
- # Dark mode
- - media: "(prefers-color-scheme: dark)"
- scheme: slate
- primary: black
- accent: deep purple
- toggle:
- icon: material/lightbulb-outline
- name: Switch to light mode
- features:
- - navigation.indexes
- - navigation.top
- - navigation.tabs
- - navigation.tabs.sticky
- - navigation.sections
- - navigation.expand
- - navigation.footer
- - search.suggest
- - search.highlight
-
-# Extensions
-markdown_extensions:
- - footnotes
- - nl2br
- - attr_list
- - sane_lists
- - meta
- - smarty
- - tables
- - mdx_breakless_lists
- - def_list
- - pymdownx.arithmatex:
- generic: true
- - pymdownx.details
- - pymdownx.magiclink
- - pymdownx.critic
- - pymdownx.caret
- - pymdownx.keys
- - pymdownx.mark
- - pymdownx.tilde
- - pymdownx.highlight:
- use_pygments: true
- anchor_linenums: true
- - pymdownx.tasklist:
- custom_checkbox: true
- - pymdownx.emoji:
- emoji_index: !!python/name:material.extensions.emoji.twemoji
- emoji_generator: !!python/name:material.extensions.emoji.to_svg
- - admonition
- - toc:
- permalink: true
- - pymdownx.inlinehilite
- - pymdownx.snippets
- - pymdownx.superfences:
- custom_fences:
- - name: mermaid
- class: mermaid
- format: !!python/name:pymdownx.superfences.fence_code_format
-plugins:
- - search
- - meta-descriptions
- - git-revision-date-localized:
- type: date
- fallback_to_build_date: true
- locale: en
- custom_format: "%A %d %B %Y"
- enable_creation_date: true
- - ezlinks:
- wikilinks: true
- - awesome-pages
- - embed_file:
- callouts: true
- custom-attributes: 'assets/css/custom_attributes.css'
- - custom-attributes:
- file: 'assets/css/custom_attributes.css'
-# - tags:
-# tags_file: tags.md
- - encryptcontent:
- title_prefix: 'π'
- summary: 'Private page'
- placeholder: 'Password'
- decryption_failure_message: 'Invalid password'
- encryption_info_message: "You don't have access to this page."
- search_index: 'encrypted'
- password_button: True
- password_button_text: ''
- - callouts
- - glightbox
-hooks:
- - overrides/hooks/on_page_markdown.py
- - overrides/hooks/on_env.py
- - overrides/hooks/on_files.py
-extra_javascript:
- - https://cdn.jsdelivr.net/gh/ObsidianPublisher/assets@main/dist/javascript.js
- - https://polyfill.io/v3/polyfill.min.js?features=es6
- - https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
-extra_css:
- - https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css
- - https://cdn.jsdelivr.net/gh/ObsidianPublisher/assets@main/dist/styles.css
- - assets/css/admonition.css
- - assets/css/custom_attributes.css
- - assets/css/customization.css
-extra:
- SEO: assets/meta/SEO.png
- comments: False #disable comments globally
- generate_graph: True #generate the graph of the site
- attachments: 'assets/img' #path to the folder where the attachments are stored
- no-auto-h1: True #disable the automatic generation of h1 if no h1 is found
- blog_list:
- pagination: true #enable pagination
- pagination_message: true #display the message "Showing x posts out of y"
- pagination_translation: 'posts in' #message to display before the number of posts ; Add your own translation!
- no_page_found: "No pages found!" #message to display when no pages are found ; Add your own translation!
- hooks:
- strip_comments: true
- fix_heading: true
- social:
- - icon: fontawesome/brands/instagram
- link: https://www.instagram.com/yifu_ding_/
- - icon: fontawesome/brands/linkedin
- link: https://www.linkedin.com/in/yifu-ding/
-copyright: Copyright © 2024 Yifu Ding
-```
-
-
-## Settings
-
-```
-{
- "github": {
- "branch": "main",
- "automaticallyMergePR": true,
- "dryRun": {
- "enable": false,
- "folderName": "github-publisher"
- },
- "tokenPath": "%configDir%/plugins/%pluginID%/env",
- "api": {
- "tiersForApi": "Github Free/Pro/Team (default)",
- "hostname": ""
- },
- "workflow": {
- "commitMessage": "[PUBLISHER] Merge",
- "name": ""
- },
- "verifiedRepo": true
- },
- "upload": {
- "behavior": "obsidian",
- "defaultName": "docs",
- "rootFolder": "",
- "yamlFolderKey": "",
- "frontmatterTitle": {
- "enable": false,
- "key": "title"
- },
- "replaceTitle": [],
- "replacePath": [],
- "autoclean": {
- "enable": true,
- "excluded": []
- },
- "folderNote": {
- "enable": true,
- "rename": "index.md",
- "addTitle": {
- "enable": false,
- "key": "title"
- }
- },
- "metadataExtractorPath": ""
- },
- "conversion": {
- "hardbreak": false,
- "dataview": true,
- "censorText": [],
- "tags": {
- "inline": true,
- "exclude": [],
- "fields": []
- },
- "links": {
- "internal": true,
- "unshared": true,
- "wiki": false,
- "slugify": true
- }
- },
- "embed": {
- "attachments": true,
- "overrideAttachments": [],
- "keySendFile": [],
- "notes": true,
- "folder": "",
- "convertEmbedToLinks": "keep",
- "charConvert": "->",
- "useObsidianFolder": true
- },
- "plugin": {
- "shareKey": "share",
- "excludedFolder": [
- "Configs/Templater",
- "Family"
- ],
- "copyLink": {
- "enable": true,
- "links": "",
- "removePart": [],
- "transform": {
- "toUri": true,
- "slugify": "lower",
- "applyRegex": []
- }
- },
- "setFrontmatterKey": "Set"
- }
-}
-```
\ No newline at end of file
diff --git a/docs/Configs/Guides/Guide Tasks.md b/docs/Configs/Guides/Guide Tasks.md
deleted file mode 100644
index e1a0a030..00000000
--- a/docs/Configs/Guides/Guide Tasks.md
+++ /dev/null
@@ -1,9 +0,0 @@
----
-tags:
- - guide
-share: true
----
-[Guide](https://publish.obsidian.md/tasks/Introduction)
-
-[Filters](https://publish.obsidian.md/tasks/Queries/Filters)
-[RegEx](https://publish.obsidian.md/tasks/Queries/Regular+Expressions)
\ No newline at end of file
diff --git a/docs/Configs/Guides/Guide Templater.md b/docs/Configs/Guides/Guide Templater.md
deleted file mode 100644
index f7c3ec1c..00000000
--- a/docs/Configs/Guides/Guide Templater.md
+++ /dev/null
@@ -1,29 +0,0 @@
----
-tags:
- - guide
-share: true
----
-<%*
-const fileName = "This is the name of a file";
-const existing = tp.file.find_tfile(fileName);
-let createdFileDisplay;
-if (existing) {
- createdFileDisplay = existing.basename;
-} else {
- createdFileDisplay = (await tp.file.create_new(tp.file.find_tfile("template-name"), fileName)).basename;
-}
-_%>
-[[<% createdFileDisplay %>|<% createdFileDisplay %>]]
-<% tp.file.cursor() %>
-
-## Date
-
-[Date Module](https://silentvoid13.github.io/Templater/internal-functions/internal-modules/date-module.html)
-[ISO 8601 Durations](https://en.wikipedia.org/wiki/ISO_8601#Durations)
-[moment.js String Format](https://momentjs.com/docs/#/parsing/string-format/)
-
-## Examples
-
-[Templates Showcase](https://github.com/SilentVoid13/Templater/discussions/categories/templates-showcase)
-[zachyoung Templater snippets](https://zachyoung.dev/posts/templater-snippets)
-[Christian's Templater Templates](https://github.com/chhoumann/Templater_Templates)
diff --git a/docs/Configs/Guides/index.md b/docs/Configs/Guides/index.md
deleted file mode 100644
index 8abc092e..00000000
--- a/docs/Configs/Guides/index.md
+++ /dev/null
@@ -1,23 +0,0 @@
----
-tags:
- - navigation
- - guide
-parents: "[[index]]"
-share: true
----
-[[./Guide Obsidian|Obsidian]]
-[[./Guide Templater|Templater]]
-[[./Guide Dataview|Dataview]]
-[[./Guide Tasks|Tasks]]
-[[./Guide Excalibrain|Excalibrain]]
-[[./Guide Publisher|Publisher]]
-
-%%
-- [[./Guide Dataview|Guide Dataview]]
-- [[./Guide Excalibrain|Guide Excalibrain]]
-- [[./Guide Obsidian|Guide Obsidian]]
-- [[./Guide Publisher|Guide Publisher]]
-- [[./Guide Tasks|Guide Tasks]]
-- [[./Guide Templater|Guide Templater]]
-
-%%
\ No newline at end of file
diff --git a/docs/Courses/ARC1046H Structures 1/Attachments/2024-03-05T15_12_48-05_00_TWP-X570-WIN10(vlc).jpg b/docs/Courses/ARC1046H Structures 1/Attachments/2024-03-05T15_12_48-05_00_TWP-X570-WIN10(vlc).jpg
deleted file mode 100644
index d35af80b..00000000
Binary files a/docs/Courses/ARC1046H Structures 1/Attachments/2024-03-05T15_12_48-05_00_TWP-X570-WIN10(vlc).jpg and /dev/null differ
diff --git a/docs/Courses/ARC1046H Structures 1/Attachments/2024-03-05T16_07_18-05_00_TWP-X570-WIN10(vlc).jpg b/docs/Courses/ARC1046H Structures 1/Attachments/2024-03-05T16_07_18-05_00_TWP-X570-WIN10(vlc).jpg
deleted file mode 100644
index c5624f98..00000000
Binary files a/docs/Courses/ARC1046H Structures 1/Attachments/2024-03-05T16_07_18-05_00_TWP-X570-WIN10(vlc).jpg and /dev/null differ
diff --git a/docs/Courses/ARC1046H Structures 1/Attachments/ARC1046H Structures 1 2024-01-17.png b/docs/Courses/ARC1046H Structures 1/Attachments/ARC1046H Structures 1 2024-01-17.png
deleted file mode 100644
index adaa6365..00000000
Binary files a/docs/Courses/ARC1046H Structures 1/Attachments/ARC1046H Structures 1 2024-01-17.png and /dev/null differ
diff --git a/docs/Courses/ARC1046H Structures 1/Attachments/ARC1046H Structures 1 2024-01-24.png b/docs/Courses/ARC1046H Structures 1/Attachments/ARC1046H Structures 1 2024-01-24.png
deleted file mode 100644
index ac570ef1..00000000
Binary files a/docs/Courses/ARC1046H Structures 1/Attachments/ARC1046H Structures 1 2024-01-24.png and /dev/null differ
diff --git a/docs/Courses/ARC1046H Structures 1/Attachments/Assignment 02-6.jpg b/docs/Courses/ARC1046H Structures 1/Attachments/Assignment 02-6.jpg
deleted file mode 100644
index 4a153461..00000000
Binary files a/docs/Courses/ARC1046H Structures 1/Attachments/Assignment 02-6.jpg and /dev/null differ
diff --git a/docs/Courses/ARC1046H Structures 1/Attachments/Pasted image 20240401222128.png b/docs/Courses/ARC1046H Structures 1/Attachments/Pasted image 20240401222128.png
deleted file mode 100644
index 1de1dbf3..00000000
Binary files a/docs/Courses/ARC1046H Structures 1/Attachments/Pasted image 20240401222128.png and /dev/null differ
diff --git a/docs/Courses/ARC1046H Structures 1/index.md b/docs/Courses/ARC1046H Structures 1/index.md
deleted file mode 100644
index 4464ab8c..00000000
--- a/docs/Courses/ARC1046H Structures 1/index.md
+++ /dev/null
@@ -1,613 +0,0 @@
----
-tags:
- - course
-year: 2024
-quarter: "1"
-people:
- - "[[People/Dave Bowick|People/Dave Bowick]]"
- - "[[People/Shannon Hilchie|People/Shannon Hilchie]]"
-location: DA 200
-weekday: 3
-time: 09:00:00
-share: true
----
-## Course Brief
-
-[code:: ARC1046H]
-[title:: Structures 1]
-
-[ARC1046HS 2024 2024.01.08 Graduate Course Outline.pdf](file:///D:%5COneDrive%20-%20University%20of%20Toronto%5C_twp%5CDocument%5CScholar%5CUTOR%5C2024-01%5CARC1046H%5CARC1046HS%202024%202024.01.08%20Graduate%20Course%20Outline.pdf)
-[Files](file:///D:%5COneDrive%20-%20University%20of%20Toronto%5C_twp%5CDocument%5CScholar%5CUTOR%5C2024-01%5CARC1046H%5CFiles)
-
-## Sizing Guidelines
-
-| Material | Type | Standard Sizes | Rule of Thumb | Note |
-| -------- | --------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------- | ------------------------------------------------------------------- |
-| Steel | Deck Corrugated Metal | d: **38**, 76mm | d = l / 50 | |
-| Steel | Deck Concrete on Corrugated Metal | d: **38**, 76 mm + **64** mm | d = l / 20 | Concrete is usually normal density |
-| Steel | Joists Open Web Steel | d: n * **50** mm (2") | d = l / 16 | |
-| Steel | Purlins | [[index#Standard Steel Sizes|Standard Steel Sizes]] | d = l / 25; b = d / 2-3 | |
-| Steel | Beams | [[index#Standard Steel Sizes|Standard Steel Sizes]] | d = l / 20; b = d / 2-3 | |
-| Steel | Girders | [[index#Standard Steel Sizes|Standard Steel Sizes]] | d = l / 15; b = d / 2-3 | |
-| Steel | Trusses | d: n * **50** mm | d = l / 12; b = d / 2-3 | |
-| Steel | Columns | [[index#Standard Steel Sizes|Standard Steel Sizes]] | w = h / **20**-40 | |
-| Wood | Deck Plywood | c/c: 12, **16**, 20, 24; Subfloors: 6.4, 9.5 mm (1/4, 3/8"); Walls: **12.7**, 15.9, 19.1, 22.2, 25.4 mm (**1/2**, 5/8, 3/4, 7/8, 1"); Roof: **12.7** mm (**1/2**"); Floors: **19.1** mm (**3/4**") | | 4'x8' sheets |
-| Wood | Deck Tongue and Groove | d: **38**, 64, 89 mm | d = l / 40 | Standard size matches wood joists |
-| Wood | Joists Lumber | w: **38**, 89 mm; d: 89, 140, **184**, 235, 286 mm | d = l / 16 | 16"/400mm c/c |
-| Wood | Joists Engineered I- | d: 240, 302, 356, 406 mm | d = l / 18 | |
-| Wood | Beams Lumber | | d = l / 14; b = d / 2-3 | |
-| Wood | Beams Engineered | | d = l / 16; b = d / 2-3 | |
-| Wood | Girders Engineered | | d = l / 12; b = d / 2-3 | |
-| Wood | Columns & Posts | w: 38, 64, **89** mm | w = h / 30 | |
-| Wood | Parallel Strand Lumber | w: 68, 89, 133, 178 mm; d: 241, 302, 356, 406, 457 mm; l: < 20 m | | Long span |
-| Wood | Laminated Veneer Lumber | w: 19 < **45** < 178 mm; d: 241, 302, 356, 406, 476, 606 mm; l: < 24.4 m | | Long span |
-| Wood | Cross Laminated Timber | w: 2-10'; l: < 60'; d: < 20" | | Replaces Joists Deck / Studs Plywood Shear Wall |
-| Concrete | Slab Pre-cast Hollowcore | d: 150, **200**, **250**, **300**, 350 mm | d = l / 40 | |
-| Concrete | Slab One-way | d: n * **50** mm | d = l / 18 | |
-| Concrete | Slab Two-way | d: 150, **200**, **250**, **300**, 350 mm | d = l / 30 | Load is shared on all sides as long as ratio < 2:1 |
-| Concrete | Beams | d: n * **50** mm | d = l / 16; b = d / 2-3 | |
-| Concrete | Girders | d: n * **50** mm | d = l / 12; b = d / 2-3 | |
-| Concrete | Columns | d: n * **50** mm | w = h / 20 | |
-| Concrete | Walls | d: n * **50** > 200 mm | w = h / 25 | |
-| Masonry | Walls Load Bearing | w: **190**, 240, 290 mm | w = h / 20 | If brick, there will be more than one wythe |
-| Masonry | Walls Non-Load Bearing Partitions | w: **190**, 240, 290 mm | w = h / 36 | |
-| Masonry | Veneer Brick | h: **11** m starting at grade, shelf angles **storey to storey** | | Laterally connected to the building with **ties** at **600** mm c/c |
-
-## Standard Steel Sizes
-
-### W Sections
-- W100
-- W150
-- W200
-- W250
-- W310
-- W360
-- W410
-- W460
-- W530
-- W610
-- W690
-- W760
-- W840
-- W920
-- W1000
-- W1100
-
-### Channels
-- C75
-- C100
-- C130
-- C150
-- C180
-- C200
-- C230
-- C250
-- C310
-- C380
-
-### Square / Rectangle
-- HSS76x
-- HSS89x
-- HSS102x
-- HSS114x
-- HSS152x
-- HSS178x
-- HSS203x
-- HSS254x
-- HSS306x
-- HSS356x
-
-Example: HSS152x102
-
-### Round
-- HSS76ΓΈ
-- HSS89ΓΈ
-- HSS102ΓΈ
-- HSS114ΓΈ
-- HSS127ΓΈ
-- HSS141ΓΈ
-- HSS152ΓΈ
-- HSS168ΓΈ
-- HSS178ΓΈ
-- HSS219ΓΈ
-- HSS273ΓΈ
-- HSS324ΓΈ
-- HSS356ΓΈ
-
-## Bearing Capacity
-
-To achieve bearing capacity:
-- Soil must be undisturbed
-- No organic materials
-- Excavations cleaned by hand (if you have to pick it up by hand, it goes)
-
-Bearing Capacity must be greater than Bearing Pressure (Bf)
-Br > Bf
-Bf = Pf "Factored Loads" / A (m^2) "Area of Bearing"
-
-| Type and Condition of Soil or Rock | Maximum Allowable Bearing Pressure (kPa (kN / m^2)) |
-| ---- | ---- |
-| Dense or Compact Sand or Gravel | 150 |
-| Loose Sand or Gravel | 50 |
-| Dense or Compact Silt | 100 |
-| Stiff Clay | 150 |
-| Firm Clay | 75 |
-| Soft Clay | 40 |
-| Till | 200 |
-| Clay Shale | 300 |
-| Sound Rock | 500 |
-Typical slab on grade: Br > 24 kPa
-
-## Modules
-
-### Module 1
-
-[ARC1046 Lecture 01 Strength, Stiffness, Stability.pptx](file:///D:%5COneDrive%20-%20University%20of%20Toronto%5C_twp%5CDocument%5CScholar%5CUTOR%5C2024-01%5CARC1046H%5CLecture%20Slides%5CARC1046%20Lecture%2001%20Strength,%20Stiffness,%20Stability.pptx)
-[Videos](https://www.archdaily.com/797373/these-videos-will-help-you-pass-your-are-structural-exam)
-
-Safe, stable building that is the cheapest possible, while meeting constraints, needs, demands, [[Wiki/NBCC/NBCC|Wiki/NBCC/NBCC]]
-Engineers working iteratively with Architects
-
-- [x] Buy reading: Science Builders Structural Engineering [completion:: 2024-04-09]
-
-Structural engineering considers [[index#Strength|Strength]], [[index#Structure|Structure]], [[index#Stiffness|Stiffness]], [[index#Stability|Stability]].
-
-#### Structure
-#### Strength
-The amount of load a structure can sustain prior to failure.
-
-Load on the system has to be less than the load capacity of the system that sustains load.
-##### Load factor
-
-**Factor of safety** of 2: the system can sustain twice the load expected.
-
-Pf: factor of load
-Vf: factor of shear
-Mf: factor of moment
-Tf:
-
-##### Capacity reduced
-
-Pr: resistance of load
-Vr: resistance of shear
-Mr: resistance of moment
-
-##### Types of forces
-###### Compression
-Always a secondary factor resulting tension failure.
-###### Tension
-###### Shear
-V.F *kN*
-On concrete, itβs a tension failure on the diagonal.
-*Concrete Punching Shear*
-###### Bending
-Compression and Tension acting on either sides, a tension failure on the tension side.
-Steel beam fails by yielding both in compression and tension.
-###### Torsion
-Shear around the perimeter.
-###### Moment
-M.F *kNm*
-Distance moved * force = 1 kNm = 1,000,000 Nmm
-###### Connection Failures
-- Screws shearing, bending.
-- Plate in tension.
-- Anchor pullout
-
-#### Stiffness
-The amount of force required to make a structure deflect by some fixed increment.
-Represented by symbol **K**.
-Flexibility is the amount that a structure will deflect or rotate under a fixed amount of load.
-
-**Guidelines**
-- Comfort
-- Preservation of Finishes
-- Stability
-- Drainage
-- Interface with Building Elements
-
-**Serviceability Limit**
-[SERVICEABILITY LIMITS.pdf](file:///D:%5COneDrive%20-%20University%20of%20Toronto%5C_twp%5CDocument%5CScholar%5CUTOR%5C2024-01%5CARC1046H%5CFiles%5CReadings%5CSERVICEABILITY%20LIMITS.pdf)
-
-**Vertical**
-- Live: L/360
-- Total: L/240
-
-**Horizontal**
-- H/500
-
-**Rotational**
-
-**Soil**
-Differential settlement
-
-**Vibration**
-Continuous vibrations
-- 2.5 Hz
-
-Transient vibrations
-- Heel drop
-- Load is damped by mass of building and
-- Limit the acceleration to 1% of gravity
-
-Amplified vibrations (resonance)
-
-
-#### Stability
-The state of being stable, or the opposite of in-stable. Instability can be elastic, ponding, tipping, or sliding.
-
-**Sliding**
-- Resistance by friction
-
-**Tipping**
-
-**Elastic**
-- Stable
- - Columns converge on a limit visually straight
-- Unstable
- - Not stiff enough causing more and more elastic instability
-
-**Ponding**
-- Stable
-- Unstable
- - More sagging allows accumulation of more water causing more sagging
-
-**No load path**
-
-**Buckling**
-- **Overall**
-- **Lateral torsional**
-- **Local**
- - Instability resulting from a compressive load
-
-### Module 2
-
-![[./Attachments/Assignment 02-6.jpg|Assignment 02-6]]
-
-Structural drawing
-one should be able to build the entire structure from structural drawings
-- Grid identification
-- Grid dimensions
-- Labels
-- Sizing
-- Framing
-- Gravity system
-- Lateral Load resisting system (LLRS)
-- Cantilevers
-
-
-- Steel
- - Single line on plans
-- Wood
- - Wavy line hatch in plan
- - Cross in section
-- Open web steel joist (generic truss, not typically what we refer to when we say truss)
-
-Steel and concrete building:
-- Foundation and basement plan
- - Plans are drawn:
- - mostly cut above and look down
- - More standard practice
- - Doesnβt necessarily make sense because itβs more useful to see the beams supporting floors than this floor
- - Cut below and look up
- - Like a reflected ceiling plan (used to be the standard practice in 70s, now replaced by more rigorous standards)
- - Note elevations on drawing
- - Elevations of slabs typically noted
- - Depths (pits) are referenced locally, relative to the drawing
- - Cardinal vs Ordinal
- - Cardinal
- - North South West East
- - Ordinal
- - Contextual
- - Right
- - Left
- - Geo datum as cardinal, others as ordinal
- - Put the grids in the most convenient place to offset from foundations
- - [x] ![[./Attachments/ARC1046H Structures 1 2024-01-17.png|ARC1046H Structures 1 2024-01-17]]%%[[../../../ARC1046H Structures 1 2024-01-17|π Edit in Excalidraw]]%% [completion:: 2024-04-10]
- - Only describe the extent when itβs not obvious
- - Describe top of steel / beam everywhere (sometimes indicated on schedule)
- - sometimes, indicate under side of deck, and top of steel is at underside of deck unless noted
- - Donβt detail the connections unless itβs special
- - Horizontal or vertical text for horizontal or vertical elements
- - 45 degrees for elements going in and out of the page
- - Show the information in the first and most useful place to show for the contractor
- - show information on footing and column schedule when thereβs no space
- - Factor loads
- - Service level loads for foundations (to estimate settlement)
- - If itβs not in the price, itβs not in the contract; donβt bury scope, are sure every piece is in the price making the project easier to build
- - Describe as much scope as you can in plan
- - Most things in sections
- - Half in details
-
-Concrete buildings:
-- Grids start from outer edge of slab, and interior columns are still centered on grids
-- Working steel (load bearing) in one direction, nominal or non-working steel in the other for temperature changes
-- Pour a diamond on slab on grade to prevent reentering corner (inverted, inside corner) from forming cracks in concrete where it connects
-
-Tributary area:
-- Beams:
- - Purlin
- - Joist
- - Beam
- - Girder
-- Tributary width typically equals span
-- Tributary area = tributary width * length
-
-### Module 3
-
-[Slides](https://utoronto-my.sharepoint.com/:p:/r/personal/yifu_ding_mail_utoronto_ca/Documents/_twp/Document/Scholar/UTOR/2024-01/ARC1046H/Lecture%20Slides/ARC1046+Lecture+03+Intro+to+Steel+Construction.pptx?d=wacce4b650e3945dc8902a53e8a0791ce&csf=1&web=1&e=IwSQ5U)
-
-Types of construction
-- Structural Steel
-- Reinforced Concrete
-- Wood (Nominal Lumber)
-- Mass Timber
-- Precast Concrete
-- Load Bearing Masonry (with Steel/Wood Frame/Concrete)
-
-Alternative Construction Techniques (Glass, Fabric, Straw Bale, Rammed Earth)
-
-- Roof system:
- - Support environmental loads (and possibly Occupant Loads
- - Slope to drains
- - Possibly integral to fire separation
- - Support the building envelope (insulation and roofing)
- - Diaphragm action (keep a building square in plan)
- - Transfer Loads to vertical supports (Walls, Columns)
-- Floor system:
- - Support occupant loadsΒ
- - Transfer Loads to vertical supports (Walls, Columns)
- - To provide the concrete wearing surface or the base for special finishes or coverings.
- - Diaphragm action (keep a building square in plan)
- - Possibly integral to fire separation
-- Columns and walls
- - Reinforced Concrete Columns and Walls
- - Concrete Block, Brick or Stone Masonry
- - Structural Steel Columns
- - Wood Stud Bearing Walls
- - Light Gauge Steel Bearing Walls
- - Roles
- - Transfer the gravity loads (dead and live) from the floor or roof to the foundation.Β
- - Cladding Support
- - Wind loads
-- Compression elements roles burdens
- - Not to squash under load
- - Not to buckle under load
- - Not to deflect excessively
- - Possibly: not to bend under wind load
- - Possibly: be part of the LLRS
-- Guidelines for designing the Supporting System
- - Regular layout
- - Make use of architectural elements
- - Load lateral load resisting elements
- - Repetition
- - Multiple storey column lifts (steel)
- - Minimize transfers
-- Cold and hot rolled steel
- - [x] ![[./Attachments/ARC1046H Structures 1 2024-01-24.png|ARC1046H Structures 1 2024-01-24]]%%[[../../../ARC1046H Structures 1 2024-01-24|π Edit in Excalidraw]]%% [completion:: 2024-04-10]
- - Flange thickness and web thickness not necessarily same width, not working as hard as flange
-
-Steel construction
-- Always intumescent paint for exposed steel for fireproof
-- Used for shorter buildings because building wood concrete form is expensive of not reused
-- Used for very tall buildings because they are lighter
-- Sizing guidelines
- - General
- - d = l / 20
- - w = h / 25
- - Corrugated metal deck
- - Standard depth: d = 38mm
- - d = l / 50
- - Concrete slab metal deck
- - d = 38 or 76mm + concrete
- - d = l / 20
- - Open web steel joist OWSJ
- - 50mm increments
- - d = l / 16
- - Steel beams
- - Purlins d = l / 25
- - Beans d = l / 20
- - Girders d = l / 15
- - Beam width b = d / 2.5, 2-3 (very rough estimate)
- - Trusses
- - 50mm increments
- - d = l / 12
- - Columns
- - Standard sizes listed in CISC steel handbook
- - w = h / 20-40 (20 towards heavy loads, 40 towards slenderness)
- - Cantilever
- - Half of regular rule of thumb
-
-Steel is deepest or longest because itβs strongest
-Concrete is the shallowest system because itβs weak
-The structural system with the least expensive deck is the least expensive system because there is more deck than anything else
-Deeper is cheaper
-
-HSS: hollow steel section
-
-Transfer: load taken to the nearest possible columns
-
-### Module 4
-
-- [x] Share answer with Tim [due:: 2024-02-06] [completion:: 2024-02-07]
-
-### Module 5
-
-Footing Thickness = MAX(Footing Projection, 200mm)
-
-Caisson and Belled Caisson in Edminton
-### Module 6
-
-**Types of Loads**
-- D = Dead Load - Permanent
-- L = Live Load - Variable
-- S = Snow Load - Variable
-- W = Wind Load - Variable
-- E = Earthquake Load - Rare
-- T = Temperature, shrinkage, moisture, settlement, or combination
-- H = Lateral Soil Loads (including ground water) - Permanent
-- P = Prestress - Permanent
-
-**Assembly**
-4.8 kPa
-2.4 kPa Fixed Seat or Restaurants < 100 m^2
-
-**Non-Assembly Area**
-4.8 kPa Ground Floor
-2.4 kPa Remaining Floors
-
-**Residential Live Loads**
-1.9 kPa
-
-**Vehicles**
-2.4 kPa Parking Garages (Cars)
-6.0 kPa Parking Garages (Buses, Light Trucks)
-12.0 kPa Parking Garages (Trucks)
-12.0 kPa Driveways and Sidewalk Areaways and Basements
-
-**Live Load Reduction Factor LLRF**
-Non-Assembly Areas, Load == Any other than Assembly, Tributary Area > 20 m^2:
-0.3 + ROOT(9.8 / A)
-Assembly Areas OR Loads >= 4.8 kPa, Tributary Area > 80 m^2:
-0.5 + ROOT(20 / A)
-
-### Module 7
-
-Earth Pressure at level h p (kPa)= Earth Pressure Coefficient k (0.25) * Surcharge q (4.8 or 12 kPa) + k * Weight of the Soil y (20 kN/m^3) * Depth Below Grade h (m)
-
-Vibration resonance and amplification
-
-Limit state design
-ULS: Ultimate Limit State
-SLS: Serviceability Limit State
-
-ULS: Strength
-![[./Attachments/2024-03-05T15_12_48-05_00_TWP-X570-WIN10(vlc).jpg|2024-03-05T15_12_48-05_00_TWP-X570-WIN10(vlc)]]
-
-SLS: Serviceability
-Stiffness, Deflection
-
-Use SLS Snow Load Importance Factor
-![[./Attachments/2024-03-05T16_07_18-05_00_TWP-X570-WIN10(vlc).jpg|2024-03-05T16_07_18-05_00_TWP-X570-WIN10(vlc)]]
-
-### Module 8
-
-Static: Not moving
-
-| Title | Here | What |
-| ---- | ---- | ---- |
-| -4.4588 | 4.0147 | |
-| 1.6126 | 4.2011 | |
-| 8.8082 | 3.5587 | |
-| | | |
-| 5.962 | 11.7745 | |
-| | | |
-
-### Module 9
-
-6 Degrees of Freedom:
-- Translation XYZ
-- Rotation XYZ
-
-Sum of Forces for each 2D Plane:
-- Fx Translation Horizontal
-- Fy Translation Vertical
-- M Rotation
-
-Connections:
-- Pin
-- Roller
-- Moment
-- Any combination of above 3
-
-UDL: Uniform Distributed Load
-
-Teeter-Totter
-
-M1 = P1 * e1 = 0.65 kN * 0.8 m = 0.52 kNm
-
-### Module 10
-
-For P applied right in the middle of beam:
-R = 1/2 P kN
-V: kN
-M: kNm
-
-MoS @ X = 0 - 1/2 L:
-V = 1/2 P
-M = 1/2 PX
-
-MoS @ X = 1/2L - L:
-V = -1/2 P
-M = -1/2 PX + 1/2 PL = 1/2 P (L - X)
-
----
-
-Mos @ X = 0:
-V = 1/2 P
-M = 0
-
-Mos @ 1/4 L:
-V = 1/2 P
-M = 1/8 PL
-
-Mos @ 3/4 L:
-V = -1/2 P
-M = 1/8 PL
-
-![[./Attachments/Pasted image 20240401222128.png|Pasted image 20240401222128]]
-
----
-
-**Analogous Point Load Free Body Diagram (APL):**
-Representing distributed loads (UDL) as an equivalent point load can help simplify the diagram. It will have the same effect on the equilibrium of the Free Body Diagram (FBD) (so also the reactions). But not the TOTAL shear and bending moment diagram.
-
----
-
-For W (kN/m) applied uniformly on the beam:
-P = WL kN
-R.1,2 = 1/2 WL kN
-V: kN
-M: kNm
-
-MoS @ X = 0 - L:
-V = 1/2 WL - WX = W (1/2 L - X)
-M = 1/2 WLX - 1/2 WX^2 = 1/2 WX (L - X)
-
----
-
-Mos @ X = 0:
-V = 1/2 WL
-M = 0
-
-Mos @ 1/2 L:
-V = 0
-M = 1/8 WL^2
-
-Mos @ 3/4 L:
-V = -1/4 WL
-M = 3/32 WL^2
-
-Mos @ L:
-V = -1/2 WL
-M = 0
-
-### Module 11
-
-### Module 12
-
-
-## Projects
-
-### [[Projects/Structures 1 - Project 1/Structures 1 - Project 1|Project 1]]
-
-- [x] [ARC1046 Project Description.pdf](file:///D:%5COneDrive%20-%20University%20of%20Toronto%5C_twp%5CDocument%5CScholar%5CUTOR%5C2024-01%5CARC1046H%5CAssignments%5CARC1046%20Project%20Description.pdf) [due:: 2024-04-30] [completion:: 2024-04-18]
-[ARC1046 Project Drawings.pdf](file:///D:%5COneDrive%20-%20University%20of%20Toronto%5C_twp%5CDocument%5CScholar%5CUTOR%5C2024-01%5CARC1046H%5CAssignments%5CARC1046%20Project%20Drawings.pdf)
-[ARC1046 Project Part 01 Quick Example.pdf](file:///D:%5COneDrive%20-%20University%20of%20Toronto%5C_twp%5CDocument%5CScholar%5CUTOR%5C2024-01%5CARC1046H%5CAssignments%5CARC1046%20Project%20Part%2001%20Quick%20Example.pdf)
-
-
-
-### [[Projects/Structures 1 - Project 2/Structures 1 - Project 2|Project 2]]
-
-### [[Projects/Structures 1 - Project 3|Project 3]]
-
-### [[Projects/Structures 1 - Project 4|Project 4]]
diff --git a/docs/Wiki/Attachments/Escape From Tarkov/Pasted image 20240520011534.png b/docs/Wiki/Attachments/Escape From Tarkov/Pasted image 20240520011534.png
deleted file mode 100644
index 3e9c6a8e..00000000
Binary files a/docs/Wiki/Attachments/Escape From Tarkov/Pasted image 20240520011534.png and /dev/null differ
diff --git a/docs/Wiki/Attachments/Peer 3D Printing Service/2024-04-10T00_15_05.jpg b/docs/Wiki/Attachments/Peer 3D Printing Service/2024-04-10T00_15_05.jpg
deleted file mode 100644
index de91f520..00000000
Binary files a/docs/Wiki/Attachments/Peer 3D Printing Service/2024-04-10T00_15_05.jpg and /dev/null differ
diff --git a/docs/Wiki/Attachments/Peer 3D Printing Service/2024-04-10T21_01_21-05_00_TWP-X570-WIN10(Rhino).gif b/docs/Wiki/Attachments/Peer 3D Printing Service/2024-04-10T21_01_21-05_00_TWP-X570-WIN10(Rhino).gif
deleted file mode 100644
index 66963de2..00000000
Binary files a/docs/Wiki/Attachments/Peer 3D Printing Service/2024-04-10T21_01_21-05_00_TWP-X570-WIN10(Rhino).gif and /dev/null differ
diff --git a/docs/Wiki/Attachments/Peer 3D Printing Service/Showcase-Arjay Asuncion.jpg b/docs/Wiki/Attachments/Peer 3D Printing Service/Showcase-Arjay Asuncion.jpg
deleted file mode 100644
index 17c0263c..00000000
Binary files a/docs/Wiki/Attachments/Peer 3D Printing Service/Showcase-Arjay Asuncion.jpg and /dev/null differ
diff --git a/docs/Wiki/Escape From Tarkov.md b/docs/Wiki/Escape From Tarkov.md
deleted file mode 100644
index 065cc903..00000000
--- a/docs/Wiki/Escape From Tarkov.md
+++ /dev/null
@@ -1,180 +0,0 @@
----
-tags:
- - wiki
-share: true
----
-parents:: [[../../2024-04-26|2024-04-26]]
-change
-# Escape From Tarkov
-## SPT Install and Update
-
-1. Use BsgLauncher.exe to install or update official EFT to your best SSD
-2. Download SPT AKI automated installer [here](https://sp-tarkov.com/#download)
-3. Install SPT files in a separate folder affixed with version number
-4. Install this [[Escape From Tarkov#SPT Modlist|SPT Modlist]]
-%% - When updating to minor versions without making changes to the modlist, just copy over the old files to the new location.
- - Game Settings: "/user/sptSettings"
- - Launcher settings: "/user/launcher"
- - Mods: "/user/mods" & "/BepInEx/plugins"
- **Never delete or replace "/BepInEx/plugins/spt".**
- - Mod Settings: "/BepInEx/config"
- - Save Profiles (only if you run a server): "/user/profiles"
- ![|500](https://live.staticflickr.com/65535/53696801218_db324e3ae4_o.jpg)%%
-
-## SPT Mods Install and Update
-
-The modlist is compatible with **Mod Organizer** for profile management, meaning more than one instance of the game can be stored without taking excessive disk space, but it is not mandatory.
-
-Manual install locations are marked with π for **"/BepInEx/plugins"** and π₯ for **"/user/mods"**.
-
-##### Mod Organizer 2
-1. Download and install [MO2](https://github.com/ModOrganizer2/modorganizer/releases).
- - Download and install [SPT ModOrganizer Integration](https://hub.sp-tarkov.com/files/file/1314-spt-modorganizer-integration/#overview) by extracting it to the MO install location.
-2. Create a new global instance in your SPT folder. Settings can be kept default, ignore pop-ups.
- - Under SPT root, edit `sptvfsbridge.bat` and add `REM ` at the start of line 9 and 12 so that it reads for example `REM start "" "%server_path%"`, then save the file. This is so that only the client will run, and instantly.
-3. Download and install any mods in MO, making sure to select their full name from the drop down. To speed up the process, you can extract mod files to the MO instance location under `MO\\mods\`, then refresh MO.
- ![2024-06-04T22_27_17-05_00_TWP-X570-WIN10(Obsidian).jpg](file:///D:%5C_twp%5CMedia%5CImage%5CPictures%5CShareX%5C2024%5C2024-06%5C2024-06-04T22_27_17-05_00_TWP-X570-WIN10(Obsidian).jpg)
- - **Packages** are named `SPT Salt _`. They contain all mods of a major version.
- - **Patches** are named `SPT Salt _.`. They are smaller and incomplete, meant to distribute mod updates quickly.
- - The **PersistentFiles** mod is how default configs are distributed and is a placeholder for your SPT settings and profile. Simply copy the files in this mod from `MO\\mods\PersistentFiles-*\` as well as any extra files you want to keep from `MO\\overwrite\` into an archive, then install it in MO as a mod set to a high priority to keep files across updates.
-4. **Profiles & Categories** are named `SPT Salt MO _.` They are the fastest way to switch between mod lists, but they only work if you've already imported all mods they reference, so don't skip the previous step. Extract the archive to `MO2\\`, then refresh MO and select the profile.
-5. Click `Run` to launch SPT.
- - Change SPT Launcher settings on Game Path and URL.
-
-![[./Attachments/Escape From Tarkov/Pasted image 20240520011534.png|500]]
-
-##### Packages (Manual)
-To install, remove existing π and π₯ folders completely and place all contents from the package in root **"/"**.
-
-##### Patches (Manual)
-To install, place all contents from the patch in root **"/"**.
-
-> [!warning]
-> **Never delete or replace "/BepInEx/plugins/spt".**
-
-## Project Fika (MPT)
-
-To join my Fika server, run Aki.Launcher.exe and in "Settings", change URL to `http://173.32.64.239:6969`.
-To join local server, change URL back to `http://127.0.0.1:6969`.
-
-> [!tip]
-> If you want to use your own profile on our server or download the one in use on our server for your local server, contact me.
-
-## Modlist
-#### Tools
-[Server Value Modifier](https://hub.sp-tarkov.com/files/file/379-server-value-modifier-svm/#tab_d24083dde670a53728f69fa322aa580ec032191a) π₯ (Server settings)
-[Profile Editor](https://hub.sp-tarkov.com/files/file/184-spt-aki-profile-editor/) (Read installation, player health, quest, and items)
-
-#### Bots
-[SWAG + DONUTS](https://hub.sp-tarkov.com/files/file/878-swag-donuts-dynamic-spawn-waves-and-custom-spawn-points/) ππ₯
-[SAIN](https://hub.sp-tarkov.com/files/file/1062-sain-2-0-solarint-s-ai-modifications-full-ai-combat-system-replacement/) ππ₯
-[Big Brain](https://hub.sp-tarkov.com/files/file/1219-bigbrain/#overview) π
-[Way Points](https://hub.sp-tarkov.com/files/file/1119-waypoints-expanded-navmesh/) π
-[That's Lit](https://hub.sp-tarkov.com/files/file/1453-that-s-lit/) π (With That's Lit Sync)
-[Looting Bots](https://hub.sp-tarkov.com/files/file/1096-looting-bots/) π
-[Questing Bots](https://hub.sp-tarkov.com/files/file/1534-questing-bots/#overview) ππ₯
-
-#### Gameplay
-[Project Fika](https://discord.gg/project-fika) ([Documentation](https://github.com/project-fika/fika-documentation)) ππ₯
-[Late to the Party](https://hub.sp-tarkov.com/files/file/1099-late-to-the-party/) ππ₯ (Realistic Scav runs)
-[Backdoor Bandit](https://hub.sp-tarkov.com/files/file/1154-backdoor-bandit-bb/#overview) ππ₯ (Shoot open doors)
-[Josh Mate's Better Backpacks](https://hub.sp-tarkov.com/files/file/772-josh-mate-s-better-backpacks/#overview) π₯ (Backpack rebalance)
-[Shiny Airdrop Guns!](https://hub.sp-tarkov.com/files/file/1572-shiny-airdrop-guns/) π₯ (Some guns have innate stats)
-[Headshot Damage Redirection](https://hub.sp-tarkov.com/files/file/1809-headshot-damage-redirection-hdr/) π (Portion of head damage distributed)
-[Use Items Anywhere](https://hub.sp-tarkov.com/files/file/1416-use-items-anywhere/) π (Hotkey backpack items)
-[Boss Notifier](https://hub.sp-tarkov.com/files/file/1737-boss-notifier/#overview) π (Inter center level 1-3 unlocks)
-[Live Flea Prices](https://hub.sp-tarkov.com/files/file/1561-live-flea-prices/) π₯ (Fetch flea prices from live server)
-
-#### QOL
-[Dynamic Maps](https://hub.sp-tarkov.com/files/file/1981-dynamic-maps/) π
-[Shoulder Swap On Lean](https://discord.com/channels/1202292159366037545/1222463708534407210) π
-[Vocal Player](https://discord.com/channels/1202292159366037545/1230117857610698772) π (Announces actions)
-[Expanded Task List](https://hub.sp-tarkov.com/files/file/1415-expanded-task-text-ett/) π₯ (Detailed task list)
-[Loot Value](https://hub.sp-tarkov.com/files/file/1606-lootvalue/) ππ₯ (Alt Shift M1 to quick sell)
-[Item Info](https://hub.sp-tarkov.com/files/file/985-item-info/) π₯ (Rarity recolor and detailed description)
-[More Checkmarks](https://hub.sp-tarkov.com/files/file/1159-morecheckmarks/) ππ₯ (Show requirement for quests, hideout, crafting)
-[Stash Search](https://hub.sp-tarkov.com/files/file/1769-stash-search/)) π (Ctrl F in stash
-[UI Fixes](https://hub.sp-tarkov.com/files/file/1860-ui-fixes/) π (Drag to swap, UI QOL changes)
-[Skipper](https://hub.sp-tarkov.com/files/file/1861-skipper/) π (Ctrl to skip quests)
-
-#### Visual
-[FOV and Optics Fix](https://hub.sp-tarkov.com/files/file/942-fontaine-s-fov-fix-variable-optics/) ππ₯ (M4/5 to zoom in/out)
-[Realistic NVG](https://hub.sp-tarkov.com/files/file/1303-borkel-s-realistic-night-vision-goggles-nvgs-and-t-7/) ππ₯
-[Realistic Thermal](https://hub.sp-tarkov.com/files/file/1510-borkel-s-big-realistic-thermal-package-bring-real-life-realism-to-your-thermal-s/) π₯
-[Visceral Dismemberment](https://discord.com/channels/1202292159366037545/1236748474653872228) π
-[Amands's Graphics](https://hub.sp-tarkov.com/files/file/813-amands-s-graphics/) π (Less fog, color grading)
-[Custom Music Player](https://hub.sp-tarkov.com/files/file/1832-stalker-music-pack/#overview) π₯ (Distributed with tracks)
-
-#### Disabled Mods
-[Amands's Sense](https://hub.sp-tarkov.com/files/file/1361-amands-sense/#overview) π (Optional loot helper)
-[Visceral Bodies](https://discord.com/channels/1202292159366037545/1228199049996402791) (Bodies glitch)
-[Web Map](https://hub.sp-tarkov.com/files/file/1421-techhappy-s-web-minimap/#overview) π (Replaced by Dynamic Maps)
-[Expanded Door Interactions](https://hub.sp-tarkov.com/files/file/1865-expanded-door-interactions/) π (Annoying UI)
-[Declutterer](https://hub.sp-tarkov.com/files/file/1785-de-clutterer-updated-by-cj/) π (Optional performance mod)
-[No Grenade ESP](https://hub.sp-tarkov.com/files/file/1029-no-grenade-esp/) π (Incompatible with SAIN)
-[Pause](https://hub.sp-tarkov.com/files/file/1793-pause-reupload/) π (P to pause, may cause death)
-
-#### Default Hotkeys
-- M4 to zoom
- - M4 to dial optic in
- - M5 to dial optic out
-- F12 to change Fika Core settings such as health bar, damage multiplier, and AI range
- - T to ping
- - F9 to enter free cam
- - M1/M2 to jump to player
- - Space while jumping to snap to head
- - Ctrl while jumping to snap to back
- - T to teleport to free cam
-- M2 item in stash to gift to other accounts
-- Alt Shift M1 item in stash to automatically sell to most profitable market
-- O to check bosses
-- P to pause
-
-### Patch Note & Downloads
-
-##### 3.8.3_2
-[Package](http://www.mediafire.com/view/msx1i8v7aqdoxwk)
-[Profile](http://www.mediafire.com/view/7i0apd7w7ax9rm1)
-
-**All mod files turned MO2 compatible and distributed separately.** This means that MO2 is not mandatory and merely makes updating easier.
-
-Added Dynamic Maps
-Removed Web Map
-Removed Expanded Door Interactions
-Removed Declutterer
-Removed No Grenade ESP
-Removed Pause
-Updated Fika
-
-##### 3.8.3_1
-[Package](http://www.mediafire.com/view/c87ornfb1ouw15p)
-
-
-%%#### 3.8.1
-###### Patch 2024-05-15 for 3.8.1_3>4
-Added Custom Music Player
-Updated Fika & DONUTS & Late to the Party Config
-Updated SVM Preset
-
-###### Patch 2024-05-10 for 3.8.1_2>3
-Added Visceral Dismemberment
-Added Vocal Player
-Added Shoulder Swap On Lean
-Updated Josh Mate's Better Backpacks
-Updated Borkel's Realistic Night Vision Goggles
-Updated Backdoor Bandit
-Updated Server Value Modifier
-
-###### Patch 2024-05-07 for 3.8.1_1>2
-Updated Borkel's Realistic Night Vision Goggles
-Updated Borkel's Big Realistic Thermal Package
-Updated Config Files
-
-###### Patch 2024-05-06 for 3.8.1_0>1
-Added UI Fixes
-Added Boss Notifier
-Added Shiny Airdrop Guns!%%
-
-## Random Stuff
-
-![# Pestily's sights tier list](https://preview.redd.it/z65fblqhzfn61.jpg?width=4096&format=pjpg&auto=webp&s=dcb4ee991db7df8c7e5ec4f11556d29654d18ae8)
diff --git a/docs/Wiki/Peer 3D Printing Service.md b/docs/Wiki/Peer 3D Printing Service.md
deleted file mode 100644
index df5869e2..00000000
--- a/docs/Wiki/Peer 3D Printing Service.md
+++ /dev/null
@@ -1,237 +0,0 @@
----
-tags:
- - wiki
-share: true
----
-parents:: [[../../Yifu Ding|Yifu Ding]]
-
-# Peer 3D Printing Service
-
-End of Year 50% Off!
-
-*Cheaper, better, and faster than Stratasys PLA!*
-
-Pick up at Daniels or 404-Major Mackenzie Dr E.
-
-### Machine
-
-Bambu P1S with AMS
-- Up to 4 filaments per plate
-- Build volume XYZ: 225mm * 225mm * 250mm | 8.85in * 8.85in * 9.85in
-- 0.4 mm hardened steel nozzle
-- Bambu Studio slicer
-### Service Charge
-
-| Plate Slicing & Setup | Time | Filament |
-| :-------------------- | --------------------------------------------- | -------------------- |
-| $8 + $4/plate | \$3 ~~$6~~/hr | As cheap as it gets! |
-
-> [!info]
-> Slicing fee is discounted or waived depending on complexity.
->
-> Slicing fee is waived for Bambu Studio sliced .3mf files, print failures are not covered and no support will be provided. If you understand the risks and seek complete control, use this [[./Attachments/Peer 3D Printing Service/Template.3mf|template]] to get started.
-
-### Getting Started
-
-1. Follow [[Peer 3D Printing Service#File Preparation|File Preparation]] and export files.
-2. Choose your [[Peer 3D Printing Service#Filament|Filament]].
-3. Choose from one of the [[Peer 3D Printing Service#Quality Presets|Quality Presets]].
-4. Adjust [[Peer 3D Printing Service#Slicing Options|Slicing Options]] as needed.
-5. Send your **ZIP** file, **filament**, **preset**, and **custom options** to Yifu Ding over Teams or [Email](mailto:yifu.ding@mail.utoronto.ca) for an estimate.
-6. Email transfer fees to yifuding.twp@gmail.com
-
-#### File Preparation
-
-![[./Attachments/Peer 3D Printing Service/2024-04-10T21_01_21-05_00_TWP-X570-WIN10(Rhino).gif|2024-04-10T21_01_21-05_00_TWP-X570-WIN10(Rhino)]]
-
-##### Orientate
-
-Choose printing **orientation** for maximum smoothness.
-- Printing a thin, organic piece vertically provides smoother detail and needs less support than laying it flat on the bed.
-
-##### Divide
-
-Divide large models exceeding the **build volume** with a **planar** cutter to provide **flat surfaces** that will adhere to the print bed nicely.
-- Each model need to be a closed solid with no non-manifold geometry. They should be **watertight**.
-- For pieces that are thin and tall, height is recommended to not exceed 100 mm.
-- Keep in mind that any **overhang** exceeding 25 degrees will need substantial support structure which could be reduced or eliminated if they were divided and orientated differently.
-- **WireCut** is a great command for this purpose. If WireCut didn't work on your model, chances are it isn't watertight and it won't print properly either.
-
-##### Export
-
-Files should be exported as **STL in millimetres**.
-- Rhino files or incorrectly scaled STL will not be accepted.
-- **Each separated body should be one file** regardless of which plate they may be on, to maximize nesting potential.
- - When relative positioning is important, add a small bridge with a cross section of 0.5-1mmΒ² (depending on strength requirement) directly on the print bed and boolean union all connected bodies.
-- For multiple objects, use the Rhino command **RunPythonScript** with the [[./Attachments/Peer 3D Printing Service/BatchExportSTLByObj.py|Batch Export Python Script]] to export all selected files at once.
-- Deliver more than one .stl files as a **ZIP**.
-
-#### Filament
-
-| PLA | $/kg | Hex Code |
-| :------------------------ | -----: | ------------------------------------------------------------ |
-| Matte Ivory White | 29.37 | FFFFFF |
-| Matte Charcoal Black | 29.37 | 000000 |
-| Matte Sakura Pink | 29.37 | E8AFCF |
-| Matte Lilac Purple | 29.37 | AE96D4 |
-| Basic Bambu Green | 29.37 | 00AE42 |
-| Marble White | 44.06 | F7F3F0 |
-| Silk Gold | 44.06 | E5B03D |
-| Sparkle Crimson Red | 44.06 | 792B36 |
-| Metal Iron Gray | 44.06 | 43403D |
-| Breakaway Support | 101.68 | |
-| PVA Water-soluble Support | 115.24 | |
-
-| ABS | $/kg | Hex Code |
-| :---------- | ----: | ------------------------------------------------ |
-| Basic White | 36.15 | FFFFFF |
-
-| PETG | $/kg | Hex Code |
-| :---------- | ----: | ------------------------------------------------ |
-| Basic White | 36.15 | FFFFFF |
-| Basic Clear | 36.15 | |
-
-> [!info]
-> Other filaments may be available upon request.
-> [Bambu Lab Filament](https://ca.store.bambulab.com/collections/pla?skr=yes)
-
-
-#### Quality Presets
-
-For 1 inch hollow cube with 2 walls:
-
-| Quality Presets | Layer Height (mm) | Time | Minimum $ (Time + Filament) |
-| :---------------- | :---------------: | :---: | :-------------------------: |
-| Extra Fine | 0.08 | 35:01 | 3.69 |
-| Fine | 0.12 | 24:43 | 2.68 |
-| Optimal (Default) | 0.16 | 19:04 | 2.11 |
-| Standard | 0.20 | 15:42 | 1.77 |
-| Draft | 0.24 | 13:10 | 1.44 |
-| Extra Draft | 0.28 | 11:34 | 1.28 |
-
-
-#### Slicing Options
-
-> [!info]
-> Default value in parenthesis.
->
-> Recommended settings are marked with β.
->
-> Recommended values are marked with β.
-
-Print Orientation β
-
-Layer Height (0.16mm) β
-- Affects overhang performance
-
-Print Speed
-
-Wall Loops (2) β
-
-Wall Generator (Classic)
-- Classic β
-- Arachne β
-
-Order of Walls (Inner / Outer)
-- Inner / Outer
-- Outer / Inner
-- Inner / Outer / Inner
-
-X-Y Hole Compensation (0mm)
-
-X-Y Contour Compensation (0mm)
-
-Infill Pattern (Grid) β
-- Concentric
-- Rectilinear β
-- Grid β
-- Line β
-- Cubic β
-- Triangles
-- Tri-hexagon
-- Gyroid β
-- Honeycomb
-- Adaptive Cubic β
-- Aligned Rectilinear
-- 3D Honeycomb
-- Hilbert Curve
-- Archimedean Chords
-- Octagram Spiral
-- Support Cubic β
-- Lighting β
-
-Infill Percentage 0-100% (15%) β
-
-Support (Normal Automatic) β
-1. Normal Automatic
-2. Normal Manual
-3. Tree Automatic
-4. Tree Manual
-
-Raft (None)
-
-Brim (Auto) β
-1. Auto β
-2. Outer Brim Only β
-3. Inner Brim Only
-4. Outer And Inner Brim
-5. No Brim β
-
-Fuzzy Skin (None) β
-- None
-- Contour
-- Contour And Hole
-- All Walls
-
-Surface Pattern (Monotonic)
-1. Concentric β
-2. Rectilinear
-3. Monotonic β
-4. Monotonic Line
-5. Aligned Rectilinear β
-6. Hilbert Curve
-7. Archimedean Chords
-8. Octagram Spiral
-
-Ironing (Top Surfaces) β
-1. None β
-2. Top Surfaces β
-3. Topmost Surface
-4. All Solid Layer
-
-Ironing Pattern (Rectilinear)
-1. Concentric β
-2. Rectilinear β
-
-Thick Bridges (None)
-
-Seam Positions (Aligned)
-1. Nearest
-2. Aligned
-3. Back
-4. Random
-
-Scarf Joint Seam (Contour And Hole)
-1. None
-2. Contour
-3. Contour And Hole
-
-### Showcase
-
-![[./Attachments/Peer 3D Printing Service/Showcase-Arjay Asuncion.jpg|400]]
-
-by Arjay Asuncion - 2024
-
-### FAQ
-
-###### *Why is there a setup fee? For each plate?*
-
-This setup fee allows me to take more care optimizing your print file and compensates me for my continued presence. Optimizations can massively reduce your print time and filament, lowering total cost, but each job is different and it takes time. I try my best to provide affordable and environmentally responsible printing service, which is why I offer my time and expertise at a modest fee. You'll always have the option to slice it by yourself and I am pleased to waive the setup fee for such cases, but current success rate for this option is only 0%.
-![[./Attachments/Peer 3D Printing Service/2024-04-10T00_15_05.jpg|200]]
-
-%%
-### Tiny Tracker
-
-Abida - 3.95
-
-%%
\ No newline at end of file
diff --git a/docs/advanced/index.md b/docs/advanced/index.md
deleted file mode 100644
index 48225890..00000000
--- a/docs/advanced/index.md
+++ /dev/null
@@ -1,3 +0,0 @@
----
-title: "Advanced"
----
diff --git a/docs/features/index.md b/docs/features/index.md
deleted file mode 100644
index 2997b3aa..00000000
--- a/docs/features/index.md
+++ /dev/null
@@ -1,3 +0,0 @@
----
-title: Feature List
----
diff --git a/docs/plugins/index.md b/docs/plugins/index.md
deleted file mode 100644
index 298ff164..00000000
--- a/docs/plugins/index.md
+++ /dev/null
@@ -1,3 +0,0 @@
----
-title: Plugins
----