Skip to content

Instantly share code, notes, and snippets.

View RX14's full-sized avatar

Stephanie Wilde-Hobbs RX14

View GitHub Profile
[2015-05-20 18:07:21.472] FINE [org.apache.http.impl.conn.HttpClientConnectionOperator] Connecting to s3.amazonaws.com/54.231.2.24:443
[2015-05-20 18:07:22.125] FINE [org.apache.http.impl.conn.HttpClientConnectionOperator] Connection established 192.168.0.201:35448<->54.231.2.24:443
[2015-05-20 18:07:22.132] FINE [org.apache.http.wire] http-outgoing-0 >> "GET /Minecraft.Download/versions/1.7.10/1.7.10.json HTTP/1.1[\r][\n]"
[2015-05-20 18:07:22.132] FINE [org.apache.http.wire] http-outgoing-0 >> "accept-encoding: gzip[\r][\n]"
[2015-05-20 18:07:22.132] FINE [org.apache.http.wire] http-outgoing-0 >> "If-None-Match: "8b58bb9f16e3033782d0247e28ae30d7"[\r][\n]"
[2015-05-20 18:07:22.133] FINE [org.apache.http.wire] http-outgoing-0 >> "user-agent: unirest-java/1.3.11[\r][\n]"
@RX14
RX14 / gist:aba7b446ecd51fb81477
Created May 24, 2015 18:05
gradle.properties
org.gradle.daemon = true
org.gradle.parallel = true
org.gradle.configureondemand = true
FAILURE: Build failed with an exception.
* What went wrong:
Could not resolve all dependencies for configuration ':1.7.10:minecraftDeps'.
> Could not find jinput-platform-natives-windows.jar (net.java.jinput:jinput-platform:2.0.5).
Searched in the following locations:
file:/home/rx14/.m2/repository/net/java/jinput/jinput-platform/2.0.5/jinput-platform-2.0.5-natives-windows.jar
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
$ gradle setupDecompWorkspace -i
Connected to daemon DaemonInfo{pid=13284, address=[4b1c6a45-3a22-4321-8bf1-ba052377caa7 port:41016, addresses:[/0:0:0:0:0:0:0:1%lo, /127.0.0.1]], idle=true, context=DefaultDaemonContext[uid=fe257dd9-4d42-4231-bc72-c722b3900294,javaHome=/usr/lib/jvm/java-8-jdk,daemonRegistryDir=/home/rx14/.gradle/daemon,pid=13284,idleTimeout=10800000,daemonOpts=-XX:MaxPermSize=256m,-XX:+HeapDumpOnOutOfMemoryError,-Xmx1024m,-Dfile.encoding=UTF-8,-Duser.country=GB,-Duser.language=en,-Duser.variant]}. Dispatching request Build{id=93dd5f1b-f75e-4b9f-beec-96c14988a4ed.1, currentDir=/data/programming/NOVA/NovaWrapper-MC}.
The client will now receive all logging from the daemon (pid: 13284). The daemon log file: /home/rx14/.gradle/daemon/2.4/daemon-13284.out.log
Starting 2nd build in daemon [uptime: 6 mins 47.443 secs, performance: 100%, memory: 47% of 954.7 MB]
Executing build with daemon context: DefaultDaemonContext[uid=fe257dd9-4d42-4231-bc72-c722b3900294,javaHome=/usr/lib/jvm/java-8-jdk,daemonReg
$ gradle setupDecompWorkspace
Parallel execution with configuration on demand is an incubating feature.
Did not add maven-publish repo.
****************************
Powered By MCP:
http://mcp.ocean-labs.de/
Searge, ProfMobius, Fesh0r,
R4wk, ZeuX, IngisKahn, bspkrs
MCP Data version : unknown
****************************
==================================================
DOMAIN novablock
--------------------------------------------------
domain novablock is missing 3 textures
domain novablock has 1 location:
resource pack at path /data/programming/NOVA/out/production/NovaExample
-------------------------
The missing resources for domain novablock are:
textures/novablock:grinderEntity.png
textures/novablock:grinder.png
@RX14
RX14 / build.gradle
Last active August 29, 2015 14:22 — forked from anonymous/build.gradle
plugins {
id "java" //or scala or groovy
id "nova.gradle" version "0.1.0-SNPASHOT"
}
dependencies {
compile "nova.core:NovaCore:0.1.0-SNPASHOT"
compile //Some nova plugin
}
//The lib can obviously be used from Java too
//Add jcenter repository (it's actually the gradle default)
//compile "uk.co.rx14.jmclaunchlib:jMCLaunchLib:0.2.3"
def instance = MCInstance.createForge(
"1.7.10", //Minecraft Version
"1.7.10-10.13.3.1408-1.7.10", //Forge version
"test/instance", //Caches directory
"test/launch", //Run directory
NullSupplier.INSTANCE //Credentials supplier (Supplier<Credential>)
<zzo38> Someone sent me a message on Freenode and told me to: tell RX14-chibi@EsperNet/#obsidian that Kurisu was a good choice. (I don't know what this means. Someone sent a private message to me linking a gopher menu that included this text; I don't know why)
<RX14-chibi> i don't even
<zzo38> I don't know what this is about either
<RX14-chibi> what's the other person's name
<RX14-chibi> nick
<zzo38> Atheneti!~Atheneti@cpc8-aztw23-2-0-cust128.aztw.cable.virginm.net
<RX14-chibi> interesting
--- [zzo38] ([email protected]) : zzo38
--- [zzo38] availo.esper.net :The *freshest* server on espernet!
--- [zzo38] idle 00:01:25, signon: Fri Jun 26 20:33:47
compileJava {
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
}