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
1970-01-01 00:00:17 3-Critical D003.0 DHCP WARNING - Non-critical field invalid in response. | |
2012-07-25 20:02:04 3-Critical T001.0 SYNC Timing Synchronization failure - Failed to acquire QAM/QPSK symbol timing | |
2012-07-25 20:01:57 3-Critical T002.0 SYNC Timing Synchronization failure - Failed to acquire FEC framing | |
2012-07-25 20:01:57 3-Critical T001.0 SYNC Timing Synchronization failure - Failed to acquire QAM/QPSK symbol timing | |
2012-07-25 20:01:57 3-Critical T002.0 SYNC Timing Synchronization failure - Failed to acquire FEC framing | |
2012-07-25 20:01:56 3-Critical T001.0 SYNC Timing Synchronization failure - Failed to acquire QAM/QPSK symbol timing | |
2012-07-25 20:01:55 3-Critical T002.0 SYNC Timing Synchronization failure - Failed to acquire FEC framing | |
2012-07-25 20:01:55 3-Critical T001.0 SYNC Timing Synchronization failure - Failed to acquire QAM/QPSK symbol timing | |
2012-07-25 20:01:54 3-Critical T002.0 SYNC Timing Synchronization failure - Failed to acquire FEC framing | |
2012-07-25 20:01:53 3-Critical T001.0 S |
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
separams 'Ubuntu, with Linux 2.6.38-15-server' | |
recordfail | |
set gfxpayload=$linux_gfx_mode | |
insmod part_msdos | |
insmod ext2 | |
set root='(/dev/sda,msdos1)' | |
search --no-floppy --fs-uuid --set=root 331a3910-bbf7-47c9-a70f-c76936333efd | |
linux /vmlinuz-2.6.38-15-server root=/dev/mapper/RAIDVG-MAIN ro quiet | |
initrd /initrd.img-2.6.38-15-server |
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
class SuperClass(object): | |
def myfunc(self): | |
print "SuperClass myfunc() called" | |
class A(SuperClass): | |
def myfunc(self): | |
super(A, self).myfunc() | |
print "A.myfunc() called" | |
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
worlds["survival"] = "/home/username/server/survivalworld" | |
worlds["creative"] = "/home/username/server/creativeworld" | |
render["survivalday"] = { | |
"world": "survival", | |
"title": "Survival Daytime", | |
"rendermode": smooth_lighting, | |
"dimension": "overworld", | |
} |
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
<plugin type="hesperus.plugins.reloader.Reloader" channels="admin"> | |
<skip> | |
<name>IRCPlugin</name> | |
</skip> | |
</plugin> |
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
File "/home/minecraft/overviewer/overviewer/overviewer_core/quadtree.py", line 501, in render_worldtile | |
a.chunk_render(tileimg, xpos, ypos, None) | |
File "/home/minecraft/overviewer/overviewer/overviewer_core/chunk.py", line 383, in chunk_render | |
self.queue.put(['removePOI', (self.chunkX, self.chunkY)]) | |
File "<string>", line 2, in put | |
File "/usr/lib64/python2.7/multiprocessing/managers.py", line 732, in _callmethod | |
conn.send((self._id, methodname, args, kwds)) | |
IOError: [Errno 32] Broken pipe | |
File "/home/minecraft/overviewer/overviewer/overviewer_core/rendernode.py", line 42, in newfunc | |
return func(*args, **kwargs) |
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
[translation:ERROR] Error: | |
[translation:ERROR] Traceback (most recent call last): | |
[translation:ERROR] File "translate.py", line 308, in main | |
[translation:ERROR] drv.proceed(goals) | |
[translation:ERROR] File "/home/andrew/pypy/source/pypy/translator/driver.py", line 809, in proceed | |
[translation:ERROR] return self._execute(goals, task_skip = self._maybe_skip()) | |
[translation:ERROR] File "/home/andrew/pypy/source/pypy/translator/tool/taskengine.py", line 116, in _execute | |
[translation:ERROR] res = self._do(goal, taskcallable, *args, **kwds) | |
[translation:ERROR] File "/home/andrew/pypy/source/pypy/translator/driver.py", line 286, in _do | |
[translation:ERROR] res = func() |
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
from overviewer_core import dispatcher | |
from overviewer_core import signals | |
import hashlib | |
import string | |
import os | |
import sys | |
import socket | |
def md5(s): |
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
Classes used in rendering | |
========================= | |
* World | |
* QuadtreeGen | |
* RenderNode | |
* MapGen |
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
# Each render is declared by an entry in the renders dictionary. Tiles | |
# outputted go into a directory named by the dictionary key | |
# The following two declarations define renders for one world, but two | |
# rendermodes. They are both defined explicitly here and linked together below. | |
renders["world-smooth-lighting"] = { | |
"name": "Day", | |
"worldpath": "/opt/mc/server/world", | |
"rendermode": "smooth-lighting" | |
"north-direction": "upper-left", |