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
package com.resbah.SimpleGame; | |
import java.applet.*; | |
import java.awt.Color; | |
import java.awt.Event; | |
import java.awt.Graphics; | |
import java.awt.Image; | |
/** | |
* | |
* THIS CODE IS SO WRONG BUT WHO CARES \o/ |
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
package com.resbah.assignments.HelloWorld; | |
/** | |
* @(#)HelloWorld.java | |
* | |
* | |
* @author Matthew Sowden | |
* @version 0.0.1-SNAPSHOT 2012/1/25 | |
* @description JavaDoc Stuff; Hello World application | |
*/ |
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
/* | |
Written inpromptu by Matt Sowden (resba) with Ron Melanz (questionablei) | |
Records stored: 12/12/11 @ 10:00pm | |
*/ | |
public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) { | |
Player player = null; | |
if (sender instanceof Player) { | |
player = (Player) sender; | |
} |
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 /* | |
// | |
// | |
// 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! |
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 | |
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. | |
# |
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
// hideDiv Function v1.5 by Matthew Sowden. Based off the Middle Bucks Institute of Technology Online Yearbook Student Content Check Script, Originally Designed by Matthew Sowden. | |
// Author: Matthew Sowden ([email protected]) | |
// Website: www.resbah.com | |
// Disclaimer: This code is provided on an AS-IS basis and does NOT offer any support. | |
// License: You are free to use this code in any project or modify it in any way, so long as the credit is given. | |
function hideDiv(div,datacheck){ | |
if (document.getElementById(datacheck).innerHTML == '') //Statement checks to see if datacheck contains any text between the opening and closing tag. | |
{ | |
document.getElementById(div).innerHTML = ''; //If the above statement is TRUE, this ID-defined element has its content set to nothing. |
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
/* 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); |
NewerOlder