Skip to content

Instantly share code, notes, and snippets.

~/Workspace/mlb11site  passenger start
=============== Phusion Passenger Standalone web server started ===============
PID file: /Users/alland/Workspace/mlb11site/tmp/pids/passenger.3000.pid
Log file: /Users/alland/Workspace/mlb11site/log/passenger.3000.log
Environment: development
Accessible via: http://0.0.0.0:3000/
You can stop Phusion Passenger Standalone by pressing Ctrl-C.
===============================================================================
NOTE: Gem.available? is deprecated, use Specification::find_by_name. It will be removed on or after 2011-11-01.
/************ GENERAL ************/
body {
font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
color: #555555;
background: #343434;
font-size: 14px;
}
.pageWrapper,
.footerWrapper {
/*min-width: 960px; correct width*/
@AllanD
AllanD / gist:1672495
Created January 24, 2012 20:49
just replace the leaderboard_box_content block
<div class="pngfix" id="leaderboard_box_content">
<style>
.leaderboard_matrix {
width: 790px; margin: 0 auto; padding: 10px; background: rgba(0,0,0,0.2); border-radius: 15px}
.leaderboard_matrix img {
float: left;
margin: 15px;
~/Workspace/lbpk/community  where
allans_lbpk
* lbpk
master
remotes/origin/HEAD -> origin/master
remotes/origin/lbpk
remotes/origin/lbpk_ui
remotes/origin/master
remotes/origin/serverctl
~/Workspace/lbpk/community  git commit -m 'merge conflict (git was complaining about divergence and rebasing and I didn't want to take any chances so I created a new branch based on my diverged lbpk branch, and named it allans_lbpk. Then I merged allans_lbpk into emanuele's lbpk. Will delete allans_lbpk after this merge)'
/* equal heights ------------ */
(function($) {
$.fn.equalHeights = function(minHeight, maxHeight) {
tallest = (minHeight) ? minHeight : 0;
this.each(function() {
if($(this).height() > tallest) {
tallest = $(this).height();
}
});
if((maxHeight) && tallest > maxHeight) tallest = maxHeight;