Fix typos
This commit is contained in:
parent
d545e3b85f
commit
51d2614938
4 changed files with 11 additions and 6 deletions
BIN
images/favicon.ico
Normal file
BIN
images/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 24 KiB |
|
@ -1,6 +1,6 @@
|
||||||
* Yiyun Liu
|
* Yiyun Liu
|
||||||
- E-mail :: [[mailto:liuyiyun@seas.upenn.edu][liuyiyun@seas.upenn.edu]]
|
- E-mail :: [[mailto:liuyiyun@seas.upenn.edu][liuyiyun@seas.upenn.edu]]
|
||||||
- Social :: [[https://bsky.app/profile/ohqo.bsky.social][ohqo.bsky.social@BluesKy]]
|
- Social :: [[https://bsky.app/profile/ohqo.bsky.social][ohqo.bsky.social@Bluesky]]
|
||||||
- Blog :: [[https://blog.electriclam.com][blog.electriclam.com]]
|
- Blog :: [[https://blog.electriclam.com][blog.electriclam.com]]
|
||||||
- Github :: [[https://github.com/yiyunliu][yiyunliu]]
|
- Github :: [[https://github.com/yiyunliu][yiyunliu]]
|
||||||
|
|
||||||
|
@ -30,11 +30,13 @@ Redex.
|
||||||
- Internalizing Indistinguishability with Dependent Types (*POPL24*, [[file:papers/dcoi.pdf][paper]]) ::
|
- Internalizing Indistinguishability with Dependent Types (*POPL24*, [[file:papers/dcoi.pdf][paper]]) ::
|
||||||
*Yiyun Liu*, Jonathan Chan, Jessica Shi, Stephanie Weirich
|
*Yiyun Liu*, Jonathan Chan, Jessica Shi, Stephanie Weirich
|
||||||
|
|
||||||
- Dependently-Typed Programming with Logical Equality Reflection (*ICFP23*, [[file:papers/systemde.pdf][paper]],[[https://doi.org/10.1145/3607852][doi]]) ::
|
- Dependently-Typed Programming with Logical Equality Reflection
|
||||||
|
(*ICFP23*, [[file:papers/systemde.pdf][paper]], [[https://doi.org/10.1145/3607852][doi]]) ::
|
||||||
*Yiyun Liu*, Stephanie Weirich
|
*Yiyun Liu*, Stephanie Weirich
|
||||||
|
|
||||||
- A Formal Model of Checked C (*CSF22*, [[file:papers/checkedc.pdf][paper]], [[https://doi.ieeecomputersociety.org/10.1109/CSF54842.2022.9919657][doi]]) ::
|
- A Formal Model of Checked C (*CSF22*, [[file:papers/checkedc.pdf][paper]], [[https://doi.ieeecomputersociety.org/10.1109/CSF54842.2022.9919657][doi]]) ::
|
||||||
Liyi Li, *Yiyun Liu*, Deena Postol, Leonidas Lampropoulos, David Van Horn, Michael Hicks
|
Liyi Li, *Yiyun Liu*, Deena Postol, Leonidas Lampropoulos, David Van Horn, Michael Hicks
|
||||||
|
|
||||||
- Verifying Replicated Data Types with Typeclass Refinements in Liquid Haskell (*OOPSLA20*, [[file:papers/vrdt.pdf][paper]],[[https://doi.org/10.1145/3428284][doi]]) ::
|
- Verifying Replicated Data Types with Typeclass Refinements in Liquid
|
||||||
|
Haskell (*OOPSLA20*, [[file:papers/vrdt.pdf][paper]], [[https://doi.org/10.1145/3428284][doi]]) ::
|
||||||
*Yiyun Liu*, James Parker, Patrick Redmond, Lindsey Kuper, Michael Hicks, Niki Vazou
|
*Yiyun Liu*, James Parker, Patrick Redmond, Lindsey Kuper, Michael Hicks, Niki Vazou
|
||||||
|
|
5
site.hs
5
site.hs
|
@ -9,7 +9,7 @@ hakyllConfig :: Configuration
|
||||||
hakyllConfig =
|
hakyllConfig =
|
||||||
defaultConfiguration
|
defaultConfiguration
|
||||||
{ deployCommand =
|
{ deployCommand =
|
||||||
"rsync -ave \"ssh\" _site/ ohqo@192.168.50.1:/var/www/htdocs/electriclam.com --delete"
|
"rsync -ave ssh --rsync-path=/usr/bin/openrsync _site/ ohqo@192.168.50.1:/var/www/htdocs/electriclam.com --delete"
|
||||||
}
|
}
|
||||||
|
|
||||||
pandocOptions :: WriterOptions
|
pandocOptions :: WriterOptions
|
||||||
|
@ -24,6 +24,9 @@ main =
|
||||||
match "papers/*" $ do
|
match "papers/*" $ do
|
||||||
route idRoute
|
route idRoute
|
||||||
compile copyFileCompiler
|
compile copyFileCompiler
|
||||||
|
match "images/favicon.ico" $ do
|
||||||
|
route (constRoute "favicon.ico")
|
||||||
|
compile copyFileCompiler
|
||||||
match "index.org" $ do
|
match "index.org" $ do
|
||||||
route $ setExtension "html"
|
route $ setExtension "html"
|
||||||
compile $ do
|
compile $ do
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="color-scheme" content="light dark">
|
<meta name="color-scheme" content="light dark">
|
||||||
<link rel="stylesheet" href="/css/pico.min.css" type="text/css"/>
|
<link rel="stylesheet" href="/css/pico.min.css" type="text/css">
|
||||||
<title>$title$</title>
|
<title>$title$</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
Loading…
Add table
Reference in a new issue