This file contains 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
javascript: Promise.all([import('https://unpkg.com/[email protected]?module'), import('https://unpkg.com/@tehshrike/[email protected]'), ]).then(async ([{ | |
default: Turndown | |
}, { | |
default: Readability | |
}]) => { | |
/* Optional vault name */ | |
const vault = "Brain"; | |
/* Optional folder name such as "Clippings/" */ |
This file contains 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
# This functions exactly like bash aws_completer. add the following code to fish config. | |
function __fish_complete_aws | |
env COMP_LINE=(commandline -pc) aws_completer | tr -d ' ' | |
end | |
complete -c aws -f -a "(__fish_complete_aws)" |
This file contains 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
/* | |
Author: Asseel Naji (https://naji.bio) | |
License: wtfpl (Do What The F*ck You Want To Public License) | |
--- | |
This script is ready to be used with Join/tasker to grab the current link at the current time and send it to join. | |
The script can be loaded with "enhancer for youtube plugin" (https://www.mrfdev.com/enhancer-for-youtube), tempermonkey or any plugin that | |
can run javascript on a youtube site. | |