Skip to content

Instantly share code, notes, and snippets.

@solace
solace / tumblr-webclipper.js
Last active July 8, 2024 04:13
A bookmarklet to clip Tumblr posts
javascript:navigator.clipboard.write([new ClipboardItem({ ["text/html"]: new Blob([`---<br />created: "${new Date().toISOString()}"<br />published: "${document.querySelector('time').dateTime}"<br />authors: ${document.querySelector('a[rel="author"]').text}<br />url: ${window.location}<br /><br />---<br /><br /># ${document.querySelector('link[type="application/json+oembed"]').title} <br /><br />` + document.querySelectorAll(`[data-id="${window.location.pathname.match(/(\d+)/)[1]}"] article > div`)[0].outerHTML.replace(/srcset="(.*?)"/g, (matcher,p1) => { const last = p1.split(/\s*,\s*/).pop(); return `src="${last.split(/\s+/)[0]}"`})], {type: 'text/html'})})]).then(() => console.log('Copied to clipboard'));
@solace
solace / batch_yarle.sh
Created June 27, 2024 14:56
Run yarle on nested stacks of Evernote enex notebooks
#!/bin/bash
# Source: https://www.baeldung.com/linux/bash-expand-relative-path
resolve_relative_path() (
# If the path is a directory, we just need to 'cd' into it and print the new path.
if [ -d "$1" ]; then
cd "$1" || return 1
pwd
# If the path points to anything else, like a file or FIFO
elif [ -e "$1" ]; then
@solace
solace / GistTransformer.ts
Last active May 16, 2024 03:49
Replace gist links in markdown with an embed using remark in Next.js
const GistTransformer = {
name: 'Gist',
shouldTransform(url) {
const {host} = new URL(url);
return ['gist.github.com'].includes(host);
},
getHTML(link) {
const url = new URL(link);
const id = url.pathname.split('/').pop();
// Import this
const modifyToken = require('markdown-it-modify-token');
module.exports = function (config) {
...
// Pass a custom instance of markdownIt into eleventy.
config.setLibrary("md", markdownIt({
// html, breaks, and linkify are default options from eleventy.
html: true,
breaks: true,
@solace
solace / ShowNotes.tsx
Last active December 27, 2023 17:05
Interactive transcripts with YouTube and Descript. See https://askmeaboutmypodcast.substack.com/p/interactive-transcripts-with-youtube
export default function ShowNotes({ transcript, seekTo }) {
const headings = transcript.filter((entry) => 'heading' in entry && entry.heading);
return (
<ul>
{headings.map((heading, ix) =>
<li
key={`timeline-${ix}`}
role="button"
data-start={heading.start}
@solace
solace / daily_stoic.js
Created December 18, 2023 16:38
Obsidian templater user scripts for QOTD
// https://github.com/benhoneywill/stoic-quotes
async function daily_stoic() {
const res = await fetch(`https://stoic-quotes.com/api/quote`);
const body = await res.json();
return `> [!quote] Daily Stoic\n> ${body.text}\n> — ${body.author}`;
}
module.exports = daily_stoic;
@solace
solace / middleware.ts
Created November 12, 2023 08:58
NextJS middleware to fix "Invalid Refresh Token: Already Used" from supabase
// Requested fix for https://github.com/supabase/gotrue/issues/1290
export async function middleware(req: NextRequest) {
const res = NextResponse.next();
const supabase = createMiddlewareClient({req, res});
const {error} = await supabase.auth.getSession();
// Trying to fix "Invalid Refresh Token: Already Used"
@solace
solace / categories.js
Last active September 23, 2023 08:23
Support categories and tags migrated from WordPress in Eleventy. See https://micheleong.com/2023/09/23/migrate-wordpress-eleventy-colocated-images
// File: lib/collections/categories.js
const slugify = require("slugify");
const getAllKeyValues = require("../utils/getAllKeyValues");
module.exports = (collection) => {
let allCategories = getAllKeyValues(
collection.getFilteredByGlob("src/posts/**/*.md"),
"categories"
@solace
solace / middleware.ts
Created September 10, 2023 13:08
Access pathname in NextJS generateMetadata
import type {NextRequest, NextResponse} from 'next/server'
export async function middleware(req: NextRequest) {
const requestHeaders = new Headers(req.headers)
requestHeaders.set('x-request-url', req.url);
const res = NextResponse.next({
request: {
headers: requestHeaders
}
@solace
solace / deepgram2descript.sh
Last active January 1, 2023 01:56
DeepGram JSON to Descript transcript
# Warning: This is not a complete script.
# You may also need to edit the transcript text to fix speaker names
# and make minor corrections before importing into Descript.
cat deepgram.json | jq -r '
.results.channels[0].alternatives[0].paragraphs.paragraphs[]
| ("SPEAKER_" + (.speaker|tostring)) + ": "
+ ([.sentences[].text] | join(" "))' > transcript.txt