*.nanorc
-hosting repositories
Online Created: 2022-12-12
*.nanorc
-hosting repositoriesCreated: 2022-12-12
sequenceDiagram
autonumber
actor 男女
participant suzume as スズメ
participant kounotori as コウノトリ
男女->>男女: セックス
suzume->>男女: セックス確認
suzume->>kounotori: 連絡
kounotori->>kounotori: セックス
#!/usr/bin/env bash | |
if ! command -v awk git grep sed wget &> /dev/null; then | |
echo "install: awk, git, grep, sed, wget" | |
exit 1 | |
fi | |
[ -f joyo2010.txt ] || wget https://raw.githubusercontent.com/cjkvi/cjkvi-tables/master/joyo2010.txt | |
[ -f ucs-strokes.txt ] || wget https://raw.githubusercontent.com/cjkvi/cjkvi-ids/master/ucs-strokes.txt |
# 一行だけのコメントは `#` から始まります。 | |
#[ | |
これは複数行のコメントです。 | |
Nimでは、複数行のコメントはネスト可能で、#[ に始まり | |
... ]# に終わります。 | |
]# | |
discard """ | |
これでも複数行のコメントとして機能します。 |
⢀⣀⣀⣀⣈⣿⣀⣀⠀⠀⠀⠀⠀⢀⣴⡿⠂⠀⠀⢶⠶⠶⢶⣶⠆ | |
⠈⠉⠉⣩⡿⣿⠉⠉⠀⢀⣠⣤⡾⣿⠁⠀⠀⠀⠀⠀⠀⢀⣾⠏ | |
⢀⣠⣾⠛⠀⣿⠀⠀⠀⠘⠋⠁⠀⣿⠀⠀⠀⠀⠀⢀⣴⡿⠻⢷⣄ | |
⠈⠋⠀⠀⠀⠿⠀⠀⠀⠀⠀⠀⠀⠿⠀⠀⠀⠀⠸⠟⠁⠀⠀⠈⠻⠃ | |
⣀⡤⠴⠔⠒⠚⠚⠚⠚⠚⠚⠒⠴⢄⡀ | |
⢀⡴⠊⠁ ⠀⠀⠀⠀⠀⠀⠀⣀⣀ ⡀⠙⢦⡀ | |
⣠⠋⠀ ⠀⠀ ⠀⠀⠀⠀⠀⣠⠞⠁⠁⠉⠙⢢⡀⠙⣄ | |
⢰⠃⣰⠚⠉⠉⠉⠓⢦⡀⠀⠀⢰⠃⠀⠀⠀⠀⠀⠀⢹⠀⠈⢆ | |
⢸⠀⡇⠀⠀⠀⠀⠀⠀⠙⣆⠀⠸⡄⠀⠀⠈⠀⠀⠀⠨⡇⠀⠘⣇⠀ | |
⠘⡆⡇⠀⠀⠀⠈⠀⠀⠀⢸⠀⠀⠙⠦⣀⣀⢀⣀⣀⣨⠃⠀⠀⠸⡄ |
#!/usr/bin/env bash | |
function dedent() { | |
local src min | |
src="$(expand -t 2 -)" # 1 tab = 2 spaces | |
if [ -z "$src" ]; then | |
echo "dedent: input is empty." >&2 | |
return 1 | |
fi | |
min="$( |
// ==UserScript== | |
// @name Twitch Screen Comment Scroller | |
// @namespace knoa.jp | |
// @description Twitch のコメントをニコニコ風にスクロールさせます。 | |
// @include https://www.twitch.tv/* | |
// @version 0.2.1 | |
// @grant none | |
// ==/UserScript== | |
(function(){ |
#!/usr/bin/env bash | |
if [[ "$@" =~ -h ]]; then | |
echo "Convert mermaid definition of models into PosgresSQL schema" | |
echo "Usage: $0 <mermaid model definition>" | |
exit 0 | |
fi | |
if ! command -v awk sed &>/dev/null; then | |
echo "Install: awk, sed" >&2 |