Skip to content

Instantly share code, notes, and snippets.

@naokihaba
naokihaba / get-sessions.mjs
Created November 26, 2025 04:43 — forked from odanado/get-sessions.mjs
フロントエンドカンファレンス東京2025の Twitter 検索 URL を作る
const sessions = [];
$$(".timetable .tableRow").forEach((row) => {
const startTime = row.querySelector(".timeCell .timeText:first-child").textContent.trim();
const endTime = row.querySelector(".timeCell .timeText:last-child").textContent.trim();
const presentations = Array.from(row.querySelectorAll(".presentationCell"));
if (presentations.length === 0) return;
presentations.forEach((x) => {
const room = x.querySelector(".cellRoomType").textContent.trim();