Skip to content

Instantly share code, notes, and snippets.

@DinoscapeProgramming
DinoscapeProgramming / yolkweb – templates
Last active January 24, 2026 12:47
ayyy, how tf did u get here?!! anyways, yolkweb stores its bot templates here :D
rvOtzPKC37
@DinoscapeProgramming
DinoscapeProgramming / youtube.js
Last active March 3, 2022 20:47
A simple trick to check is a video existing or not
// definition
function videoExists(url) {
var exists;
var video;
try {
video = new URL(url);
} catch {
throw new Error("Invalid URL 😳")
}