Skip to content

Commit 9fb661d

Browse files
committed
Finish all content
1 parent d83b752 commit 9fb661d

File tree

4 files changed

+65
-64
lines changed

4 files changed

+65
-64
lines changed

src/content/blog/resume.md

Lines changed: 0 additions & 60 deletions
This file was deleted.

src/content/config.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
import { defineCollection, z } from "astro:content";
22
import { glob, file } from "astro/loaders";
33

4+
const resume = defineCollection({
5+
loader: glob({
6+
pattern: "**/*.md",
7+
base: "./src/content/resume"
8+
}),
9+
schema: z.object({
10+
title: z.string(),
11+
description: z.string(),
12+
})
13+
});
14+
415
const blog = defineCollection({
516
loader: glob({
617
pattern: "**/*.{md,mdx}",
@@ -107,4 +118,5 @@ export const collections = {
107118
site,
108119
notes,
109120
bookmarks,
121+
resume,
110122
};

src/content/resume/resume.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
---
2+
title: "Mini Resume"
3+
description: "A brief overview of my education, experiences, projects, and skills."
4+
tags: []
5+
---
6+
7+
Here is a brief overview of my education, experiences, projects, and skills. Contact me on <a href="https://linkedin.com/in/anncli" target="_blank" rel="noopener noreferrer">LinkedIn</a> for my full resume.
8+
9+
## Education
10+
11+
<small>Sep 2023 - May 2027</small><br>
12+
**Columbia University** | B.S. Computer Science<br>
13+
<u>Relevant Coursework</u>: Data Structures and Algorithms, Operating Systems, Artificial Intelligence, Advanced (Systems) Programming in C, Fundamentals of Computer Systems, Intro to Databases, Linear Algebra and Probability, Multivariable Calculus, Discrete Math<br>
14+
<i><a href="./blog/fun-courses">Check out other interesting courses I've taken!</a></i><br>
15+
<u>Extracurricular</u>: Women in CS (Board Member), Girls Who Code (Board Member), Columbia Robotics Club (AV Perception Lead), Undergraduate CS Research Fair (Organizer)
16+
17+
<small>Jan 2025 - June 2025</small><br>
18+
**Universidad Carlos III de Madrid** | International Exchange Student<br>
19+
Coursework in Computer Science and Spanish Culture<br>
20+
<i><a href="./blog/study-abroad">Check out my study abroad page!</a></i>
21+
22+
23+
## Experience
24+
25+
<small>June 2025 - Aug 2025</small><br>
26+
**NVIDIA** | Software Engineer Intern
27+
28+
<small>May 2024 - Aug 2024</small><br>
29+
**NVIDIA** | Software Engineer Intern (Ignite)
30+
31+
<small>Feb 2024 - Apr 2024</small><br>
32+
**Teal Omics** | AI/ML Engineer Intern
33+
34+
<small>Jul 2023 - Aug 2023</small><br>
35+
**Jane Street** | Academy of Math and Programming Scholar
36+
37+
### <small>Programs/Events Attended</small>
38+
SIG Women's Discovery Day, SIG First-Year Discovery Day, Morgan Stanley First Year Enhancement Program Participant (Quantitative Finance Track), Harvard Undergraduate Trading Competition.
39+
40+
41+
## Projects
42+
See my <a href="./projects">projects page</a> and <a href="https://github.com/anncli" target="_blank" rel="noopener noreferrer">GitHub</a>.
43+
44+
45+
## Skills
46+
47+
<u>Programming Languages</u>: Python, C++, C, Java<br>
48+
<u>Other Programming/Markup Languages I'm Familiar With</u>: HTML/CSS, Assembly, Shell Script, SQL
49+
<u>OS/Tools/Libraries</u>: Linux, Unix, Git, Docker, ROS 2, pandas, NumPy, React, Fio, Pytest, ELK, Google Cloud Platform

src/pages/experience/index.astro

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
22
import BaseLayout from "../../components/layout/BaseLayout.astro";
33
import { getEntry, render } from "astro:content";
4-
const resume = await getEntry("blog", "resume");
4+
const resume = await getEntry("resume", "resume");
55
const { Content } = resume ? await render(resume) : { Content: null };
66
---
77
<BaseLayout title={(resume && resume.data && resume.data.title) ? resume.data.title : "Experience"} description={(resume && resume.data && resume.data.description) ? resume.data.description : "All experiences"}>
88
<main>
99
<article class="post">
1010
<header>
1111
<h1>{(resume && resume.data && resume.data.title) ? resume.data.title : "Experience"}</h1>
12-
{(resume && resume.data && resume.data.publishedAt) && (
13-
<time datetime={resume.data.publishedAt}>
14-
{new Date(resume.data.publishedAt).toLocaleDateString("en-US", {
12+
{(resume && resume.data && resume.data.latestUpdate) && (
13+
<time datetime={resume.data.latestUpdate}>
14+
{new Date(resume.data.latestUpdate).toLocaleDateString("en-US", {
1515
year: "numeric",
1616
month: "long",
1717
day: "numeric",

0 commit comments

Comments
 (0)