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 | |
# Copy the single file from the remote git registory. | |
set -euo pipefail | |
if [[ $# -lt 3 ]]; then | |
echo "Usage: $0 <repos> <branch> <src> [<dest>]">&2 | |
exit 1; | |
fi |
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 mermaid-for-backlog | |
// @namespace https://gist.github.com/iso2022jp | |
// @version 0.4 | |
// @description Mermaid support for the Backlog web site. | |
// @author USHIDO Hiroyuki | |
// @match *://*.backlog.jp/* | |
// @match *://*.backlog.com/* | |
// @grant none | |
// @run-at document-end |
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 | |
set -euo pipefail | |
DRYRUN='' | |
DOWNLOAD_ONLY='' | |
usage() { | |
echo "Usage: $0 [-n|-d]" 1>&2 | |
exit 1 |
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
using System; | |
using System.Diagnostics; | |
using System.Drawing; | |
using System.Runtime.InteropServices; | |
using System.Threading; | |
using System.Windows.Forms; | |
// [main: STAThread] | |
Thread.CurrentThread.SetApartmentState(ApartmentState.Unknown); | |
Thread.CurrentThread.SetApartmentState(ApartmentState.STA); |
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
class ChunkedTransformer { | |
#trasformLastChunk | |
#chunks | |
#header | |
// BWS: [ \t]* | |
// token: [-!#-'*+.^`|~\w]+ | |
// quoted-string: "(?:[\t \x21\x23-\x5B\x5d-\x7E\x80-\xFF]|\\[\t \x21-\x7E\x80-\xFF])*" |
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
prompt('', (new TextDecoder('Windows-31J')).decode((new TextEncoder()).encode(prompt()))) |
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
const download = (blob, filename, type = blob.type || 'application/octet-stream') => { | |
const a = document.createElement('a') | |
a.href = window.URL.createObjectURL(blob) | |
a.download = filename | |
a.type = type | |
a.click() | |
window.URL.revokeObjectURL(a.href) | |
} |
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
@echo off | |
: Prerequisite: share C: with "C", user "foo" accessible | |
wsl -- ^ | |
set -euxo pipefail; ^ | |
[[ ! -d /mnt/c2 ]] ^|^| mount ^| grep '/mnt/c2' ^|^| sudo find '/mnt/c2' -type d -empty -delete; ^ | |
[[ -d /mnt/c2 ]] ^|^| sudo mkdir /mnt/c2; ^ | |
grep -qs '/mnt/c2 ' /proc/mounts ^|^| sudo mount -t cifs -o user=foo,nobrl,noperm,cache=none,actimeo=0,iocharset=utf8 //$^(grep nameserver /etc/resolv.conf ^| grep '\.' ^| cut -f2 -d' '^)/C /mnt/c2; ^ | |
cd ${PWD/#\/mnt\/c\///mnt/c2/}; ^ |
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
'use strict' | |
if (!globalThis.prompt) { | |
const buffer = require('buffer') | |
const fs = require('fs') | |
const input = buffer.Buffer.alloc(10000) | |
globalThis.prompt = (message, defaultValue = '') => { | |
message && console.info(message) | |
let offset = 0 | |
while (fs.readSync(0, input, offset, 1)) { |
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
const ranks = (values, comparator = (a, b) => b - a) => values | |
.map((value, i) => [value, i]) | |
.slice().sort(([a], [b]) => comparator(a, b)) | |
.reduce((ranks, [value, i], rank, ordered) => [ | |
...ranks.slice(0, i), | |
rank && !comparator(value, ordered[rank - 1][0]) ? ranks[ordered[rank - 1][1]] : rank + 1, | |
...ranks.slice(i + 1), | |
], Array.from({length: values.length})) |
NewerOlder