Skip to content

Instantly share code, notes, and snippets.

View PatoFlamejanteTV's full-sized avatar
🦆
Swimming on a lake :3

UltimateQuack PatoFlamejanteTV

🦆
Swimming on a lake :3
View GitHub Profile
@PatoFlamejanteTV
PatoFlamejanteTV / bc1q3yhqfqlx87acvn8xtq360lrp9sf63w3g47tegv
Created October 27, 2025 17:20
bc1q3yhqfqlx87acvn8xtq360lrp9sf63w3g47tegv
bc1q3yhqfqlx87acvn8xtq360lrp9sf63w3g47tegv
@PatoFlamejanteTV
PatoFlamejanteTV / fix.bat
Created September 30, 2025 20:49
Fixes Something went wrong. Try again later. 0x80070426 / Error fix: Something went wrong. Try again later. 0x80070426
REM Microsoft Store Error Fixer (RUN AS ADMIN!!)
REM Based on this Reddit comment:
REM https://www.reddit.com/r/Windows10/comments/j2c676/comment/g757anv/
sc config wlidsvc start= demand
net start wlidsvc
@PatoFlamejanteTV
PatoFlamejanteTV / genericwin10.txt
Created September 30, 2025 20:25
Generic Windows 10 key
VK7JG-NPHTM-C97JM-9MPGT-3V66T
@PatoFlamejanteTV
PatoFlamejanteTV / (P45 Miner).md
Created September 27, 2025 14:41
Telegram OTON miner bot link, mine $OTON for free with this bot, (P45 Miner)
@PatoFlamejanteTV
PatoFlamejanteTV / lolmwindows.bat
Last active October 15, 2025 23:46
Windows lolminer example.
@echo off
setlocal
REM Caminho base
set BASEDIR=%USERPROFILE%\lolMiner
set ZIPFILE=%USERPROFILE%\lolMiner_v1.98a_Win64.zip
REM Verifica se a pasta base existe, cria se não
if not exist "%BASEDIR%" mkdir "%BASEDIR%"
@PatoFlamejanteTV
PatoFlamejanteTV / antidevtool.user.js
Created September 19, 2025 21:13
Disable Anti-DevTool Neutralizer / Anti-devtools blocker / Anti-Devtools remover / Bypasser / Works for Chrome, Firefox, etc.
// ==UserScript==
// @name Disable Anti-DevTool Neutralizer
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Disables anti-devtool scripts using multiple techniques for debugging and development purposes.
// @author UltimateQuack (aak. PatoFlamejanteTV)
// @match *://*/*
// @grant none
// ==/UserScript==
@PatoFlamejanteTV
PatoFlamejanteTV / QCam.as
Created September 13, 2025 21:44
Adobe Flash custom VCam script, modded from Virtual Camera CS for Adobe Flash CS3 © by FlasH-lee. Please credit if you use it. Made by me.
// QCam.as -=-=- By UltimateQuack (aka. PatoFlamejanteTV/PatoEmChamas)
// Adobe Flash custom VCam script
// modded from Virtual Camera CS for Adobe Flash CS3 © by FlasH-lee.
// Please credit if you use it
// from original code (c) 2006-2007 by Sockpuppet Pty Ltd
// Virtual Camera CS for Adobe Flash CS3 © by FlasH-lee
import flash.geom.Matrix;
import flash.geom.ColorTransform;
@PatoFlamejanteTV
PatoFlamejanteTV / cleanup.bat
Created September 13, 2025 19:10
My WinScript script. INTENSIVE clenup.
:: WinScript
@echo off
:: Check if the script is running as admin
openfiles >nul 2>&1
if %errorlevel% neq 0 (
color 4
echo This script requires administrator privileges.
echo Please run WinScript as an administrator.
pause
exit
@PatoFlamejanteTV
PatoFlamejanteTV / lolmlinux.sh
Last active September 27, 2025 14:28
LolMiner example using TON
wget https://github.com/Lolliedieb/lolMiner-releases/releases/download/1.97/lolMiner_v1.97_Lin64.tar.gz && tar -xf lolMiner_v1.97_Lin64.tar.gz && cd 1.97 && ./lolMiner -a TON --pool https://server1.whalestonpool.com/ --user UQDQlR7PXSGvhZuxUMKgIEcF-_zBT7ZgdNlIFkBPtcjAI_QE
@PatoFlamejanteTV
PatoFlamejanteTV / FlashWindow.cs
Created August 5, 2025 19:54
Simple tool for using the FlashWindow() function.
[StructLayout(LayoutKind.Sequential)]
public struct FLASHWINFO
{
public uint cbSize;
public IntPtr hwnd;
public uint dwFlags;
public uint uCount;
public uint dwTimeout;
}