Created by Christopher Manning
Nodes are linked to nodes in neighboring cells. The cell's color is a function of its area.
The white lines are the Delaunay triangulation and the purple cells are the Voronoi diagram.
| /* Gmail style scrollbar */ | |
| ::-webkit-scrollbar { | |
| width: 12px | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| border-width: 1px 1px 1px 2px | |
| } | |
| ::-webkit-scrollbar-track { | |
| border-width: 0 | |
| } |
Created by Christopher Manning
Nodes are linked to nodes in neighboring cells. The cell's color is a function of its area.
The white lines are the Delaunay triangulation and the purple cells are the Voronoi diagram.
| # https://github.com/pivotal/jasmine/pull/70/files | |
| jasmine.Matchers.prototype.toBeInstanceOf = (klass) -> | |
| this.actual instanceof klass |
| // Is the passed CSS property supported? | |
| // eg. detectCSS('transition') | |
| function detectCSS(prop){ | |
| var | |
| prop = prop.replace(/-(\w)/g,function(s,g){return g.toUpperCase()}), | |
| pre = ',Icab,Khtml,Moz,Ms,O,Webkit'.split(','); | |
| for (var i = 0; i < pre.length; ++i){ | |
| if(i==1) | |
| prop = prop.slice(0,1).toUpperCase() + prop.slice(1); |
| .highlight { background-color: #49483e } | |
| .c { color: #75715e } /* Comment */ | |
| .err { color: #960050; background-color: #1e0010 } /* Error */ | |
| .k { color: #66d9ef } /* Keyword */ | |
| .l { color: #ae81ff } /* Literal */ | |
| .n { color: #f8f8f2 } /* Name */ | |
| .o { color: #f92672 } /* Operator */ | |
| .p { color: #f8f8f2 } /* Punctuation */ | |
| .cm { color: #75715e } /* Comment.Multiline */ | |
| .cp { color: #75715e } /* Comment.Preproc */ |
| #!/usr/bin/env ruby | |
| # Aside from removing Ruby on Rails specific code this is taken verbatim from | |
| # mislav's git-deploy (http://github.com/mislav/git-deploy) and it's awesome | |
| # - Ryan Florence (http://ryanflorence.com) | |
| # | |
| # Install this hook to a remote repository with a working tree, when you push | |
| # to it, this hook will reset the head so the files are updated | |
| if ENV['GIT_DIR'] == '.' |