- Tree: goto
- Tree: lint subtree
- Rename file shortcut
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 manyToManyMap(source, first, second) { | |
'use strict'; | |
var result = {}, i, item; | |
for (i = 0; i < source.length; i += 1) { | |
item = source[i]; | |
if (!result[item[first]]) { | |
result[item[first]] = {}; | |
} | |
result[item[first]][item[second]] = item; | |
} |
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
/*jslint nomen: true, vars: true*/ | |
/*global define*/ | |
define(['jquery', 'lodash'], function ($, _) { | |
'use strict'; | |
var FallbackCrud = (function () { | |
function Class() { | |
this.cruds = arguments; | |
} | |
_.forEach(['create', 'read', 'update', 'del'], function (method) { |
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
Show hidden characters
[ | |
{ | |
"args": | |
{ | |
"to": "eol" | |
}, | |
"command": "move_to" | |
}, | |
{ | |
"args": |
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
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
. ~/.bashrc | |
mkdir ~/local | |
mkdir ~/node-latest-install | |
cd ~/node-latest-install | |
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
./configure --prefix=/home/$USER/local | |
make install | |
curl -O -L https://www.npmjs.org/install.sh | sh |
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 add(a) {return function(b){return a + b}} | |
function nEq(a) {return function(b){return a !== b}} | |
function eq(a) {return function(b){return a === b}} | |
function always(val) {return function(){return val}} | |
function id(a){return a} | |
function getPropertyValue(prop){ | |
var val; | |
prop.take(1).onValue(function(_val){val = _val}); | |
return val; |
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
/*global React, flyd, R*/ | |
(function () { | |
'use strict'; | |
var Player = function (control) { | |
return function (players) { | |
var player = {}; | |
var possibleNewPosition = flyd.stream([control.move], function () { | |
return (player.position() || 0) + control.move(); | |
}); | |
var canMove = flyd.stream([possibleNewPosition], function () { |
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
iofjuupasli@iofjuupasli:~/projects/timeraven$ ssh [email protected] | |
The authenticity of host '188.166.101.74 (188.166.101.74)' can't be established. | |
ECDSA key fingerprint is 84:4f:ff:cf:95:a8:5a:d4:72:90:56:c9:6a:37:b6:b5. | |
Are you sure you want to continue connecting (yes/no)? yes | |
Warning: Permanently added '188.166.101.74' (ECDSA) to the list of known hosts. | |
Welcome to Ubuntu 14.04.1 LTS (GNU/Linux 3.13.0-43-generic x86_64) | |
* Documentation: https://help.ubuntu.com/ | |
System information as of Fri Apr 24 02:49:47 EDT 2015 |
OlderNewer