Skip to content

Instantly share code, notes, and snippets.

View Enmn's full-sized avatar
🚶‍♂️
I'm walking around

Asom Enmn

🚶‍♂️
I'm walking around
View GitHub Profile
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active May 7, 2026 22:03
Complete Recent Discord Quest

Caution

As of April 7th 2026, Discord has expressed their intent to crack down on automating quest completion.

Some users have received the following system message:

image

There isn't much I can do to make the script undetected, so use it at your own risk, as you most likely WILL get flagged by doing so.

Complete Recent Discord Quest

@Enmn
Enmn / seeker.py
Last active September 15, 2022 23:51
A script or a very simple tool that downloads any icon, whether it is paid or not. Be careful, we are not responsible for anything bad that happens from you, you must also download (aiohttp and aiofiles and pystyle) we only support two websites and they are (icon8s.com and www.iconfinder.com)
import os
import aiohttp
import asyncio
import aiofiles
from urllib.parse import urlparse
from bs4 import BeautifulSoup
from pystyle import *
# Colors Python
cyan = "\033[1;36m"
@Enmn
Enmn / fontshow.sh
Created March 19, 2022 04:18
It's a script that dwarfs all fonts of the 'figlet-fonts' folder
read -p "Enter the text here: " name
read -p "Enter the path 'figlet-fonts' here: " path
for filename in $path*; do
# The font name will appear here
basename $filename
echo ""
echo ""
# sudo apt-get install figlet
figlet -f $filename $name || continue