This file contains hidden or 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
let edificios = [ | |
[2, 9, 10], | |
[2, 4, 12], | |
[3, 7, 15], | |
[5, 12, 12], | |
[15, 20, 10], | |
[19, 24, 8] | |
] | |
function skyline(buildings){ |
This file contains hidden or 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
$ wget http://people.centos.org/tru/devtools-2/devtools-2.repo -O /etc/yum.repos.d/devtools-2.repo | |
$ yum install devtoolset-2-gcc devtoolset-2-binutils | |
$ yum install devtoolset-2-gcc-c++ devtoolset-2-gcc-gfortran | |
This file contains hidden or 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
//Go to http://kuku-kube.com/ paste this on the console and hit enter | |
//Have fun | |
(function(){ | |
$('.play-btn').trigger('click'); | |
var win = function(){ | |
$('#box').find('span').each(function(){ | |
if($(this).data().type=='a'){ | |
$(this).trigger('click'); | |
}; |
NewerOlder