aboutsummaryrefslogtreecommitdiff
path: root/blog/index.org
blob: 26e36c8feb7ff1588914fbc0d4fa040b366e6cda (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
# -*- org-publish-use-timestamps-flag: nil; -*-
#+TITLE: My Blog
#+AUTHOR: Preston Pan
#+DATE: <2023-06-14 Wed>
#+DESCRIPTION: List of all my blogs in alphabetical order
#+html_head: <link rel="stylesheet" type="text/css" href="../style.css" />
#+language: en
#+OPTIONS: broken-links:t
#+html_head: <meta name="viewport" content="width=1000; user-scalable=0;" />

* Why?
I want a place where I can write long form essays about subjects
without being constrained by any particular form, like in the mindmap.
** Why not the Journal, then?
This blog is not going to be for my personal life in any capacity,
technical or otherwise. Think about the blog like a mix between
the wiki format of the mindmap and the journal format.

Blog Articles:
@@html: <div class="links-page">@@
#+begin_src shell :results output raw :exports both
  for f in *;
  do
      if [[ "$f" == "index.org" || "$f" == "img" ]]; then
	  continue
      fi
      printf -- "- [[file:$f][$f]]\n"
  done
#+end_src

#+RESULTS:
- [[file:automation.org][automation.org]]
- [[file:cognition.org][cognition.org]]
- [[file:crypto.org][crypto.org]]
- [[file:machine_learning.org][machine_learning.org]]
- [[file:nixos.org][nixos.org]]
- [[file:private_keys.org][private_keys.org]]
- [[file:stem.org][stem.org]]
- [[file:tech-bros.org][tech-bros.org]]
- [[file:voting.org][voting.org]]
- [[file:you_dont_matter.org][you_dont_matter.org]]

@@html: </div>@@