This is a six part series, taking you through stages of designing and creating reusable visualizations with d3.js
All visualizations have the same functionality, showcase the individual points with a bar chart and sum up the selected bars.
[ | |
// remove ST3 3065 file/folder icons | |
{ | |
"class": "icon_file_type", | |
"content_margin": [0, 0] | |
}, { | |
"class": "icon_folder", | |
"content_margin": [0, 0] | |
}, { | |
"class": "icon_folder_loading", |
(function() { | |
var author = "displayName"; | |
var clickElement = function(element) { | |
if (!!!element) { | |
return; | |
} | |
var event = document.createEvent("HTMLEvents"); | |
event.initEvent("click", true, true); | |
event.eventName = "click"; | |
element.dispatchEvent(event); |
# Editor backup files | |
*.bak | |
*~ |
# Editor backup files | |
*.bak | |
*~ |
using System; | |
namespace ConsoleApplication | |
{ | |
enum Suit | |
{ | |
DIAMOND, | |
CLUB, | |
HEART, | |
SPADE |
This is a six part series, taking you through stages of designing and creating reusable visualizations with d3.js
All visualizations have the same functionality, showcase the individual points with a bar chart and sum up the selected bars.
[ | |
// highlight modified files (orange for dirty files, like default theme) | |
{ | |
"class": "tab_label", | |
"settings": ["highlight_modified_tabs"], | |
"parents": [{ | |
"class": "tab_control", | |
"attributes": ["dirty"] | |
}], | |
// "fg": [120, 170, 250], // blue |
[ | |
// highlight modified files (blue for dirty files, like default theme) | |
{ | |
"class": "tab_label", | |
"settings": ["highlight_modified_tabs"], | |
"parents": [{ | |
"class": "tab_control", | |
"attributes": ["dirty"] | |
}], | |
"fg": [20, 100, 220] |
[ | |
// sidebar heading (bold/white) | |
{ | |
"class": "sidebar_heading", | |
"color": [255, 255, 255], | |
"font.bold": true, | |
"shadow_color": [0, 0, 0], | |
"shadow_offset": [0, -1], | |
}, |
#!/bin/bash | |
clear | |
BORDER=$(printf '=%.0s' {1..80})\\n | |
HEADER="%-10s %8s %-10s %24s %11s\n" | |
FORMAT="%-10s %8d %-10s %11.2f\n" | |
WIDTH=150 | |
# not defined, what should this be? | |
# DIVIDER="DIVIDER" |