blob: 109ae12ec85bdb76ffa6d14dd12d4b8b69e7c887 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
#+title: Mindmap
#+author: Preston Pan
#+date: <2023-06-10 Sat>
#+html_head: <link rel="stylesheet" type="text/css" href="../style.css" />
* Introducing: the Mindmap
Do you want to know everything like me and be a smart person instead of dumb?
Well, you've come to the right place! 👍
** What is this?
It's a place that hopes to explain *EVERYTHING!!*
** Isn't that unrealistic?
I answer that in my [[file:everything.org][mindmap]]! It has all the answers!
** Doesn't it have to explain itself?
Yeah, we answered that one too. Just read the [[file:everything.org][mindmap]].
** Batteries included?
No, it's a mindmap you fucking idiot.
* Rules
- Don't use the back button on your browser
- Everything here is going to be a link to another mindmap page.
- Therefore, if there is a page you want to go back to, you must navigate until you find a loop back to the original page.
** What Happens if I don't Follow the Rules?
You're ruining your own fun I guess. These are just the recommended settings
and if you want to change them then you're free to.
That won't stop me from stalking you and physically threatening you, though. Teehee!
* How did you make it?
This section of the website was made with ~org-roam~, an emacs package that allows
you to make a web of notes, something close to a wiki.
* I want to Break the Rules
No you don't. That being said, if you really want the list of all articles, here you go:
@@html: <div class="links-page">@@
#+begin_src shell :results output raw :exports both
set -f
IFS='
'
for f in $(ls | sort -r);
do
if [[ "$f" == "index.org" || "$f" == "README.org" ]]; then
continue
fi
printf -- "- [[file:$f][$f]]\n"
done
unset IFS
set +f
#+end_src
#+RESULTS:
- [[file:stack.org][stack.org]]
- [[file:special relativity.org][special relativity.org]]
- [[file:self-assembly.org][self-assembly.org]]
- [[file:recursion.org][recursion.org]]
- [[file:python.org][python.org]]
- [[file:physics.org][physics.org]]
- [[file:partial derivative.org][partial derivative.org]]
- [[file:natural number.org][natural number.org]]
- [[file:mathematics.org][mathematics.org]]
- [[file:magnetostatics.org][magnetostatics.org]]
- [[file:logic.org][logic.org]]
- [[file:inverse square.org][inverse square.org]]
- [[file:inheritance.org][inheritance.org]]
- [[file:infinity.org][infinity.org]]
- [[file:induction.org][induction.org]]
- [[file:group.org][group.org]]
- [[file:function.org][function.org]]
- [[file:factorial.org][factorial.org]]
- [[file:everything.org][everything.org]]
- [[file:emergence.org][emergence.org]]
- [[file:electrostatics.org][electrostatics.org]]
- [[file:duality.org][duality.org]]
- [[file:divergence theorem.org][divergence theorem.org]]
- [[file:dirac delta.org][dirac delta.org]]
- [[file:derivative.org][derivative.org]]
- [[file:del operator.org][del operator.org]]
- [[file:continuity equation.org][continuity equation.org]]
- [[file:conservative force.org][conservative force.org]]
- [[file:central force.org][central force.org]]
- [[file:Newtonian mechanics.org][Newtonian mechanics.org]]
- [[file:Maxwell's Equations.org][Maxwell's Equations.org]]
- [[file:Lorentz Force.org][Lorentz Force.org]]
- [[file:Legendre Transformation.org][Legendre Transformation.org]]
- [[file:Lagrangian mechanics.org][Lagrangian mechanics.org]]
- [[file:Fourier Transform.org][Fourier Transform.org]]
@@html: </div>@@
|