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
package com.directmyfile; | |
import java.util.HashMap; | |
import java.util.Set; | |
public class Bundle { | |
protected HashMap<String, Object> objects; | |
public Bundle() { | |
this.objects = new HashMap<String, Object>(); |
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
package jpower.thread.test | |
import jpower.thread.WorkerThread | |
def testMethod = { | |
println("Test Thread Method Invoked!") | |
} | |
WorkerThread thread = new WorkerThread(testMethod) | |
Thread javaThread = thread.execute() |
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
package jpower.thread | |
class WorkerThread implements Runnable { | |
def closure | |
WorkerThread(Closure closure) { | |
this.closure = closure | |
} | |
def execute() { |
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
acl | |
archlinux-keyring | |
attr | |
autoconf | |
automake | |
b43-fwcutter | |
bash | |
binutils | |
bison | |
bridge-utils |
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
package com.directmyfile.gcp.client.core; | |
import com.directmyfile.gcp.client.Main; | |
import com.directmyfile.gcp.client.connection.ConnectionHandler; | |
import com.directmyfile.gcp.client.data.DataHelper; | |
import com.directmyfile.gcp.client.event.*; | |
import com.directmyfile.gcp.client.gcp.GCPServerProfile; | |
import com.directmyfile.gcp.client.gcp.*; | |
import jpower.socket.EventHandler; | |
import jpower.socket.JPowerSocket; |
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
package com.directmyfile.gcp.client.gcp; | |
import com.directmyfile.gcp.client.Main; | |
public class GCPHelper { | |
public static GCPLine getLineFromLine(String line) { | |
return new GCPLine(line); | |
} | |
public static void changeNickname(String newNickname) { |
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
package com.directmyfile.gcp.client; | |
import com.directmyfile.gcp.client.connection.ConnectionHandler; | |
import com.directmyfile.gcp.client.gcp.GCPHelper; | |
import org.fusesource.jansi.Ansi; | |
import org.fusesource.jansi.AnsiConsole; | |
import java.io.IOException; | |
import java.io.PrintStream; | |
import java.util.NoSuchElementException; |
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
[alex@ArchKen Debug]$ mono --profile=log Server.exe | |
Prefering Not to Run As SuperUser, but continuing due to kaendfinger's ideas! | |
Unhandled Exception: | |
Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: Cannot implicitly convert type `System.Func<System.Runtime.CompilerServices.CallSite,System.Type,object,JsonConfig.ConfigObject,object>' to `JsonConfig.ConfigObject' | |
at (wrapper dynamic-method) object.CallSite.Target (System.Runtime.CompilerServices.Closure,System.Runtime.CompilerServices.CallSite,object) <0x000e3> | |
at System.Dynamic.UpdateDelegates.UpdateAndExecute1<object, JsonConfig.ConfigObject> (System.Runtime.CompilerServices.CallSite,object) <0x003bf> | |
at JsonConfig.Config.ApplyJsonFromFileInfo (System.IO.FileInfo,JsonConfig.ConfigObject) <0x001bb> | |
at JsonConfig.Config.ApplyJsonFromPath (string,JsonConfig.ConfigObject) <0x0004b> | |
at GcpD.Core.Entry.Start.Run (string[]) <0x000c7> |
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
import os | |
import json | |
import urllib2 | |
import sys | |
codeCodes = { | |
'black': '0;30', 'bright gray': '0;37', | |
'blue': '0;34', 'white': '1;37', | |
'green': '0;32', 'bright blue': '1;34', | |
'cyan': '0;36', 'bright green': '1;32', |
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
[alex@ArchKen libs]$ java -jar Minetweak.jar | |
Success is very tasty. | |
Minetweak v0.0.2 using Minecraft v1.5.2 | |
To start the server with more ram, launch it as "java -Xmx1024M -Xms1024M -jar minecraft_server.jar" | |
java.lang.NullPointerException | |
at java.io.Reader.<init>(Reader.java:78) | |
at java.io.InputStreamReader.<init>(InputStreamReader.java:72) | |
at net.minecraft.src.AchievementMap.<init>(AchievementMap.java:20) | |
at net.minecraft.src.AchievementMap.<clinit>(AchievementMap.java:11) | |
at net.minecraft.src.StatBase.registerStat(StatBase.java:61) |