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
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
This is what we did to setup a few dashboards at platanus
A Dashing widget for displaying the number of attendees for a specific calendar event on Google Calendar
It's specially designed to be used against a recursive event. For example, we use it at platanus to show how many people and who is going to have lunch in the office.
Made by platanus in Chile
def prepare | |
# Download the files | |
for stream in @stream_urls do | |
system("curl -O https://s3.amazonaws.com/media-rhinobird.tv/#{stream[:name]}") unless File.exists?(stream[:name]) | |
end | |
# Create a tmp dir | |
system("rm -rf tmp && mkdir tmp") | |
system("rm -f video_story.txt") | |
system("rm -f audio_story.txt") |
var gulp = require('gulp'); | |
var concat = require('gulp-concat'); | |
var sass = require('gulp-sass'); | |
var minifyCss = require('gulp-minify-css'); | |
var rename = require('gulp-rename'); | |
var connect = require('gulp-connect'); | |
var paths = { | |
css: ['./www/css/**/*.css'], | |
js: ['./www/js/**/*.js'], |
#!/bin/sh | |
echo "What should the Application be called (no spaces allowed e.g. GCal)?" | |
read inputline | |
name=$inputline | |
echo "What is the url (e.g. https://www.google.com/calendar/render)?" | |
read inputline | |
url=$inputline |
# pushState friendly! | |
# The setup: | |
# * website name is `site.com` | |
# * the API for your running on localhost:3000 | |
# * the root for API calls is at `/api`, and you have authentication routes with root `/auth` (both go to localhost:3000) | |
# * javascript app is located at `/path/to/javascript/app` | |
# Assuming you have your server for API calls at localhost port 3000 | |
upstream api_sitecom { | |
server localhost:3000; |
#! /bin/sh | |
### BEGIN INIT INFO | |
# Provides: nginx | |
# Required-Start: $all | |
# Required-Stop: $all | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: starts the nginx web server | |
# Description: starts nginx using start-stop-daemon |
bind '"\M-[A":history-search-backward' | |
bind '"\M-[B":history-search-forward' |