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/turndown@6.0.0?module'), import('https://unpkg.com/@tehshrike/readability@0.2.0'), ]).then(async ([{ | |
default: Turndown | |
}, { | |
default: Readability | |
}]) => { | |
/* Optional vault name */ | |
const vault = ""; | |
/* 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
#!/bin/bash | |
# Clone/pull every repo you have access to in a github org into a directory. | |
# Source: https://gist.github.com/drichardson/4f1e831e0feece632ef4cb179955864c | |
set -euo pipefail | |
# Max repos to checkout. | |
LIMIT=500 | |
usage() { |
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
function reset { | |
Set-Buffer-Width-To-Screen-Width | |
Clear-Host | |
} | |
function Set-Buffer-Width-To-Screen-Width { | |
$h = Get-Host | |
$ui = $h.UI.RawUI | |
$bufferSize = $ui.BufferSize | |
$windowSize = $ui.WindowSize |
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
#pragma once | |
#include "CoreMinimal.h" | |
#include "Engine/World.h" | |
#include "EngineUtils.h" | |
DECLARE_LOG_CATEGORY_EXTERN(LogWorldSingleton, Log, All); | |
/* |
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
#pragma once | |
#include "CoreMinimal.h" | |
#include "Engine/World.h" | |
#include "EngineUtils.h" | |
/* | |
* TWorldSingleton is a weak pointer to a actor in a level, which is only a | |
* singleton by convention of only one actor of that type being in a UWorld. |
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
#!/bin/sh | |
# Is pycodestyle is installed? | |
which pycodestyle &> /dev/null | |
if [[ $? -ne 0 ]]; then | |
cat <<-EOF | |
pre-commit hook failed. pycodestyle is not installed. | |
Run the following and try your commit again: | |
pip install pycodestyle |
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
#!/usr/bin/python3 | |
import json | |
import sys | |
import urllib.request | |
import os | |
scriptname=os.path.basename(__file__) | |
usage=f'''Missing username. |
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
<# | |
.SYNOPSIS | |
Outputs to a UTF-8-encoded file *without a BOM* (byte-order mark). | |
.DESCRIPTION | |
Mimics the most important aspects of Out-File: | |
* Input objects are sent to Out-String first. | |
* -Append allows you to append to an existing file, -NoClobber prevents | |
overwriting of an existing file. | |
* -Width allows you to specify the line width for the text representations |