This file contains hidden or 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
from util.hook import * | |
from util import output | |
import random | |
# vend.py | |
# | |
# It vends! | |
# | |
# Version 2.0 |
This file contains hidden or 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
console.log("US Bank Balance Tasker Task"); | |
var TYPE_DEPOSIT = 0; | |
var TYPE_NEITHER = 1; | |
var TYPE_PURCHASE = 2; | |
var US_BANK_PHONE_NUMBER = 872265; | |
// Whether the script is being called by Tasker on an Android device, or it's being called on a PC | |
var onAndroid = (global("SDK") > 0); |
This file contains hidden or 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
# This is the list of Instagram accounts you want to get the follower counts of | |
# An @ is not required at the start of the name, and will be removed if there is one | |
INSTAGRAM_ACCOUNTS = [ | |
"nasa" | |
] | |
# Telegram bot token acquired from the BotFather | |
TELEGRAM_BOT_TOKEN = "GET_ONE" | |
# Telegram "chat ids" where the message will be sent |
OlderNewer