├── .gitignore ├── LICENSE ├── README.md ├── VERSION ├── docker ├── Dockerfile ├── build.sh ├── docker-entrypoint.sh └── run.sh ├── happy_bubbles_logo.png ├── main.go ├── make_releases.sh ├── run_always.sh ├── screenshot_added_beacons.png ├── screenshot_latest_beacons.png ├── static_html ├── VERSION ├── css │ ├── materialize.min.css │ └── presence.css ├── font │ ├── material-design-icons │ │ ├── LICENSE.txt │ │ ├── Material-Design-Icons.eot │ │ ├── Material-Design-Icons.svg │ │ ├── Material-Design-Icons.ttf │ │ ├── Material-Design-Icons.woff │ │ └── Material-Design-Icons.woff2 │ └── roboto │ │ ├── Roboto-Bold.eot │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-Bold.woff │ │ ├── Roboto-Bold.woff2 │ │ ├── Roboto-Light.eot │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-Light.woff │ │ ├── Roboto-Light.woff2 │ │ ├── Roboto-Medium.eot │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-Medium.woff │ │ ├── Roboto-Medium.woff2 │ │ ├── Roboto-Regular.eot │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto-Regular.woff │ │ ├── Roboto-Regular.woff2 │ │ ├── Roboto-Thin.eot │ │ ├── Roboto-Thin.ttf │ │ ├── Roboto-Thin.woff │ │ └── Roboto-Thin.woff2 ├── fonts │ └── roboto │ │ ├── Roboto-Bold.eot │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-Bold.woff │ │ ├── Roboto-Bold.woff2 │ │ ├── Roboto-Light.eot │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-Light.woff │ │ ├── Roboto-Light.woff2 │ │ ├── Roboto-Medium.eot │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-Medium.woff │ │ ├── Roboto-Medium.woff2 │ │ ├── Roboto-Regular.eot │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto-Regular.woff │ │ ├── Roboto-Regular.woff2 │ │ ├── Roboto-Thin.eot │ │ ├── Roboto-Thin.ttf │ │ ├── Roboto-Thin.woff │ │ └── Roboto-Thin.woff2 ├── img │ └── hippo.svg ├── index.html └── js │ ├── add-beacon.tag │ ├── home.tag │ ├── jquery.min.js │ ├── latest_beacons.tag │ ├── materialize.min.js │ ├── moment.min.js │ ├── riot-compiler.min.js │ ├── settings.tag │ └── todo.tag └── web.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.8.3 2 | -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/docker/build.sh -------------------------------------------------------------------------------- /docker/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/docker/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/docker/run.sh -------------------------------------------------------------------------------- /happy_bubbles_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/happy_bubbles_logo.png -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/main.go -------------------------------------------------------------------------------- /make_releases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/make_releases.sh -------------------------------------------------------------------------------- /run_always.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/run_always.sh -------------------------------------------------------------------------------- /screenshot_added_beacons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/screenshot_added_beacons.png -------------------------------------------------------------------------------- /screenshot_latest_beacons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/screenshot_latest_beacons.png -------------------------------------------------------------------------------- /static_html/VERSION: -------------------------------------------------------------------------------- 1 | 1.8.3 2 | -------------------------------------------------------------------------------- /static_html/css/materialize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/css/materialize.min.css -------------------------------------------------------------------------------- /static_html/css/presence.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/css/presence.css -------------------------------------------------------------------------------- /static_html/font/material-design-icons/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/font/material-design-icons/LICENSE.txt -------------------------------------------------------------------------------- /static_html/font/material-design-icons/Material-Design-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/font/material-design-icons/Material-Design-Icons.eot -------------------------------------------------------------------------------- /static_html/font/material-design-icons/Material-Design-Icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/font/material-design-icons/Material-Design-Icons.svg -------------------------------------------------------------------------------- /static_html/font/material-design-icons/Material-Design-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/font/material-design-icons/Material-Design-Icons.ttf -------------------------------------------------------------------------------- /static_html/font/material-design-icons/Material-Design-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/font/material-design-icons/Material-Design-Icons.woff -------------------------------------------------------------------------------- /static_html/font/material-design-icons/Material-Design-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/font/material-design-icons/Material-Design-Icons.woff2 -------------------------------------------------------------------------------- /static_html/font/roboto/Roboto-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/font/roboto/Roboto-Bold.eot -------------------------------------------------------------------------------- /static_html/font/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/font/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /static_html/font/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/font/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /static_html/font/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/font/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /static_html/font/roboto/Roboto-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/font/roboto/Roboto-Light.eot -------------------------------------------------------------------------------- /static_html/font/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/font/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /static_html/font/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/font/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /static_html/font/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/font/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /static_html/font/roboto/Roboto-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/font/roboto/Roboto-Medium.eot -------------------------------------------------------------------------------- /static_html/font/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/font/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /static_html/font/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/font/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /static_html/font/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/font/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /static_html/font/roboto/Roboto-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/font/roboto/Roboto-Regular.eot -------------------------------------------------------------------------------- /static_html/font/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/font/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /static_html/font/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/font/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /static_html/font/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/font/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /static_html/font/roboto/Roboto-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/font/roboto/Roboto-Thin.eot -------------------------------------------------------------------------------- /static_html/font/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/font/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /static_html/font/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/font/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /static_html/font/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/font/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /static_html/fonts/roboto/Roboto-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/fonts/roboto/Roboto-Bold.eot -------------------------------------------------------------------------------- /static_html/fonts/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/fonts/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /static_html/fonts/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/fonts/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /static_html/fonts/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/fonts/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /static_html/fonts/roboto/Roboto-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/fonts/roboto/Roboto-Light.eot -------------------------------------------------------------------------------- /static_html/fonts/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/fonts/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /static_html/fonts/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/fonts/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /static_html/fonts/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/fonts/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /static_html/fonts/roboto/Roboto-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/fonts/roboto/Roboto-Medium.eot -------------------------------------------------------------------------------- /static_html/fonts/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/fonts/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /static_html/fonts/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/fonts/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /static_html/fonts/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/fonts/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /static_html/fonts/roboto/Roboto-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/fonts/roboto/Roboto-Regular.eot -------------------------------------------------------------------------------- /static_html/fonts/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/fonts/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /static_html/fonts/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/fonts/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /static_html/fonts/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/fonts/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /static_html/fonts/roboto/Roboto-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/fonts/roboto/Roboto-Thin.eot -------------------------------------------------------------------------------- /static_html/fonts/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/fonts/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /static_html/fonts/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/fonts/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /static_html/fonts/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/fonts/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /static_html/img/hippo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/img/hippo.svg -------------------------------------------------------------------------------- /static_html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/index.html -------------------------------------------------------------------------------- /static_html/js/add-beacon.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/js/add-beacon.tag -------------------------------------------------------------------------------- /static_html/js/home.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/js/home.tag -------------------------------------------------------------------------------- /static_html/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/js/jquery.min.js -------------------------------------------------------------------------------- /static_html/js/latest_beacons.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/js/latest_beacons.tag -------------------------------------------------------------------------------- /static_html/js/materialize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/js/materialize.min.js -------------------------------------------------------------------------------- /static_html/js/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/js/moment.min.js -------------------------------------------------------------------------------- /static_html/js/riot-compiler.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/js/riot-compiler.min.js -------------------------------------------------------------------------------- /static_html/js/settings.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/js/settings.tag -------------------------------------------------------------------------------- /static_html/js/todo.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/static_html/js/todo.tag -------------------------------------------------------------------------------- /web.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-bubbles/presence/HEAD/web.go --------------------------------------------------------------------------------