A clean, opinionated, power‑user‑grade list of KernelSU / Magisk / Zygisk / LSPosed modules. Think: stability first, stealth where needed, quality‑of‑life everywhere. Emojis included. Whistles enabled. 🚀
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
| # without progress | |
| Get-ChildItem -Path "C:\Your\Path\Here" -Recurse -File | Unblock-File | |
| # with progress | |
| Get-ChildItem -Path "C:\Your\Path\Here" -Recurse -File | ForEach-Object { Write-Host "Unblocking $($_.FullName)" ; Unblock-File $_ } |
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
| find . -type f \( -name "docker-compose.yml" -o -name "compose.yaml" \) -execdir sh -c 'echo "↓ Stopping in $(pwd)"; docker compose down' \; |
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
| // ==UserScript== | |
| // @name StoresAce Product Scraper — CSV Export with UI (parallel per-item) | |
| // @namespace https://supermarsx.github.io/userscripts | |
| // @version 1.1.0 | |
| // @description Scrape all product data and export a flattened CSV. Now requests per-item HTML, KPIs, composition (and optionally cardex) IN PARALLEL so each product is fetched “all at once”. Includes overlay UI with Start/Cancel, progress bar, retry/backoff, and failure list. | |
| // @author Supermarsx | |
| // @match https://COMPANYID.storesace.com/* | |
| // @run-at document-end | |
| // @grant none | |
| // ==/UserScript== |
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 bash | |
| # ============================================================================= | |
| # Portainer Auto-Installer & Auto-Updater | |
| # ============================================================================= | |
| # Purpose | |
| # Idempotently install or update Portainer CE to the latest image and | |
| # automatically keep it up-to-date via cron. The script only recreates the | |
| # container when a newer image is available and verifies successful startup. | |
| # | |
| # What it does |
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
| REG ADD HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate /v DeferFeatureUpdates /t REG_DWORD /d "0" /f | |
| REG ADD HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsStore /v DisableOSUpgrade /t REG_DWORD /d "0" /f | |
| REG ADD HKEY_LOCAL_MACHINE\SYSTEM\Setup\UpgradeNotification /v UpgradeAvailable /t REG_DWORD /d "1" /f | |
| REG ADD HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate /v ProductVersion /t REG_SZ /d "Windows 11" /f | |
| REG ADD HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate /v TargetReleaseVersion /t REG_DWORD /d "1" /f | |
| REG ADD HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate /v TargetReleaseVersionInfo /t REG_SZ /d "25H2" /f |
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
| location /rpc/ { | |
| proxy_pass https://IPADDRESS/rpc/; | |
| proxy_ssl_server_name on; | |
| proxy_ssl_verify off; | |
| proxy_set_header Host $host; | |
| proxy_set_header X-Real-IP $remote_addr; | |
| proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
| proxy_set_header X-Forwarded-Proto $scheme; | |
| proxy_http_version 1.1; | |
| proxy_buffering off; |
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
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
| <html xmlns="http://www.w3.org/1999/xhtml"> | |
| <head> | |
| <meta http-equiv="refresh" content="0; URL='/RDWeb'"/> | |
| <script>window.location.href='/RDWeb';</script> | |
| <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> | |
| <title>Please wait...</title> | |
| </head> | |
| <body> | |
| <h1>Please wait...</h1> |
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
| # Set the user to fix | |
| $user = "DOMAIN\UserName" | |
| # Reapply FullAccess with AutoMapping disabled on every mailbox where the user currently has FullAccess | |
| Get-Mailbox -ResultSize Unlimited -RecipientTypeDetails UserMailbox,SharedMailbox,RoomMailbox,EquipmentMailbox | | |
| Where-Object { | |
| Get-MailboxPermission -Identity $_.Identity -User $user -ErrorAction SilentlyContinue | | |
| Where-Object { $_.AccessRights -contains "FullAccess" -and -not $_.IsInherited } | |
| } | ForEach-Object { | |
| Remove-MailboxPermission -Identity $_.Identity -User $user -AccessRights FullAccess -Confirm:$false |
Generate a file named AGENTS.md that serves as a contributor guide for this repository. Your goal is to produce a clear, concise, and well-structured document with descriptive headings and actionable explanations for each section. Follow the outline below, but adapt as needed — add sections if relevant, and omit those that do not apply to this project.
Document Requirements
- Title the document "Repository Guidelines".
- Use Markdown headings (#, ##, etc.) for structure.
NewerOlder