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
[17:30:57] [Netty IO #3/TRACE] [FML/]: $ClientHello->FMLHandshakeServerState$2:HELLO | |
[17:30:57] [Netty IO #3/INFO] [FML/]: Client protocol version 1 | |
[17:30:57] [Netty IO #3/TRACE] [FML/]: $ModList:103 mods->FMLHandshakeServerState$2:HELLO | |
[17:30:57] [Netty IO #3/INFO] [FML/]: Client attempting to join with 103 mods : MineFactoryReloaded|CompatExtraBiomes@1.7.10R2.8.0RC3,BuildCraft|Silicon@6.1.7,SlimevoidLib@2.0.4.6,ForgeMicroblock@1.1.0.314,ExtraBees@2.0-dev5,MineFactoryReloaded|CompatTwilightForest@1.7.10R2.8.0RC4,MagicBees@1.7.10-2.1.22,Botany@2.0-dev5,MineFactoryReloaded|CompatProjRed@1.7.10R2.8.0RC3,DragonAPI@1.0,OpenComputers@1.4.0.6-rc.1,McMultipart@1.1.0.314,NEIPlugins@1.1.0.11-unofficial,secretroomsmod@4.7.1,BiomesOPlenty@2.1.0,ExtraUtilities@1.1.0k,Micdoodlecore@,Railcraft@9.3.3.0,MineFactoryReloaded|CompatRailcraft@1.7.10R2.8.0RC3,MineFactoryReloaded|CompatForestry@1.7.10R2.8.0RC4,ThermalFoundation@1.7.10R1.0.0B3,MineFactoryReloaded|CompatVanilla@1.7.10R2.8.0RC4,ForgeMultipart@1.1.0.314,StevesCarts@ |
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 void updateEntity() | |
{ | |
if (this.worldObj.isRemote && this.getStackInSlot(0) != null) { | |
ItemStack slot1 = this.getStackInSlot(0); | |
if(Item.getIdFromItem(slot1.getItem()) == 351) | |
GUIinfoPane.renderSquare1(slot1.getItemDamage()); | |
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
java.lang.InstantiationException: nbtreader.tileentity.TileEntityNBTBase | |
at java.lang.Class.newInstance(Class.java:364) | |
at net.minecraft.tileentity.TileEntity.createAndLoadEntity(TileEntity.java:123) | |
at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:525) | |
at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:41) | |
at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:12) | |
at net.minecraftforge.common.util.AsynchronousExecutor.skipQueue(AsynchronousExecutor.java:344) | |
at net.minecraftforge.common.util.AsynchronousExecutor.getSkipQueue(AsynchronousExecutor.java:302) | |
at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:12) | |
at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:144) |
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
//If statement | |
//Java: | |
if (foo != null && foo != bar) {} | |
//TLF: | |
if (foo != null &!= bar) {} | |
&= bar <is equal to> && foo == bar | |
&! bar <is equal to> && foo != bar | |
&.* bar <is equal to> && foo.*(bar) |
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 ddf.minim.*; | |
import ddf.minim.analysis.*; | |
Minim minim; | |
AudioInput in; | |
FFT fft; | |
int highest=0; | |
void setup() | |
{ |
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
{ | |
defaultName: "default", | |
items: { | |
default: { | |
B:"03.Enable Ambient Temperature"=false | |
D:"04.Ambient Temperature"=0.0 | |
D:"05.Ambient Air Quality"=0.0 | |
D:"06.Ambient Santity"=-0.1 | |
D:"07.Effect Temperature"=0.0 | |
D:"08.Effect Air Quality"=0.0 |
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 Crash Report ---- | |
// I bet Cylons wouldn't have this problem. | |
Time: 12/05/15 22.56 | |
Description: Updating screen events | |
java.lang.IllegalStateException: The fluid registry is corrupted | |
at net.minecraftforge.fluids.FluidRegistry.getDefaultFluidName(FluidRegistry.java:294) | |
at net.minecraftforge.fluids.FluidRegistry.writeDefaultFluidList(FluidRegistry.java:324) | |
at net.minecraftforge.common.ForgeModContainer.getDataForWriting(ForgeModContainer.java:314) |
This file has been truncated, but you can view the full file.
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
~/Desktop/vidr/src/github.com/thislooksfun/goblin => for i in {1..1000}; do echo "Iteration #$i"; go test -v; done; say done | |
Iteration #1 | |
=== RUN TestEqual | |
--- PASS: TestEqual (0.00s) | |
=== RUN TestIsTrue | |
--- PASS: TestIsTrue (0.00s) | |
=== RUN TestIsFalse | |
--- PASS: TestIsFalse (0.00s) | |
=== RUN TestIsFalseWithMessage | |
--- PASS: TestIsFalseWithMessage (0.00s) |
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 tlf.snake.main; | |
import tlf.snake.main.game.helper.Pos; | |
import tlf.snake.main.game.input.Input; | |
import java.awt.Font; | |
import java.nio.ByteBuffer; | |
import java.nio.IntBuffer; |
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
var tumblrAutoPager={url:"http://proto.jp/",ver:"0.1.7",rF:true,gP:{},pp:null,ppId:"",LN:location.hostname,init:function(){if($("autopagerize_icon")||navigator.userAgent.indexOf('iPhone')!=-1)return;var tAP=tumblrAutoPager;var p=1;var lh=location.href;var lhp=lh.lastIndexOf("/page/");var lht=lh.lastIndexOf("/tagged/");if(lhp!=-1){p=parseInt(lh.slice(lhp+6));tAP.LN=lh.slice(7,lhp);}else if(lht!=-1){tAP.LN=lh.slice(7);if(tAP.LN.slice(tAP.LN.length-1)=="/")tAP.LN=tAP.LN.slice(0,tAP.LN.length-1);}else if("http://"+tAP.LN+"/"!=lh){return;};var gPFncs=[];gPFncs[0]=function(aE){var r=[];for(var i=0,l=aE.length;i<l;i++){if(aE[i].className=="autopagerize_page_element"){r=gCE(aE[i]);break;}} | |
return r;};gPFncs[1]=function(aE){var r=[];for(var i=0,l=aE.length;i<l;i++){var arr=aE[i].className?aE[i].className.split(" "):null;if(arr){for(var j=0;j<arr.length;j++){arr[j]=="post"?r.push(aE[i]):null;}}} | |
return r;};gPFncs[2]=function(aE){var r=[];var tmpId=tAP.ppId?[tAP.ppId]:["posts","main","container","content","apDiv2","wrap |
OlderNewer