Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions _CV/CV.typ
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,8 @@ _Siebel Scholar, Class of 2014_ #h(1fr) 2013

#let re = regex("\[([0-9]+)\]")
#show re: it => {
let d = 53 - int(it.text.match(re).captures.at(0))
let num = int(it.text.match(re).captures.at(0))
let d = 56 - num
[#sym.bracket.l#d#sym.bracket.r]
}

Expand Down Expand Up @@ -313,7 +314,7 @@ Massachusetts Institute of Technology
location: "UCLA, Department of Bioengineering",
date: "2018–2024",
description: [
- Lab-based introduction to basics of experimental design and laboratory work in bioengineering
- Lab-based introduction to basics of experimental design and laboratory work in bioengineering
])

#job(
Expand All @@ -331,7 +332,7 @@ Massachusetts Institute of Technology
location: "UCLA, Molecular, Cell, and Developmental Biology",
date: "2021, 2022",
description: [
- Led discussion of a paper from the lab used as a project within the class
- Led discussion of a paper from the lab used as a project within the class
])

#job(
Expand Down Expand Up @@ -398,10 +399,10 @@ Massachusetts Institute of Technology
]

#for pres in presentations [
#let parsed_date = toml.decode("date = " + pres.date).date
#let parsed_date = toml(bytes("date = " + pres.date)).date

#format_presentation(pres, parsed_date)

#v(0.5em)
]

Expand Down Expand Up @@ -493,7 +494,7 @@ A.S. Meyer. "Altering cytokine specificity through binding valency." U.S. patent

Miller, M.A., M.J. Oudin, A.S. Meyer, L.G. Griffith, F.B. Gertler, D.A. Lauffenburger. "Methods of Reducing Kinase Inhibitor Resistance." US patent application 14/690,001, 2015.

//
//
// THESIS COMMITTEE MEMBERSHIP

#let data = yaml("../_data/thesis-committees.yaml")
Expand Down
15 changes: 15 additions & 0 deletions _data/talks.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
presentations:
- venue: UCLA, Biostatistics
type: Invited Dept. Seminar
date: 2026-02-04
title: "Building an integrative view of immunity with data tensors"

- venue: QCBio Research Forum
type: Invited Oral Presentation
date: 2025-12-09
title: "Optimizing the selective delivery of cytokines: what and where"

- venue: NIAID Maintaining Immunity After Immunization Program Meeting
type: Invited Oral Presentation
date: 2025-10-30
title: "Tensor analysis of serological responses to SARS-CoV-2 vaccination in transplant recipients"

- venue: "Society for Mathematical Biology Annual Meeting (Canada)"
type: Selected Mini-Symposium
date: 2025-07-14
Expand Down