# Stop any old instance (ignore errors if it didn't exist)
sudo systemctl disable --now mbot.service 2>/dev/null || true
# Prepare clean workspace
cd ~
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
[CmdletBinding()] | |
param( | |
[Parameter(Mandatory=$true)] | |
[string]$PortableDir, # e.g. C:\Users\ASUS\Downloads\Compressed\GoogleChromePortable | |
[string]$ProfileDir = "C:\Chrome138Profile", | |
[switch]$DisableUpdater # Optional: stop & disable Google Update services/tasks | |
) | |
$ErrorActionPreference = 'Stop' |
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
~$ nvidia-smi | |
Fri Aug 1 23:43:49 2025 | |
+-----------------------------------------------------------------------------------------+ | |
| NVIDIA-SMI 570.133.07 Driver Version: 570.133.07 CUDA Version: 12.8 | | |
|-----------------------------------------+------------------------+----------------------+ | |
| GPU Name Persistence-M | Bus-Id Disp.A | Volatile Uncorr. ECC | | |
| Fan Temp Perf Pwr:Usage/Cap | Memory-Usage | GPU-Util Compute M. | | |
| | | MIG M. | | |
|=========================================+========================+======================| | |
| 0 NVIDIA GeForce RTX 5070 Ti On | 00000000:01:00.0 Off | N/A | |
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
~$ nvidia-smi | |
Fri Aug 1 23:24:07 2025 | |
+-----------------------------------------------------------------------------------------+ | |
| NVIDIA-SMI 570.144 Driver Version: 570.144 CUDA Version: 12.8 | | |
|-----------------------------------------+------------------------+----------------------+ | |
| GPU Name Persistence-M | Bus-Id Disp.A | Volatile Uncorr. ECC | | |
| Fan Temp Perf Pwr:Usage/Cap | Memory-Usage | GPU-Util Compute M. | | |
| | | MIG M. | | |
|=========================================+========================+======================| | |
| 0 NVIDIA GeForce RTX 5070 On | 00000000:83:00.0 Off | N/A | |
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
~$ nvidia-smi | |
Fri Aug 1 22:57:17 2025 | |
+-----------------------------------------------------------------------------------------+ | |
| NVIDIA-SMI 570.169 Driver Version: 570.169 CUDA Version: 12.8 | | |
|-----------------------------------------+------------------------+----------------------+ | |
| GPU Name Persistence-M | Bus-Id Disp.A | Volatile Uncorr. ECC | | |
| Fan Temp Perf Pwr:Usage/Cap | Memory-Usage | GPU-Util Compute M. | | |
| | | MIG M. | | |
|=========================================+========================+======================| | |
| 0 NVIDIA GeForce RTX 5060 Ti On | 00000000:01:00.0 Off | N/A | |
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
(function URLScout(){ | |
const PANEL_ID = "__url_scout_panel__"; | |
const STYLE_ID = "__url_scout_style__"; | |
const SEEN_KEY = "__url_scout_seen__"; | |
// --- helpers ------------------------------------------------------------- | |
const likelyStart = (s)=> /^(https?:|wss?:|data:|blob:|mailto:|tel:|\/|\.\/|\.\.\/|\/\/)/i.test(s||""); | |
const urlRe = /(https?:\/\/[^\s"'`<>]+|wss?:\/\/[^\s"'`<>]+|\/\/[^\s"'`<>]+|\/(?:[A-Za-z0-9\-._~!$&'()*+,;=:@\/?%#])+)/g; | |
const srcsetSplit = (v)=> (v||"").split(',').map(x=>x.trim().split(/\s+/)[0]).filter(Boolean); |
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
# WhatsApp Sync Fix Script Suite | |
# Purpose: Fix WhatsApp syncing issues without losing messages | |
# Compatible with: WhatsApp from Microsoft Store on Windows 10 | |
<# | |
.SYNOPSIS | |
A comprehensive script suite to fix WhatsApp synchronization issues on Windows 10. | |
.DESCRIPTION | |
This script performs several actions to fix WhatsApp syncing problems: | |
- Terminates WhatsApp processes |
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
# Run as Administrator | |
if (-NOT ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) { | |
Write-Warning "Please run this script as Administrator" | |
break | |
} | |
Write-Host "Fixing WSL2 and Docker Desktop installation..." -ForegroundColor Green | |
# Enable required Windows features | |
Write-Host "Step 1: Enabling required Windows features..." -ForegroundColor Cyan |