Skip to content

Instantly share code, notes, and snippets.

View pp0236's full-sized avatar

pp021 pp0236

  • brbrbrbrbrbr
View GitHub Profile
@Rerumu
Rerumu / luau_in_luau.lua
Last active May 6, 2024 21:59
Luau translated to Luau, as a Studio compatible script
This file has been truncated, but you can view the full file.
-- Roblox's Luau as a Luau script
-- Translated using https://github.com/Rerumu/Wasynth
local luau_script = [[
print("Hello, World!")
]]
local Integer = (function()
local Numeric = {}
local NUM_ZERO, NUM_ONE, NUM_SIX_FOUR
@DataPools
DataPools / EditMethod.java
Last active July 21, 2023 03:36
Method to edit a method inside a .jar file using Javassist
import java.io.DataOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.URI;
import java.nio.file.FileSystem;
import java.nio.file.FileSystems;
import java.nio.file.Files;
import java.nio.file.Path;