Skip to content

Commit d8943df

Browse files
committed
deploy: plos
1 parent 362d1ec commit d8943df

8 files changed

+17
-15
lines changed

dist/assets/plos23-ext-rust.pdf

476 KB
Binary file not shown.

dist/index-6caf66c47cd01c7e.js dist/index-aa2a3d901795834f.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ async function load(module, imports) {
270270

271271
async function init(input) {
272272
if (typeof input === 'undefined') {
273-
input = new URL('index-6caf66c47cd01c7e_bg.wasm', import.meta.url);
273+
input = new URL('index-aa2a3d901795834f_bg.wasm', import.meta.url);
274274
}
275275
const imports = {};
276276
imports.wbg = {};
Binary file not shown.

dist/index.html

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<title>Arthur Lafrance</title>
44

55

6+
67
<link rel="stylesheet" href="/styles-79f24d5cc823d813.css">
78

89
<link rel="preconnect" href="https://fonts.googleapis.com">
@@ -17,7 +18,7 @@
1718
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
1819
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300&amp;display=swap" rel="stylesheet">
1920

20-
<link rel="preload" href="/index-6caf66c47cd01c7e_bg.wasm" as="fetch" type="application/wasm" crossorigin="">
21-
<link rel="modulepreload" href="/index-6caf66c47cd01c7e.js"></head>
21+
<link rel="preload" href="/index-aa2a3d901795834f_bg.wasm" as="fetch" type="application/wasm" crossorigin="">
22+
<link rel="modulepreload" href="/index-aa2a3d901795834f.js"></head>
2223
<body>
23-
<script type="module">import init from '/index-6caf66c47cd01c7e.js';init('/index-6caf66c47cd01c7e_bg.wasm');</script></body></html>
24+
<script type="module">import init from '/index-aa2a3d901795834f.js';init('/index-aa2a3d901795834f_bg.wasm');</script></body></html>

index.html

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<title>Arthur Lafrance</title>
66

77
<link data-trunk rel="copy-file" href="CNAME" />
8+
<link data-trunk rel="copy-dir" href="static/assets" data-target-path="assets/" />
89
<link data-trunk rel="css" type="text/css" href="static/styles.css" />
910

1011
<link rel="preconnect" href="https://fonts.googleapis.com">

src/content.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -11,28 +11,28 @@ pub struct Content {
1111
impl Content {
1212
pub fn new() -> Content {
1313
Content {
14-
tagline: "Software engineer. Thinking about PLs, compilers, dev infra, & systems eng. Mildly annoying Rust nerd.",
14+
tagline: "Software engineer. Mildly annoying Rust nerd. Thinking about too many things at once.",
1515
bio_links: vec![
1616
BioLink { name: "GitHub", link: "https://github.com/a-lafrance" },
1717
BioLink { name: "LinkedIn", link: "https://linkedin.com/in/a-lafrance" },
1818
],
1919
current_work: vec![
20-
Item::from("Experimenting with a variety of (you guessed it, mostly PL-related) projects"),
20+
Item::from("Returning to Meta to work on polyglot FFI compiler infra (again)"),
21+
Item::from("Trying to contribute to Rust more regularly"),
2122
Item(vec![
2223
Token::Media("Writing about music", "https://instagram.com/goodvibrations._"),
2324
Token::Text(" that inspires me (and some that doesn't)"),
2425
]),
25-
Item::from("Playing Neutral Milk Hotel & more on guitar quite poorly"),
2626
],
2727
research: vec![
2828
Item(vec![
29-
Token::Text("Extending Rust for Software Fault Isolation "),
30-
Token::Media("PLOS '23", "https://plos-workshop.org/2023"),
29+
Token::Text("Extending Rust with Support for Zero-Copy Communication "),
30+
Token::Media("PLOS '23", "assets/plos23-ext-rust.pdf"),
3131
]),
3232
],
3333
past_work: vec![
34-
Item::from("Got a BS in CS at UCI, class of 2023"),
35-
Item::from("Undergrad systems research w/ Profs. Michael Franz & Anton Burtsev"),
34+
Item::from("BS in CS, UCI class of 2023"),
35+
Item::from("Undergrad research w/ Profs. Michael Franz & Anton Burtsev"),
3636
Item::from("Compilers & infra @ Meta, summers 2021 & 2022"),
3737
Item(vec![
3838
Token::Text("Making food delivery affordable with "),

src/main.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ fn app() -> Html {
1515

1616
<Section id="these-days" title="These Days" items={ content.current_work } />
1717
<Divider />
18-
{ /* <Section id="research" title="Research" items={ content.research } />
19-
<Divider /> */ "" }
2018
<Section id="prev" title="Previously" items={ content.past_work } />
2119
<Divider />
22-
<Section id="projects" title="Some Projects" items={ content.projects } />
20+
<Section id="research" title="Research" items={ content.research } />
2321
<Divider />
24-
<Section id="resume-dump" title="Resume Dump" items={ content.resume_dump } />
22+
<Section id="projects" title="Some Projects" items={ content.projects } />
23+
{ "" /* <Divider />
24+
<Section id="resume-dump" title="Resume Dump" items={ content.resume_dump } /> */ }
2525
</div>
2626
}
2727
}

static/assets/plos23-ext-rust.pdf

476 KB
Binary file not shown.

0 commit comments

Comments
 (0)