Skip to content

Instantly share code, notes, and snippets.

View znotfireman's full-sized avatar

Fire znotfireman

  • Vietnam
  • 12:08 (UTC +07:00)
View GitHub Profile
@znotfireman
znotfireman / WTF EToH V6.server.luau
Created July 1, 2025 06:17
Attempt to bruteforce EToH's config blacklist
local actor = script:GetActor()
if not actor then
local ServerScriptService = game:GetService("ServerScriptService")
local ConfigBlacklist = ServerScriptService:WaitForChild("Server"):WaitForChild("ConfigBlacklist")
ConfigBlacklist:WaitForChild("Hash")
local workers = {}
for index = 1, 100 do
local actor = Instance.new("Actor")
@znotfireman
znotfireman / holonomic.rs
Created December 1, 2024 16:53
VEX V5 Holonomic X-Drive implemented in Rust
//! Implements a holonomic x-drive drivetrain.
// Yoinked from Höppenheimer, Destroyer of High Stakes
// Original implementation by edjubuh
// http://blog.elliotjb.com/
// https://github.com/edjubuh/HolonomicXDrive-PROS=
use core::f64::consts::PI;
use libm::{atan2, sqrt};