Skip to content

Instantly share code, notes, and snippets.

View Ext-NT's full-sized avatar
😶‍🌫️
Coding

existence Ext-NT

😶‍🌫️
Coding
View GitHub Profile
@Ext-NT
Ext-NT / NTULTRATYPEBOT
Created June 13, 2023 17:29
Nitro Type UltraType Bot
from discord.ext import commands
from utils.nitro_type import get_profile
from datetime import datetime
from db.models import User
import secret
import asyncio
import inspect
import discord
bot = commands.Bot(command_prefix='!')
@SitanHuang
SitanHuang / typeracer.hack.js
Last active April 1, 2024 05:26
Typeracer 100% hack (Version 2 - Aadaptive Mode - Types at minimum speed required to win)
function triggerKeyboardEvent(el, keyCode, type)
{
var eventObj = document.createEventObject ?
document.createEventObject() : document.createEvent("Events");
if(eventObj.initEvent){
eventObj.initEvent(type, true, true);
}
eventObj.keyCode = keyCode;