Skip to content

Instantly share code, notes, and snippets.

View Case104's full-sized avatar

Jonathan Case Case104

View GitHub Profile
@Case104
Case104 / lorcanaCards.json
Created February 18, 2024 01:56
First 3 sets of Lorcana cards
[
{
"id": 683,
"name": "RLS Legacy",
"title": "Solar Galleon",
"cost": 4,
"inkwell": 0,
"attack": 3,
"color": 1,
"type": "location",
@Case104
Case104 / youtube-frontmatter.js
Created October 9, 2023 19:36
Update youtube script for Bryan
<%*
const url = await tp.system.clipboard();
const response = await fetch(`https://youtube.com/oembed?url=${url}&format=json`);
const {
title: rawTitle,
author_name: author,
author_url,
html,
thumbnail_url: thumbnail
} = await response.json();