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: ../pfman/pfman.bat | |
| :: Author: Hadi Cahyadi <cumulus13@gmail.com> | |
| :: Date: 2026-06-05 | |
| :: Description: | |
| :: License: MIT | |
| @echo off | |
| chcp 65001 >nul | |
| title Windows Prefetch Manager | |
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: RustBuild.bat | |
| :: Author: Hadi Cahyadi <cumulus13@gmail.com> | |
| :: Date: 2026-01-17 | |
| :: Description: Robust Rust project build script with notifications | |
| :: License: MIT | |
| :: Usage: | |
| :: rustbuild | |
| :: rustbuild --release | |
| :: rustbuild --target x86_64-pc-windows-gnu | |
| :: rustbuild -r --features "feature1,feature2" |
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 -*- | |
| # File: adbb.py | |
| # Author: Hadi Cahyadi <cumulus13@gmail.com> | |
| # Date: 2026-05-21 | |
| # Description: Professional • Robust • Production-Ready | |
| # License: MIT | |
| """ |
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
| @echo off | |
| if "%~1"=="" goto usage | |
| if "%~1"=="1" goto vertical | |
| if "%~1"=="2" goto multiline | |
| goto usage | |
| :vertical | |
| prompt $e[38;2;0;255;255m[%time: =0%]$e[0m $e[38;2;120;255;120m$p$e[0m$e[38;2;255;200;0m ^>^> $e[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
| :: File: GoBuild.bat | |
| :: Author: Hadi Cahyadi <cumulus13@gmail.com> | |
| :: 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 <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 |
NewerOlder