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
{ | |
"profiles": [ | |
{ | |
"complex_modifications": { | |
"rules": [ | |
{ | |
"description": "Change left_control + I/J/K/L to Arrow Keys", | |
"manipulators": [ | |
{ | |
"from": { |
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/python | |
# -*- coding: utf-8 -*- | |
## This script hits the haad and dha websites | |
## and checks if any new information has come out. | |
## If so, it sends an email notification | |
from bs4 import BeautifulSoup | |
import smtplib | |
import requests | |
from email.mime.text import MIMEText |
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
###- | |
###- Web whatsapp python selenium script | |
###- | |
### configurations | |
number_of_times = 10 | |
### List of contact names that match the contacts in your phone | |
listNames = ['babe', 'jesus', 'is', 'the', 'truth'] |