Skip to content

Instantly share code, notes, and snippets.

View rbpi's full-sized avatar
🎯
Focusing

Huge rbpi

🎯
Focusing
View GitHub Profile
@rbpi
rbpi / centos-7-mirrors-aliyun.sh
Created September 9, 2018 15:54
CentOS 7 mirrors&epel with aliyun
#!/bin/bash
set -e
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
echo "CentOS-Base.repo backup successful"
/bin/cat <<'EOF' > /etc/yum.repos.d/CentOS-Base.repo
# CentOS-Base.repo
#
# The mirror system uses the connecting IP address of the client and the
@rbpi
rbpi / centos-7-mirrors-tsinghua.sh
Created September 9, 2018 15:55
CentOS 7 mirrors&epel with tsinghua
#!/bin/bash
set -e
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak
echo "CentOS-Base.repo backup successful"
/bin/cat <<'EOF' > /etc/yum.repos.d/CentOS-Base.repo
# CentOS-Base.repo
#
# The mirror system uses the connecting IP address of the client and the
@rbpi
rbpi / htb_exam_monitoring.py
Last active May 8, 2024 10:02
HTB Academy Certificate Exams Results Monitoring
# HTB Academy Certificate Exams Results Monitoring
# Author: RBPi
import requests
import time
import random
import os
import urllib.parse
import urllib.request