Skip to content

Instantly share code, notes, and snippets.

View benagricola's full-sized avatar
🐒
Working on MillenniumOS!

Ben Agricola benagricola

🐒
Working on MillenniumOS!
View GitHub Profile
@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()