Detail: https://kdb.tsukuba.ac.jp/syllabi/2022/GB27001/jpn/0
sequenceDiagram
autonumber
actor 男女
participant suzume as スズメ
participant kounotori as コウノトリ
男女->>男女: セックス
suzume->>男女: セックス確認
suzume->>kounotori: 連絡
kounotori->>kounotori: セックス
This file contains hidden or 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/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 |
This file contains hidden or 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
# 一行だけのコメントは `#` から始まります。 | |
#[ | |
これは複数行のコメントです。 | |
Nimでは、複数行のコメントはネスト可能で、#[ に始まり | |
... ]# に終わります。 | |
]# | |
discard """ | |
これでも複数行のコメントとして機能します。 |
This file contains hidden or 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
⢀⣀⣀⣀⣈⣿⣀⣀⠀⠀⠀⠀⠀⢀⣴⡿⠂⠀⠀⢶⠶⠶⢶⣶⠆ | |
⠈⠉⠉⣩⡿⣿⠉⠉⠀⢀⣠⣤⡾⣿⠁⠀⠀⠀⠀⠀⠀⢀⣾⠏ | |
⢀⣠⣾⠛⠀⣿⠀⠀⠀⠘⠋⠁⠀⣿⠀⠀⠀⠀⠀⢀⣴⡿⠻⢷⣄ | |
⠈⠋⠀⠀⠀⠿⠀⠀⠀⠀⠀⠀⠀⠿⠀⠀⠀⠀⠸⠟⠁⠀⠀⠈⠻⠃ | |
⣀⡤⠴⠔⠒⠚⠚⠚⠚⠚⠚⠒⠴⢄⡀ | |
⢀⡴⠊⠁ ⠀⠀⠀⠀⠀⠀⠀⣀⣀ ⡀⠙⢦⡀ | |
⣠⠋⠀ ⠀⠀ ⠀⠀⠀⠀⠀⣠⠞⠁⠁⠉⠙⢢⡀⠙⣄ | |
⢰⠃⣰⠚⠉⠉⠉⠓⢦⡀⠀⠀⢰⠃⠀⠀⠀⠀⠀⠀⢹⠀⠈⢆ | |
⢸⠀⡇⠀⠀⠀⠀⠀⠀⠙⣆⠀⠸⡄⠀⠀⠈⠀⠀⠀⠨⡇⠀⠘⣇⠀ | |
⠘⡆⡇⠀⠀⠀⠈⠀⠀⠀⢸⠀⠀⠙⠦⣀⣀⢀⣀⣀⣨⠃⠀⠀⠸⡄ |
This file contains hidden or 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/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="$( |
This file contains hidden or 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 Twitch Screen Comment Scroller | |
// @namespace knoa.jp | |
// @description Twitch のコメントをニコニコ風にスクロールさせます。 | |
// @include https://www.twitch.tv/* | |
// @version 0.2.1 | |
// @grant none | |
// ==/UserScript== | |
(function(){ |
