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 | |
################################ | |
# OS X Install ISO Creater # | |
# # | |
# Author: shela # | |
################################ | |
####################################### | |
# Declarations |
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 | |
# <https://archlinuxarm.org/platforms/armv8/broadcom/raspberry-pi-3> | |
echo -e "\n\nArch Linux ARM to SD Card" | |
echo -e "For the Raspberry Pi 3, if you want to use the unofficial arm64 variant." | |
echo -e "(Otherwise use the Raspberry Pi 2 version of this script!)\n\n" | |
if [[ $EUID -ne 0 ]]; then | |
echo "This script must be run as root" 1>&2 |
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 | |
# ----------------------------------------------------------- | |
# Mini(Conda) Environment for Failproof Certbot Renewals | |
# Created by Mitchell Krog: https://github.com/mitchellkrogza | |
# Copyright Mitchell Krog: https://github.com/mitchellkrogza | |
# GIST: https://gist.github.com/mitchellkrogza/547a850a34d022009e5d80e896684eac | |
# Last Updated: 2019-10-01 11:11:00 SAST | |
# ----------------------------------------------------------- | |
# Save as certbot-renewals.sh |
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 ipaddress | |
import requests | |
import pandas as pd | |
def bot_ip_addresses(): | |
bots_urls = { | |
'google': 'https://developers.google.com/search/apis/ipranges/googlebot.json', | |
'bing': 'https://www.bing.com/toolbox/bingbot.json' | |
} |
OlderNewer