This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @id iitc-plugin-CSV@pad | |
// @name IITC plugin: Ingress KML Exporter | |
// @category Keys | |
// @version 1.0.20150105.02 | |
// @namespace https://github.com/jonatkins/ingress-intel-total-conversion | |
// @updateURL https://drive.google.com/open?id=0By5o6ue8fgYWYW0yXzlkYjZsZXc&authuser=0 | |
// @downloadURL https://drive.google.com/open?id=0By5o6ue8fgYWYW0yXzlkYjZsZXc&authuser=0 | |
// @description Exports portals currently in view for use with Google Map ( KML Format ). | |
// @include https://www.ingress.com/intel* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python36 | |
# -*- coding: utf-8 -*- | |
""" | |
Download m3u8 from kinokong | |
[!] need ffmpeg installed from system | |
""" | |
import sys | |
import tempfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
GO https://www.youtube.com/feed/channels | |
*/ | |
// https://stackoverflow.com/a/61511955/626898 | |
function waitForElm(selector) { | |
return new Promise(resolve => { | |
if (document.querySelector(selector)) { | |
return resolve(document.querySelector(selector)); | |
} |