This file contains 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/sh | |
PREFIX=/usr/local | |
RUBY_BIN=${PREFIX}/bin/ruby | |
_MAJOR=2 | |
_MINOR=2 | |
_MICRO=1 | |
RUBY_VERSION=${_MAJOR}.${_MINOR}.${_MICRO} |
This file contains 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
alauritzen@alauritzen-mpb:~/git/mcu-workspace/MCU-Server/build/libs$ ls | |
MCU-Server-3.3.12.jar | |
alauritzen@alauritzen-mpb:~/git/mcu-workspace/MCU-Server/build/libs$ java -jar MCU-Server-3.3.12.jar | |
Created default config file. | |
Jan 23, 2015 12:51:38 PM org.mcupdater.util.DownloadCache init | |
INFO: Initializing DownloadCache in /Users/alauritzen/Library/Application Support/MCUpdater/cache | |
MCUpdater Server v3.3.12 | |
> quit | |
Goodbye. | |
alauritzen@alauritzen-mpb:~/git/mcu-workspace/MCU-Server/build/libs$ ls |
This file contains 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
public class Comment extends DAO | |
{ | |
public static final String TABLE_NAME = "comments"; | |
public static final String COLUMN_ID = "id"; | |
public static final String COLUMN_COMMENT = "comment"; | |
@Override | |
public static String[] getCreateSQL() { | |
return { |
This file contains 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
buildscript { | |
repositories { | |
mavenCentral() | |
maven { | |
name = "forge" | |
url = "http://files.minecraftforge.net/maven" | |
} | |
} | |
dependencies { | |
classpath 'net.minecraftforge.gradle:ForgeGradle:1.0-SNAPSHOT' |
This file contains 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 | |
FORGE_VERSION='9.11.1.965' | |
MC_VERSION='1.6.4' | |
SERVER_ID='example' | |
SERVER_NAME='Example Server' | |
SERVER_REVISION=`date +%Y%m%d.%H%M` | |
SERVER_ADDRESS='' | |
ICON_URL='' |
This file contains 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
minecraft@tiffany:~/mcu-test$ rm mcu-cache.json; php mcu-cli.php | |
[--] MCU-CLI.php Starting... | |
[--] Mon, 30 Dec 2013 16:55:42 -0600 | |
[--] First time run detected, starting with fresh cache | |
[--] Read serverpack from http://files.mcupdater.com/example/SamplePack.xml | |
[--] Handling imports... | |
[--] Parsing import of 'forge' from http://files.mcupdater.com/example/forge.php?mc=1.6.4&forge=9.11.1.916... | |
[--] Got new version of forge, need update... | |
[--] Identified new pack version 1.6.4 | |
[--] Performing update... |
This file contains 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
@ECHO OFF | |
SET BINDIR=%~dp0 | |
CD /D "%BINDIR%" | |
"%ProgramFiles%\Java\jre8\bin\java.exe" -jar MCU-Bootstrap.jar | |
rem PAUSE |
This file contains 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 | |
set -e | |
COUCH_HOME="/cygdrive/c/Program Files (x86)/Apache Software Foundation/CouchDB" | |
#COUCH_HOME="/" | |
DATA_DIR='var/lib/couchdb' | |
SNAPSHOT_DIR='/home/ammon/couchdb.snapshots' | |
REPLICATION_DBS='repltest repltest_2' | |
REPLICATION_TARGETS='192.168.0.101 192.168.0.102' |
This file contains 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
My Life Without IndustrialCraft | |
Modlist (as of episode 21): | |
------------------------------- | |
Jar | |
- Forge 6.6.0.518 | |
- Optifine HD_U D5 | |
Coremods | |
- Treecapitator r07 |
This file contains 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
-- Allaryin's pinwheel miner | |
-- | |
-- v1 - Dec 14, '12 | |
-- v2 - Dec 15, '12 - attempts to deal with gravel | |
-- v3 - Dec 16, '12 - improved gravel & refueling | |
-- instructions | |
-- fuel goes in slot 1, torches go in slot 2 | |
-- place turtle on left of 2x2 tunnel to be dug | |
-- run script :) |