aboutsummaryrefslogtreecommitdiff
path: root/journal/index.org
blob: 0a978047098febd8fdfb668debc78fceca456314 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#+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
#+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">
#+html_head: <meta name="viewport" content="width=1000; user-scalable=0;" />
* Introduction
This is my journal. It's basically my everyday life from
a technology perspective (not many personal details although
there will be some). I will also be posting some TODOs that I have
throughout time.

** Entries
@@html: <div class="links-page">@@
If you're interested, here is a list of all my journal entries:
#+begin_src shell :results output raw :exports both
#printf "@@html: <div class=\"links\">@@\n"
for f in $(ls | sort -r);
do
    if [[ "$f" == "index.org" || "$f" == "README.org" ]]; then
        continue
    fi
    printf -- "- [[file:$f][$f]]\n"
done
#printf "@@html: </div>@@\n"
#+end_src

#+RESULTS:
- [[file:20240124.org][20240124.org]]
- [[file:20240123.org][20240123.org]]
- [[file:20240110.org][20240110.org]]
- [[file:20231220.org][20231220.org]]
- [[file:20231217.org][20231217.org]]
- [[file:20231215.org][20231215.org]]
- [[file:20231214.org][20231214.org]]
- [[file:20231213.org][20231213.org]]
- [[file:20231210.org][20231210.org]]
- [[file:20231209.org][20231209.org]]
- [[file:20231208.org][20231208.org]]
- [[file:20230711.org][20230711.org]]
- [[file:20230704.org][20230704.org]]
- [[file:20230625.org][20230625.org]]
- [[file:20230624.org][20230624.org]]
- [[file:20230623.org][20230623.org]]
- [[file:20230622.org][20230622.org]]
- [[file:20230621.org][20230621.org]]
- [[file:20230620.org][20230620.org]]
- [[file:20230619.org][20230619.org]]
- [[file:20230616.org][20230616.org]]
- [[file:20230615.org][20230615.org]]
- [[file:20230614.org][20230614.org]]
- [[file:20230613.org][20230613.org]]
- [[file:20230611.org][20230611.org]]
- [[file:20230610.org][20230610.org]]
- [[file:20230609.org][20230609.org]]
@@html: </div>@@