Cosenseにあるページの更新日時と作成日時の差を計算する
from 20250201
Cosenseにあるページの更新日時と作成日時の差を計算する
/villagepump/allPagesList(shell)を参考にした
code:sh
#!/usr/bin/bash
shopt -s expand_aliases
alias curl='curl --limit-rate 128k'
(
LIMIT=$(curl 'https://scrapbox.io/api/pages/yokkin' | jq -r '.count')
curl "https://scrapbox.io/api/pages/yokkin?skip=[0-$LIMIT:1000]&limit=1000"
) \
| cat <(jq -r '.pages[] | .title, .created, .updated | join("\t")') <(echo "@execute") \
| awk '
BEGIN {
FS="\t"
OFS="\t"
}
$1 != "@execute" {
lines$1 = $3 - $2
next
}
{
for (line in lines) {
print linesline / (60*60*24), line
}
}' \
| sort -rnk1 \
| column -ts $'\t'
code:txt
448.932 3層クライアントサーバシステム
442.96 Yokkin
434.006 浮動小数点数
404.58 multiprocessing
404.554 fork(2)
395.884 PHPの好きなところ
395.116 PHPの文字列操作
378.492 PDO
371.865 キャレット記法
370.536 動的計画法(Dynamic Programming)
...