-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpersonal_interests.html
145 lines (134 loc) · 7.52 KB
/
personal_interests.html
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal Interests</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<main>
<!-- Main Header -->
<header class="page-header">
<h1>Personal Interests</h1>
<h2>What else is there?</h2>
</header>
<!-- Life Goals Section -->
<section id="overall_goals" class="major-section">
<div class="lifetime-goals">
Before I die, I need to have the following completed (habits are included):
<ol>
<li>3 languages to fluency (rn I am thinking English, Japanese, Mandarin)</li>
<li>100 million in investments (every paycheck I deposit about a third into my investments, at this rate I think by at least 40 I should be complete)</li>
<li>Monthly donate to education / charities / space exploration (from the wealth, give back a significant portion. The wealth accumulation is mainly a means of creating a sustainable loop of cashflow to redirect to improve society)</li>
</ol>
</div>
<div class="end-goals">
At time of death:
<ol>
<li>Still be physically and mentally fit. This is why daily exercise, stretching, and eating habits are critical.</li>
<li>At least have some people there. Doesn't have to be a party.</li>
</ol>
</div>
</section>
<!-- Language Section -->
<section id="languages" class="major-section">
<h3>Languages</h3>
<article id="japanese" class="language-entry">
<h4>Japanese</h4>
<p>
I am quite interested in learning languages. During my undergrad I learned Japanese
and then went to 東洋大学 as a regular student. I then gave a
<a href="pictures/speech.png">speech at graduation</a> as the exchange student
representative. My favorite class was
<a href="misc_files/学習心理学 期末レポート.pdf">学習心理学</a>. The professor was
quite funny, and the content was great.
</p>
</article>
<article id="mandarin" class="language-entry">
<h4>Mandarin</h4>
<p>
By the end of Ph.D, I aim to be of a comparable level in Mandarin as in Japanese.
In order to do this, I spend about 1.5 hours every day studying Mandarin. This
consists of 1 hour of <a href="https://en.wikipedia.org/wiki/Input_hypothesis">pure
immersion</a> and about 30 minutes of
<a href="https://apps.ankiweb.net/#download">spaced repetition study</a>.
I would like to be able to read 老子 by the end of the degree.
</p>
</article>
<article id="language-general" class="language-entry">
<h4>Language in General</h4>
<p>
When in undergrad, I was quite passionate about language communities. I used to lead the
Japanese Language Table and the Japanese Cultural Association. This was the most
fun during undergrad, and I am honored to have met great people from around the world.
</p>
</article>
</section>
<!-- Personal Interests Sections -->
<div class="interests-container">
<!-- Music Section -->
<section id="music" class="interest-section">
<h3>Music</h3>
<p>
In general, jazz is my favorite genre. I like Coltrane
(<a href="https://www.youtube.com/watch?v=ll3CMgiUPuU">this</a> and
<a href="https://youtu.be/ioPRCwpB1Ak?si=sjB5jiMi8M3XpH4d">this</a>).
Other than jazz, classical is of course quite good. I also like
<a href="https://www.youtube.com/watch?v=tJBtztG-xR4">hip-hop</a>.
</p>
</section>
<!-- Books Section -->
<section id="books" class="interest-section">
<h3>Books</h3>
<p>
My favorite genre is sci-fi. This may be visible from the
<a href="books_read.html">books that I read</a>.
</p>
</section>
<!-- Exercise Section -->
<section id="exercise" class="interest-section">
<h3>Exercise</h3>
<p>
Sleep, diet and exercise. I believe that motivation and success are not some sort of
mental thing, but are direct products of how much you sleep, eat, and exercise. This
is quite important to me. I tend to wake up around ~4:00AM and go to be around ~8:00PM.
With regards to exercise, as I worry about my joints I enjoy swimming (I never knew they
had <a href="https://www.swimcloud.com/swimmer/519051/">this</a> online). However, I typically now just do weights. </p>
</section>
<!-- Entertainment Section -->
<section id="entertainment" class="interest-section">
<h3>Shows, Movies, Characters</h3>
<article id="movies" class="media-entry">
<p>
Favorite color movie is probably
<a href="https://en.wikipedia.org/wiki/Inception">Inception</a>, and favorite
black and white movie is probably
<a href="https://en.wikipedia.org/wiki/12_Angry_Men_(1957_film)">Twelve Angry Men</a>.
</p>
</article>
<article id="tv-shows" class="media-entry">
<p>
Favorite TV show is probably
<a href="https://en.wikipedia.org/wiki/A_Game_of_Pool_(The_Twilight_Zone,_1959)">The Twilight Zone</a> or
<a href="https://en.wikipedia.org/wiki/Monster_(manga)">Monster</a> (the manga
is also good).
</p>
</article>
<article id="characters" class="media-entry">
<p>
In terms of personality, I would like to be like
<a href="https://www.youtube.com/watch?v=1qOCckM6hMM">古畑任三郎</a>. He was always kind and had a good sense of humor.
</p>
</article>
</section>
</div>
<!-- Navigation Footer -->
<footer class="site-footer">
<nav>
<p><a href="index.html">Back to home</a></p>
</nav>
</footer>
</main>
</body>
</html>