From a3fa456e28a8fc9b0720e230039083c3f8e3f7b8 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Wed, 14 Jun 2023 16:30:24 -0700 Subject: add content to journal and mindmap --- blog/index.org | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 blog/index.org (limited to 'blog/index.org') diff --git a/blog/index.org b/blog/index.org new file mode 100644 index 0000000..e5ee82d --- /dev/null +++ b/blog/index.org @@ -0,0 +1,28 @@ +#+TITLE: My Blog +#+AUTHOR: Preston Pan +#+DATE: <2023-06-14 Wed> +#+DESCRIPTION: List of all my blogs in alphabetical order +#+html_head: +#+language: en +#+OPTIONS: broken-links:t + +* 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 +#+begin_src shell :results output raw :exports both +for f in *; +do + if [[ "$f" == "index.org" ]]; then + continue + fi + printf -- "- [[file:$f][$f]]\n" +done +#+end_src + +#+RESULTS: -- cgit