Skip to content

Instantly share code, notes, and snippets.

View ThevenRexOff's full-sized avatar
:shipit:
spaghetti code writer

ThevenRex ThevenRexOff

:shipit:
spaghetti code writer
View GitHub Profile
@ThevenRexOff
ThevenRexOff / pyclean.sh
Created February 20, 2024 01:56 — forked from technocake/pyclean.sh
Clear all python cache in directory
# pyclean command to clear all python cache in a directory
# source: https://stackoverflow.com/questions/28991015/python3-project-remove-pycache-folders-and-pyc-files
# in .bash_profile / .bash_rc etc put:
pyclean () {
find . -type f -name '*.py[co]' -delete -o -type d -name __pycache__ -delete
}
@ThevenRexOff
ThevenRexOff / bypassing-cloudflare-akamai-etc.md
Created February 8, 2024 22:00 — forked from 0xdevalias/bypassing-cloudflare-akamai-etc.md
Some notes/resources for bypassing anti-bot/scraping features on Cloudflare, Akamai, etc.

Bypassing Cloudflare, Akamai, etc

Some notes/resources for bypassing anti-bot/scraping features on Cloudflare, Akamai, etc.