A sunburst is similar to the treemap, except it uses a radial layout. The root node of the tree is at the center, with leaves on the circumference. The area (or angle, depending on implementation) of each arc corresponds to its value. Sunburst design by John Stasko. Data courtesy Jeff Heer.
View gist:5072402
This file contains 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
C:\Users\Yoshua\Dropbox\Projects\edu>jitsu login | |
info: Welcome to Nodejitsu yoshuawuyts | |
info: jitsu v0.12.1, node v0.8.20 | |
info: It worked if it ends with Nodejitsu ok | |
info: Executing command login | |
prompt: username: (yoshuawuyts) yoshuawuyts | |
prompt: password: | |
info: Authenticated as yoshuawuyts | |
error: Error running command login | |
error: EPERM, open 'C:\Users\Yoshua\.jitsuconf' |
View html5boilerplate.jade
This file contains 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
!!! 5 | |
//if lt IE 7 | |
<html class="no-js lt-ie9 lt-ie8 lt-ie7"> | |
//if IE 7 | |
<html class="no-js lt-ie9 lt-ie8"> | |
//if IE 8 | |
<html class="no-js lt-ie9"> | |
//[if gt IE 8]><! | |
html(class='no-js') | |
//<![endif]--> |
View jitsu error
This file contains 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
info: Creating snapshot 0.0.1-1 | |
info Uploading: [=============================] 100% | |
error: Error running command deploy | |
error: Nodejitsu Error (500): Internal Server Error | |
error: No matching versions found | |
help: For help with this error contact Nodejitsu Support: | |
help: webchat: <http://webchat.nodejitsu.com/> | |
help: irc: <irc://chat.freenode.net/#nodejitsu> | |
help: email: <support@nodejitsu.com> | |
help: |
View index.html
This file contains 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
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
#clock { | |
position: relative; | |
background: #222; | |
width: 960px; | |
height: 800px; | |
} |
View Stylus REM mixin
This file contains 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
//define default values (best to put this in the default.styl file) | |
base-font-size = 16 | |
base-line-height = 24 | |
//This is the useful part: it compares the given value to the base values and calculates the correct output | |
font-size($fontValue = base-font-size, $baseFontValue = base-font-size, $baseLineValue = base-line-height) | |
font-size $fontValue px | |
font-size ($fontValue / $baseFontValue) rem | |
line-height ($fontValue / $baseFontValue) * $baseLineValue | |
line-height ($baseLineValue/$baseFontValue) * ($fontValue / $baseFontValue) rem |
View Stylus heading style
This file contains 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
// | |
// Style any number of headings in one fell swoop: | |
// This is not yet supported by Stylus, see https://github.com/LearnBoost/stylus/issues/608 for more information. | |
headings(1..6) | |
for heading in headings() | |
h{{heading}} | |
@content |
View Triangle-background
This file contains 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
/start code | |
int mX, mY; //global variable initialization | |
void setup() { //note sure about making the screen scalable, but if you can | |
size(640, 480); //the code for drawing the triangles is parametric, so it would work | |
background(200); | |
noStroke(); //outlines are bad | |
} | |
void draw() { |
View path.txt
This file contains 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
C:\Ruby200-x64\bin; | |
C:\Chocolatey\bin; | |
C:\phantomjs; | |
C:\casperjs\batchbin; |
View h5bp.jade
This file contains 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
!!! 5 | |
//if lt IE 7 | |
<html class="no-js lt-ie9 lt-ie8 lt-ie7"> | |
//if IE 7 | |
<html class="no-js lt-ie9 lt-ie8"> | |
//if IE 8 | |
<html class="no-js lt-ie9"> | |
//[if gt IE 8]><! | |
html(class='no-js') | |
//<![endif] |
OlderNewer