From 846b48b0b179fcaa49c494d0da0e23db71b989dd Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Sun, 11 Jun 2023 17:43:34 -0700 Subject: first commit --- journal/index.org | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 journal/index.org (limited to 'journal/index.org') diff --git a/journal/index.org b/journal/index.org new file mode 100644 index 0000000..c6bfe89 --- /dev/null +++ b/journal/index.org @@ -0,0 +1,28 @@ +#+title: Journal +#+author: Preston Pan +#+description: My journal entries +#+html_head: +#+date: <2023-06-09 Fri> +#+language: en +#+OPTIONS: broken-links:t +* Journal! +This is my journal. It's basically my everyday life from +a technology perspective (not many personal details although +there will be some). + +** Entries +Here is a list of all my journal entries: +#+begin_src shell :results output raw :exports both +for f in $(ls | sort -r); +do + if [[ "$f" == "index.org" ]]; then + continue + fi + printf -- "- [[file:$f][$f]]\n" +done +#+end_src + +#+RESULTS: +- [[file:20230611.org][20230611.org]] +- [[file:20230610.org][20230610.org]] +- [[file:20230609.org][20230609.org]] -- cgit