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
function getPoint() { | |
var pt = gg.GuessRoundCollection.models[gg.GuessRoundCollection.models.length-1].latLng | |
return [pt.jb, pt.kb] | |
}; |
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
24096 [Thread-61] INFO backtype.storm.daemon.supervisor - Finished downloading code for storm id topologytest-cbe81f98-529e-4102-b55a-744b341c1cff-1-0 from /tmp/d000ebc3-5019-405a-931e-77f62316e30b/nimbus/stormdist/topologytest-cbe81f98-529e-4102-b55a-744b341c1cff-1-0 | |
24281 [Thread-66] INFO backtype.storm.daemon.supervisor - Copying resources at file:/home/doug/repos/twitter/storm/src/dev/resources to /tmp/0f71bc32-5282-4d79-b1fa-3e531cf0df0f/supervisor/stormdist/topologytest-cbe81f98-529e-4102-b55a-744b341c1cff-1-0/resources | |
24283 [Thread-66] INFO backtype.storm.daemon.supervisor*** glibc detected *** java: double free or corruption (!prev): 0x00007fb688004330 *** | |
======= Backtrace: ========= | |
/lib/x86_64-linux-gnu/libc.so.6(+0x78a8f)[0x7fb6a2911a8f] | |
/lib/x86_64-linux-gnu/libc.so.6(cfree+0x73)[0x7fb6a29158e3] | |
/lib/x86_64-linux-gnu/libglib-2.0.so.0(+0x3164d)[0x7fb68e62b64d] | |
/lib/x86_64-linux-gnu/libglib-2.0.so.0(+0x31810)[0x7fb68e62b810] | |
/lib/x86_64-linux-gnu/libglib-2.0.so.0(g_get_language_names+0x3c8)[0 |
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
10964 [Thread-45] INFO backtype.storm.daemon.task - Emitting: 1 default ["mike"] | |
10966 [Thread-40] INFO backtype.storm.daemon.task - Emitting: 2 default ["mikelalala"] | |
11067 [Thread-45] INFO backtype.storm.daemon.task - Emitting: 1 default ["golda"] | |
11069 [Thread-40] INFO backtype.storm.daemon.task - Emitting: 2 default ["goldalalala"] | |
11169 [Thread-45] INFO backtype.storm.daemon.task - Emitting: 1 default ["bertels"] | |
11171 [Thread-40] INFO backtype.storm.daemon.task - Emitting: 2 default ["bertelslalala"] | |
11271 [Thread-45] INFO backtype.storm.daemon.task - Emitting: 1 default ["mike"] | |
11273 [Thread-40] INFO backtype.storm.daemon.task - Emitting: 2 default ["mikelalala"] | |
11373 [Thread-45] INFO backtype.storm.daemon.task - Emitting: 1 default ["jackson"] | |
11375 [Thread-40] INFO backtype.storm.daemon.task - Emitting: 2 default ["jacksonlalala"] |
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
$ ls $CLASSPATH | grep jline | |
jline-0.9.94.jar | |
jline.jar |
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
make all-recursive | |
make[1]: Entering directory `/home/doug/repos/facebook/scribe' | |
Making all in . | |
make[2]: Entering directory `/home/doug/repos/facebook/scribe' | |
make[2]: Nothing to be done for `all-am'. | |
make[2]: Leaving directory `/home/doug/repos/facebook/scribe' | |
Making all in src | |
make[2]: Entering directory `/home/doug/repos/facebook/scribe/src' | |
/usr/local/bin/thrift -o . -I /usr/local/share/ --gen cpp:pure_enums --gen py --gen php --gen java ../if/scribe.thrift | |
/usr/local/bin/thrift -o . -I /usr/local/share/ --gen cpp:pure_enums --gen py --gen php --gen java ../if/bucketupdater.thrift |
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
import pprint | |
from pipe import Pipe, select, as_list | |
import nltk | |
stokenize = Pipe(lambda text: nltk.sent_tokenize(text)) | |
wtokenize = Pipe(lambda sentences: sentences | select(nltk.word_tokenize)) | |
tag = Pipe(lambda sentences: sentences | select(nltk.pos_tag)) | |
chunk = Pipe(lambda sentences: sentences | select(nltk.ne_chunk)) | |
text = ("A Wiki is a website which is editable over the web by it's users. " |