Skip to content
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

Fix the date #1813

Merged
merged 1 commit into from
Mar 2, 2025
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
10 changes: 5 additions & 5 deletions 2025/04.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@ gantt
1 month before the meeting: milestone, 2025-03-14 10:00-0500, 1m
Proposal advancement deadline: milestone, 2025-04-04 10:00-0500, 1m
Schedule constraint deadline: milestone, 2025-04-11 10:00-0500, 1m
Day 1 : day1, 2025-04-15 10:00+0000, 7h
Day 2 : day2, 2025-04-16 10:00+0000, 7h
Day 3 : day3, 2025-04-17 10:00+0000, 7h
Day 4 : day4, 2025-04-18 10:00+0000, 7h
Day 1 : day1, 2025-04-14 10:00+0000, 7h
Day 2 : day2, 2025-04-15 10:00+0000, 7h
Day 3 : day3, 2025-04-16 10:00+0000, 7h
Day 4 : day4, 2025-04-17 10:00+0000, 7h
todayMarker stroke-width:5px,stroke:#0f0,opacity:0.5
```

For meeting times in your timezone, visit [Temporal docs](https://tc39.es/proposal-temporal/docs/) and run the code below in the devtools console.

```js
Temporal.ZonedDateTime.from('2025-04-15T10:00[America/New_York]')
Temporal.ZonedDateTime.from('2025-04-14T10:00[America/New_York]')
.withTimeZone(Temporal.Now.timeZoneId()) // your time zone
.toLocaleString()
```
Expand Down