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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<link rel="icon" type="image/x-icon" href="https://cdn.plyr.io/static/icons/favicon.ico"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Quality Toggle</title> | |
</head> | |
<body> | |
<video playsinline controls></video> |
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
// ==UserScript== | |
// @name Copy Selected Links | |
// @description Copies selected links on pressing a hotkey (default: Alt+C / Option+C) | |
// @version 1 | |
// @match *://*/* | |
// ==/UserScript== | |
// Configuration | |
const preferUI = false; | |
const hotkey = e => e.altKey && ["c", "C"].includes(e.key); |
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
.toc { | |
position: fixed; | |
left: 0; | |
top: 0; | |
bottom: 0; | |
padding: 2em 1em; | |
overflow-y: auto; | |
background: white; | |
} |
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
+-- doc | |
⁞ +-- api | |
⁞ ⁞ +-- ProjectA | |
⁞ ⁞ ⁞ +-- index.md | |
⁞ ⁞ +-- ProjectB | |
⁞ ⁞ +-- index.md | |
⁞ +-- docfx.json | |
⁞ +-- toc.yml | |
+-- src | |
+-- ProjectA |
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
$Global:required = "netcore", "nuget", "docfx" | |
. $PSScriptRoot\tools\prerequisites.ps1 | |
$tooldir = "$env:LOCALAPPDATA\.build" | |
$docs = "$PSScriptRoot\docs\docfx.json" | |
$projects = | |
"$PSScriptRoot\src\projectA", | |
"$PSScriptRoot\src\projectB" | |
$projects.ForEach({ & dotnet build $_ }) |
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
# Script for batch installing Visual Studio Code extensions | |
# Specify extensions to be checked & installed by modifying $extensions | |
$extensions = | |
# Look & Feel | |
"azemoh.one-monokai", | |
"emmanuelbeziat.vscode-great-icons", | |
# Editing | |
"HookyQR.beautify", | |
"ow.vscode-subword-navigation", |