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 | |
| set -x | |
| APP_NAME=$1 | |
| echo "logs for APP ${APP_NAME}" | |
| ssh ubuntu@bots.rikai-bots.com "pm2 logs author.${APP_NAME}" |
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
| { | |
| "meta": { | |
| "theme": "elegant" | |
| }, | |
| "basics": { | |
| "name": "David 'DC' Collier", | |
| "label": "Creative Engineer", | |
| "picture": "", | |
| "email": "dc@rikai.co", |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| export const makeEmbed = async (params: MakeEmbedParams) => { | |
| let { agent, imageUrl, imageAlt, encoding: imageFormat } = params; | |
| imageFormat = imageFormat || guessImageFormat(imageUrl) | |
| imageAlt = imageAlt || 'image' | |
| const check = fs.existsSync(imageUrl) | |
| if (!check) { | |
| const msg = `Unable to find image ${imageUrl}`; | |
| console.error(msg); |
OlderNewer