| Observed | Expected | File |
|---|---|---|
| softwares | software | big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm.md |
| strucure | structure | [how-to-scrape-a-website-with-beautiful-soup.md](https://github.com/linode/docs/blame/master/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup. |
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
| Name | Language | License | GRS (English) | GRS (Other) | Speed | |
|---|---|---|---|---|---|---|
| Pragmatic Segmenter | Ruby | MIT | 98.08% (51/52) | 100.00% | 3.84 s | |
| prose | Go | MIT | 75.00% (39/52) | N/A | 0.96 s (different hardware) | |
| TactfulTokenizer | Ruby | GNU GPLv3 | 65.38% (34/52) | 48.57% | 46.32 s | |
| OpenNLP | Java | APLv2 | 59.62% (31/52) | 45.71% | 1.27 s | |
| Standford CoreNLP | Java | GNU GPLv3 | 59.62% (31/52) | 31.43% | 0.92 s | |
| Splitta | Python | APLv2 | 55.77% (29/52) | 37.14% | N/A | |
| Punkt | Python | APLv2 | 46.15% (24/52) | 48.57% | 1.79 s | |
| SRX English | Ruby | GNU GPLv3 | 30.77% (16/52) | 28.57% | 6.19 s | |
| Scapel | Ruby | GNU GPLv3 | 28.85% (15/52) | 20.00% | 0.13 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
| Type | Example | |
|---|---|---|
| Email addresses | Jane.Doe@example.com | |
| Hashtags | #trending | |
| Mentions | @jdkato | |
| URLs | https://github.com/jdkato/prose | |
| Emoticons | :-), >:(, o_0, etc. |
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
| package main | |
| import ( | |
| "gopkg.in/jdkato/prose.v2" | |
| ) | |
| func main() { | |
| doc, _ := prose.NewDocument("This is a sentence.") | |
| for _, token := range doc.Tokens() { | |
| fmt.Println(token.Text) |
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
| package main | |
| import ( | |
| "gopkg.in/jdkato/prose.v2" | |
| ) | |
| func main() { | |
| // You can pass "functional options" to control the document-creation | |
| // pipeline -- e.g., `prose.WithExtraction(false)` disables named-entity | |
| // extraction. |
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 "HMyClass.h" | |
| #include <stdio.h> | |
| void my_eh( const char * error_message, void * unused) | |
| { | |
| printf("my_eh: %s\n", error_message); | |
| } | |
| int main() | |
| { |
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
| #!/bin/sed -f | |
| # Sed script to produce Penn Treebank tokenization on arbitrary raw text. | |
| # Yeah, sure. | |
| # expected input: raw text with ONE SENTENCE TOKEN PER LINE | |
| # by Robert MacIntyre, University of Pennsylvania, late 1995. | |
| # If this wasn't such a trivial program, I'd include all that stuff about |
I screwed up using git ("git checkout --" on the wrong file) and managed to delete the code I had just written... but it was still running in a process in a docker container. Here's how I got it back, using https://pypi.python.org/pypi/pyrasite/ and https://pypi.python.org/pypi/uncompyle6
apt-get update && apt-get install gdb
I hereby claim:
- I am jdkato on github.
- I am jdkato (https://keybase.io/jdkato) on keybase.
- I have a public key whose fingerprint is E374 305F 11CF 8879 591C 8083 72B6 1C8B C681 C52E
To claim this, I am signing this object:
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
| This is intended as a quick reference and showcase. For more complete info, see [John Gruber's original spec](http://daringfireball.net/projects/markdown/) and the [Github-flavored Markdown info page](http://github.github.com/github-flavored-markdown/). | |
| ^ Paragraph start | |
| ^ Block end | |
| ^ Linting paragraph | |
| This cheatsheet is specifically *Markdown Here's* version of Github-flavored Markdown. This differs slightly in styling and syntax from what Github uses, so what you see below might vary a little from what you get in a *Markdown Here* email, but it should be pretty close. | |
| ^ Paragraph start | |
| ^ Block end | |
| ^ Linting paragraph |