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
import time | |
from twilio.rest import Client | |
import requests | |
from dateutil import parser | |
# Create client | |
account_sid = '' # TODO: Grab from Twilio | |
auth_token = '' # TODO: Grab from Twilio | |
client = Client(account_sid, auth_token) |
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
'use strict' | |
const { pathToFileURL } = require('node:url') | |
// node_modules/lambda-runtime/dist/node16/UserFunction.js | |
;(function () { | |
const __getOwnPropNames = Object.getOwnPropertyNames | |
const __commonJS = (cb, mod) => | |
function __require() { | |
return ( |
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== | |
// @name New Userscript | |
// @namespace http://tampermonkey.net/ | |
// @version 2024-08-06 | |
// @description try to take over the world! | |
// @author You | |
// @match https://www.twitch.tv/videos/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=twitch.tv | |
// @grant none | |
// ==/UserScript== |
OlderNewer