Skip to content

Instantly share code, notes, and snippets.

View jluims's full-sized avatar
🐱

Jose M. jluims

🐱
  • United States
View GitHub Profile
@jluims
jluims / bedrock.py
Created July 15, 2023 00:47
bedrock server list ping (python)
from dataclasses import dataclass
import socket
import random
@dataclass
class Response:
motd: str
protocol_version: str
version_name: str
online_players: int
@jluims
jluims / algorithm.js
Created June 24, 2023 01:45
ketsu key algorithm reverse engineered
// NOTE: Most if not all of these console.logs were in the original obfuscated code, I commented most of them. :)
function generateUUID() {
var _0x3e34f1 = new Date().getTime();
var _0x96f645 =
(typeof performance !== "undefined" &&
performance.now &&
performance.now() * 1000) ||
0;
@jluims
jluims / test.js
Last active December 7, 2022 22:07
jstest
console.log('test');
@jluims
jluims / test.py
Created December 4, 2022 16:34
pytest
a = 255
a=0
b=1
c=2
d=3
e=4
f=5
g=6
h=7
i=8
@jluims
jluims / test
Created November 15, 2022 02:00
This file has been truncated, but you can view the full file.
@jluims
jluims / burrito.lua
Last active April 12, 2022 21:20
roblox burrito
if not game.Loaded then
game.Loaded:Wait()
end
if game.PlaceId ~= 7603178367 then
return
end
local delay = 3
local count = 2700 + 28200
@jluims
jluims / test.js
Created January 13, 2022 07:01
test-js
console.log('Hello, World!');
console.log('JavaScript!');