This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { fontawesomeSubset } from "fontawesome-subset"; | |
fontawesomeSubset(["plus", "minus"], "webfonts/"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
montage page-1.png page-1.png page-1.png page-1.png -tile 2x2 -geometry 3300x2250 page-1-2x2.png | |
montage page-2.png page-2.png page-2.png page-2.png -tile 2x2 -geometry 3300x2250 page-2-2x2.png | |
convert page-1.png page-2.png Leaving\ piece.pdf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[packages] | |
blitz = 'all' | |
parcel = 'all' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[feeds] | |
'bsky/porforr' = 'https://bsky.app/profile/did:plc:6plb5bwcopgjjkmyhrkktrbr/rss' | |
'bsky/rob-palmer' = 'https://bsky.app/profile/did:plc:w227epg3attqnssfdkx6ex6a/rss' | |
'2ality' = "https://2ality.com/feeds/posts.atom" | |
addy-osmani = "https://addyosmani.com/rss.xml" | |
alex-russell = "https://infrequently.org/feed/" | |
biome = "https://biomejs.dev/blog/rss.xml" | |
boa = "https://boajs.dev/blog/rss.xml" | |
brave = "https://brave.com/blog/index.xml" | |
bun = "https://bun.sh/rss.xml" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { ensureDir } from "https://deno.land/[email protected]/fs/mod.ts"; | |
import { serveFile } from "https://deno.land/[email protected]/http/file_server.ts"; | |
import { serve } from "https://deno.land/[email protected]/http/server.ts"; | |
import { writeAll } from "https://deno.land/[email protected]/streams/conversion.ts"; | |
// import { Database } from "https://deno.land/x/[email protected]/mod.ts"; | |
import { Database } from "https://raw.githubusercontent.com/canac/AloeDB/55249fbf8ec4554e73fc6e43bc499353442a51a7/mod.ts"; | |
import { Cron } from "https://deno.land/x/[email protected]/src/croner.js"; | |
import { sleep } from "https://deno.land/x/[email protected]/mod.ts"; | |
import { Mailbox } from "./mailbox.ts"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@{% | |
const moo = require("moo"); | |
const lexer = moo.compile({ | |
ws: / +/, | |
label: /"[\w\d ]+?"/, | |
not: '!', | |
and: '&&', | |
or: '||', | |
lparen: '(', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { readFile } from 'node:fs/promises'; | |
const vault = JSON.parse( | |
await readFile( | |
'/Users/caleb/Downloads/bitwarden_export.json', | |
'utf8', | |
), | |
); | |
const folders = new Set(vault.folders.map((folder) => folder.id)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
montage image.png image.png image.png image.png -tile 2x2 -geometry 1080x1080+72+72 2x2.png |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
convert cru-logo-screen.jpg -resize 700x500 -extent 2000x500 cru-logo-screen-header.jpg |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(() => { | |
const ngInjector = angular.element(document.querySelector('*[ng-app]')).injector(); | |
window.injector = new Proxy({}, { | |
get(target, property, receiver) { | |
return ngInjector.get(property); | |
} | |
}); | |
})(); | |
function setBetaMode(betaMode) { |
NewerOlder