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: GoBuild.bat | |
| :: Author: Hadi Cahyadi <[email protected]> | |
| :: Date: 2026-01-17 | |
| :: Description: Robust Go project build script with notifications | |
| :: License: MIT | |
| :: Usage: | |
| :: gobuild main.go -o app.exe | |
| :: gobuild mydir\ -o app.exe | |
| :: gobuild -o app.exe main.go | |
| :: gobuild --output=app.exe --tags=prod --ldflags="-s -w" |
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 <[email protected]> | |
| # 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 <[email protected]> | |
| # 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 <[email protected]> | |
| # 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 <[email protected]> | |
| :: 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 <[email protected]> | |
| :: 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: [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 |
NewerOlder