This file contains hidden or 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 ---- | |
// Who set us up the TNT? | |
Time: 6/15/15 9:29 AM | |
Description: Loading entity NBT | |
java.lang.IllegalArgumentException: Duplicate id value for 13! | |
at net.minecraft.entity.DataWatcher.func_75682_a(SourceFile:64) | |
at powercrystals.minefactoryreloaded.entity.EntitySafariNet.func_70037_a(EntitySafariNet.java:156) | |
at net.minecraft.entity.Entity.func_70020_e(Entity.java:1433) |
This file contains hidden or 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 ---- | |
// On the bright side, I bought you a teddy bear! | |
Time: 6/18/15 11:15 PM | |
Description: Exception in server tick loop | |
java.lang.StackOverflowError: Exception in server tick loop | |
at net.minecraft.entity.EntityTracker.func_72785_a(EntityTracker.java:206) | |
at net.minecraft.entity.EntityTracker.func_72786_a(EntityTracker.java:128) | |
at net.minecraft.world.WorldManager.func_72703_a(SourceFile:31) |
This file contains hidden or 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
[15:41:40] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR. | |
[15:41:40] [main/INFO] [FML/]: Forge Mod Loader version 7.99.26.1481 for Minecraft 1.7.10 loading | |
[15:41:40] [main/INFO] [FML/]: Java is OpenJDK 64-Bit Server VM, version 1.7.0_71, running on Linux:amd64:3.17.6-1-ARCH, installed at /usr/lib/jvm/java-7-openjdk/jre | |
[15:41:40] [main/DEBUG] [FML/]: Java classpath at launch is /home/austin/Multimc/MultiMC/bin/jars/NewLaunch.jar | |
[15:41:40] [main/DEBUG] [FML/]: Java library path at launch is /home/austin/Multimc/MultiMC/instances/Botania Testing/natives | |
[15:41:40] [main/DEBUG] [FML/]: Enabling runtime deobfuscation | |
[15:41:40] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin | |
[15:41:40] [main/DEBUG] [FML/]: Added access transformer class cpw.mods.fml.common.asm.transformers.AccessTransformer to enqueued access transformers | |
[15:41:40] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin | |
[15:41:40] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin |
This file contains hidden or 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
#!/usr/bin/env python3 | |
from urllib.request import Request,urlopen | |
import json | |
class TheBlueAlliance(object): | |
def __init__(self, owner, app, version): | |
self.app_id_header = "{0}:{1}:{2}".format(owner,app,version) | |
baseurl = "http://www.thebluealliance.com/api/v2" | |
def _get(self,url): |
This file contains hidden or 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
#!/usr/bin/env python3 | |
def weird_decorator(func): | |
return "Hello " + func() | |
@weird_decorator | |
def example_function(): | |
return "World." | |
#example_function is redefined as the string "Hello World." |
This file contains hidden or 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
#include "math.h" | |
//based on https://www.youtube.com/watch?v=GtQdIYUtAHg | |
//used for my alarm clock. | |
//warning: loud. | |
int main(t) { | |
for(;;t++){ | |
putchar(t*t>>8); | |
} | |
} |
This file contains hidden or 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
$${{ | |
#wait_time = 1; | |
#reset_time = 2; | |
if(fishing); | |
log("Done fishing."); | |
unset(fishing); | |
else; | |
log("Starting fishing."); | |
set(fishing); |
This file contains hidden or 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
#!/usr/bin/env python | |
import json | |
import csv | |
import sys | |
def main(): | |
if len(sys.argv) < 3: | |
print("Usage: " + sys.argv[0] +"input.json output.csv") | |
else: | |
with open(sys.argv[1]) as jsonfile: |
This file contains hidden or 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
uniform float iOvertoneVolume; | |
void main() { | |
vec2 z = (4*gl_FragCoord.xy)/iResolution.xy-2; | |
vec2 c = vec2(iOvertoneVolume * 4, iOvertoneVolume * 4); | |
int iter = 30; | |
int i; | |
for(i=0; i<iter; i++) { | |
float x = (z.x * z.x - z.y * z.y) + c.x; | |
float y = (z.y * z.x + z.x * z.y) + c.y; | |
if((x * x + y * y) > 4.0) break; |
This file contains hidden or 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
Table = {1} | |
Tests = { | |
{{1, 2}, {1, 1}}, | |
{{1, 1}, {1, 1}}, | |
{{0, 0}, {0, 0}}, | |
{{-5, 10}, {1, 1}}, | |
{{-2, nil}, {1, 1}}, | |
{{-2, 2}, {1, 1}}, | |
{{-2, 1}, {1, 1}}, | |
{{-2, -1}, {1, 1}}, |