This is what we did to setup a few dashboards at platanus
- Raspberry Pi
- Dashing Service
- Wifi stick (optional)
This is what we did to setup a few dashboards at platanus
A Dashing widget for displaying next Brazil 2014 World Cup matches from calendar event on Google Calendar
It was designed to be used against this calendar worldcupbrazilcalendar
Made by platanus in Chile
app: | |
ports: | |
- 3000/tcp | |
environment: | |
CHANGED_FILES_THRESHOLD: '300' | |
ENABLE_HTTPS: 'no' | |
EXEMPT_ORGS: platanus | |
GITHUB_CLIENT_ID: <GITHUB_CLIENT_ID> | |
GITHUB_CLIENT_SECRET: <GITHUB_CLIENT_SECRET> | |
HOST: monkeyci.platan.us |
app: | |
image: platanus/hound | |
ports: | |
- 3000 | |
volumes: | |
- /usr/src/app | |
links: | |
- db | |
- redis | |
env_file: .env.production |
angular.module('restmod').factory('RootlessAMSApi', ['restmod', 'inflector', function(restmod, inflector) { | |
return restmod.mixin({ // include default packer extension | |
$config: { | |
style: 'AMS', | |
primaryKey: 'id', | |
jsonMeta: 'meta', | |
jsonLinks: 'links' | |
}, |
I hereby claim:
To claim this, I am signing this object:
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
#!/bin/bash | |
request=$(heroku apps --json) | |
apps=$(echo $request | jq -r '.[] | select(.buildpack_provided_description=="Multipack").name') | |
for i in $apps; | |
do | |
echo $i | |
heroku buildpacks:set https://github.com/heroku/heroku-buildpack-multi.git --app $i | |
done |
ENV['RAILS_ENV'] = ARGV[0] || 'production' | |
DIR = File.dirname(__FILE__) | |
require DIR + '/config/environment' | |
class PriceLoader | |
include PricingLogger | |
def load | |
log_start_proccess | |
PriceChange.where(realm: nil).order("price_changed_at").find_each do |price_change| |