Skip to content

Instantly share code, notes, and snippets.

View alexios-angel's full-sized avatar
🌴
On vacation

Alexios Angel alexios-angel

🌴
On vacation
  • Delaware
  • 23:09 (UTC -05:00)
View GitHub Profile
@alexios-angel
alexios-angel / main.tf
Created January 1, 2026 16:53
Terraform script to manage typo domains on Cloudflare -- HTTP Redirect + Email spoofing prevention + Basic DNS
# Copyright 2026 Alexios Angel
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the “Software”), to deal in the
# Software without restriction, including without limitation the rights to use, copy,
# modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
# and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
@alexios-angel
alexios-angel / main.py
Created January 1, 2026 16:38
Delete All DNS Records For All Domains In A .txt File - Cloudflare
#!/usr/bin/env python3
"""
Delete ALL Cloudflare DNS records for each domain in domains.txt.
Usage:
python delete_dns_records.py --api-token YOUR_TOKEN --domains-file domains.txt
"""
"""
API permissions:
@alexios-angel
alexios-angel / main.py
Last active January 1, 2026 16:28
Delete All Page Rules for Domains in .txt File - Cloudflare
#!/usr/bin/env python3
"""
Delete ALL Cloudflare Page Rules for each domain in domains.txt.
Authentication uses only an API Token (no email needed).
Usage:
python delete_page_rules.py --api-token YOUR_TOKEN --domains-file domains.txt
"""
"""
@alexios-angel
alexios-angel / main.py
Last active January 1, 2026 16:31
Disable Email Routing for All Domains In A .txt File - Cloudflare
#!/usr/bin/env python3
"""
Disable Cloudflare Email Routing for domains where it is currently enabled.
Usage:
python disable_email_routing.py --api-token YOUR_TOKEN \
--domains-file domains.txt
"""
"""
Welcome to Our Project - A Multi-Project C++ Template with Conan Dependency Management
-------------------------------------------------------------------------------------
This is a template for a large and complex C++ project with Conan dependency management, consisting of multiple sub-
projects. This readme will guide you through understanding our project structure and how to set up, build, and run the
project.
Project Structure
-----------------