diff options
author | Preston Pan <preston@nullring.xyz> | 2023-06-11 17:43:34 -0700 |
---|---|---|
committer | Preston Pan <preston@nullring.xyz> | 2023-06-11 17:43:34 -0700 |
commit | 846b48b0b179fcaa49c494d0da0e23db71b989dd (patch) | |
tree | ad76990055afed803a8de5ed08b89a73e8a32967 /journal/index.org |
first commit
Diffstat (limited to 'journal/index.org')
-rw-r--r-- | journal/index.org | 28 |
1 files changed, 28 insertions, 0 deletions
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: <link rel="stylesheet" type="text/css" href="../style.css" /> +#+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]] |