Skip to content
Merged
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
30 changes: 30 additions & 0 deletions src/data/archive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,21 @@ export const ALL_ARCHIVE_ITEMS: ArchiveItem[] = [
},
]
},
{
date: new Date("03/25/2026"),
name: "Alarm.com Speaker",
description: "Jeff Kissick of Alarm.com discussed his role in industry and Alarm.com's internship program.",
Comment on lines +461 to +463
Copy link

Copilot AI Mar 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

new Date("03/25/2026") relies on non-ISO date parsing, which is implementation-dependent in JavaScript. The file header also states date strings are ISO (YYYY-MM-DD); consider switching this (and similar new entries) to an ISO string (e.g., "2026-03-25") or a numeric constructor to avoid cross-runtime parsing issues.

Copilot uses AI. Check for mistakes.
year: "25-26",
semester: "Spring",
entryType: "Meetings",
tags: ["Industry"],
links: [
{
name: "ACM Admin Slides",
url: new URL("https://docs.google.com/presentation/d/1O7KTj2aClio4bynG6y9isEvsKshd32CegZy5HYV9QYk/edit")
},
]
},
// Bugsmashers SP26
{
name: 'BugSmashers: C and C++',
Expand Down Expand Up @@ -503,6 +518,21 @@ export const ALL_ARCHIVE_ITEMS: ArchiveItem[] = [
}
]
},
{
name: 'BugSmashers: Quantum Computing',
semester: 'Spring',
date: new Date('03/26/2026'),
description: 'BugSmashers introduce quantum computing concepts and discuss their effects on the discipline.',
Comment on lines +523 to +525
Copy link

Copilot AI Mar 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

new Date('03/26/2026') uses a non-ISO date string, which is parsed in an implementation-dependent way by JavaScript. To align with the file header comment and avoid parsing differences across environments/timezones, prefer an ISO string ("2026-03-26") or new Date(2026, 2, 26).

Copilot uses AI. Check for mistakes.
tags: ["Talks", "Workshops"],
entryType: "Bugsmashers",
year: "25-26",
Comment on lines +521 to +528
Copy link

Copilot AI Mar 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR title suggests this change is only about adding meetings, but this hunk also adds a new Bugsmashers archive item. Either update the title/description to reflect both additions, or split the BugSmashers update into a separate PR for clearer history.

Copilot uses AI. Check for mistakes.
links: [
{
name: "Slides",
url: new URL("https://docs.google.com/presentation/d/1oChkw9y-csv7spz98Yk0rdTXEyQi-YIZ0_VHSJmUq68/edit")
}
]
},
// Misc
{
date: new Date ("February 7, 2026"),
Expand Down
Loading