Skip to content

Instantly share code, notes, and snippets.

View mpapis's full-sized avatar
🙃
I am slow to respond, ping me when it's crucial.

Michal Papis mpapis

🙃
I am slow to respond, ping me when it's crucial.
View GitHub Profile
@andrzejsliwa
andrzejsliwa / Makefile
Last active December 10, 2017 16:25
simple project for cross development with KICK ASSEMBLER for C64
VICE_REMOTE_MONITOR = true
VICE_REU = true
VICE_CARTRR = cartridge/rr38p-tmp12reu.bin
VICE_PATH = /Applications/x64.app/Contents/MacOS/x64
VICE_OPTS = +confirmexit -rrbioswrite
DEFAULT_PRG = learning
include c64_kickass.mk
@wayneeseguin
wayneeseguin / template_.conf
Created May 30, 2011 14:29 — forked from mpapis/template_.conf
templates on bdsm
a={{a}}
b={{b}}
c={{c}}
d={{d}}
e={{e}}
module PythonishDecorator
def method_added(name)
return unless @decorations
decorations = @decorations.dup
@decorations = nil
alias_method "undecorated_#{name}", name
define_method(name) do |*args|