name: tufte-viz description: | Ideate and critique data visualizations using Edward Tufte's principles from "The Visual Display of Quantitative Information." Use this skill when: (1) Designing new data visualizations or charts (2) Critiquing or improving existing visualizations (3) Reviewing dashboards or reports for graphical integrity (4) Deciding between visualization approaches (5) Reducing chartjunk or improving data-ink ratio (6) Planning small multiples or high-density displays
This file contains hidden or 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
| require 'formula' | |
| class Carbon < Formula | |
| homepage 'http://graphite.wikidot.com/' | |
| url 'http://pypi.python.org/packages/source/c/carbon/carbon-0.9.10.tar.gz' | |
| md5 '1d85d91fe220ec69c0db3037359b691a' | |
| depends_on 'python' | |
| depends_on 'twisted' => :python | |
| depends_on 'whisper' |
This file contains hidden or 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
| 1. Paste into /etc/yum.repos.d/puppetlabs.repo | |
| [puppetlabs] | |
| name=Puppet Labs - $basearch | |
| baseurl=http://yum.puppetlabs.com/el/6Server/products/$basearch | |
| failovermethod=priority | |
| priority=0 | |
| enabled=0 | |
| 2. rpm --import http://yum.puppetlabs.com/RPM-GPG-KEY-puppetlabs |
This file contains hidden or 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
| #! /bin/sh | |
| # | |
| # Author: Andreas Olsson <andreas@arrakis.se> | |
| # Version: @(#)autossh_tunnel.foo 0.1 27-Aug-2008 andreas@arrakis.se | |
| # | |
| # For each tunnel; make a uniquely named copy of this template. | |
| ## SETTINGS | |
| # |
This file contains hidden or 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
| if (typeof window.localStorage == 'undefined' || typeof window.sessionStorage == 'undefined') (function () { | |
| var Storage = function (type) { | |
| function createCookie(name, value, days) { | |
| var date, expires; | |
| if (days) { | |
| date = new Date(); | |
| date.setTime(date.getTime()+(days*24*60*60*1000)); | |
| expires = "; expires="+date.toGMTString(); |
This file contains hidden or 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
| set :application, 'foo' | |
| set :repository, '_site' | |
| set :scm, :none | |
| set :deploy_via, :copy | |
| set :copy_compression, :gzip | |
| set :use_sudo, false | |
| set :host, '127.0.0.1' | |
| role :web, host | |
| role :app, host |