Skip to content

Instantly share code, notes, and snippets.

View resba's full-sized avatar
👀
towards a kinder world

resba

👀
towards a kinder world
  • Bethesda, MD
View GitHub Profile
@resba
resba / rollengine.php
Created June 8, 2011 16:33
Roll a d*
<?php /*
//
//
// Roll a d* Script
//
// Version: 1.0
//
// Author: resba [https://www.github.com/resba]
//
// Description: Just like rolling a dice! Roll a die virtually and get a return number!
@resba
resba / completeinstall--centos5--cb818.sh
Created April 25, 2011 21:40
Install/Upgrade Minecraft Server Running CraftBukkit
#!/bin/bash
cburl="http://ci.bukkit.org/job/dev-CraftBukkit/Recommended/artifact/target/craftbukkit-0.0.1-SNAPSHOT.jar"
cbver="818"
# Script by resba
#
# Complete Install:
# Complete Install installs the Craftbukkit Server along with any and all peripherals such as java and screen needed to run the Server on Linux CentOS Machines. Comes with step-by-step server.properties installer.
#
@resba
resba / CSS Playground
Created February 26, 2011 04:51
Just some CSS stuff
/* you align the body text to center. since the body is the root element (and position on a sheet matters) AND since your not putting any text in the body, but in the content, you can just text-align: left; the content for it to work. */
body {
text-align: center;
margin: 0 auto;
padding: 0 0 0 0;
}
.content {
min-width: 1100px;
min-height: 500px;
background: url(../img/content-bk.png);