Skip to content

Instantly share code, notes, and snippets.

View jaredlll08's full-sized avatar
👀
Compiling...

Jared jaredlll08

👀
Compiling...
View GitHub Profile
[03:47:51.585][CONSTRUCT][SERVER][ INFO ] Loading test.zs
[03:47:51.611][CONSTRUCT][SERVER][ INFO ] this is a info
[03:47:51.611][CONSTRUCT][SERVER][ ERROR ] this is a error
[03:47:51.612][CONSTRUCT][SERVER][WARNING] this is a warning
[03:47:51.612][CONSTRUCT][SERVER][ INFO ] this is a info
[03:47:51.612][CONSTRUCT][SERVER][ ERROR ] this is a error
[03:47:51.612][CONSTRUCT][SERVER][WARNING] this is a warning
[03:47:51.612][CONSTRUCT][SERVER][ INFO ] this is a info
[03:47:51.612][CONSTRUCT][SERVER][ ERROR ] this is a error
[03:47:51.612][CONSTRUCT][SERVER][WARNING] this is a warning
print("test");
Did you ever hear the tragedy of Darth Plagueis The Wise? I thought not. It’s not a story the Jedi would tell you. It’s a Sith legend. Darth Plagueis was a Dark Lord of the Sith, so powerful and so wise he could use the Force to influence the midichlorians to create life… He had such a knowledge of the dark side that he could even keep the ones he cared about from dying. The dark side of the Force is a pathway to many abilities some consider to be unnatural. He became so powerful… the only thing he was afraid of was losing his power, which eventually, of course, he did. Unfortunately, he taught his apprentice everything he knew, then his apprentice killed him in his sleep. Ironic. He could save others from death, but not himself.
loops();
function loops(){
var x = Math.random();
if x > 0.8 {
print(x);
}else{
print("looping " + x);
loops();
}
print("wow");
print("http://imgur.com/gallery/gFvFt");
var arr as int[] = {0};
arr += 5;
arr += 10;
arr += 15;
arr += 20;
for i in arr {
print(i);
}
var x = 5;
print(x+5);
for i in 0 to 10 {
print(10 - i);
}
for i in 10 .. 20 {
if i %2 == 0{

Keybase proof

I hereby claim:

  • I am jaredlll08 on github.
  • I am jaredlll08 (https://keybase.io/jaredlll08) on keybase.
  • I have a public key ASBETd9FyOgdHt1a1Q5Gv-BBvR9mSjsqmn4nq2YY8JpaAQo

To claim this, I am signing this object:

package com.siderislabs.projectmendeleev.tileentity;
import java.io.IOException;
import java.util.ArrayList;
import com.siderislabs.projectmendeleev.config.RecipeConfig;
import net.minecraft.client.renderer.texture.ITickable;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory;
package com.teamacronymcoders.base.tileentities;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.network.NetworkManager;
import net.minecraft.network.play.server.SPacketUpdateTileEntity;
import net.minecraft.tileentity.TileEntity;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;