This commit is contained in:
parent
509fd14440
commit
66de827e37
5 changed files with 29 additions and 9 deletions
|
@ -8,7 +8,7 @@ const { extraFront, tags, extraBack } = Astro.props;
|
||||||
{extraFront}
|
{extraFront}
|
||||||
{
|
{
|
||||||
tags.toSorted().map((tag: string) => (
|
tags.toSorted().map((tag: string) => (
|
||||||
<a href={`/tags/${tag}`} class="tag">
|
<a href={`/tags/${tag}/`} class="tag">
|
||||||
<i class="fa fa-tag" aria-hidden="true" />
|
<i class="fa fa-tag" aria-hidden="true" />
|
||||||
<span class="text">#{tag}</span>
|
<span class="text">#{tag}</span>
|
||||||
</a>
|
</a>
|
||||||
|
|
|
@ -13,8 +13,15 @@ Hi there! :wave:
|
||||||
|
|
||||||
### Research
|
### Research
|
||||||
|
|
||||||
Currently, I'm learning about [cubical type theory][cubical]. I'll probably
|
I'm learning about [cubical type theory][cubical]!
|
||||||
write some blog posts as I learn more. My advisor is [Favonia].
|
I'll probably write some blog posts as I learn more.
|
||||||
|
|
||||||
|
For my master's thesis project, I'm investigating a mechanization of [spectral sequences] in [Cubical] [Agda].
|
||||||
|
So far, I've been primarily working through the [homotopy type theory book][HoTTBook].
|
||||||
|
|
||||||
|
[spectral sequences]: https://en.wikipedia.org/wiki/Spectral_sequence
|
||||||
|
[agda]: https://agda.readthedocs.io/en/latest/overview.html
|
||||||
|
[hottbook]: https://homotopytypetheory.org/book/
|
||||||
|
|
||||||
### University Involvement
|
### University Involvement
|
||||||
|
|
||||||
|
@ -53,8 +60,17 @@ regularly.
|
||||||
|
|
||||||
### Hobbies
|
### Hobbies
|
||||||
|
|
||||||
I love cooking, listening to music, chess, bouldering, and beer.
|
Outside of computer science, I love cooking, music, and games.
|
||||||
If you're in the Minneapolis area, let's chat!
|
In particular, I'm a huge fan of rhythm games.
|
||||||
|
|
||||||
|
Occasionally, I also like to take some time and immerse myself in some random hobby. Here are some things that I have taken interest in before:
|
||||||
|
|
||||||
|
- Chess
|
||||||
|
- Lock picking
|
||||||
|
- Bouldering
|
||||||
|
- Craft beer
|
||||||
|
|
||||||
|
If you're in the Minneapolis or Twin Cities area, let's chat!
|
||||||
|
|
||||||
[2]: https://git.mzhang.io/explore
|
[2]: https://git.mzhang.io/explore
|
||||||
[9]: setup
|
[9]: setup
|
||||||
|
|
|
@ -43,7 +43,7 @@
|
||||||
@media (prefers-color-scheme: dark) {
|
@media (prefers-color-scheme: dark) {
|
||||||
$backgroundColor: hsl(230, 20%, 16%);
|
$backgroundColor: hsl(230, 20%, 16%);
|
||||||
$textColor: #cdcdcd;
|
$textColor: #cdcdcd;
|
||||||
$linkColor: hsl(216, 82%, 75%);
|
$linkColor: hsl(211, 83%, 75%);
|
||||||
$linkHoverColor: #202749;
|
$linkHoverColor: #202749;
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
|
|
|
@ -4,6 +4,8 @@
|
||||||
--blue: #5175be;
|
--blue: #5175be;
|
||||||
--module: purple;
|
--module: purple;
|
||||||
--inductive-constructor: #008b00;
|
--inductive-constructor: #008b00;
|
||||||
|
--comment: #b22222;
|
||||||
|
--string: var(--comment);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
@media (prefers-color-scheme: dark) {
|
||||||
|
@ -13,12 +15,13 @@
|
||||||
--blue: #9999FF;
|
--blue: #9999FF;
|
||||||
--module: hsl(276, 66%, 69%);
|
--module: hsl(276, 66%, 69%);
|
||||||
--inductive-constructor: #32bb32;
|
--inductive-constructor: #32bb32;
|
||||||
|
--comment: hsl(0, 78%, 66%);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Aspects. */
|
/* Aspects. */
|
||||||
.Agda .Comment {
|
.Agda .Comment {
|
||||||
color: #B22222
|
color: var(--comment);
|
||||||
}
|
}
|
||||||
|
|
||||||
.Agda .Background {}
|
.Agda .Background {}
|
||||||
|
@ -32,7 +35,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.Agda .String {
|
.Agda .String {
|
||||||
color: #B22222
|
color: var(--string);
|
||||||
}
|
}
|
||||||
|
|
||||||
.Agda .Number {
|
.Agda .Number {
|
||||||
|
|
|
@ -3,6 +3,7 @@ footer {
|
||||||
|
|
||||||
margin-top: 24px;
|
margin-top: 24px;
|
||||||
margin-bottom: 40px;
|
margin-bottom: 40px;
|
||||||
|
padding-bottom: 30px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
||||||
font-size: 0.85rem;
|
font-size: 0.85rem;
|
||||||
|
|
Loading…
Reference in a new issue