Skip to content

Instantly share code, notes, and snippets.

View extratone's full-sized avatar
🗿
sudo exit

David Blue extratone

🗿
sudo exit
View GitHub Profile
@extratone
extratone / lastscopes.md
Last active February 9, 2023 07:20
A dump for any/all pscp.tv URLs, basically, but *especially* & *most explicitly* for any broadcasters you may come across who specifically express a desire to participate in the pursuit of maintaining Periscope-borne connections.
@extratone
extratone / navysealcopypasta.md
Last active April 29, 2021 22:27
Navy SEAL Copypasta - The Classics (Reference)

What the fuck did you just fucking say about me, you little bitch? I’ll have you know I graduated top of my class in the Navy Seals, and I’ve been involved in numerous secret raids on Al-Quaeda, and I have over 300 confirmed kills.

I am trained in gorilla warfare and I’m the top sniper in the entire US armed forces. You are nothing to me but just another target. I will wipe you the fuck out with precision the likes of which has never been seen before on this Earth, mark my fucking words.

You think you can get away with saying that shit to me over the Internet? Think again, fucker. As we speak I am contacting my secret network of spies across the USA and your IP is being traced right now so you better prepare for the storm, maggot. The storm that wipes out the pathetic little thing you call your life. You’re fucking dead, kid. I can be anywhere, anytime, and I can kill you in over seven hundred ways, and that’s just with my bare hands.

Not only am I extensively trained in unarmed combat, but I have access t

@extratone
extratone / sad.txt
Created April 4, 2021 22:36
Sarah MacGLAUHlan’s “Angel” encoded in base64 text. Ya never know when ya might need it!
This file has been truncated, but you can view the full file.
AAAAHGZ0eXBNNEEgAAAAAE00QSBpc29tbXA0MgAAAAFtZGF0AAAAAAAxhREhAAUAoBv/wAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAweyEQBQCgG//AAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
@extratone
extratone / apps.md
Last active December 29, 2024 02:00
APPS
@extratone
extratone / tb3urlschemes.md
Last active April 7, 2021 02:38
A list of supported URL schemes in Tweetbot 3 for MacOS.

Supported Tweetbot 3 URL Schemes

Via MacStories reference for their original review.

tweetbot://<screenname>/timeline
tweetbot://<screenname>/mentions
tweetbot://<screenname>/retweets
tweetbot://<screenname>/direct_messages
tweetbot://<screenname>/lists
tweetbot://<screenname>/favorites
tweetbot://<screenname>/search
@extratone
extratone / artists.md
Last active July 23, 2022 13:39
A raw text export of artist names I follow via MusicHarbor.
@extratone
extratone / handypandoc.md
Created April 29, 2021 12:05
An ongoing list of the Pandoc commands I use to convert text files.
  • pandoc -s MANUAL.txt -o example2.html
  • pandoc -s f.docx -t markdown -o f.md
  • pandoc psalms.epub -t plain -o psalms.text
  • pandoc psalms.epub -t plain -o psalms.text
  • pandoc -f epub -t markdown ThePsalms.epub
  • pandoc -f html -t markdown https://tools.ietf.org/html/rfc2119
@extratone
extratone / draftcuts.csv
Last active April 18, 2025 07:43
A somewhat-regularly-updated list of my keyboard shortcuts configuration in Drafts on both macOS and iOS.
**Action** Command
**@NeoYokel Twitter Search** ⇧⌃Y
**~ Town Copy HTML** ⇧⌃⌥C
**✪ #-** ⇧⌘
**Action Search** ⌘/
**Add to Letterboxd Watchlist** ⇧⌥⌘L
**Add to Letterboxd Watchlist** ⇧⌥⌘L
**Alexis** ⌥⌘A
**Anecdote** ⇧⌃⌥A
**App Store Search** ⇧⌃/
@extratone
extratone / grablinks.js
Last active May 2, 2021 08:19 — forked from ttscoff/grab links.bookmarklet
Create a bookmark and paste the code from `grab links.bookmarklet` into the url. Trigger it on a page containing links you want to save and then click the section of the page containing the links. A Markdown list of all links will be generated, and clicking the resulting list will select all for copying.
@extratone
extratone / titleUrlMarkdownClip.js
Created May 2, 2021 05:59 — forked from bradleybossard/titleUrlMarkdownClip.js
Bookmarklet to copy current page title and url in Markdown format to clipboard, like [title](url) - Usual for posting links to resources in README.md files
javascript:(function() {
function copyToClipboard(text) {
if (window.clipboardData && window.clipboardData.setData) {
/*IE specific code path to prevent textarea being shown while dialog is visible.*/
return clipboardData.setData("Text", text);
} else if (document.queryCommandSupported && document.queryCommandSupported("copy")) {
var textarea = document.createElement("textarea");
textarea.textContent = text;