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
2 changes: 1 addition & 1 deletion .astro/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"_variables": {
"lastUpdateCheck": 1772162251231
"lastUpdateCheck": 1775149267677
}
Comment on lines 1 to 4
Copy link

Copilot AI Apr 2, 2026

Choose a reason for hiding this comment

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

The .astro/settings.json lastUpdateCheck timestamp update looks like an editor/CLI-generated artifact and is unrelated to the meeting-data changes. To avoid noisy diffs and merge conflicts, please revert this change (or add .astro/settings.json to .gitignore if it shouldn’t be tracked).

Copilot uses AI. Check for mistakes.
}
21 changes: 20 additions & 1 deletion src/data/archive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -464,14 +464,33 @@ export const ALL_ARCHIVE_ITEMS: ArchiveItem[] = [
year: "25-26",
semester: "Spring",
entryType: "Meetings",
tags: ["Industry"],
tags: ["Talks", "Industry"],
links: [
{
name: "ACM Admin Slides",
url: new URL("https://docs.google.com/presentation/d/1O7KTj2aClio4bynG6y9isEvsKshd32CegZy5HYV9QYk/edit")
},
]
},
{
date: new Date("04/01/2026"),
name: "ACM x Upsilon Pi Epsilon",
description: "ACM and UPE hold a joint meeting with a pair programming activity.",
year: "25-26",
semester: "Spring",
entryType: "Meetings",
tags: ["Collab", "Fun"],
links: [
{
name: "Slides",
url: new URL("https://docs.google.com/presentation/d/1FOoSsA8SynX-P7grXlpa3XR2uCf0NjBfqXbL1hNeWxA/edit")
},
{
name: "Pair Programming Challenges",
url: new URL("https://docs.google.com/document/d/1yOZ21R00bcEymdxYrp94QINmWvQrGDWjAfJ48n7S4Ig/edit")
},
]
},
// Bugsmashers SP26
{
name: 'BugSmashers: C and C++',
Expand Down
6 changes: 3 additions & 3 deletions src/data/bugsmashers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export const HACKNIGHTS: BugsmasherMeeting[] = [
title: 'White Hat Hacking',
subtitle: 'Join the Red Team!',
semester: 'S26',
date: new Date('April 2, 2026'),
date: new Date('April 9, 2026'),
content: 'At this meeting, you\'ll work through some offensive hacking exercises.',
tags: ['red team', 'ctf', 'cybersecurity'],
},
Expand Down Expand Up @@ -180,8 +180,8 @@ export const PROJECT_NIGHTS = [
},
{
title: 'Project Day ' + day++,
description: getFormattedDate(new Date('April 9, 2026')),
date: new Date('April 9, 2026')
description: getFormattedDate(new Date('April 2, 2026')),
date: new Date('April 2, 2026')
},
{
title: 'Project Day ' + day++,
Expand Down
5 changes: 5 additions & 0 deletions src/data/meetings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,4 +168,9 @@ export const UPCOMING_MEETINGS: Meeting[] = [
title: "ACM x Upsilon Pi Epsilon",
subtitle: "ACM is holding a collaborative meeting with Upsilon Pi Epsilon, a computer science honor society.",
},
{
date: "April 8, 2026",
title: "Archer Speaker on DevOps",
subtitle: "Bruce Allison of Archer Integrated Risk Management will speak on their experience with DevOps and service ownership.",
},
]
Loading