Skip to content

Instantly share code, notes, and snippets.

@jondcallahan
jondcallahan / clip.ts
Created June 28, 2022 16:18
Copy to clipboard in Deno on macOS
const encoder = new TextEncoder();
const process = await Deno.run({
cmd: ["pbcopy"],
stdin: "piped",
});
const stringToCopy = "hey hey";
await process.stdin.write(encoder.encode(stringToCopy));
process.stdin.close();
@jondcallahan
jondcallahan / custom-settings.json
Created December 6, 2023 00:31
My preferred settings for Commit Mono font
{"weight":450,"italic":false,"alternates":{"cv01":false,"cv02":true,"cv03":false,"cv04":false,"cv05":false,"cv06":false,"cv07":false,"cv08":false,"cv09":false,"cv10":false},"features":{"ss01":false,"ss02":false,"ss03":true,"ss04":true,"ss05":true},"letterSpacing":1,"lineHeight":1.2}