├── .gitignore ├── COPYING ├── README.md ├── app.yaml ├── blip.js ├── index.html └── qr.png /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .*~ 3 | *.pyc 4 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/blip/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/blip/HEAD/README.md -------------------------------------------------------------------------------- /app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/blip/HEAD/app.yaml -------------------------------------------------------------------------------- /blip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/blip/HEAD/blip.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/blip/HEAD/index.html -------------------------------------------------------------------------------- /qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apenwarr/blip/HEAD/qr.png --------------------------------------------------------------------------------