Skip to content

Instantly share code, notes, and snippets.

@zeffii
Last active August 29, 2015 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zeffii/fc6774faf69ca122eba6 to your computer and use it in GitHub Desktop.
Save zeffii/fc6774faf69ca122eba6 to your computer and use it in GitHub Desktop.
sverchok site design11_headerclick

[ Launch: sverchok site design10_big_blobs ] fc6774faf69ca122eba6 by zeffii
[ Launch: sverchok site design9_blobs ] bbc1f304944631331f07 by zeffii
[ Launch: sverchok site design8_header ] d2fdc29378c66564fc1c by zeffii
[ Launch: sverchok site design7_header ] 2ad15603e6309765ea8e by zeffii
[ Launch: sverchok site design5 ] ce13b6de62ff14d9c945 by zeffii
[ Launch: sverchok site design4 ] 8f9748503e271a0393fa by zeffii
[ Launch: sverchok site design3 ] b174ec8ccdceaaf91810 by zeffii
[ Launch: sverchok site design2 ] 57c755695d758d910252 by zeffii
[ Launch: sverchok site design ] cbc2d2feba7d65d8c256 by zeffii
[ Launch: zeffii's geom dailies grid html BW ] 8cc363a1bc13f6b85419 by zeffii
[ Launch: zeffii's geom dailies grid html ] 5818369 by zeffii
[ Launch: zeffii's geom dailies grid ] 5756514 by zeffii
[ Launch: zeffii's geom dailies ] 5280281 by zeffii
[ Launch: zeffii's geom dailies ] 5279252 by enjalot
[ Launch: just mine p5 ] 5020279 by zeffii
[ Launch: just mine p5 ] 4966869 by zeffii
[ Launch: just mine p3 ] 4960296 by zeffii
[ Launch: just mine p2 ] 4959904 by zeffii
[ Launch: just mine ] 4959669 by zeffii
[ Launch: crossfilter racetrack ] 4956157 by zeffii
[ Launch: crossfilter racetrack ] 4624910 by zeffii
[ Launch: Another Inlet ] 4618198 by enjalot

{"description":"sverchok site design11_headerclick","endpoint":"","display":"div","public":true,"require":[{"name":"showdown","url":"//cdnjs.cloudflare.com/ajax/libs/showdown/0.3.1/showdown.min.js"},{"name":"showdown","url":"//cdnjs.cloudflare.com/ajax/libs/showdown/0.3.1/showdown.min.js"}],"fileconfigs":{"inlet.js":{"default":true,"vim":false,"emacs":false,"fontSize":12},"config.json":{"default":true,"vim":false,"emacs":false,"fontSize":12},"cars.csv":{"default":true,"vim":false,"emacs":false,"fontSize":12},"_.md":{"default":true,"vim":false,"emacs":false,"fontSize":12},"style.css":{"default":true,"vim":false,"emacs":false,"fontSize":12},"conf.js":{"default":true,"vim":false,"emacs":false,"fontSize":12},"recodes.csv":{"default":true,"vim":false,"emacs":false,"fontSize":12},"Manual.markdown":{"default":true,"vim":false,"emacs":false,"fontSize":12},"Manual":{"default":true,"vim":false,"emacs":false,"fontSize":12},"Manual.txt":{"default":true,"vim":false,"emacs":false,"fontSize":12}},"fullscreen":false,"play":false,"loop":false,"restart":false,"autoinit":true,"pause":true,"loop_type":"period","bv":false,"nclones":15,"clone_opacity":0.4,"duration":3000,"ease":"linear","dt":0.01,"tab":"edit","display_percent":0.46399999999999975,"ajax-caching":false,"thumbnail":"http://i.imgur.com/38VSTHI.png"}
function url(prefix, str){
return "url(" + prefix + str + ")";
}
var gh_asset_https = "https://cloud.githubusercontent.com/assets/"
var header_images = [
"619340/5768759/405160a8-9d14-11e4-9c2d-ed125d183ac9.png", // green lorenz
"619340/5299224/1c085d8e-7bc5-11e4-8246-6951c48014ef.png" // grey spidar legz
]
var content_display = d3.select("#display")
.style({background: '#dbdadb'})
var cmain = content_display.append("div")
.classed("content_main", true)
//.attr({width: '289px', height: '500px'});
var maindiv = cmain.append('div').classed('sv_maindiv', true);
var div1 = maindiv.append("div").attr('id', 'sv_headerCX');
// this can be transitioned to other images using a timer.
div1.append('img').classed('bottom', true)
.attr({src: gh_asset_https + "619340/5299224/1c085d8e-7bc5-11e4-8246-6951c48014ef.png"});
div1.append('img').classed('top', true)
.attr({src: gh_asset_https + "619340/5768759/405160a8-9d14-11e4-9c2d-ed125d183ac9.png"});
## On Comments
This article will first discuss comments in a language agnostic way, subsequent sections will detail language specific style and syntax.
### What are comments?
That's a fair question. In most languages a comment is a line of human readable information that doesn't interact with the program it appears in. Comments serve to document parts of a program and can describe functions, routines, data structures and design decisions. Comments are usually a good thing, but not always. Let's get the negativity out of the way first!
### Not all comments are useful.
Here are some examples of _avoidable_ comments.
- example: stating the obvious (content)
- example: does not make sense (content)
- example: does not relate to nearby code (context)
- example: seems to relate to code that has since been removed (context)
- example: the todo. if you include one add the date it was added. - fix your todos first!
### What are they good for?
Commenting is a strategy we use to convey quickly in words those things that we think are not obvious from the code alone. Any coder who starts to enjoy coding will realize that there are ways to make life for his future self (and others) easier, commenting can be one of those ways. Commenting, however, is not a substitute for writing clear code.
Comments can facilitate the comprehension speed for people reading a piece of code for the first time, but the comment must be smart. Let a comment describe the idea behind the code more than the workings of the code.
> Initially coders learn new syntax and place remarks about what a line of code does, this is ok to do - but eventually you will stop restating these tricks in your (native) tongue and trust that the code speaks for itself.
### Comments are like dress code sometimes
Depending on the environment your code lives in you might have to dress it up in formal attire. The company or open source project you work with has probably settled on a [programming style guide] which includes a section on how to format comments - it is important to align yourself with the prevailing style to make your contributions fit with the existing code base.
.cm-s-lesser-dark.CodeMirror { background: #1e2426; color: #696969; }
.cm-s-lesser-dark div.CodeMirror-selected {background: #064968 !important;} /* 33322B*/
.cm-s-lesser-dark span.cm-variable { color:#22EFFF; }
.cm-s-lesser-dark span.cm-variable-2 { color: #FFCCB4; }
.cm-s-lesser-dark span.cm-variable-3 { color: white; }
.cm-s-lesser-dark span.cm-string { color: Chartreuse; }
.cm-s-lesser-dark span.cm-string-2 {color: Chartreuse;}
.cm-s-lesser-dark span.cm-def {color: #FFCCB4; opacity: 1.0}
.cm-s-lesser-dark span.cm-bracket { color: #EBEFE7; }
.cm-s-lesser-dark pre { color:#FFF; }
.cm-s-lesser-dark span.cm-comment { color: #AFB4B4;}
.cm-s-lesser-dark span.cm-property {color: #FDA676;}
.cm-s-lesser-dark span.cm-number { color: #FF92EE;}
.cm-s-lesser-dark span.cm-keyword { color: #FFFF18; }
.cm-s-lesser-dark .CodeMirror-cursor { border-left: 1px solid white !important; }
.cm-s-lesser-dark .CodeMirror-gutters {background: #505050;}
.cm-s-lesser-dark .CodeMirror-linenumber {color: #D3D3D3;}
#sv_headerCX {
position:relative;
height:250px;
width:400px;
}
#sv_headerCX img {
position:absolute;
left:0;
opacity: 1;
-webkit-transition: opacity 1s ease-in-out;
-moz-transition: opacity 1s ease-in-out;
-o-transition: opacity 1s ease-in-out;
-ms-transition: opacity 1s ease-in-out;
transition: opacity 1s ease-in-out;
}
#sv_headerCX img.top:hover {
opacity:0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment