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
| #!/usr/bin/env python3 | |
| # Author: SAVITHRU LOKANATH | |
| # Login to Telegram on web browser https://web.telegram.org | |
| # Install tesseract-ocr: apt-get install tesseract-ocr && pip install pytesseract | |
| # Install Telethon lib: pip install telethon | |
| # Install Text-to-Speech lib if using Windows: pip install pyttsx3 | |
| # To run, increase speaker volume to 100% & in your cmd prompt: python3 listener_visa_slots.py |
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
| #!/bin/bash | |
| TARGET_ORG=$1 | |
| if [$TARGET_ORG == ""]; then | |
| echo Please specify a target username | |
| echo For a list of available usernames use: sfdx force:org:list | |
| exit 1 | |
| fi |