Skip to content

Instantly share code, notes, and snippets.

@serg06
serg06 / main.py
Created December 28, 2022 22:12
Python script for pinging Trusted Traveler Program website for appointments and notifying you by text
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)
'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 (
@serg06
serg06 / main.js
Last active August 6, 2024 05:06
Greasemonkey script for displaying the real time on Twitch VOD timestamps
// ==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==