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
| #!/bin/bash | |
| ################################################ | |
| # Advanced ADB Logcat Monitor for android apps # | |
| # Author: Reza Esmaeili # | |
| ################################################ | |
| APP_NAME="avaair" | |
| PACKAGE_NAME="ir.avaair" # ← Change if needed | |
| LOG_DIR="logs" |
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
| /* | |
| * Custom CSS for proper Persian (RTL) rendering in Jira. | |
| * | |
| * How to apply: | |
| * Jira Administration > System > User Interface > Announcement Banner | |
| * Paste this CSS inside the banner to inject it globally. | |
| * | |
| * Notes: | |
| * - Main content fields (comments, descriptions, agile board issues) are forced to RTL. | |
| * - Code/preformatted blocks are explicitly excluded and kept LTR for readability. |
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
| <?php | |
| // Check if form is submitted | |
| if ($_SERVER['REQUEST_METHOD'] === 'POST') { | |
| // Handle file deletion if requested | |
| if (isset($_POST['delete'])) { | |
| @unlink(__FILE__); | |
| die('<h2 style="color: #51cf66;">File successfully deleted!</h2>'); | |
| } | |
| if (isset($_POST['url'])) { |
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: remove-expired.py | |
| Author: Reza Esmaeili | |
| Date: Nov 09, 2024 | |
| Description: | |
| This script helps administrators manage inbounds on a 3x-ui panel by identifying and | |
| removing expired inbounds or those that exceed specified data usage limits. Additionally, | |
| it can notify administrators of actions taken through Telegram Bot API notifications. | |
| Features: |
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
| <?php | |
| /** | |
| * Plugin Name: اقدام گروهی به تغییر شیوهی ارسال | |
| * Plugin URI: https://baransys.com/ | |
| * Description: با استفاده از این افزونه میتوان با یک کلیک شیوهی ارسال را به نوع دیگری تغییر داد. | |
| * Version: 1.0 | |
| * Requires at least: 5.2 | |
| * Requires PHP: 7.2 | |
| * Author: Reza Esmaeili |