Skip to content

Instantly share code, notes, and snippets.

View rudotriton's full-sized avatar
🌌
The universe is a big place, perhaps the biggest.

Rudo Triton rudotriton

🌌
The universe is a big place, perhaps the biggest.
View GitHub Profile
const url = "https://xkcd.com/info.0.json"
const req = new Request(url)
const { img: imgUrl } = await req.loadJSON()
const imgReq = await new Request(imgUrl)
const img = await imgReq.loadImage()
// for development, displays the widget if run
const debug = false;
@rudotriton
rudotriton / scriptable-calendar-widget.md
Last active August 8, 2023 14:35
Customizable iOS Calendar widget in Scriptable

Scriptable Calendar Widget

scriptable calendar

For ease of maintainability this project has moved from this gist to its own repository. You can go and visit it there.