Skip to content

Instantly share code, notes, and snippets.

View amenasse's full-sized avatar

anthony menasse amenasse

View GitHub Profile
@amenasse
amenasse / charpad-background.asm
Last active July 29, 2022 07:02
Loading data from CharPad Pro in Kick Assembler (https://subchristsoftware.itch.io/charpad-pro)
.filenamespace background
// Render Background
.var background_data = LoadBinary("gfx/background.bin")
.var background_colors = LoadBinary("gfx/background-colors.bin")
.label color_memory = 55296
.label screen_memory = 1024
// Zero Page segment, don't include in prg

Keybase proof

I hereby claim:

  • I am amenasse on github.
  • I am amenasse (https://keybase.io/amenasse) on keybase.
  • I have a public key ASBfhIJJjTHlzKbsIDT-yhIfeDRUAYnpFW41nNdxr0AZzQo

To claim this, I am signing this object:

@amenasse
amenasse / Django toolbox 2015.md
Last active August 29, 2015 14:21
Summary of tools discussed during "Django Tooling 2015 - Updating the toolbox" @MelbDjango 2.0

Django toolbox 2015

Here are some of the tools that were discussed as part of (or before and after) the MelbDjango 2.0 meetup discussion "Django Tooling 2015 - Updating the toolbox".

Project templates

Cookie cutter

@amenasse
amenasse / djtestwatch
Last active August 29, 2015 14:02
runs django tests when a python file in the given directory changes and play some audio if it fails
#!/bin/bash
# runs django tests when a python file in the given directory changes
# complain loudly if they fail. Only works on OSX right now
# requires fswatch: https://github.com/alandipert/fswatch
trap "exit" SIGINT
command="python manage.py test --noinput"
fswatch "$1" | while read line; do
if [[ $line =~ py$ ]]; then