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
import requests | |
import sys | |
from time import sleep | |
from datetime import datetime | |
servers = [ | |
{ | |
"value": 0, | |
"prefix": "", |
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
let randomString = () => Math.random().toString(36).substring(7) | |
let delay = 7000 | |
let initialTimer = 7000 | |
let loops = 3500 | |
fetchData = () => { | |
/** | |
* COPY THE FETCH HERE | |
* IDENTIFY THE TEST STRING | |
* OVERWRITE IT WITH THE randomString() |
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
$gutter: 20% | |
=columns($ac, $tc: 12, $gp: $gutter) | |
// * $cw - column width | |
// * $tc - total columns | |
// * $ac - actual column (how many columns) | |
// * $oc - one column (width) | |
// * $tw - total width | |
$tw: 100% |
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
import smtplib | |
gmail_smtp = 'smtp.gmail.com:587' | |
from_mail = '[email protected]' | |
to_mail = '[email protected]' | |
mail_subject = 'Title/Subject' | |
mail_body = 'My email content...' | |
mail_content = "\r\n".join([ | |
"From: " + from_mail, |