-
https://github.com/airblade/vim-gitgutter Shared Stars: x261 | 17% Stars: 1,670 Forks: 54 A Vim plugin which shows a git diff in the gutter (sign column).
-
https://github.com/Valloric/YouCompleteMe: Shared Stars: x259 | 16% Stars: 1,849 Forks: 158 A code-completion engine for Vim
-
https://github.com/FredKSchott/CoVim: Shared Stars: x202 | 15% Stars: 1,335 Forks: 40 Collaborative Editing for Vim
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
/** | |
* Mixin to let object fire events and let consumers | |
* listen to those events. | |
* | |
* @param object {Object} - producer of events. | |
* @param contract {Array of strings} - optional events contract. | |
* | |
* Examples: | |
* var obj = eventify({}); | |
* // now you can listen to object's events: |
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
var createArray = function (length) { | |
var arr = []; | |
for(var i = 0; i < length; ++i) { | |
arr[i] = 0.1; | |
} | |
return arr; | |
}, | |
length = 10000, | |
arr1 = createArray(length), | |
arr2 = createArray(length); |
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
function runtIt(n) { | |
'use strict'; | |
/* The Computer Language Benchmarks Game | |
http://benchmarksgame.alioth.debian.org/ | |
contributed by Isaac Gouy | |
Optimized by Roy Williams | |
"Deoptimized" to plain JS objects by Anvaka*/ | |
/** | |
* @type {number} |
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
/* The Computer Language Benchmarks Game | |
http://benchmarksgame.alioth.debian.org/ | |
contributed by Isaac Gouy | |
Optimized by Roy Williams*/ | |
/** | |
* @type {number} | |
*/ | |
var PI = 3.141592653589793; |
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
function runTest(n) { | |
'use strict'; | |
/* The Computer Language Benchmarks Game | |
http://benchmarksgame.alioth.debian.org/ | |
contributed by Isaac Gouy | |
Optimized by Roy Williams | |
Changed to JS arrays by Anvaka | |
*/ | |
/** |
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
// Do you think this is valid JS? | |
// Hint: copy this code to your dev tools conosle. | |
var emptyString = " "; |
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
🌀 🌁 🌂 🌃 🌄 🌅 🌆 🌇 🌈 🌉 🌊 🌋 🌌 🌍 🌎 🌏 | |
🌐 🌑 🌒 🌓 🌔 🌕 🌖 🌗 🌘 🌙 🌚 🌛 🌜 🌝 🌞 🌟 | |
🌠 🌡 🌢 🌣 🌤 🌥 🌦 🌧 🌨 🌩 🌪 🌫 🌬 🌭 🌮 🌯 | |
🌰 🌱 🌲 🌳 🌴 🌵 🌶 🌷 🌸 🌹 🌺 🌻 🌼 🌽 🌾 🌿 | |
🍀 🍁 🍂 🍃 🍄 🍅 🍆 🍇 🍈 🍉 🍊 🍋 🍌 🍍 🍎 🍏 | |
🍐 🍑 🍒 🍓 🍔 🍕 🍖 🍗 🍘 🍙 🍚 🍛 🍜 🍝 🍞 🍟 | |
🍠 🍡 🍢 🍣 🍤 🍥 🍦 🍧 🍨 🍩 🍪 🍫 🍬 🍭 🍮 🍯 | |
🍰 🍱 🍲 🍳 🍴 🍵 🍶 🍷 🍸 🍹 🍺 🍻 🍼 🍽 🍾 🍿 | |
🎀 🎁 🎂 🎃 🎄 🎅 🎆 🎇 🎈 🎉 🎊 🎋 🎌 🎍 🎎 🎏 | |
🎐 🎑 🎒 🎓 🎔 🎕 🎖 🎗 🎘 🎙 🎚 🎛 🎜 🎝 🎞 🎟 |
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
// How to get all nodes? | |
traverse(graph) | |
.nodes() | |
.forEach(function(node) { | |
// node is here | |
}); | |
// how to get all neighbors of startNodeId? | |
var grandChildren = traverse(graph) | |
.nodes() |
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
// engine is injected into layout: | |
var layout = forceBasedLayout(engine); | |
// Modify global gravity force: | |
engine.gravity(9.8); | |
// Modify drag coefficient: | |
engine.drag(0.1); | |
// ... you can also chain code above | |
// engine.gravity(9.8).drag(0.1); |