diff options
120 files changed, 136 insertions, 392 deletions
diff --git a/config/emacs.org b/config/emacs.org index 5df511e..9de6f61 100644 --- a/config/emacs.org +++ b/config/emacs.org @@ -205,6 +205,7 @@ of course Emacs was not designed to be fully imperative. This is my org mode configuration, which also configures latex. #+begin_src emacs-lisp :tangle ../nix/init.el (use-package org + :demand t :after (f s dash nix-mode) :hook ((org-mode-hook . remove-annoying-pairing)) @@ -276,8 +277,14 @@ This is my org mode configuration, which also configures latex. (org-habit-show-habits-only-for-today nil "See org habit entries") (org-habit-show-all-today t "Show org habit graph")) -(use-package htmlize - :after (doom-themes catppuccin-theme)) +(when noninteractive + (use-package htmlize + :demand t + :after (catppuccin-theme))) + +(unless noninteractive + (use-package htmlize + :after (doom-themes))) (use-package ox-latex :after (org) @@ -286,6 +293,7 @@ This is my org mode configuration, which also configures latex. (org-latex-pdf-process '("xelatex -interaction=nonstopmode -output-directory=%o %f") "set xelatex as default")) (use-package ox-html + :demand t :after (org htmlize) :custom (org-html-htmlize-output-type 'css "allow styling from CSS file") @@ -304,6 +312,7 @@ This is my org mode configuration, which also configures latex. :config (advice-add 'org-html-latex-environment :around #'org-html-latex-environment-pandoc-fix)) (use-package ox-publish + :demand t :after (org f s dash ox-html) :custom (org-publish-project-alist @@ -322,6 +331,8 @@ This is my org mode configuration, which also configures latex. (->> (create-htmlize-css) (s-replace-regexp "<style[^>]*>" "") (s-replace "</style>" "") + (s-replace "<![CDATA[/*><![CDATA[/*>\n" "") + (s-replace "/*]]>*/-->" "") (s-trim) (minify-css)) (f-read-text "~/monorepo/style.css" 'utf-8) @@ -593,8 +604,7 @@ We want our emacs initialization to be pretty and display useful things. (projects . 5) (agenda . 5) (registers . 5)) "Look at some items") - :config - (dashboard-setup-startup-hook)) + :config (unless noninteractive (dashboard-setup-startup-hook))) #+end_src ** Ivy Ivy is a pretty cool general program for displaying stuff: @@ -256,62 +256,15 @@ export FONTCONFIG_PATH=${pkgs.fontconfig.out}/etc/fonts/ export XDG_CACHE_HOME=$TMPDIR/.cache printf "hello?\n" -xvfb-run -a emacs -q \ - --eval '(setq inhibit-startup-screen t)' \ - --eval '(setq inhibit-startup-message t)' \ - --eval '(setq enable-local-variables :all)' \ - --eval '(defalias (quote yes-or-no-p) (lambda (&rest args) t))' \ - --eval '(defalias (quote y-or-n-p) (lambda (&rest args) t))' \ - --eval '(setq message-log-max t)' \ - --eval '(setq standard-output (quote external-debugging-output))' \ - --eval '(princ "STEP 0: tf\n" (quote external-debugging-output))' \ - --eval '(setq noninteractive t)' \ - --eval '(setq system-email "lol@troll.com")' \ - --eval '(setq system-username "ci-runner")' \ - --eval '(setq system-fullname "Preston Pan")' \ - --eval '(setq system-gpgkey "00000000")' \ - --eval '(defun package-vc-install (&rest args) (message "blocked package-vc-install for %s" args))' \ - --eval '(defun package-vc--unpack (&rest args) nil)' \ - --eval '(setq package-archives nil)' \ - --eval '(setq use-package-always-ensure nil)' \ - --eval '(setq package-vc-selected-packages nil)' \ - --eval '(defalias (quote scroll-bar-mode) (quote ignore))' \ - --eval '(defalias (quote tool-bar-mode) (quote ignore))' \ - --eval '(defalias (quote menu-bar-mode) (quote ignore))' \ - --eval '(provide (quote lean4-mode))' \ - --eval '(provide (quote irony-mode))' \ - --eval '(provide (quote irony))' \ - --eval '(defalias (quote irony-cdb-autosetup-compile-options) (quote ignore))' \ - --eval "(setq org-latex-pdf-process (quote (\"xelatex -shell-escape -interaction nonstopmode %f\")))" \ - --eval '(setq org-startup-with-latex-preview nil)' \ - --eval '(setq org-startup-indented nil)' \ - --eval '(setq org-export-with-latex t)' \ - --eval '(setq org-confirm-babel-evaluate nil)' \ - --eval '(setq load-prefer-newer t)' \ - --eval '(setq gc-cons-threshold 100000000)' \ - --eval '(setq vc-handled-backends nil)' \ - --eval '(setq make-backup-files nil auto-save-default nil create-lockfiles nil)' \ - --eval '(princ "STEP 1: init.el?\n" (quote external-debugging-output))' \ - -l ${nixmacs}/init.el \ - --eval '(princ "STEP 2: init.el.\n" (quote external-debugging-output))' \ - --eval '(setq org-roam-directory (expand-file-name "mindmap" (expand-file-name "~/monorepo")))' \ - --eval '(setq org-id-track-globally t)' \ - --eval '(org-roam-db-sync)' \ - --eval '(setq term-file-prefix nil)' \ - --eval '(princ "STEP 3: after org roam\n" (quote external-debugging-output))' \ - --eval '(force-mode-line-update)' \ - --eval '(setq org-html-link-use-abs-url nil)' \ - --eval '(setq default-directory (expand-file-name "~/monorepo"))' \ - --eval '(setq org-html-link-use-abs-url nil)' \ - --eval '(setq org-html-link-org-files-as-html t)' \ - --eval '(require (quote htmlize))' \ - --eval '(require (quote nix-mode))' \ - --eval '(setq org-html-htmlize-output-type (quote css))' \ - --eval '(princ "STEP 4: before publish-all\n" (quote external-debugging-output))' \ - --eval '(org-publish-all t)' \ - --eval '(org-publish-all nil)' \ - --eval '(kill-emacs 0)' || (echo "FAIL:" && cat /build/*.log && exit 1) +export NIXMACS_DIR="${nixmacs}" +xvfb-run -a emacs -q -l ${self}/tests/ci-runner.el || { + echo "FAIL: Emacs build crashed." + cat /build/*.log + exit 1 +} + +printf "after emacs\n" CSS_HASH="$(python3 $HOME/monorepo/tests/test-csp-hash.py $HOME/website_html/index.html)" cat <<EOF > $HOME/website_html/csp_header.conf add_header Content-Security-Policy "default-src 'self'; style-src 'self' 'sha256-$CSS_HASH'; font-src 'self';"; @@ -5,7 +5,7 @@ #+language: en #+OPTIONS: broken-links:t #+OPTIONS: html-preamble:nil -#+HTML_HEAD: <link rel="preload" fetchpriority="high" as="image" href="/img/logo.webp" type="image/webp"> +#+HTML_HEAD_EXTRA: <link rel="preload" fetchpriority="high" as="image" href="/img/logo.webp" type="image/webp"> #+attr_html: :width 595 :height 746 #+attr_html: :alt My ret2pop logo diff --git a/journal/.#20251227.org b/journal/.#20251227.org deleted file mode 120000 index 02debe3..0000000 --- a/journal/.#20251227.org +++ /dev/null @@ -1 +0,0 @@ -preston@affinity.2235:1766870603
\ No newline at end of file diff --git a/journal/20230609.org b/journal/20230609.org index dfcfc19..b320a23 100644 --- a/journal/20230609.org +++ b/journal/20230609.org @@ -2,7 +2,6 @@ #+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 diff --git a/journal/20230610.org b/journal/20230610.org index 108f9bd..9630800 100644 --- a/journal/20230610.org +++ b/journal/20230610.org @@ -2,7 +2,6 @@ #+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. diff --git a/journal/20230611.org b/journal/20230611.org index 23d1388..ba49997 100644 --- a/journal/20230611.org +++ b/journal/20230611.org @@ -2,7 +2,6 @@ #+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, diff --git a/journal/20230613.org b/journal/20230613.org index 81e078e..752e786 100644 --- a/journal/20230613.org +++ b/journal/20230613.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Tuesday, 13 June 2023 ** 19:34 diff --git a/journal/20230614.org b/journal/20230614.org index 23edd53..aa8e3d4 100644 --- a/journal/20230614.org +++ b/journal/20230614.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Wednesday, 14 June 2023 ** 09:40 diff --git a/journal/20230615.org b/journal/20230615.org index a8a2600..0a20513 100644 --- a/journal/20230615.org +++ b/journal/20230615.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Thursday, 15 June 2023 ** 21:53 diff --git a/journal/20230616.org b/journal/20230616.org index afc83df..e51b7d8 100644 --- a/journal/20230616.org +++ b/journal/20230616.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Friday, 16 June 2023 ** 13:43 diff --git a/journal/20230619.org b/journal/20230619.org index d004d3c..c732b93 100644 --- a/journal/20230619.org +++ b/journal/20230619.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Monday, 19 June 2023 ** 16:48 diff --git a/journal/20230620.org b/journal/20230620.org index 9461dc3..e320e95 100644 --- a/journal/20230620.org +++ b/journal/20230620.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Tuesday, 20 June 2023 ** 02:52 diff --git a/journal/20230621.org b/journal/20230621.org index d8ece6c..f3c9172 100644 --- a/journal/20230621.org +++ b/journal/20230621.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Wednesday, 21 June 2023 ** 21:34 diff --git a/journal/20230622.org b/journal/20230622.org index 6ffc805..10e5912 100644 --- a/journal/20230622.org +++ b/journal/20230622.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Thursday, 22 June 2023 diff --git a/journal/20230623.org b/journal/20230623.org index d822ff7..b9d77c8 100644 --- a/journal/20230623.org +++ b/journal/20230623.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Friday, 23 June 2023 ** 06:16 diff --git a/journal/20230624.org b/journal/20230624.org index 29dfbee..1d8ce9d 100644 --- a/journal/20230624.org +++ b/journal/20230624.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Saturday, 24 June 2023 ** 14:06 diff --git a/journal/20230625.org b/journal/20230625.org index 2294a66..bc5a70e 100644 --- a/journal/20230625.org +++ b/journal/20230625.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Sunday, 25 June 2023 ** 13:24 diff --git a/journal/20230704.org b/journal/20230704.org index d9ce56a..544f4e6 100644 --- a/journal/20230704.org +++ b/journal/20230704.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Tuesday, 04 July 2023 ** 12:49 diff --git a/journal/20230711.org b/journal/20230711.org index cfa1ae5..42e190f 100644 --- a/journal/20230711.org +++ b/journal/20230711.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Tuesday, 11 July 2023 ** 16:00 diff --git a/journal/20231208.org b/journal/20231208.org index 3c207bc..c373230 100644 --- a/journal/20231208.org +++ b/journal/20231208.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Friday, 08 December 2023 ** 17:31 diff --git a/journal/20231209.org b/journal/20231209.org index 419f2a1..8fb95f3 100644 --- a/journal/20231209.org +++ b/journal/20231209.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Saturday, 09 December 2023 ** 18:37 diff --git a/journal/20231210.org b/journal/20231210.org index c64278a..fcf88b5 100644 --- a/journal/20231210.org +++ b/journal/20231210.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Sunday, 10 December 2023 ** 15:21 diff --git a/journal/20231213.org b/journal/20231213.org index 376f61f..534cf0d 100644 --- a/journal/20231213.org +++ b/journal/20231213.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Wednesday, 13 December 2023 ** 14:06 diff --git a/journal/20231214.org b/journal/20231214.org index bfd05b1..e9b6176 100644 --- a/journal/20231214.org +++ b/journal/20231214.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Thursday, 14 December 2023 ** 13:46 diff --git a/journal/20231215.org b/journal/20231215.org index 9be750e..f1282b0 100644 --- a/journal/20231215.org +++ b/journal/20231215.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Friday, 15 December 2023 ** 13:31 diff --git a/journal/20231217.org b/journal/20231217.org index 6a70d9e..deacd60 100644 --- a/journal/20231217.org +++ b/journal/20231217.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Sunday, 17 December 2023 ** 23:21 diff --git a/journal/20231220.org b/journal/20231220.org index 8605381..50ef853 100644 --- a/journal/20231220.org +++ b/journal/20231220.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Wednesday, 20 December 2023 ** 16:35 diff --git a/journal/20240110.org b/journal/20240110.org index 86465ca..a5e4b47 100644 --- a/journal/20240110.org +++ b/journal/20240110.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Wednesday, 10 January 2024 ** 16:39 diff --git a/journal/20240123.org b/journal/20240123.org index d86dc5b..960fae0 100644 --- a/journal/20240123.org +++ b/journal/20240123.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Tuesday, 23 January 2024 ** 02:13 diff --git a/journal/20240124.org b/journal/20240124.org index d234bd7..0b5ca2c 100644 --- a/journal/20240124.org +++ b/journal/20240124.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Wednesday, 24 January 2024 ** 13:43 diff --git a/journal/20240125.org b/journal/20240125.org index 7b6d88a..5b8becf 100644 --- a/journal/20240125.org +++ b/journal/20240125.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Thursday, 25 January 2024 ** 12:01 diff --git a/journal/20240126.org b/journal/20240126.org index 71de3d1..77b6f23 100644 --- a/journal/20240126.org +++ b/journal/20240126.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Friday, 26 January 2024 ** 16:56 diff --git a/journal/20240127.org b/journal/20240127.org index d3cf67d..bc00cc6 100644 --- a/journal/20240127.org +++ b/journal/20240127.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Saturday, 27 January 2024 ** 23:27 diff --git a/journal/20240128.org b/journal/20240128.org index 8087d4b..70068d7 100644 --- a/journal/20240128.org +++ b/journal/20240128.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Sunday, 28 January 2024 ** 22:09 diff --git a/journal/20240205.org b/journal/20240205.org index 46811ea..3419df3 100644 --- a/journal/20240205.org +++ b/journal/20240205.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Monday, 05 February 2024 ** 16:39 diff --git a/journal/20240210.org b/journal/20240210.org index c7880e9..9bc55d1 100644 --- a/journal/20240210.org +++ b/journal/20240210.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Saturday, 10 February 2024 ** 22:09 diff --git a/journal/20240226.org b/journal/20240226.org index 2f218b3..3008e87 100644 --- a/journal/20240226.org +++ b/journal/20240226.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Monday, 26 February 2024 ** 18:54 diff --git a/journal/20240228.org b/journal/20240228.org index faa7394..b460e61 100644 --- a/journal/20240228.org +++ b/journal/20240228.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Wednesday, 28 February 2024 ** 21:03 diff --git a/journal/20240229.org b/journal/20240229.org index a4cc59c..73a7183 100644 --- a/journal/20240229.org +++ b/journal/20240229.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Thursday, 29 February 2024 ** 15:24 diff --git a/journal/20240301.org b/journal/20240301.org index 78169f7..ef2e953 100644 --- a/journal/20240301.org +++ b/journal/20240301.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Friday, 01 March 2024 ** 16:44 diff --git a/journal/20240306.org b/journal/20240306.org index fd866d0..f6bf426 100644 --- a/journal/20240306.org +++ b/journal/20240306.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Wednesday, 06 March 2024 ** 16:18 diff --git a/journal/20240309.org b/journal/20240309.org index 2ce4f32..7e1222e 100644 --- a/journal/20240309.org +++ b/journal/20240309.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Saturday, 09 March 2024 ** 19:04 diff --git a/journal/20240310.org b/journal/20240310.org index 3f38f95..7ee29b2 100644 --- a/journal/20240310.org +++ b/journal/20240310.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Sunday, 10 March 2024 ** 23:02 diff --git a/journal/20240311.org b/journal/20240311.org index da949a1..38753b8 100644 --- a/journal/20240311.org +++ b/journal/20240311.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Monday, 11 March 2024 ** 22:30 diff --git a/journal/20240312.org b/journal/20240312.org index b061ced..f69056c 100644 --- a/journal/20240312.org +++ b/journal/20240312.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Tuesday, 12 March 2024 ** 11:58 diff --git a/journal/20240313.org b/journal/20240313.org index fc14975..b395279 100644 --- a/journal/20240313.org +++ b/journal/20240313.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Wednesday, 13 March 2024 ** 17:38 diff --git a/journal/20240314.org b/journal/20240314.org index 3356a44..64d6005 100644 --- a/journal/20240314.org +++ b/journal/20240314.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Thursday, 14 March 2024 ** 15:13 diff --git a/journal/20240315.org b/journal/20240315.org index 0c4d8d1..1c7dce3 100644 --- a/journal/20240315.org +++ b/journal/20240315.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Friday, 15 March 2024 ** 16:56 diff --git a/journal/20240316.org b/journal/20240316.org index 1fbc70e..5ba4e7c 100644 --- a/journal/20240316.org +++ b/journal/20240316.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Saturday, 16 March 2024 ** 18:27 diff --git a/journal/20240317.org b/journal/20240317.org index 0424275..2062123 100644 --- a/journal/20240317.org +++ b/journal/20240317.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Sunday, 17 March 2024 ** 14:07 diff --git a/journal/20240318.org b/journal/20240318.org index 01da2e4..aa54597 100644 --- a/journal/20240318.org +++ b/journal/20240318.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Monday, 18 March 2024 ** 00:14 diff --git a/journal/20240319.org b/journal/20240319.org index 8d7b3fe..ba9f739 100644 --- a/journal/20240319.org +++ b/journal/20240319.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Tuesday, 19 March 2024 ** 17:02 diff --git a/journal/20240321.org b/journal/20240321.org index fe2809a..77ae973 100644 --- a/journal/20240321.org +++ b/journal/20240321.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Thursday, 21 March 2024 ** 14:22 diff --git a/journal/20240323.org b/journal/20240323.org index fd03eb0..44206cf 100644 --- a/journal/20240323.org +++ b/journal/20240323.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Saturday, 23 March 2024 ** 17:47 diff --git a/journal/20240324.org b/journal/20240324.org index 51ab170..a760224 100644 --- a/journal/20240324.org +++ b/journal/20240324.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Sunday, 24 March 2024 ** 16:11 diff --git a/journal/20240329.org b/journal/20240329.org index 6633945..633b959 100644 --- a/journal/20240329.org +++ b/journal/20240329.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Friday, 29 March 2024 ** 16:52 diff --git a/journal/20240330.org b/journal/20240330.org index 4ed2db1..687f84f 100644 --- a/journal/20240330.org +++ b/journal/20240330.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Saturday, 30 March 2024 ** 12:48 diff --git a/journal/20240404.org b/journal/20240404.org index f24095e..e2cac6c 100644 --- a/journal/20240404.org +++ b/journal/20240404.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Thursday, 04 April 2024 ** 21:33 diff --git a/journal/20240416.org b/journal/20240416.org index 2d75e29..b6be96e 100644 --- a/journal/20240416.org +++ b/journal/20240416.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Tuesday, 16 April 2024 ** 10:38 diff --git a/journal/20240502.org b/journal/20240502.org index 9f1f060..cd7006e 100644 --- a/journal/20240502.org +++ b/journal/20240502.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Thursday, 02 May 2024 ** 23:28 diff --git a/journal/20240503.org b/journal/20240503.org index 514afa0..0390425 100644 --- a/journal/20240503.org +++ b/journal/20240503.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Friday, 03 May 2024 ** 18:34 diff --git a/journal/20240510.org b/journal/20240510.org index ade88a2..bbcf694 100644 --- a/journal/20240510.org +++ b/journal/20240510.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Friday, 10 May 2024 ** 16:04 diff --git a/journal/20240512.org b/journal/20240512.org index a23ad18..bb70cd8 100644 --- a/journal/20240512.org +++ b/journal/20240512.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Sunday, 12 May 2024 ** 12:46 diff --git a/journal/20240519.org b/journal/20240519.org index c8f8fa3..2fd0073 100644 --- a/journal/20240519.org +++ b/journal/20240519.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Sunday, 19 May 2024 ** 20:07 diff --git a/journal/20240524.org b/journal/20240524.org index 14608fd..8dafc2d 100644 --- a/journal/20240524.org +++ b/journal/20240524.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Friday, 24 May 2024 ** 14:07 diff --git a/journal/20240530.org b/journal/20240530.org index cf5e2da..0a7e277 100644 --- a/journal/20240530.org +++ b/journal/20240530.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Thursday, 30 May 2024 ** 00:49 diff --git a/journal/20240531.org b/journal/20240531.org index 6cad1aa..216e4e1 100644 --- a/journal/20240531.org +++ b/journal/20240531.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Friday, 31 May 2024 ** 03:42 diff --git a/journal/20240601.org b/journal/20240601.org index 5321a40..8a89edc 100644 --- a/journal/20240601.org +++ b/journal/20240601.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Saturday, 01 June 2024 ** 11:23 diff --git a/journal/20240602.org b/journal/20240602.org index 49f748f..0f10c4a 100644 --- a/journal/20240602.org +++ b/journal/20240602.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Sunday, 02 June 2024 ** 12:35 diff --git a/journal/20240605.org b/journal/20240605.org index b6dcdd5..583140f 100644 --- a/journal/20240605.org +++ b/journal/20240605.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Wednesday, 05 June 2024 ** 11:23 diff --git a/journal/20240610.org b/journal/20240610.org index ad2bd70..7f11b98 100644 --- a/journal/20240610.org +++ b/journal/20240610.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Monday, 10 June 2024 ** 18:44 diff --git a/journal/20240924.org b/journal/20240924.org index b7acdf6..db55b50 100644 --- a/journal/20240924.org +++ b/journal/20240924.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Tuesday, 24 September 2024 ** 00:14 diff --git a/journal/20241230.org b/journal/20241230.org index 517c519..12a0e44 100644 --- a/journal/20241230.org +++ b/journal/20241230.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Monday, 30 December 2024 ** 19:41 diff --git a/journal/20250102.org b/journal/20250102.org index 1cbccb9..28277e9 100644 --- a/journal/20250102.org +++ b/journal/20250102.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Thursday, 02 January 2025 Ainslie is coming to my house today, and winter break is almost over. I'm currently trying to do diff --git a/journal/20250103.org b/journal/20250103.org index 338ad7c..29fc517 100644 --- a/journal/20250103.org +++ b/journal/20250103.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Friday, 03 January 2025 ** 15:52 diff --git a/journal/20250106.org b/journal/20250106.org index c6be666..4f220d1 100644 --- a/journal/20250106.org +++ b/journal/20250106.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Monday, 06 January 2025 ** 20:54 diff --git a/journal/20250108.org b/journal/20250108.org index 4239671..836baf1 100644 --- a/journal/20250108.org +++ b/journal/20250108.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Wednesday, 08 January 2025 ** 12:30 diff --git a/journal/20250111.org b/journal/20250111.org index c50aeb9..d4f4a1a 100644 --- a/journal/20250111.org +++ b/journal/20250111.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Saturday, 11 January 2025 ** 02:21 diff --git a/journal/20250112.org b/journal/20250112.org index 8ea1936..5c73783 100644 --- a/journal/20250112.org +++ b/journal/20250112.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Sunday, 12 January 2025 ** 21:36 diff --git a/journal/20250116.org b/journal/20250116.org index e602920..c65ed62 100644 --- a/journal/20250116.org +++ b/journal/20250116.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Thursday, 16 January 2025 ** 19:18 diff --git a/journal/20250119.org b/journal/20250119.org index 7f04926..2702924 100644 --- a/journal/20250119.org +++ b/journal/20250119.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Sunday, 19 January 2025 ** 11:49 diff --git a/journal/20250123.org b/journal/20250123.org index 002a61d..8ab2370 100644 --- a/journal/20250123.org +++ b/journal/20250123.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Thursday, 23 January 2025 ** 17:09 diff --git a/journal/20250201.org b/journal/20250201.org index fbf1975..7c4f4ca 100644 --- a/journal/20250201.org +++ b/journal/20250201.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Saturday, 01 February 2025 ** 19:30 diff --git a/journal/20250203.org b/journal/20250203.org index 81d1177..7d6d93a 100644 --- a/journal/20250203.org +++ b/journal/20250203.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Monday, 03 February 2025 ** 03:00 diff --git a/journal/20250211.org b/journal/20250211.org index 481fc5d..2b7a662 100644 --- a/journal/20250211.org +++ b/journal/20250211.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Tuesday, 11 February 2025 ** 04:00 diff --git a/journal/20250214.org b/journal/20250214.org index 269cd16..26ef1c1 100644 --- a/journal/20250214.org +++ b/journal/20250214.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Friday, 14 February 2025 ** 20:12 diff --git a/journal/20250218.org b/journal/20250218.org index 738607e..dc9983e 100644 --- a/journal/20250218.org +++ b/journal/20250218.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Tuesday, 18 February 2025 ** 01:21 diff --git a/journal/20250220.org b/journal/20250220.org index c2b9cf3..9aa7755 100644 --- a/journal/20250220.org +++ b/journal/20250220.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Thursday, 20 February 2025 ** 22:06 diff --git a/journal/20250222.org b/journal/20250222.org index 77cc8b5..4f1793a 100644 --- a/journal/20250222.org +++ b/journal/20250222.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Saturday, 22 February 2025 ** 02:39 diff --git a/journal/20250302.org b/journal/20250302.org index aa21e68..b2d367c 100644 --- a/journal/20250302.org +++ b/journal/20250302.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Sunday, 02 March 2025 ** 03:51 diff --git a/journal/20250305.org b/journal/20250305.org index 646fec2..345dab4 100644 --- a/journal/20250305.org +++ b/journal/20250305.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Wednesday, 05 March 2025 ** 03:42 diff --git a/journal/20250308.org b/journal/20250308.org index 91dfdca..b2e9eb8 100644 --- a/journal/20250308.org +++ b/journal/20250308.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Saturday, 08 March 2025 ** 01:27 diff --git a/journal/20250310.org b/journal/20250310.org index 15e0901..180064c 100644 --- a/journal/20250310.org +++ b/journal/20250310.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Monday, 10 March 2025 ** 01:08 diff --git a/journal/20250311.org b/journal/20250311.org index 9c2a7d3..9bb031f 100644 --- a/journal/20250311.org +++ b/journal/20250311.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Tuesday, 11 March 2025 ** 00:34 diff --git a/journal/20250313.org b/journal/20250313.org index daf654e..64d62c2 100644 --- a/journal/20250313.org +++ b/journal/20250313.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Thursday, 13 March 2025 ** 09:52 diff --git a/journal/20250317.org b/journal/20250317.org index b26249b..0491b80 100644 --- a/journal/20250317.org +++ b/journal/20250317.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Monday, 17 March 2025 ** 01:43 diff --git a/journal/20250321.org b/journal/20250321.org index c280b26..958c729 100644 --- a/journal/20250321.org +++ b/journal/20250321.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Friday, 21 March 2025 ** 04:27 diff --git a/journal/20250602.org b/journal/20250602.org index 4f7114d..4d70a8b 100644 --- a/journal/20250602.org +++ b/journal/20250602.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Monday, 02 June 2025 ** 20:37 diff --git a/journal/20250626.org b/journal/20250626.org index 5302955..b7d27f3 100644 --- a/journal/20250626.org +++ b/journal/20250626.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Thursday, 26 June 2025 ** 23:16 diff --git a/journal/20250703.org b/journal/20250703.org index fce34c7..f7d455b 100644 --- a/journal/20250703.org +++ b/journal/20250703.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Thursday, 03 July 2025 ** 20:05 diff --git a/journal/20250720.org b/journal/20250720.org index 5315dda..5c0c22a 100644 --- a/journal/20250720.org +++ b/journal/20250720.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Sunday, 20 July 2025 ** 21:21 diff --git a/journal/20250723.org b/journal/20250723.org index 7b00356..578f70c 100644 --- a/journal/20250723.org +++ b/journal/20250723.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Wednesday, 23 July 2025 ** 23:15 diff --git a/journal/20250826.org b/journal/20250826.org index 3347956..4878180 100644 --- a/journal/20250826.org +++ b/journal/20250826.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Tuesday, 26 August 2025 ** 03:10 diff --git a/journal/20250908.org b/journal/20250908.org index 3ed11d7..f6b8bca 100644 --- a/journal/20250908.org +++ b/journal/20250908.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Monday, 08 September 2025 ** 04:34 diff --git a/journal/20250909.org b/journal/20250909.org index 17c2f68..eb087cd 100644 --- a/journal/20250909.org +++ b/journal/20250909.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Tuesday, 09 September 2025 ** 02:39 diff --git a/journal/20250912.org b/journal/20250912.org index 60eeaaa..46e289f 100644 --- a/journal/20250912.org +++ b/journal/20250912.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Friday, 12 September 2025 ** 23:46 diff --git a/journal/20250914.org b/journal/20250914.org index 893d33e..8815db9 100644 --- a/journal/20250914.org +++ b/journal/20250914.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Sunday, 14 September 2025 ** 02:17 diff --git a/journal/20250915.org b/journal/20250915.org index 57e2dfe..09a72bc 100644 --- a/journal/20250915.org +++ b/journal/20250915.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Monday, 15 September 2025 ** 01:19 diff --git a/journal/20250916.org b/journal/20250916.org index 62afc7e..5c6ff8b 100644 --- a/journal/20250916.org +++ b/journal/20250916.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Tuesday, 16 September 2025 ** 03:13 diff --git a/journal/20250917.org b/journal/20250917.org index 8833c07..353e394 100644 --- a/journal/20250917.org +++ b/journal/20250917.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Wednesday, 17 September 2025 ** 03:39 diff --git a/journal/20250924.org b/journal/20250924.org index 275a06d..86aec8a 100644 --- a/journal/20250924.org +++ b/journal/20250924.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Wednesday, 24 September 2025 ** 07:08 diff --git a/journal/20250928.org b/journal/20250928.org index eb8dd4f..1ba3781 100644 --- a/journal/20250928.org +++ b/journal/20250928.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Sunday, 28 September 2025 ** 20:51 diff --git a/journal/20260129.org b/journal/20260129.org index 9166414..c5ee0a1 100644 --- a/journal/20260129.org +++ b/journal/20260129.org @@ -2,9 +2,6 @@ #+STARTUP: showeverything #+DESCRIPTION: My daily journal entry #+AUTHOR: Preston Pan -#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../style.css" /> -#+html_head: <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> -#+html_head: <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> #+options: broken-links:t * Thursday, 29 January 2026 ** 16:34 diff --git a/journal/20260314.org b/journal/20260314.org new file mode 100644 index 0000000..c10aee1 --- /dev/null +++ b/journal/20260314.org @@ -0,0 +1,14 @@ +#+TITLE: Daily Journal +#+STARTUP: showeverything +#+DESCRIPTION: My daily journal entry +#+AUTHOR: Preston Pan +#+date: +#+options: broken-links:t +* Saturday, 14 March 2026 +** 02:12 +I've started journaling again because I just realized that this feature existed. Honestly, it's pretty +cool that this even exists. Not just the journaling feature (which I didn't make obviously but it's cool) +but also my website and my entire CI pipeline that builds it. I'm pretty proud of myself for doing all that. + +For reference, for the past week or so I've been in the coal mines, writing nix and a bit of emacs-lisp code +in order to build my website and do a whole bunch of other things. diff --git a/journal/index.org b/journal/index.org index 1e17d37..dde02a2 100644 --- a/journal/index.org +++ b/journal/index.org @@ -5,13 +5,6 @@ #+date: <2023-06-09 Fri> #+language: en #+OPTIONS: broken-links:t -#+html_head: <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> -#+html_head: <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> -#+html_head: <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> -#+html_head: <link rel="manifest" href="/site.webmanifest"> -#+html_head: <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"> -#+html_head: <meta name="msapplication-TileColor" content="#da532c"> -#+html_head: <meta name="theme-color" content="#ffffff"> * Introduction This is my journal. It's basically my everyday life, or at least the part that I can make public (not many personal details although there will be some). I will also be posting some TODOs that diff --git a/nix b/nix -Subproject 64773f043d24d75e8d070393c965f457135c349 +Subproject 71a46de1309a6c496ecab5ca84a1a4ba6d0f675 diff --git a/tests/ci-build-stage-two.el b/tests/ci-build-stage-two.el new file mode 100644 index 0000000..3ab5c91 --- /dev/null +++ b/tests/ci-build-stage-two.el @@ -0,0 +1,47 @@ +(princ "STEP 2: init.el.\n" (quote external-debugging-output)) + +(setq org-id-track-globally t) + +(princ "STEP 3: after org roam\n" (quote external-debugging-output)) + +(setq term-file-prefix nil) + +(princ "STEP 4: after org roam\n" (quote external-debugging-output)) + +(force-mode-line-update) + +(setq org-html-link-use-abs-url nil) +(setq default-directory (expand-file-name "~/monorepo")) +(setq org-html-link-use-abs-url nil) +(setq org-html-link-org-files-as-html t) + +(require (quote htmlize)) +(require (quote nix-mode)) + +(setq org-html-htmlize-output-type (quote css)) + +(princ "STEP 5: before catppuccin\n" (quote external-debugging-output)) + +(require 'catppuccin-theme) +(setq catppuccin-flavor 'mocha) +(load-theme 'catppuccin t) + +(defun my-ci-force-fontification () + "Ensure the buffer is fully colorized before htmlize touches it." + (font-lock-ensure) + (font-lock-flush) + (font-lock-ensure)) + +(add-hook 'org-publish-before-export-hook #'my-ci-force-fontification) + +(face-spec-recalc 'default (selected-frame)) +(when (fboundp 'redisplay) (redisplay t)) + +(princ (format "THEME CHECK - Default background: %s\n" + (face-attribute 'default :background)) + 'external-debugging-output) + +(princ "STEP 6: before publish-all\n" (quote external-debugging-output)) + +(org-publish-all t) +(org-publish-all nil) diff --git a/tests/ci-build.el b/tests/ci-build.el new file mode 100644 index 0000000..f72eb02 --- /dev/null +++ b/tests/ci-build.el @@ -0,0 +1,43 @@ +(setq inhibit-startup-screen t) +(setq inhibit-startup-message t) +(setq enable-local-variables :all) + +(defalias (quote yes-or-no-p) (lambda (&rest args) t)) +(defalias (quote y-or-n-p) (lambda (&rest args) t)) + +(setq message-log-max t) +(setq standard-output (quote external-debugging-output)) + +(princ "STEP 0: tf\n" (quote external-debugging-output)) + +(setq noninteractive t) +(setq system-email "lol@troll.com") +(setq system-username "ci-runner") +(setq system-fullname "Preston Pan") +(setq system-gpgkey "00000000") +(defun package-vc-install (&rest args) (message "blocked package-vc-install for %s" args)) +(defun package-vc--unpack (&rest args) nil) +(setq package-archives nil) +(setq use-package-always-ensure nil) +(setq package-vc-selected-packages nil) + +(defalias (quote scroll-bar-mode) (quote ignore)) +(defalias (quote tool-bar-mode) (quote ignore)) +(defalias (quote menu-bar-mode) (quote ignore)) + +(provide (quote lean4-mode)) +(provide (quote irony-mode)) +(provide (quote irony)) +(defalias (quote irony-cdb-autosetup-compile-options) (quote ignore)) + +(setq org-latex-pdf-process '("xelatex -shell-escape -interaction nonstopmode %f")) +(setq org-startup-with-latex-preview nil) +(setq org-startup-indented nil) +(setq org-export-with-latex t) +(setq org-confirm-babel-evaluate nil) +(setq load-prefer-newer t) +(setq gc-cons-threshold 100000000) +(setq vc-handled-backends nil) +(setq make-backup-files nil auto-save-default nil create-lockfiles nil) + +(princ "STEP 1: init.el?\n" (quote external-debugging-output)) diff --git a/tests/ci-runner.el b/tests/ci-runner.el new file mode 100644 index 0000000..5b3397f --- /dev/null +++ b/tests/ci-runner.el @@ -0,0 +1,9 @@ +(condition-case err + (progn + (load-file (expand-file-name "tests/ci-build.el" default-directory)) + (load-file (expand-file-name "init.el" (getenv "NIXMACS_DIR"))) + (load-file (expand-file-name "tests/ci-build-stage-two.el" default-directory)) + (kill-emacs 0)) + (error + (princ (format "\nFATAL CI ERROR: %s\n" (error-message-string err)) 'external-debugging-output) + (kill-emacs 1))) |
