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
#!/bin/bash -l | |
export HOME="$JENKINS_HOME" | |
unset GEM_HOME | |
curl -sSL https://rvm.io/mpapis.asc | gpg --import - | |
curl -L https://get.rvm.io | bash -s -- --auto-dotfiles --autolibs=0 --ruby | |
source $JENKINS_HOME/.rvm/scripts/rvm | |
source $JENKINS_HOME/.profile |
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
.donslide { | |
display: table; | |
width: 100%; | |
} | |
.donslide .item { | |
display: table-cell; | |
width: 1%; | |
transition: 0.6s ease-in-out all; | |
overflow: hidden; | |
position: relative; |
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
<?php | |
/** | |
* Get Facebook Open Graph data. | |
*/ | |
function getdata($path) { | |
$url = "http://graph.facebook.com/$path"; | |
$data = json_decode(file_get_contents($url)); | |
return ($data->data?:$data); |
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
div.dataTables_length label { | |
font-weight: normal; | |
float: left; | |
text-align: left; | |
} | |
div.dataTables_length select { | |
width: 75px; | |
} |
NewerOlder