Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View xordspar0's full-sized avatar

Jordan Christiansen xordspar0

View GitHub Profile
@varikin
varikin / BestJavaEver.java
Last active September 30, 2021 19:35
The Original Best Java Ever
import static java.lang.System.*;
import static java.lang.Integer.*;
import static java.lang.String.*;
import static java.lang.Float.compare;
import java.lang.reflect.Field;
import java.util.ArrayList;
import java.util.List;
import javax.script.ScriptEngine;
import javax.script.ScriptEngineManager;
@perky
perky / ProFi.lua
Created May 30, 2012 20:32
ProFi, a simple lua profiler that works with LuaJIT and prints a pretty report file in columns.
--[[
ProFi v1.3, by Luke Perkin 2012. MIT Licence http://www.opensource.org/licenses/mit-license.php.
Example:
ProFi = require 'ProFi'
ProFi:start()
some_function()
another_function()
coroutine.resume( some_coroutine )
ProFi:stop()