This file contains hidden or 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
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| # author: Hadi Cahyadi (Enhanced with async/await) | |
| # email: [email protected] | |
| import sys | |
| import asyncio | |
| import clipboard | |
| import os | |
| import aiohttp |
This file contains hidden or 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
| #!/usr/bin/env python3 | |
| # Author: Hadi Cahyadi <[email protected]> | |
| # Date: 2025-08-27 10:18:57.533760 | |
| # Description: Create ascitext Logo | |
| # License: MIT | |
| import art | |
| from licface import makelist, CustomRichHelpFormatter | |
| import argparse | |
| import sys |
This file contains hidden or 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
| #!/usr/bin/env python | |
| from rich.console import Console, JustifyMethod | |
| from rich.markdown import Markdown | |
| from rich.theme import Theme | |
| from licface import CustomRichHelpFormatter | |
| from argparse import ArgumentParser | |
| import sys | |
| import os | |
| import clipboard |
This file contains hidden or 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
| #!/usr/bin/env python | |
| #author: Hadi Cahyadi ([email protected]) | |
| #license: MIT | |
| from pygments.lexers import get_all_lexers | |
| from rich.console import Console | |
| console = Console() | |
| def show_all_lexers(): |
This file contains hidden or 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
| #!/usr/bin/env python3 | |
| # ensure you has installed 'mpc' | |
| import os | |
| import time | |
| import sys | |
| from mpd import MPDClient, ConnectionError | |
| from rich import traceback as rich_traceback | |
| rich_traceback.install(width=os.get_terminal_size()[0], theme='fruity', show_locals=False) | |
| RESET = "\033[0m" |
This file contains hidden or 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
| #Persistent | |
| SetTitleMatchMode, 2 | |
| Loop { | |
| WinWait, Steganos Privacy Suite 21 | |
| IfWinExist, Steganos Privacy Suite 21 | |
| { | |
| ControlClick, Button1, Steganos Privacy Suite 21 | |
| Sleep, 100 | |
| } | |
| } |
This file contains hidden or 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
| class ProgressSession(requests.Session): | |
| def request(self, method, url, *args, max_try=3, retry_delay=1, **kwargs): | |
| attempt = 0 | |
| last_exception = None | |
| with Progress( | |
| SpinnerColumn(), | |
| TextColumn("[progress.description]{task.description}"), | |
| console=console, | |
| transient=True |
This file contains hidden or 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
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| import os | |
| import sys | |
| import re | |
| import traceback | |
| import argparse | |
| import glob | |
| import shutil |
This file contains hidden or 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 sys | |
| #import os | |
| from PyQt5 import QtWidgets, QtCore, QtGui | |
| from PyQt5.QtCore import Qt | |
| import clipboard | |
| class ColorDialog(QtWidgets.QWidget): | |
| def __init__(self): | |
| super().__init__() | |
| self.initUI() |
NewerOlder