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".
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
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:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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 |