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 December 12, 2025 13:49
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:
@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