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
| #!/usr/bin/env bash | |
| # Vault Token helper for the Mac OS X Keychain. | |
| # | |
| # Vault allows an external programs to be configured as a token helper | |
| # that can get, store, and erase tokens on behalf of the Vault client. | |
| # | |
| # see https://www.vaultproject.io/docs/commands/token-helper.html | |
| # | |
| # To use this script, make it executable and set your ~/.vault file to |
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
| #!/usr/bin/env bash | |
| # Vault Token helper for the Linux key retention service. | |
| # | |
| # Since version 2.6, the Linux kernel has included a efficiently store | |
| # authentication data on a per thread, per process, per user, or per session | |
| # bases. | |
| # | |
| # Linux Key Management Utilities (keyutils) provides `keyctl` to control | |
| # the facility from the shell. |
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
| <?php | |
| // Use the AWS security token service's GetCallerIdentity command | |
| // to produce a request that allows Vault to identify the instance | |
| // that wants to authenticate. | |
| // | |
| // @see https://gist.github.com/joelthompson/378cbe449d541debf771f5a6a171c5ed | |
| $sts = new \Aws\Sts\StsClient([ | |
| 'region' => 'us-east-1', |
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
| diff --git a/app/components/ac-edit-group-modal/permissions/component.js b/app/components/ac-edit-group-modal/permissions/component.js | |
| index ea3e7f4b0..c25dcd786 100644 | |
| --- a/app/components/ac-edit-group-modal/permissions/component.js | |
| +++ b/app/components/ac-edit-group-modal/permissions/component.js | |
| @@ -24,7 +24,7 @@ export default Component.extend({ | |
| */ | |
| permissionCheckboxToggled: function(permission) { | |
| this.set('group.' + permission.get('slug'), !permission.get('checked')); | |
| - permission.set('checked', !permission.get('checked')); | |
| + permission.set('checked', !permission.get('checked')); |
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/bash | |
| [ -d ac_global/jsc ] || mkdir ac_global/jsc | |
| [ -d admin/jsc ] || mkdir admin/jsc | |
| closure_compile() { | |
| temp="${1%\'}" | |
| temp="${temp#\'}" | |
| list=() | |
| js=$(jq --raw-output '.["'"$temp"'"] | @sh' < tools/compilejs.json) |
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
| # vim: set ft=ruby: | |
| # port on VM => port on host machine | |
| port_mapping = { | |
| 80 => 8080, | |
| 443 => 4343, | |
| 1004 => 8081, | |
| 9200 => 9201, | |
| } |
composer global require consolidation/roboor downloadrobo.pharfrom http://robo.li/ and put it in your$PATH.- Copy the
RoboFile.phpabove so that it is a sibling ofdev - Modify the properties at the top like the
$originPrefixand$allRepos.
robo git:updateto add theupstreamremote to all of your repositories.
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
| diff --git a/app/Pipes/Http/SaveConnectionsPipe.php b/app/Pipes/Http/SaveConnectionsPipe.php | |
| index 3f54a0e..700935f 100644 | |
| --- a/app/Pipes/Http/SaveConnectionsPipe.php | |
| +++ b/app/Pipes/Http/SaveConnectionsPipe.php | |
| @@ -12,7 +12,7 @@ class SaveConnectionsPipe extends HttpPipe | |
| /** | |
| * The connection repository | |
| * | |
| - * @var object | |
| + * @var ConnectionRepository |
NewerOlder