20240706
20240706
Googleコレクションにお気に入りのページとして保存していたやつ
code:js
let a = new Map();
let content = [];
for (const e of document.querySelectorAll('.OgiSb')) {
a.set(
e.firstChild.firstChild.textContent ? e.firstChild.firstChild.textContent : "(タイトル抽出失敗)",
e.firstChild.href
.replace(/&usg=.*/g, "")
);
}
for (const v of a) {
content.push([${v.join(" ")}]);
}
content.join("\n");
click
人のPythonコード見てるときに出会ったPythonのライブラリ
@groupでコマンドをnestingするやつが難しい