Warning: session_start(): open(/var/lib/php/sessions/sess_3igoj6olaik8j3uacj6lha6sf4, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51

Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
// page contents is cached using webScrape // returns pairs (video id, title plus stats) static LPairS videoLinksFromYouTubePage(S url, O... _) { S html = emitIntermediate html(_, webScrape(youtubeURL(url))); LS l = regexpExtractAll([[\\"(label|videoId)\\":\\"(.*?)\\"]], html); //print(+l); S videoId = null; new LPairS out; for (S s : l) { PairS p = listToPair(unquoteAll(splitAtColon(unquoteRaw(s)))), continue if null; if (eq(p.a, "videoId")) videoId = p.b; else out.add(pair(videoId, p.b)); } ret out; }