Add event to Google calendar with some simple questions in HTTP Shortcuts Application.
-
Download Application: https://http-shortcuts.rmy.ch
-
If you want import this template, please use this deep link: click me!
Add event to Google calendar with some simple questions in HTTP Shortcuts Application.
Download Application: https://http-shortcuts.rmy.ch
If you want import this template, please use this deep link: click me!
#!/bin/env bash | |
# Lookup section meaning in `man man`. | |
sections='1,8,6,5,7' | |
show_manual () { | |
man -- "${1%% *}" 2> /dev/null | |
} | |
export -f show_manual |
// ==UserScript== | |
// @name Generate Strong Password | |
// @namespace http://tampermonkey.net/ | |
// @version 3.1.1 | |
// @description Strong password generator of size 12 | |
// @author Piyush Singh | |
// @match *://*/* | |
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== | |
// @grant unsafeWindow | |
// @grant GM_setClipboard |
// ==UserScript== | |
// @name DarkReader | |
// @version 0.0.7 | |
// @match *://*/* | |
// @downloadURL https://gist.github.com/evanreichard/f983ca26836d4af6ca0f6fb602b9dcaf/raw/darkreader.user.js | |
// @require https://unpkg.com/[email protected]/darkreader.js | |
// @grant GM.xmlhttpRequest | |
// @grant GM.registerMenuCommand | |
// @grant GM.unregisterMenuCommand | |
// @grant GM_getValue |
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 = ""; | |
/* Optional folder name such as "Clippings/" */ |
const channels = [...document.querySelectorAll("#main-link.channel-link")].map(e => { | |
const [, a, b] = e.href.match("/((?:user)|(?:channel))/(.*)$"); | |
const feed = "https://www.youtube.com/feeds/videos.xml?" + (a === "user" ? "user=" : "channel_id=") + b; | |
const channelName = e.querySelector("yt-formatted-string.ytd-channel-name").innerText; | |
return [feed, channelName]; | |
}); | |
if (channels.length == 0) { | |
alert("Couldn't find any subscriptions"); | |
} else { | |
console.log(channels.map(([feed, _]) => feed).join("\n")); |
// ==UserScript== | |
// @name Click to delete | |
// @author Antonio Bueno | |
// @namespace userscripts.atnbueno.com | |
// @description This script deletes page elements if clicked twice while simultaneously pressing Alt, Control, and Shift | |
// @version 2.0 | |
// @grant none | |
// ==/UserScript== | |
/* |
################################################################################################### | |
# This is a very simple .bashrc file that I'm using on a daily basis. # | |
# It completely replaced my zsh setup, and should be relatively simple to understand and modify. # | |
# # | |
# Built by Moritz (mo-mar.de) - just do whatever you want with it, according to the Unlicense: # | |
# https://choosealicense.com/licenses/unlicense/ # | |
# # | |
# Simple installation: # | |
# wget https://go.momar.de/bashrc -O ~/.bashrc # | |
################################################################################################### |