-
Notifications
You must be signed in to change notification settings - Fork 2
add meetings to archive #123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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.", | ||
| 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++', | ||
|
|
@@ -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
|
||
| tags: ["Talks", "Workshops"], | ||
| entryType: "Bugsmashers", | ||
| year: "25-26", | ||
|
Comment on lines
+521
to
+528
|
||
| links: [ | ||
| { | ||
| name: "Slides", | ||
| url: new URL("https://docs.google.com/presentation/d/1oChkw9y-csv7spz98Yk0rdTXEyQi-YIZ0_VHSJmUq68/edit") | ||
| } | ||
| ] | ||
| }, | ||
| // Misc | ||
| { | ||
| date: new Date ("February 7, 2026"), | ||
|
|
||
There was a problem hiding this comment.
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.