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
#!/usr/bin/env python | |
import redstone as rs | |
import sys | |
try: | |
biome = int(sys.argv[1]) | |
files = sys.argv[2:] | |
except: | |
print "usage: {0} <biome> <region.mca ...>".format(sys.argv[0]) | |
sys.exit(1) |
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
worlds: | |
myworld: /path/to/myworld | |
renders: | |
dayrender: | |
world: myworld | |
title: Daytime | |
rendermode: smooth_lighting | |
imgformat: jpg | |
northdirection: upper-right |
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
## | |
## at the end of overviewer_core/textures.py | |
## | |
@material(blockid=153, nodata=True) | |
def buildcraft_quarry(blockid, data): | |
t = _load_image("texture-name.png") | |
return build_block(t, t) | |
@material(blockid=250, data=[13,]) |
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
## MCRegion to Anvil converter | |
## | |
## to use: | |
## | |
## Download http://libredstone.org/libredstone-0.0.0.tar.bz2, run | |
## ./configure.sh | |
## and | |
## make | |
## Make sure you have python and numpy installed. Then download | |
## this script into ./bindings/, cd into there, and run: |
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
-----BEGIN PGP SIGNED MESSAGE----- | |
Hash: SHA1 | |
Though, I can prove that I'm in possesion of that particular key. | |
-----BEGIN PGP SIGNATURE----- | |
Version: GnuPG v2.0.17 (GNU/Linux) | |
iQEcBAEBAgAGBQJPVqd0AAoJEO/rS2YRTql7YGgH/2L0mngEzpaT/LTpVImZn/jK | |
EHQaHf3BEHuMNDXGC5wF0TjAw1zDs6r9NGF+24iF05xOkx5H3tG8ldBWtjMwsRFM | |
8gSxhA9nCFfqH3Apa7XElXPQjGym/IWy7d20btvi3DrprvCsScHkngf87ny6yTC7 |
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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDDynZ8pFJZUODZ62gc9ODl/SDPBAvcajNpmHM/SGuUXXyv7uTB0dntA3PNnlf1xYnLBUn0fuQRDnSjJe4BH/UW7dtUkggm/d/RvmiJZGaDKW3p4gwZJRB1cZY1qYHGsYsowjOPPvRXroNKRZidKYZyWlqheJQbii8F/+Mnm3oUcicZrMchcR9BeibRFpvjz3Uq3Uc9u341UCYDB5WliijwupSZ/lkaak0xL22dw8FScTU9MgVGS+0NwDMd8nE7ap+nxSfRAlBvfVNMOYAdvMwunyb3Tz2zlRX1F93+RBHeMdvfP/njQV6xAQAm0e9xDqohMPK81fbXOnoX43Q08fJB agrif@nara |
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
(worlds | |
("myworld" "/path/to/myworld")) | |
(renders | |
("dayrender" | |
:world "myworld" | |
:title "Daytime" | |
:rendermode smooth-lighting | |
:imgformat "jpg" | |
:northdirection "upper-right") |
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
2012-03-18 19:54:11 Welcome to Minecraft Overviewer! | |
2012-03-18 19:54:18 E An error has occurred. This may be a bug. Please let us know! | |
See http://docs.overviewer.org/en/latest/index.html#help | |
This is the error that occurred: | |
Traceback (most recent call last): | |
File "./overviewer.py", line 451, in <module> | |
ret = main() | |
File "./overviewer.py", line 400, in main | |
dispatch.render_all(tilesets) |
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
;; yin-yang puzzle | |
;; expected output: @*@**@***@****@... | |
(let* ((yin | |
((lambda (cc) (write 'stdout "@") cc) (call/cc (lambda (c) c)))) | |
(yang | |
((lambda (cc) (write 'stdout "*") cc) (call/cc (lambda (c) c))))) | |
(yin yang)) |
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
.PHONY : all clean | |
all : universal-encoder | |
clean : | |
rm universal-encoder main.o | |
universal-encoder : main.o | |
gcc main.o -o universal-encoder -lm -g |