Skip to content

Instantly share code, notes, and snippets.

View hhkcu's full-sized avatar
🍊
🍊

hkcu hhkcu

🍊
🍊
View GitHub Profile
@hhkcu
hhkcu / fuck.html
Created September 30, 2023 22:00
Once your call has completed, please discard the mobile device in your nearest femboy.
<html>
<head>
<title>evil</title>
</head>
<body>
<h1>:3</h1>
<script>
// get compiled function
var func = makeJITCompiledFunction();
@hhkcu
hhkcu / DynamicImage.lua
Last active September 10, 2023 06:33
An example of Roblox's new DynamicImage class, written by ChatGPT. Note: DynamicImage must be a child of ImageLabel, or else the game will crash
-- Create a new DynamicImage
local dynamicImage = Instance.new("DynamicImage")
-- Set the size of the dynamic image
local imageSize = Vector2.new(512, 512)
dynamicImage.Size = imageSize
-- Parent the dynamic image to the workspace or another GUI element
dynamicImage.Parent = script.Parent -- MUST BE AN IMAGELABEL - WILL CRASH IF NOT
---- Minecraft Crash Report ----
// I bet Cylons wouldn't have this problem.
Time: 05/03/2022, 18:46
Description: Mod loading error has occurred
java.lang.Exception: Mod Loading has failed
at net.minecraftforge.logging.CrashReportExtender.dumpModLoadingCrashReport(CrashReportExtender.java:55) ~[forge-1.18.2-40.0.4-universal.jar%2374!/:?] {re:classloading}
at net.minecraftforge.client.loading.ClientModLoader.completeModLoading(ClientModLoader.java:169) ~[forge-1.18.2-40.0.4-universal.jar%2374!/:?] {re:classloading,pl:runtimedistcleaner:A}
at net.minecraft.client.Minecraft.lambda$new$1(Minecraft.java:555) ~[client-1.18.2-20220228.144236-srg.jar%2370!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
@hhkcu
hhkcu / Base64.lua
Created October 4, 2021 14:47 — forked from bortels/Base64.lua
Base64 encode/decode for Codea (Lua)
-- Lua 5.1+ base64 v3.0 (c) 2009 by Alex Kloss <alexthkloss@web.de>
-- licensed under the terms of the LGPL2
-- character table string
local b='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'
-- encoding
function enc(data)
return ((data:gsub('.', function(x)
local r,b='',x:byte()
@hhkcu
hhkcu / main.lua
Last active June 1, 2021 10:34
some fake char i made
script.Parent = game:GetService("LocalizationService") -- language building skills amr
script.Name = "hjkl"
function thread(fn)
coroutine.resume(coroutine.create(fn))
end
function stopthepress()
local why = {}
for i = 1 ,math.random(5,25) do