Skip to content

Instantly share code, notes, and snippets.

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

Morgan Walder Enmn

🚶‍♂️
i'm walking around
  • Somewhere on Earth
View GitHub Profile
@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