If you can’t visually highlight with plain Space (Termius sends Ctrl+Space), and want to save tmux copy-mode selection to a file, do this:
- Press
Ctrl+bthen: - Paste these lines one by one, pressing Enter after each:
| /** | |
| * @name BrowserStorageAudit | |
| * @version 1.0.0 | |
| * @description This script audits the browser's storage mechanisms to identify potential sources of large data usage, particularly focusing on Cache Storage, IndexedDB, LocalStorage, and SessionStorage. It logs the findings to the console for easy inspection. | |
| * @author sumonst21 | |
| */ | |
| (async () => { | |
| console.log("%c--- STARTING BROWSER STORAGE AUDIT ---", "color: #00ff00; font-weight: bold;"); | |
| // 1. Audit Cache Storage API (Most likely culprit for video chunks) |
| sudo modprobe -r rmi_smbus && sudo modprobe rmi_smbus | |
| sudo modprobe -r hid_rmi && sudo modprobe hid_rmi |
| 104.28.37.12/32 | |
| 104.28.37.13/32 | |
| 104.28.37.14/32 | |
| 104.28.37.15/32 | |
| 104.28.37.16/32 | |
| 104.28.43.4/32 | |
| 104.28.43.5/32 | |
| 104.28.43.6/32 | |
| 104.28.43.7/32 | |
| 104.28.43.8/32 |
Open an Elevated PowerShell Prompt
Run the Command
(Get-CimInstance -query 'select * from SoftwareLicensingService').OA3xOriginalProductKey
| #!/usr/bin/env bash | |
| # exit on error | |
| set -o errexit | |
| STORAGE_DIR=/opt/render/project/.render | |
| if [[ ! -d $STORAGE_DIR/chrome ]]; then | |
| echo "...Downloading Chrome" | |
| mkdir -p $STORAGE_DIR/chrome | |
| cd $STORAGE_DIR/chrome |
| CREATE TABLE "cards" ( | |
| "id" serial, | |
| "card_type" varchar(20), | |
| "card_fee" money, | |
| PRIMARY KEY ("id") | |
| ); | |
| CREATE TABLE "personalizations" ( | |
| "id" serial, | |
| "font" varchar(15), |