diff options
Diffstat (limited to 'journal')
-rw-r--r-- | journal/20230609.org | 10 | ||||
-rw-r--r-- | journal/20230610.org | 18 | ||||
-rw-r--r-- | journal/20230611.org | 16 | ||||
-rw-r--r-- | journal/index.org | 28 |
4 files changed, 72 insertions, 0 deletions
diff --git a/journal/20230609.org b/journal/20230609.org new file mode 100644 index 0000000..dfcfc19 --- /dev/null +++ b/journal/20230609.org @@ -0,0 +1,10 @@ +#+TITLE: Daily Journal +#+STARTUP: showeverything +#+DESCRIPTION: My daily journal entry +#+AUTHOR: Preston Pan +#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> +* Friday, 09 June 2023 +** 23:34 +Today, I've decided to try using org-journal to write a journal +section of my website. I will also at the same time use it +for the integration with org-agenda. diff --git a/journal/20230610.org b/journal/20230610.org new file mode 100644 index 0000000..108f9bd --- /dev/null +++ b/journal/20230610.org @@ -0,0 +1,18 @@ +#+TITLE: Daily Journal +#+STARTUP: showeverything +#+DESCRIPTION: My daily journal entry +#+AUTHOR: Preston Pan +#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> +* Saturday, 10 June 2023 +** 15:04 +Today, I am with my friends, one of which wants to view my emacs configuration. +Also, I got publishing working with emacs, and everything exports to an +html file. Addtionally, I set things up such that org journal uses the .org +extension which allows publishing to recognize these files. + +Everything is integrated with emacs. All is emacs. +** 23:20 +I'm almost done writing this website. Basically, all I need to do is write a couple +of shell scripts that insert the entire contents of a particular directory to an +html file. Also, I need to find suitable css in order to math this website, and I +need to add a back button using pretty much the same technique. diff --git a/journal/20230611.org b/journal/20230611.org new file mode 100644 index 0000000..8e3c09c --- /dev/null +++ b/journal/20230611.org @@ -0,0 +1,16 @@ +#+TITLE: Daily Journal +#+STARTUP: showeverything +#+DESCRIPTION: My daily journal entry +#+AUTHOR: Preston Pan +#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> +* Sunday, 11 June 2023 +** 09:05 +Today, I am going to work more on the website. First of all, +I have to work more on the mindmap. Second, I have to work on +the css, and third, I have to generate the links in a way +that is non-hacky. Probably with a shell script. + +I also need to write some LaTeX for the mindmap. + +I will also make a github repository for this website, probably, +which means I'm going to make a README.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: <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]] |