vault backup: 2024-12-12 22:09:04
This commit is contained in:
parent
5bfb39a2cd
commit
da323ae882
3
.obsidian/community-plugins.json
vendored
3
.obsidian/community-plugins.json
vendored
@ -13,5 +13,6 @@
|
||||
"multi-properties",
|
||||
"obsidian-plugin-toc",
|
||||
"emoji-shortcodes",
|
||||
"advanced-canvas"
|
||||
"advanced-canvas",
|
||||
"obsidian-tracker"
|
||||
]
|
4
.obsidian/plugins/obsidian-tracker/main.js
vendored
Normal file
4
.obsidian/plugins/obsidian-tracker/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
.obsidian/plugins/obsidian-tracker/manifest.json
vendored
Normal file
10
.obsidian/plugins/obsidian-tracker/manifest.json
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "obsidian-tracker",
|
||||
"name": "Tracker",
|
||||
"version": "1.14.0",
|
||||
"minAppVersion": "0.9.12",
|
||||
"description": "A plugin tracks occurrences and numbers in your notes",
|
||||
"author": "pyrochlore",
|
||||
"authorUrl": "",
|
||||
"isDesktopOnly": false
|
||||
}
|
182
.obsidian/plugins/obsidian-tracker/styles.css
vendored
Normal file
182
.obsidian/plugins/obsidian-tracker/styles.css
vendored
Normal file
@ -0,0 +1,182 @@
|
||||
.theme-light {
|
||||
--color-title: #000000;
|
||||
--color-axis: #000000;
|
||||
--color-axis-label: #000000;
|
||||
--color-tick-label: #000000;
|
||||
--color-line: #000000;
|
||||
|
||||
--color-legend-border: #000000;
|
||||
|
||||
--color-dot-fill: #69b3a2;
|
||||
--color-dot-stroke: none;
|
||||
|
||||
--color-bar-fill: #69b3a2;
|
||||
--color-bar-border: none;
|
||||
|
||||
--color-tooltip-bg: #ffffff;
|
||||
--color-tooltip-border: #000000;
|
||||
--color-tooltip-label: #000000;
|
||||
}
|
||||
|
||||
.theme-dark {
|
||||
--color-title: #ffffff;
|
||||
--color-axis: #ffffff;
|
||||
--color-axis-label: #ffffff;
|
||||
--color-tick-label: #ffffff;
|
||||
--color-line: #ffffff;
|
||||
|
||||
--color-legend-border: #ffffff;
|
||||
|
||||
--color-dot-fill: #69b3a2;
|
||||
--color-dot-stroke: none;
|
||||
|
||||
--color-bar-fill: #69b3a2;
|
||||
--color-bar-border: none;
|
||||
|
||||
--color-tooltip-bg: #ffffff;
|
||||
--color-tooltip-border: #000000;
|
||||
--color-tooltip-label: #000000;
|
||||
}
|
||||
|
||||
.tracker-title {
|
||||
fill: var(--color-title);
|
||||
text-anchor: middle;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.tracker-title-small {
|
||||
fill: var(--color-title);
|
||||
text-anchor: middle;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.tracker-axis {
|
||||
fill: none;
|
||||
stroke: var(--color-axis);
|
||||
stroke-width: 1px;
|
||||
}
|
||||
|
||||
.tracker-axis-label {
|
||||
fill: var(--color-axis-label);
|
||||
text-anchor: middle;
|
||||
font-size: 14px;
|
||||
stroke: none;
|
||||
}
|
||||
|
||||
.tracker-tick-label {
|
||||
fill: var(--color-tick-label);
|
||||
stroke: none;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.tracker-line {
|
||||
fill: none;
|
||||
stroke: var(--color-line);
|
||||
stroke-width: 1.5px;
|
||||
stroke-linecap: round;
|
||||
stroke-linejoin: round;
|
||||
}
|
||||
|
||||
.tracker-dot {
|
||||
fill: var(--color-dot-fill);
|
||||
}
|
||||
|
||||
.tracker-tooltip {
|
||||
fill: var(--color-tooltip-bg);
|
||||
stroke: var(--color-tooltip-border);
|
||||
stroke-width: 1px;
|
||||
}
|
||||
|
||||
.tracker-tooltip-label {
|
||||
fill: var(--color-tooltip-label);
|
||||
stroke: none;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.tracker-legend {
|
||||
fill: none;
|
||||
stroke: var(--color-legend-border);
|
||||
stroke-width: 0.5px;
|
||||
}
|
||||
|
||||
.tracker-legend-label {
|
||||
font-size: 14px;
|
||||
text-anchor: left;
|
||||
}
|
||||
|
||||
.tracker-bar {
|
||||
fill: var(--color-bar-fill);
|
||||
}
|
||||
|
||||
.tracker-month-header-year {
|
||||
fill: var(--color-title);
|
||||
text-anchor: start;
|
||||
font-size: 22px;
|
||||
|
||||
}
|
||||
|
||||
.tracker-month-header-month {
|
||||
fill: var(--color-title);
|
||||
text-anchor: start;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.tracker-month-dividing-line {
|
||||
fill: var(--color-bar-fill);
|
||||
}
|
||||
|
||||
.tracker-month-title-arrow {
|
||||
fill: var(--color-title);
|
||||
text-anchor: middle;
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
.tracker-month-title-rotator {
|
||||
fill: var(--color-title);
|
||||
text-anchor: middle;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.tracker-month-title-monitor {
|
||||
fill: var(--color-title);
|
||||
text-anchor: middle;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.tracker-month-weekday {
|
||||
fill: var(--color-tick-label);
|
||||
stroke: none;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.tracker-month-today-circle {
|
||||
fill: none;
|
||||
stroke: "white";
|
||||
stroke-width: 4px;
|
||||
}
|
||||
|
||||
.tracker-month-selected-circle {
|
||||
fill: none;
|
||||
stroke: "red";
|
||||
stroke-width: 2px;
|
||||
}
|
||||
|
||||
.tracker-month-label {
|
||||
fill: var(--color-axis-label);
|
||||
text-anchor: middle;
|
||||
font-size: 14px;
|
||||
stroke: none;
|
||||
}
|
||||
|
||||
.tracker-month-annotation {
|
||||
fill: var(--color-axis-label);
|
||||
text-anchor: middle;
|
||||
font-size: 10px;
|
||||
stroke: none;
|
||||
}
|
||||
|
||||
.tracker-pie-label {
|
||||
fill: var(--color-tick-label);
|
||||
stroke: none;
|
||||
font-size: 12px;
|
||||
}
|
55
.obsidian/workspace.json
vendored
55
.obsidian/workspace.json
vendored
@ -7,49 +7,9 @@
|
||||
"id": "5dd164d2586f8c4d",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "a00200dbe0289dfe",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "image",
|
||||
"state": {
|
||||
"file": "Extracurricular/CANSAT/img/Pasted image 20241206134156.png"
|
||||
},
|
||||
"icon": "lucide-image",
|
||||
"title": "Pasted image 20241206134156"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "3f2e26c2e1ee936d",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "Extracurricular/CANSAT/Parts Proposal.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
},
|
||||
"icon": "lucide-file",
|
||||
"title": "Parts Proposal"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "25537c3876ede1e3",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "Untitled.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
},
|
||||
"icon": "lucide-file",
|
||||
"title": "Untitled"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "3753540aae2d856a",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
@ -61,8 +21,7 @@
|
||||
"title": "Midterm prep"
|
||||
}
|
||||
}
|
||||
],
|
||||
"currentTab": 3
|
||||
]
|
||||
}
|
||||
],
|
||||
"direction": "vertical"
|
||||
@ -239,22 +198,23 @@
|
||||
"omnisearch:Omnisearch": false
|
||||
}
|
||||
},
|
||||
"active": "3753540aae2d856a",
|
||||
"active": "25537c3876ede1e3",
|
||||
"lastOpenFiles": [
|
||||
"Extracurricular/CANSAT/img/Pasted image 20241206134156.png",
|
||||
"Extracurricular/CANSAT/Parts Proposal.md",
|
||||
"Untitled.md",
|
||||
"Untitled.canvas",
|
||||
"Discrete Structures/Midterm prep.md",
|
||||
"Discrete Structures/Counting.md",
|
||||
"Discrete Structures/Mathematical Data Structures.md",
|
||||
"Discrete Structures/Relations and Digraphs.md",
|
||||
"Discrete Structures/Recurrence relations.md",
|
||||
"Discrete Structures/Mathematical Proofs (Induction).md",
|
||||
"Discrete Structures/Midterm prep.md",
|
||||
"Advanced Algorithms/Graphs.md",
|
||||
"Advanced Algorithms/P vs. NP.md",
|
||||
"Advanced Algorithms/Pasted image 20241203234600.png",
|
||||
"Excalidraw/Drawing 2024-12-11 23.27.51.excalidraw.md",
|
||||
"Untitled.md",
|
||||
"Excalidraw",
|
||||
"Extracurricular/CANSAT/Parts Proposal.md",
|
||||
"Extracurricular/CANSAT/img/Pasted image 20241206134156.png",
|
||||
"Extracurricular/CANSAT/Initial Meeting.md",
|
||||
"Extracurricular/CANSAT/img/Pasted image 20241206134213.png",
|
||||
"Extracurricular/CANSAT/img/Pasted image 20241206134207.png",
|
||||
@ -273,7 +233,6 @@
|
||||
"Advanced Algorithms/Complexity.md",
|
||||
"Functional Programming/Introduction to Functional Programming.md",
|
||||
"Functional Programming/Basic Haskell.md",
|
||||
"Functional Programming/Lists.md",
|
||||
"Advanced Algorithms/assets/pnp/Pasted image 20241203234013.png",
|
||||
"Advanced Algorithms/assets/pnp/Pasted image 20241203234032.png",
|
||||
"Advanced Algorithms/assets/graph/1_WR4AtjT_nhwSOtAW99Yd5g.gif",
|
||||
|
@ -1 +1,49 @@
|
||||
## Content
|
||||
|
||||
- [General structure](#General%20structure)
|
||||
|
||||
## General structure
|
||||
Confidence scale (1-5)
|
||||
### Exercise 1
|
||||

|
||||
- Basic set theory (5)
|
||||
- Combinations and Permutations (3)
|
||||
|
||||
### Exercise 2
|
||||

|
||||
- Induction
|
||||
- Equality (3)
|
||||
- Comparisons (2)
|
||||
|
||||

|
||||
|
||||
- Strong Induction
|
||||
- Equality (3)
|
||||
- Comparisons (1)
|
||||
|
||||
### Exercise 3
|
||||

|
||||

|
||||
Recurrence relation (1)
|
||||
|
||||
### Exercise 4
|
||||
- Matrix -> Graph (5)
|
||||
- Relation analysis (4)
|
||||
- Transitive closure (Warshall) (5)
|
||||
- Boolean Matrix multiplication (3)
|
||||
|
||||
### Exercise 5
|
||||
- Properties of binary relations and proofs (2)
|
||||
|
||||
### Exercise 6
|
||||
- Function composition and proofs (2)
|
||||

|
||||
### Exercise 7
|
||||
- Warshall's algorithm (2)
|
||||

|
||||
### Exercise 8
|
||||
- Complexity (1)
|
||||

|
||||
### Exercise 9
|
||||
- Random proof (?)
|
||||
|
||||
## we
|
Loading…
x
Reference in New Issue
Block a user