npx -y @refinist/ccsa@latest '{"version":3,"lines":[[{"id":"7a0f430e-12bc-40b1-9867-4d6b702c9b0f","type":"current-working-dir","color":"gradient:atlas","rawValue":true,"metadata":{"abbreviateHome":"true"}},{"id":"3231b940-9ead-4135-92f0-f05f6afaf7a0","type":"separator"},{"id":"d8793076-ef92-49aa-b860-77a60d3c71bc","type":"git-branch"},{"id":"e19cdfe2-79a4-47b4-a589-8be36b33673d","type":"separator"},{"id":"c402c97e-41be-4fee-a94d-115e75195760","type":"git-changes"},{"id":"ef030b95-f7f1-4c5d-8679-790e403a4677","type":"separator"},{"id":"40cdc389-0b23-4a65-964c-852a6473bf5c","type":"custom-command","commandPath":"echo \"⬢ $(node -v)\"","color":"gradient:cristal"}],[{"id":"dd-1","type":"model","bold":true,"rawValue":true},{"id":"9fd5eb5a-4c9d-4b69-b6f5-92c664f73f5e","type":"separator"},{"id":"cf22d4a8-304c-47e8-b766-86f32b26173b","type":"thinking-effort","bold":true,"rawValue":true},{"id":"8419e77e-9474-46b8-aab4-3f56987bde8c","type":"separator"},{"id":"438001f2-59df-4a40-971b-5531309d05b2","type":"context-ba
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
| Native stack of the GUI (main) thread captured DURING the freeze of the | |
| non-native QFileDialog on a network drive. | |
| Captured with: py-spy dump --pid <pid> --native (py-spy 0.4.2) | |
| Environment : Qt 6.10.0 / PySide6 6.10.0, Windows 11 23H2, Python 3.13 | |
| Trigger : non-native QFileDialog (DontUseNativeDialog) browsing a mapped | |
| network directory. The native OS dialog is unaffected. | |
| The main thread is inside paintEvent and blocks resolving a file icon: | |
| QAbstractFileIconEngine::scaledPixmap -> QWaitCondition::wait, waiting for the |
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" |
NewerOlder