Skip to content

Commit d9235d6

Browse files
updated stream schedule
1 parent 86024b6 commit d9235d6

2 files changed

Lines changed: 16 additions & 9 deletions

File tree

src/components/experience/ExperienceComponent.tsx

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,14 +84,17 @@ function ExtracurricularTabContent() {
8484
return (
8585
<>
8686
{Position({
87-
title: "Cybersecurity Association, Development Committee",
87+
title: "Development Committee of Cybersecurity Association",
8888
dateRange: "Nov 2025 - Now",
8989
country: "Australia",
90-
summary: `Leading frontend development club's revamped website using Astro framework with Svelte components.`,
90+
summary: `Contributing and leading development of cybersecurity association's software projects`,
9191
className: "pb-5",
92+
highlights: [
93+
`Leading frontend development club's revamped website using Astro framework with Svelte components.`,
94+
],
9295
})}
9396
{Position({
94-
title: "Software Engineering Club Committee",
97+
title: "Web Dev Lead of Software Engineering Club",
9598
dateRange: "Sep 2025 - Now",
9699
country: "Australia",
97100
summary: `Leading and contributing to various club projects:`,
@@ -102,7 +105,7 @@ function ExtracurricularTabContent() {
102105
],
103106
})}
104107
{Position({
105-
title: "Malaysian Association, Marketing Officer",
108+
title: "Marketing Officer of Malaysian Association",
106109
dateRange: "Mar 2025 - Oct 2025",
107110
country: "Australia",
108111
summary: `Contributed to marketing strategy through video ideation, execution (including on-screen presence and filming), and video editing.`,

src/components/socials/StreamSchedule.svelte

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,22 @@
22
import moment from "moment-timezone";
33
import { onMount } from "svelte";
44
5-
const myLocation = "Asia/Singapore";
5+
const myLocation = "Australia/Melbourne";
66
77
type StreamScheduleDay = {
88
start: moment.Moment;
99
end: moment.Moment;
1010
};
1111
1212
const myStreamSchedule: null | StreamScheduleDay[] = [
13-
// {
14-
// start: getUpcomingTimeDevTZ(4, "11:00"),
15-
// end: getUpcomingTimeDevTZ(4, "16:00"),
16-
// },
13+
{
14+
start: getUpcomingTimeDevTZ(4, "10:00"),
15+
end: getUpcomingTimeDevTZ(4, "20:00"),
16+
},
17+
{
18+
start: getUpcomingTimeDevTZ(5, "16:00"),
19+
end: getUpcomingTimeDevTZ(5, "20:00"),
20+
},
1721
];
1822
1923
/**

0 commit comments

Comments
 (0)