Skip to content

Instantly share code, notes, and snippets.

@tml3nr
tml3nr / fast_firefox.md
Created October 4, 2024 14:51 — forked from RubenKelevra/fast_firefox.md
Make Firefox fast again
@tml3nr
tml3nr / Win10HometoPro.cmd
Created October 26, 2023 23:53 — forked from FadeMind/Win10HometoPro.cmd
Convert Windows 10 Home to Pro
cscript.exe %windir%\system32\slmgr.vbs /rilc
cscript.exe %windir%\system32\slmgr.vbs /upk
cscript.exe %windir%\system32\slmgr.vbs /ckms
cscript.exe %windir%\system32\slmgr.vbs /cpky
cscript.exe %windir%\system32\slmgr.vbs /ipk VK7JG-NPHTM-C97JM-9MPGT-3V66T
sc config LicenseManager start= auto & net start LicenseManager
sc config wuauserv start= auto & net start wuauserv
clipup -v -o -altto c:\
@tml3nr
tml3nr / Update-AUPackages.md
Created March 28, 2023 01:01 — forked from virtualex-itv/Update-AUPackages.md
Update-AUPackages Report #powershell #chocolatey
add address=1.37.34.225 list=IP-TIKTOK
add address=14.225.18.245 list=IP-TIKTOK
add address=14.225.18.246/31 list=IP-TIKTOK
add address=14.225.20.144 list=IP-TIKTOK
add address=14.225.20.146/31 list=IP-TIKTOK
add address=14.225.20.148 list=IP-TIKTOK
add address=14.225.20.152 list=IP-TIKTOK
add address=14.225.26.15 list=IP-TIKTOK
add address=14.225.240.101 list=IP-TIKTOK
add address=14.225.240.103 list=IP-TIKTOK
@tml3nr
tml3nr / Recaptcha Solver (Automatically solves Recaptcha in browser).user.js Recaptcha Solver in Browser | Automatically solves Recaptcha in browser by engageub | Note: This script is solely intended for the use of educational purposes only and not to abuse any website. This script uses audio in order to solve the captcha. Use it wisely and do not abuse any website. Click "Raw" to install it on Tampermonkey
// ==UserScript==
// @name Recaptcha Solver (Automatically solves Recaptcha in browser)
// @namespace Recaptcha Solver
// @version 2.1
// @description Recaptcha Solver in Browser | Automatically solves Recaptcha in browser
// @author engageub
// @match *://*/recaptcha/*
// @connect engageub.pythonanywhere.com
// @connect engageub1.pythonanywhere.com
// @grant GM_xmlhttpRequest
@tml3nr
tml3nr / java_download.sh
Created July 18, 2021 11:07 — forked from wavezhang/java_download.sh
download java from oracle without login
wget -c --no-cookies --no-check-certificate --header "Cookie: oraclelicense=accept-securebackup-cookie" https://download.oracle.com/otn-pub/java/jdk/12.0.2+10/e482c34c86bd4bf8b56c0b35558996b9/jdk-12.0.2_linux-x64_bin.tar.gz
@tml3nr
tml3nr / cpustatus.sh
Created May 5, 2019 14:24 — forked from ecampidoglio/cpustatus.sh
A Bash script that prints the current state of the CPU on a Raspberry Pi. It displays variables like temperature, voltage and speed.
#!/bin/bash
# cpustatus
#
# Prints the current state of the CPU like temperature, voltage and speed.
# The temperature is reported in degrees Celsius (C) while
# the CPU speed is calculated in megahertz (MHz).
function convert_to_MHz {
let value=$1/1000
echo "$value"