Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am gamax92 on github.
  • I am gamax92 (https://keybase.io/gamax92) on keybase.
  • I have a public key whose fingerprint is 9FD1 0A3D AC19 C500 8A46 9AAB C3A4 E43F FABD 470F

To claim this, I am signing this object:

-- Configurable Stuff starts here
local corrupt = true -- Actually preform Corruption
local recorrupt = true -- Unflag accessed areas for potential recorruption.
local range = 50 -- Percentage from 0 to 100 of breaking branches
local maxStack = 128 -- Maximal states on stack
local release = 1 -- Unflag accessed areas every (release)
local clean = false -- Clean up on resets
local badcodes = true -- Backtrack on "illegal" opcodes
local debug = false -- Put debugging messages
@gamax92
gamax92 / pico8_debugger.lua
Last active September 15, 2016 22:24
Monitor style debugger for PICO-8
do
local oenv=_ENV
if oenv==nil then
print("do not open this code in the\npico-8 editor")
return
end
local indent=0
local type, printh, coresume, cocreate=type, printh, coresume, cocreate
local _nvar
local function _count(_, ...)
@gamax92
gamax92 / siren-test.lua
Created April 19, 2017 20:56
Siren noise using Computronics sound card
local component = require("component")
local soundcard = require("soundcard")
if not component.isAvailable("sound") then
print("Error: Requires a Computronics Sound Card")
return
end
local sound = soundcard.wrap(component.sound, 100)
local freq={475,570}
@gamax92
gamax92 / gitlab-dark.css
Last active November 5, 2017 01:07
Gitlab Dark
.atwho-view {
border-color: #303030;
}
.atwho-view .cur {
background: #1040cf;
}
.atwho-view ul li {
border-bottom-color: #303030;
}
.atwho-view small {
From 2268caf86cd7ef1469bd3c535d06724c129e77e2 Mon Sep 17 00:00:00 2001
From: gamax92 <gamax92@aol.com>
Date: Thu, 18 May 2017 19:16:13 -0600
Subject: [PATCH] Experimental flat interpolation patch
Causing heavily flickering objects ...
---
dlls/wined3d/glsl_shader.c | 117 +++++++++++++++++++++++++++++++++++----------
1 file changed, 93 insertions(+), 24 deletions(-)