%windir%\explorer.exe ms-settings-connectabledevices:devicediscovery
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
import json | |
import os | |
import requests | |
from dotenv import load_dotenv | |
def main(): | |
load_dotenv() | |
TOKEN = 'rxPrvEqnIZZfZ4JO9Lu4dHf-bBhd_29CGKzWnaJeWKl71f01W_EMrV6lA_2aXsO' | |
SERVER_ID = '0sGJ0CVBeZV2HwYAq3S6ZKrN4N' | |
BASE_URL = 'https://api.revolt.chat' |
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
/* A wrapper library for printf function.*/ | |
/* At the core: vfprintf instead of printf is used to allow streams and variadic arguments */ | |
/* Print is also extended into helper functions error() warning() notice() info() */ | |
#include <stdio.h> | |
#include <stdarg.h> | |
// gcc -Wall -Wextra -Q print.c && a | |
// Stream: Error, custom, warning, notice, log, file |
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 | |
:wait_for_usb | |
TITLE Waiting for USB | |
FOR /f %%D IN ('wmic LogicalDisk get Caption^, VolumeName ^| find "LINUXUSB"') DO SET "DRIVE=%%D" | |
IF "%DRIVE%"=="" TIMEOUT /T 2 && CLS && GOTO :wait_for_usb | |
TITLE Formatting USB |
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
tar xfv linuxmint-21.1-xfce-64bit.iso |
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 | |
:repeat_run | |
IF EXIST "./gnirehtet-rust-win64/adb.exe" IF EXIST "./gnirehtet-rust-win64/gnirehtet.exe" GOTO :Start | |
TITLE Downloading gnirehtet-rust-win64 | |
curl -L "https://github.com/Genymobile/gnirehtet/releases/download/v2.5/gnirehtet-rust-win64-v2.5.zip" -O | |
TITLE Extracting gnirehtet-rust-win64 |
If you are getting this SMS message sent to your phone, that means that someone clicked Forgot Password on the Facebook.com entry page, entered your email into it and Proceeded with Send Code via SMS.
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 | |
SETLOCAL EnableDelayedExpansion | |
FOR /L %%i IN (1,1,65001) DO ( | |
chcp %%i >nul 2>nul | |
TITLE %%i | |
IF "!ERRORLEVEL!"=="0" ( | |
echo %%i !ERRORLEVEL! |
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
:root { | |
--sidebar-active: #2f3136 | |
} | |
a, a:hover { | |
color: #13abe8 | |
} | |
/* Apply margin to server scroller */ | |
[class*="SidebarBase"]:first-child > [class^="Base-sc"] { |
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
// ==UserScript== | |
// @name hCAPTCHA solver | |
// @namespace hCAPTCHA solver | |
// @version 1.0 | |
// @description Automatically solves hCAPTCHAs in browser | |
// @author Abdul Rehman Sheikh - engageub | |
// @licence MIT | |
// @match *://*/* | |
// @grant GM_xmlhttpRequest | |
// @grant GM_setValue |