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 python3 | |
| """ | |
| MobaXterm v25+/v26 password decryptor (handles CVE-2025-0714 random-IV format). | |
| Older tools (HyperSine, XMCyber, clemthi) assume a fixed IV = AES-ECB(key, 0). | |
| MobaXterm >= 25.0 switched to a random per-password IV stored inline. Format: | |
| stored = "_@" + IV(16 chars) + base64(AES-256-CFB8(key, IV, password)) | |
| key = SHA512(master_password)[:32] |
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 python3 | |
| """ | |
| NEWER VERSION AVAILABLE AT:https://gitlab.com/yoanncure/gpu_installer | |
| ============================================================================= | |
| ML Package Installation Assistant | |
| An intelligent installer that automatically detects your system, GPU, and CUDA | |
| configuration to install the optimal ML package setup for your hardware. |
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
| <# : | |
| @echo off | |
| :: Batch section checks for Admin and launches PowerShell | |
| setlocal | |
| cd /d %~dp0 | |
| net session >nul 2>&1 | |
| if %errorLevel% neq 0 ( | |
| echo Requesting Admin privileges... | |
| powershell -Command "Start-Process -FilePath '%~f0' -Verb RunAs" | |
| exit /b |
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
| """ | |
| Python wrapper for Ultralytics SAM | |
| Available models: | |
| https://docs.ultralytics.com/models/sam/ | |
| SAM base: 'sam_b.pt' | |
| SAM large: 'mobile_sam.pt' | |
| https://docs.ultralytics.com/models/sam-2/ |
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 | |
| # REPLACE WITH YOUR CREDENTIALS | |
| BW_EMAIL="" | |
| BW_PASSWORD="" | |
| GDRIVE_FOLDER_ID="" | |
| EXPORT_FILE="bitwarden_export.json" | |
| TIMESTAMP=$(date +"%Y%m%d%H%M%S") | |
| ZIP_FILE="bitwarden_export_$TIMESTAMP.zip" |
In your local clone of your forked repository, you can add the original GitHub repository as a "remote". ("Remotes" are like nicknames for the URLs of repositories - origin is one, for example.) Then you can fetch all the branches from that upstream repository, and rebase your work to continue working on the upstream version. In terms of commands that might look like:
git remote add upstream https://github.com/whoever/whatever.git
git fetch upstream
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 | |
| # Check if the Python version argument is provided | |
| if [ -z "$1" ]; then | |
| echo "Usage: $0 <python-version>" | |
| exit 1 | |
| fi | |
| PYTHON_VERSION=$1 | |
| ENV_NAME="test_env_$PYTHON_VERSION" |
NewerOlder