Skip to content

Commit

Permalink
everyone project
Browse files Browse the repository at this point in the history
  • Loading branch information
ArhanChaudhary committed Jun 24, 2024
1 parent dcbb2a7 commit 59ba828
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/content/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const cubingCompetitionCollection = defineCollection({
slugOverride: z.string().optional(),
results: z.array(
z.object({
round: z.number(),
round: z.union([z.literal("SEMI-FINALS"), z.literal("FINALS"), z.number()]),
place: z.number().int(),
times: z.array(z.union([z.literal("DNF"), z.number()])).length(5),
plusTwos: z.array(z.number().int()).max(5).optional(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ slugOverride: BayAreaSpeedcubin632024
results: [
{
round: 1,
place: 43,
times: [12.38, 14.65, 15.34, 20.07, 13.25]
place: 82,
times: [14.49, 14.08, 13.54, 13.62, 11.51]
},
{
round: 2,
place: 63,
times: [15.08, 12.30, 11.52, DNF, DNF]
place: 75,
times: [14.76, 12.41, 11.51, 12.14, 14.95]
}
]
---
Expand Down
12 changes: 12 additions & 0 deletions src/pages/projects.astro
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,18 @@ import Project from "../components/Project.astro";
>
</p>
</Project>
<Project title="everyone" dateRange="June 2024">
<p>
This GitHub repository has 100,000 contributors. I'm not exaggerating or
lying, check out the link below. This project is a parody of
"everything" from npm, and I utilized the GitHub GraphQL API to collect
GitHub users and add them as contributors to the repo.
</p>
<p>
<a href="https://github.com/ArhanChaudhary/TimeWeb">GitHub repository</a
>
</p>
</Project>
<Project
title="TimeWeb"
link="https://timeweb.io/"
Expand Down

0 comments on commit 59ba828

Please sign in to comment.