Skip to content

Instantly share code, notes, and snippets.

View ElectroHeavenVN's full-sized avatar

ElectroHeavenVN

View GitHub Profile
@bytexenon
bytexenon / Make Discord Server With a Tag.md
Last active November 24, 2025 19:16
Make Discord Server With a Tag

Automation Script for Getting Discord Server with a Tag

Caution

TAGS HALTED FOR NEW SERVERS & ACCOUNTS BANNED


Due to widespread abuse of automation scripts, Discord has:

  1. STOPPED granting the experimental server tags for newly created servers.
  2. Started ACTIVELY BANNING accounts (temporarily and permanently) that used such scripts.
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active December 11, 2025 06:24
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This does not works in browser for quests which require you to play a game! Use the desktop app to complete those.

How to use this script:

  1. Accept a quest under Discover -> Quests
  2. Press Ctrl+Shift+I to open DevTools
  3. Go to the Console tab
  4. Paste the following code and hit enter:
@ph33nx
ph33nx / WinMasterBlocker.bat
Last active December 3, 2025 05:46
Block All Adobe .exe files via Firewall on Windows Using Batch Script | Stop adobe apps to access internet
:: ################################################################
:: ## 🔥 WinMasterBlocker 🔥 #
:: ################################################################
:: # Author: https://github.com/ph33nx #
:: # Repo: https://github.com/ph33nx/WinMasterBlocker #
:: # #
:: # This script blocks inbound/outbound network access #
:: # for major apps like Adobe, Autodesk, Corel, Maxon, #
:: # and more using Windows Firewall. #
:: # #
@Cyclenerd
Cyclenerd / AccessPoint.ino
Created July 26, 2017 19:46
ESP8266 : Create a WiFi access point and provide a DNS and web server on it, catch all traffic
/* Create a WiFi access point and provide a web server on it. */
#include <ESP8266WiFi.h>
#include "./DNSServer.h" // Patched lib
#include <ESP8266WebServer.h>
const byte DNS_PORT = 53; // Capture DNS requests on port 53
IPAddress apIP(10, 10, 10, 1); // Private network for server
DNSServer dnsServer; // Create the DNS object
ESP8266WebServer webServer(80); // HTTP server