Script Kit Logo
Script Kit
by John Lindquist
Vercel OSS Program

Scripts by tearingItUp786

Whatsapp Template Message your babe!

tearingItUp786's avatar
Taranveer (Taran) Bains
// Name: Whatsapp Babe A Late Message // Description: Send your babe a whatsapp templated mesage to let em know you're running late! // Author: Taran "tearing it up" Bains // GitHub: @tearingitup786 // Schedule: 0 14 * * * import "@johnlindquist/kit"; // ScriptKit imports // Import Twilio SDK const twilio = await npm("twilio"); const phoneNumbers = await env( "TWILIO_PHONE_NUMBERS", "comma separated list of numbers: 131-131-1313,787-787-7878", ); try { const numbersToText = phoneNumbers.split(","); // Your Twilio Account SID

Navigate chrome bookmarks (with folder support)

tearingItUp786's avatar
Taranveer (Taran) Bains
// Name: Chrome bookmarks (with folder support) // Author: Taran "tearing it up" Bains // Description: Navigate your chrome bookmarks (even if they are in folders)! // GitHub: @tearingitup786 import "@johnlindquist/kit"; // Reading the Chrome bookmarks file from the user's system // Maybe allow for a choice of different browsers? let bookmarks = await readFile( home("Library/Application Support/Google/Chrome/Default/Bookmarks"), ); bookmarks = JSON.parse(bookmarks); bookmarks = bookmarks.roots.bookmark_bar.children; // Initializing an array to keep track of the navigation history let historyStack = []; const CUSTOMSEPARATOR = "-CUSTOMSEPARATOR-";