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 | |
| # File: png2ico.py | |
| # Author: Hadi Cahyadi <cumulus13@gmail.com> | |
| # Date: 2025-12-22 | |
| # Description: Convert png to ico image with multiple sizes. | |
| # License: MIT | |
| from pathlib import Path |
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 | |
| #File: dprune.py | |
| ## Author: Hadi Cahyadi <cumulus13@gmail.com> | |
| # Date: 2025-12-22 | |
| # Description: Prune Docker images with 'None' tag. | |
| # License: MIT | |
| import subprocess | |
| from rich.console import Console |
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 | |
| # File: langdet.py | |
| # Author: Hadi Cahyadi <cumulus13@gmail.com> | |
| # Date: 2025-12-22 | |
| # Description: Detection human language except for english | |
| # License: MIT | |
| import sys | |
| import os | |
| import argparse |
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
| :: File: pathx.bat | |
| :: Author: Hadi Cahyadi <cumulus13@gmail.com> | |
| :: Date: 2025-12-18 | |
| :: Description: | |
| :: License: MIT | |
| @echo off | |
| chcp 65001 >nul | |
| :: Define ANSI color codes with proper escape character |
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
| :: File: mp4togif.bat | |
| :: Author: Hadi Cahyadi <cumulus13@gmail.com> | |
| :: Date: 2025-12-22 | |
| :: Description: | |
| :: License: MIT | |
| @echo off | |
| setlocal | |
| :: --- Mandatory Input Checking --- |
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: cumulus13@gmail.com | |
| 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 <cumulus13@gmail.com> | |
| # 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 (cumulus13@gmail.com) | |
| #license: MIT | |
| from pygments.lexers import get_all_lexers | |
| from rich.console import Console | |
| console = Console() | |
| def show_all_lexers(): |
NewerOlder