Skip to content

Instantly share code, notes, and snippets.

@53ningen
Last active January 17, 2019 11:08
Show Gist options
  • Save 53ningen/bc3d49ed55a26d7d411850a7053c10c1 to your computer and use it in GitHub Desktop.
Save 53ningen/bc3d49ed55a26d7d411850a7053c10c1 to your computer and use it in GitHub Desktop.
twipla の参加者名とtwitter ID を CSV 形式で引っこ抜くスクリプト
// twipla のイベントページを開いて、Chrome Developer Tool より以下を実行
console.log(j$(".float_left.member_list.round_border li").toArray().map((e) => [e.textContent.trim(), e.lastChild['href'].slice(24, e.lastChild['href'].length)].join(',')).join("\n"))
// 出力を CSV 形式で保存してエクセルで開く
@53ningen
Copy link
Author

53ningen commented Jan 17, 2019

SHIFT-JIS への変換

エクセルで開くと文字化けするとき

for macOS

# if nkf command not exists
brew install nkf 

nkf -s --overwrite sankasya.csv

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment