This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |