https://github.com/gowee/lccal-worker
Auto-generated 📅 iCal/ics (calendar) for Leetcode Contests on Cloudflare Workers
https://github.com/gowee/lccal-worker
cloudflare-workers ical leetcode leetcode-contest leetcode-contests svg
Last synced: 11 days ago
JSON representation
Auto-generated 📅 iCal/ics (calendar) for Leetcode Contests on Cloudflare Workers
- Host: GitHub
- URL: https://github.com/gowee/lccal-worker
- Owner: Gowee
- License: apache-2.0
- Created: 2020-04-23T11:41:34.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-08-19T06:09:44.000Z (10 months ago)
- Last Synced: 2025-05-07T03:44:22.913Z (about 2 months ago)
- Topics: cloudflare-workers, ical, leetcode, leetcode-contest, leetcode-contests, svg
- Language: TypeScript
- Homepage:
- Size: 790 KB
- Stars: 28
- Watchers: 1
- Forks: 5
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE_APACHE
Awesome Lists containing this project
README
# lccal-worker
A script that generates 📅 [iCal/ics](https://tools.ietf.org/html/rfc5545) for Leetcode (Bi)Weekly Contests, deployed on Cloudflare Workes: [https://lccal-worker.bamboo.workers.dev/ical?download](https://lccal-worker.bamboo.workers.dev/ical).
## iCal generator
**Endpoint**: [`/ical`](https://lccal-worker.bamboo.workers.dev/ical)A subscribable [iCal/ics](https://tools.ietf.org/html/rfc5545) file.
For example, add `https://lccal-worker.bamboo.workers.dev/ical` to Google Calendar via https://calendar.google.com/calendar/r/settings/addbyurl. Then it will get updated automatically when there are new contests.
Most other calendar services also support subscribing by URL: https://duck.com/?q=how+to+subscribe+ical+by+url .
## SVG generator
**Endpoint**: [`/svg`](https://lccal-worker.bamboo.workers.dev/svg)An auto-generated SVG for fun.
| Name | Description |
| ------ | ------------------------------------------------- |
| width | The size of the generated SVG. `300` by default. |
| height | The size of the generated SVG. `auto` by default. |For example:
[](https://lccal-worker.bamboo.workers.dev/svg?width=300&limit=5)
[](https://lccal-worker.bamboo.workers.dev/svg?width=300&height=auto&offset=5&limit=5®ion=CN&timezone=Asia/Shanghai)
.## Other params
The following URL query params are for both of the two endpoint above.| Name | Description |
| -------- | ------------------------------------------------------------------------------------- |
| offset | N-th contests, in descending order of time, to start. `0` by default. |
| limit | The number of contests to get. `10` by default. |
| region | LeetCode's data region, either `US` or `CN`. `US` by default. |
| timezone | Timezone to use in calendar. `Asia/Shanghai` by default when `region=CN`. `UTC` O.W. |
| download | When present and not `false` or `0`, instruct the browser to save the generated file. |