Skip to content

Instantly share code, notes, and snippets.

View MrSapps's full-sized avatar
👀

MrSapps MrSapps

👀
View GitHub Profile
@MrSapps
MrSapps / abe.lua
Last active September 22, 2016 11:29 — forked from mlgthatsme/abe.lua
function init(self)
-- BEGIN STATE DATA
local states = {}
states.AbeStandToWalk = {
NextAnimation ='AbeWalking',
NextAnimationFrameIndex = 0,
@MrSapps
MrSapps / abe.lua
Last active September 22, 2016 08:00 — forked from anonymous/abe.lua
function init(self)
-- BEGIN STATE DATA
local states = {}
states.AbeStandToWalk = {
NextAnimation ='AbeWalking',
NextAnimationFrameIndex = 0,
@MrSapps
MrSapps / check_inc.py
Created June 3, 2016 09:46 — forked from zach-brockway/check_inc.py
A quick-and-dirty python script to find invalid ClInclude nodes in VS 2010 projects
from __future__ import print_function
import os, stat
import sys
from collections import namedtuple
from shutil import move
import fileinput
import os
import os.path
import xml.etree.ElementTree as ET