This is a curated collection of links to cheap VPS (Virtual Private Server) hosting providers, aggregators, and community resources.
The goal is to provide an easy reference point for exploring budget-friendly hosting options worldwide.
- All trademarks, company names, and product names mentioned are the property of their respective owners.
A Node.js utility script to parse Microsoft Launcher backup JSON files and list which apps (by package ID) are placed inside which home screen folders.
This is useful when migrating, auditing, or just inspecting your Launcher setup.
Note
You must first export a backup from Microsoft Launcher (via its settings) and unwrap it via this script by command node .\script.js .\launcher_backup_main.bak .\backup.json --unwrap-strings
A Node.js utility that recursively scans JSON files and removes embedded base64-encoded images.
Useful for cleaning huge dumps or configs that contain binary image blobs (PNG, JPEG, GIF, BMP, WEBP, HEIF/AVIF, SVG, …) under arbitrary keys — including:
- Raw base64 strings (
"iVBORw0KGgoAAA...") - Base64 strings broken with
\n,\r, etc. - Data URLs (
"data:image/png;base64,iVBOR...") - JSON-stringified objects with image fields inside (e.g.
"bitmap":{"icon":"iVBOR..."}stored as a string)
This gist contains a set of MacroDroid macros exported to .mdr format.
The macros are designed to send notifications about calls, SMS, and Wi-Fi events directly to a Telegram chat using the Telegram Bot API.
- Outgoing call notifications
| <# | |
| .SYNOPSIS | |
| Copies a file to multiple destinations matching a wildcard path pattern. | |
| .DESCRIPTION | |
| This script copies a specified source file to multiple target directories defined | |
| by a wildcard-based destination pattern. Use '*' in any folder segment to match | |
| any directory name. Existing files are not overwritten unless you use -Force. | |
| .PARAMETER SourcePath |
This gist resolves newline symbol missing in Macrodroid HTTP GET searchParams.
This is a template created for dedicated purpose - to copy them raw and paste without modifications to Macrodroid HTTP GET searchParams modal window. By pasting as raw without any modification, you will get a message with newlines, preserved for HTTP GET method.
This is a simple URL proxy script that forwards requests to a target URL specified by the url query parameter. If no URL is provided or if the URL is invalid, the script returns a 400 error.
- Proxy Requests: Forwards incoming HTTP requests to a target URL.
- Error Handling: Returns a 400 error if the URL parameter is missing or invalid.
- Flexible Request Handling: Supports GET, HEAD, and other HTTP methods.
| PUSHGATEWAY_URL= # PushGateway server URL | |
| PUSHGATEWAY_USER= # Basic auth username to PushGateway server | |
| PUSHGATEWAY_PASS= # Basic auth password to PushGateway server | |
| INSTANCE= # Your string to name host instance. For the sake of readability, should be unique | |
| TIMEOUT= # Dunno what is this for, no clear description of it |