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
| # The code could be resolved with a "combine" function but I'm lazy to change it. | |
| from math import sqrt | |
| class Vector: | |
| """ | |
| Vector main class | |
| """ | |
| def __init__(self, vector:list): |
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 sys | |
| import win32gui | |
| import win32api | |
| import win32process | |
| import win32con | |
| import os | |
| if not os.name == "nt": | |
| print("Only available in Windows.") | |
| sys.exit(-1) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 BlinkLearning Solver by Auax | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.2 | |
| // @description Simple cheat for BlinkLearning! | |
| // @author Auax | |
| // @match www.blinklearning.com:/* | |
| // @icon https://www.google.com/s2/favicons?domain=blinklearning.com | |
| // @grant none | |
| // ==/UserScript== |
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
| #include <iostream> | |
| #include <string> | |
| #include <chrono> | |
| #include <filesystem> | |
| #include <stdlib.h> | |
| // set filesystem namespace | |
| namespace fs = std::filesystem; | |
| std::string getOsName() |
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
| // ASSAULT CUBE Go external cheat. | |
| // The objective of this script is to show how to perform operations such as writing / reading the memory of a process. | |
| // With this script, you can change the rifle ammo inside the game. | |
| // You can set the ammo's value, ammo's address offset, and more inside the main() function. | |
| // Note: The window must be windowed for this to work. | |
| // BY AUAX 2006 | |
| package main | |
| import ( |
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 getpass | |
| import logging | |
| import os | |
| import platform | |
| import sys | |
| from os.path import join | |
| import requests.exceptions | |
| from discord_webhook import DiscordWebhook | |
| from passax.chrome import browsers |
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 socket | |
| import sys | |
| import threading | |
| import colorama | |
| import tqdm | |
| open_ports = [] | |
| ip = "192.168.1.1" # Type here the IP you want to scan. I will use 192.168.1.1 as an example | |
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
| /* Weird code to access the iframe and its variables as this code | |
| is intended to run in the 'javascript:' context in the search bar. | |
| Used in Chromebook with both dev console and extensions blocked :) */ | |
| function run_() { | |
| /* Get iframe's document and window (to access the variables of its context) */ | |
| const iframe_ = document.getElementById("class_iframe"); | |
| const iWindow = iframe_.contentWindow; | |
| const iDocument = iWindow.document; | |
| /* Get all correction buttons */ | |
| let els = iDocument.querySelectorAll(".js-correct, .js-save"); |
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 asyncio | |
| import json | |
| import time | |
| from pystyle import Colors, Colorate | |
| from typing import Dict, Any, List, Tuple | |
| from aiohttp import ClientSession | |
| from yarl import URL | |
OlderNewer