Below I've recorded my efforts while trying to analyze and modify the firmware of the amazing Skytraxx 3 flight vario:
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
import logging.config | |
from mediagoblin.app import MediaGoblinApp | |
from beaker.middleware import SessionMiddleware | |
logging.config.fileConfig('paste_local.ini') | |
app = MediaGoblinApp('mediagoblin_local.ini') | |
app = SessionMiddleware(app, { |
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
#!/usr/bin/env bash | |
mkdir vim | |
curl https://s3.amazonaws.com/heroku-vim/vim-7.3.tar.gz --location --silent | tar xz -C vim | |
export PATH=$PATH:/app/vim/bin |