This is a work-in-progress based on this class tutorial. It covers features that are not yet implemented.
perlclasstut - Object-Oriented Programming via the class
keyword
This tutorial is a rough work-in-progress and only covers features of the
This is a work-in-progress based on this class tutorial. It covers features that are not yet implemented.
perlclasstut - Object-Oriented Programming via the class
keyword
This tutorial is a rough work-in-progress and only covers features of the
#!/bin/sh | |
runMinecraftCommand="java -Xms256M -Xmx768M -jar minecraft_server.jar nogui" | |
startScript="start.sh" | |
echo "Great let's get minecraft setup!" | |
# Sanity check, do we have java installed? | |
if ! hash java 2>/dev/null; then | |
echo "You don't have java installed. You're gonna have a tough time." | |
echo "Are you sure you selected the default Amazon Linux HVM ami?" |
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |