├── __init__.py ├── src ├── __init__.py ├── utils │ ├── __init__.py │ └── tokenize.py ├── pipelines │ ├── __init__.py │ └── predict.py ├── featurizers │ ├── training │ │ └── __init__.py │ └── skipthoughts │ │ └── data │ │ └── train_5500.label ├── mem_net │ ├── __init__.py │ ├── fetch_glove_data.sh │ └── nn_utils.py └── tests │ └── test_tokenize.py ├── requirements.txt ├── .dockerignore ├── assets └── pythia_logo.png ├── data ├── cluster_schema.json ├── stackexchange │ └── anime │ │ ├── 00464.json │ │ ├── 00564.json │ │ ├── 01664.json │ │ ├── 01523.json │ │ ├── 00369.json │ │ ├── 01437.json │ │ ├── 00357.json │ │ ├── 00430.json │ │ ├── 00594.json │ │ ├── 01163.json │ │ ├── 01089.json │ │ ├── 00877.json │ │ ├── 00577.json │ │ ├── 01002.json │ │ ├── 01473.json │ │ ├── 00354.json │ │ ├── 00485.json │ │ ├── 00540.json │ │ ├── 00023.json │ │ ├── 00965.json │ │ ├── 01712.json │ │ ├── 01329.json │ │ ├── 01217.json │ │ ├── 00082.json │ │ ├── 00233.json │ │ ├── 01466.json │ │ ├── 01470.json │ │ ├── 01661.json │ │ ├── 01773.json │ │ ├── 00827.json │ │ ├── 00277.json │ │ ├── 00508.json │ │ ├── 00789.json │ │ ├── 01194.json │ │ ├── 01251.json │ │ ├── 00507.json │ │ ├── 01780.json │ │ ├── 00790.json │ │ ├── 00879.json │ │ ├── 00928.json │ │ ├── 00275.json │ │ ├── 00502.json │ │ ├── 00367.json │ │ ├── 00677.json │ │ ├── 01463.json │ │ ├── 00785.json │ │ ├── 01681.json │ │ ├── 00220.json │ │ ├── 01180.json │ │ ├── 01247.json │ │ ├── 01686.json │ │ ├── 01762.json │ │ ├── 00276.json │ │ ├── 00532.json │ │ ├── 01124.json │ │ ├── 01127.json │ │ ├── 00980.json │ │ ├── 01166.json │ │ ├── 00093.json │ │ ├── 00164.json │ │ ├── 00349.json │ │ ├── 01673.json │ │ ├── 00089.json │ │ ├── 00196.json │ │ ├── 00442.json │ │ ├── 00670.json │ │ ├── 00743.json │ │ ├── 01689.json │ │ ├── 00390.json │ │ ├── 01004.json │ │ ├── 01075.json │ │ ├── 01806.json │ │ ├── 00656.json │ │ ├── 00684.json │ │ ├── 01155.json │ │ ├── 00255.json │ │ ├── 01129.json │ │ ├── 01189.json │ │ ├── 00070.json │ │ ├── 00427.json │ │ ├── 01817.json │ │ ├── 00267.json │ │ ├── 00358.json │ │ ├── 00835.json │ │ ├── 01609.json │ │ ├── 00195.json │ │ ├── 00336.json │ │ ├── 00810.json │ │ ├── 01073.json │ │ ├── 01178.json │ │ ├── 01275.json │ │ ├── 01747.json │ │ ├── 00015.json │ │ ├── 00166.json │ │ ├── 01600.json │ │ ├── 01670.json │ │ ├── 00138.json │ │ ├── 00779.json │ │ ├── 00967.json │ │ ├── 01179.json │ │ ├── 01444.json │ │ ├── 00174.json │ │ ├── 00335.json │ │ ├── 00596.json │ │ ├── 00711.json │ │ ├── 00713.json │ │ ├── 00799.json │ │ ├── 00943.json │ │ ├── 01026.json │ │ ├── 01308.json │ │ ├── 01805.json │ │ ├── 00229.json │ │ ├── 00740.json │ │ ├── 01791.json │ │ ├── 00631.json │ │ ├── 00836.json │ │ ├── 00918.json │ │ ├── 00989.json │ │ ├── 00227.json │ │ ├── 00473.json │ │ ├── 01630.json │ │ ├── 01715.json │ │ ├── 01819.json │ │ ├── 00452.json │ │ ├── 00610.json │ │ ├── 00632.json │ │ ├── 00662.json │ │ ├── 00687.json │ │ ├── 00075.json │ │ ├── 00295.json │ │ ├── 00355.json │ │ ├── 00359.json │ │ ├── 01260.json │ │ ├── 01276.json │ │ ├── 01628.json │ │ ├── 01190.json │ │ ├── 01627.json │ │ ├── 00010.json │ │ ├── 00071.json │ │ ├── 00121.json │ │ ├── 00777.json │ │ ├── 01516.json │ │ ├── 00065.json │ │ ├── 00424.json │ │ ├── 00642.json │ │ ├── 00043.json │ │ ├── 00721.json │ │ ├── 00922.json │ │ ├── 00994.json │ │ ├── 01656.json │ │ ├── 00052.json │ │ ├── 00197.json │ │ ├── 01582.json │ │ ├── 00131.json │ │ ├── 00180.json │ │ ├── 00291.json │ │ ├── 01012.json │ │ ├── 01557.json │ │ ├── 01633.json │ │ ├── 01668.json │ │ ├── 00378.json │ │ ├── 00383.json │ │ ├── 00416.json │ │ ├── 00829.json │ │ ├── 00467.json │ │ ├── 00661.json │ │ ├── 01774.json │ │ ├── 00055.json │ │ ├── 00764.json │ │ ├── 00986.json │ │ ├── 00988.json │ │ ├── 01294.json │ │ ├── 01525.json │ │ ├── 01626.json │ │ ├── 01783.json │ │ ├── 01808.json │ │ ├── 00172.json │ │ ├── 00342.json │ │ ├── 00484.json │ │ ├── 00697.json │ │ ├── 00724.json │ │ ├── 00729.json │ │ ├── 00640.json │ │ ├── 00795.json │ │ ├── 01142.json │ │ ├── 00069.json │ │ ├── 00242.json │ │ ├── 00491.json │ │ ├── 01601.json │ │ ├── 00080.json │ │ ├── 00103.json │ │ ├── 00443.json │ │ ├── 01125.json │ │ ├── 01126.json │ │ ├── 00396.json │ │ ├── 00669.json │ │ ├── 01396.json │ │ ├── 01617.json │ │ ├── 01641.json │ │ ├── 01161.json │ │ ├── 01218.json │ │ ├── 01682.json │ │ ├── 01706.json │ │ ├── 01736.json │ │ ├── 00300.json │ │ ├── 00373.json │ │ ├── 00404.json │ │ ├── 00405.json │ │ ├── 01714.json │ │ ├── 01734.json │ │ ├── 00008.json │ │ ├── 01304.json │ │ ├── 00054.json │ │ ├── 00139.json │ │ ├── 00142.json │ │ ├── 00323.json │ │ ├── 00326.json │ │ ├── 01524.json │ │ ├── 01624.json │ │ ├── 01720.json │ │ ├── 00097.json │ │ ├── 01102.json │ │ ├── 01230.json │ │ ├── 01238.json │ │ ├── 01351.json │ │ ├── 00759.json │ │ ├── 00760.json │ │ ├── 00831.json │ │ ├── 00962.json │ │ ├── 01420.json │ │ ├── 01725.json │ │ ├── 00182.json │ │ ├── 00183.json │ │ ├── 00667.json │ │ ├── 01130.json │ │ ├── 01696.json │ │ ├── 00259.json │ │ ├── 00947.json │ │ ├── 01411.json │ │ ├── 01763.json │ │ ├── 00053.json │ │ ├── 00228.json │ │ ├── 00515.json │ │ ├── 00741.json │ │ ├── 01201.json │ │ ├── 01562.json │ │ ├── 00009.json │ │ ├── 00209.json │ │ ├── 00618.json │ │ └── 01401.json └── README.md ├── circle.yml ├── envs ├── sample_config.json └── requirement_parse_patch.txt ├── mkdocs.yml ├── experiments └── do-experiments.sh └── LICENSE /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pipelines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/featurizers/training/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .git/* 2 | **/__pycache__ 3 | *.pyc 4 | -------------------------------------------------------------------------------- /src/mem_net/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'abethke' 2 | -------------------------------------------------------------------------------- /assets/pythia_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lab41/pythia/HEAD/assets/pythia_logo.png -------------------------------------------------------------------------------- /src/featurizers/skipthoughts/data/train_5500.label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lab41/pythia/HEAD/src/featurizers/skipthoughts/data/train_5500.label -------------------------------------------------------------------------------- /data/cluster_schema.json: -------------------------------------------------------------------------------- 1 | {"corpus": "X", "cluster_id": "1001", "post_id": "1", "novelty": true, "order": 0, "body_text": "Late last week, a pack of ..."} 2 | -------------------------------------------------------------------------------- /src/mem_net/fetch_glove_data.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | url=http://nlp.stanford.edu/data/glove.6B.zip 4 | fname=`basename $url` 5 | 6 | curl -SLO $url 7 | mkdir -p data 8 | unzip $fname -d data/glove/ 9 | -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- 1 | machine: 2 | services: 3 | - docker 4 | test: 5 | override: 6 | - docker build -t pythia .: 7 | timeout: 1200 8 | post: 9 | - bash <(curl -s https://codecov.io/bash) 10 | -------------------------------------------------------------------------------- /envs/sample_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "_comment" : "Example configuration for environment variable passthrough in Pythia", 3 | "PYTHONPATH" : "/path/to/pythia/repo:/spark/jars/also", 4 | "PYTHIA_MONGO_DB_URI" : "my-mongo-here.domain.net:20007" 5 | "PYTHIA_MODELS_PATH" : "/path/to/save/pythia/models" 6 | } 7 | -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- 1 | site_name: Pythia 2 | site_dir: docs-html 3 | pages: 4 | - main: index.md 5 | theme: readthedocs 6 | remote_name: upstream 7 | markdown_extensions: 8 | - mdx_math: 9 | enable_dollar_delimiter: True #for use of inline $..$ 10 | extra_javascript: ['https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML'] 11 | 12 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00464.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why does Naruto use his mother's last name? Why does Naruto use his mother's last name, Uzumaki?\n", "post_id": "2587", "cluster_id": 464, "novelty": true, "order": 0} 2 | {"body_text": "Naruto's surname confusion Naruto's father's name is Minato Namikaze, and mother is Kushina Uzumaki.\nSo, why is Naruto's surname Uzumaki? Shoudn't it be Namikaze?\n", "post_id": "14509", "cluster_id": 464, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00564.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Death Note 23 Day rule? Okay, first read this rule:\nSo, could the first example work? \n", "post_id": "12798", "cluster_id": 564, "novelty": true, "order": 0} 2 | {"body_text": "How long can you manipulate a person with a Death Note? (Yes, Z is destined to die at the mentioned date.)\n(A won't die, since he already wrote his own name in his Death Note.)\nWould this work?\n", "post_id": "17280", "cluster_id": 564, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- 1 | # Data examples and schemata 2 | 3 | * [SKNews.json](SKNews.json) -- One "cluster" of related documents in JSON format, labeled for novelty 4 | * [cluster_schema.json](cluster_schema.json) -- Schematized form for one record in a JSON file describing input to Pythia 5 | * [stackexchange/anime](stackexchange/anime) -- A slice of data from the Stack Exchange data dump (https://archive.org/details/stackexchange, released under CC BY-SA 3.0), suitable for quick experimentation. 6 | 7 | 8 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01664.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What is this song playing in episode 5? Does anyone know what song plays at about 5:20 in episode 5?\n", "post_id": "19252", "cluster_id": 1664, "novelty": true, "order": 0} 2 | {"body_text": "What is the song played at 6:54 in the 5 episode of Parasyte - the Maxim? Did anyone know? It's the scene when Kana looks into the eye of Shinishi, I really love this song, and it's not in the OST.\n", "post_id": "26871", "cluster_id": 1664, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /experiments/do-experiments.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if test "$#" -ne 2 4 | then 5 | echo "Usage: do-experiments.sh CONFIG_DIR MONGODB_PATH" 6 | echo " CONFIG_DIR - directory of JSON experiment configurations" 7 | echo " MONGO_DB_PATH - hostname:port:dbname, e.g. localhost:27017:pythia" 8 | exit 1 9 | fi 10 | 11 | find $1 -iname '*.json' | while read config_file 12 | do 13 | echo "Experiment config: $config_file" 14 | experiments/experiments.py -m "$2" with "$config_file" 15 | done 16 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01523.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What does 'moe' mean? I've now watched quite a few anime and I'm still at a loss as to what the term moe represents. Is there an agreed upon definition for it? If a character is moe, what does that mean?\n", "post_id": "894", "cluster_id": 1523, "novelty": true, "order": 0} 2 | {"body_text": "What is gap moe? I often hear the word gap moe, but I do not know what it means. So what does the word gap moe mean?\n", "post_id": "28922", "cluster_id": 1523, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /src/utils/tokenize.py: -------------------------------------------------------------------------------- 1 | """ Wrap some tokenization capabilities in one place. 2 | 3 | Patrick Callier 4 | July 2016 5 | """ 6 | 7 | from nltk.tokenize import punkt, WordPunctTokenizer 8 | punkter = punkt.PunktSentenceTokenizer() 9 | word_punct_tokenizer = WordPunctTokenizer() 10 | 11 | def punkt_sentences(text): 12 | return punkter.tokenize(text) 13 | 14 | def punkt_sentence_span(text): 15 | return punkter.span_tokenize(text) 16 | 17 | def word_punct_tokens(text): 18 | return word_punct_tokenizer.tokenize(text) 19 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00369.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Can I increase my lifespan by killing myself using the Death Note? Suppose I wrote that I will be killed by a UFO falling from space in the year 2315 while I am lifting.\nWill the Note increase my lifespan? In other words, will I still be alive by then? \n", "post_id": "907", "cluster_id": 369, "novelty": true, "order": 0} 2 | {"body_text": "Death Note 23 Day rule? Okay, first read this rule:\nSo, could the first example work? \n", "post_id": "12798", "cluster_id": 369, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01437.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How does one become a Contractor? How are Contractors made in Darker than Black? Do you have to be born with the powers? Or do you have to make contact with a spirit and make a contract with it?\n", "post_id": "2511", "cluster_id": 1437, "novelty": true, "order": 0} 2 | {"body_text": "How did everything start off in Darker Than Black? I've finished the first season and still do not understand how contractors came about.\n", "post_id": "28153", "cluster_id": 1437, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00357.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How did Ryuk trick the King of Death Gods? In chapter 27, Misa says\nDoes anybody know how Ryuk tricked the king of Gods and got his Death Note?\n\n", "post_id": "11541", "cluster_id": 357, "novelty": true, "order": 0} 2 | {"body_text": "Why was Ryuk tied to Light's Death Note? In How to Use: XIII, in the second point it says\nSo is there an explanation as to how Ryuk was tied with Light's Death Note having stolen it from Sidoh?\n", "post_id": "11597", "cluster_id": 357, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00430.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why is Sailor Moon (2014) not airing on TV? The new Sailor Moon seems to be showing on Niconico exclusively. Why would it not air on TV, or both?\n", "post_id": "9709", "cluster_id": 430, "novelty": true, "order": 0} 2 | {"body_text": "Why does Sailor Moon Crystal not air weekly? Sailor Moon Crystal is \"airing\" (online) every 1st and 3rd Friday of the month. Not only is this not every week, but not every other week.\nWhy is this?\n", "post_id": "13876", "cluster_id": 430, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00594.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What is Sakura's Chakra Element? Naruto is Wind and Sasuke is Electricity if I'm not wrong. What would Sakura's Chakra element be, was it mention in the series before? \n", "post_id": "17205", "cluster_id": 594, "novelty": true, "order": 0} 2 | {"body_text": "What is Tsunade's chakra element? In the series, she is celebrated as the world's best medical-nin, and is one of Konohagakure's Legendary Three Ninja. What is her chakra element?\n", "post_id": "18774", "cluster_id": 594, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01163.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What will happen if one person eats two Devil Fruits? If a person has already eaten one Devil Fruit, what will happen to him if he eats another Devil Fruit?\n", "post_id": "22090", "cluster_id": 1163, "novelty": true, "order": 0} 2 | {"body_text": "What happens if someone eats 2 Devil Fruits? Is there any One Piece canon that demonstrates or predicts the result of eating more than one Devil Fruit? Do Devil Fruit Powers stack, per se? \n", "post_id": "25972", "cluster_id": 1163, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /src/tests/test_tokenize.py: -------------------------------------------------------------------------------- 1 | from src.utils import tokenize 2 | 3 | def test_punkt(): 4 | """Test sentence tokenization""" 5 | 6 | assert tokenize.punkt_sentences("S1. S2. S3! S4!!!") == ["S1.", "S2.", "S3!", "S4!!", "!"] 7 | assert tokenize.punkt_sentences("S1. S4!!!") == ["S1.", "S4!!", "!"] 8 | 9 | def test_word_punct(): 10 | """Test regex-based word and punctuation tokenization""" 11 | 12 | assert tokenize.word_punct_tokens("Who are you??? Stop, now!") == \ 13 | ["Who", "are", "you", "???", "Stop", ",", "now", "!"] 14 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01089.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why is everyone affected by Infinite Tsukuyomi? As we know, we can avoid Sharingan-based genjutsu just by avoiding eye contact. Can't we avoid Infinite Tsukuyomi just by not looking at the moon?\n", "post_id": "20151", "cluster_id": 1089, "novelty": true, "order": 0} 2 | {"body_text": "Does the Infinite Tsukyomi work only on the living? Why does the Infinite Tsukuyomi work only on the living? (As the Edo Tensei Hokages were not affected by it)\n", "post_id": "24447", "cluster_id": 1089, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00877.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What happened to the art style in Fairy Tail? What happened to the art style in Fairy Tail after episode 175?\nOld art style:\n\nNew art style:\n\n", "post_id": "22403", "cluster_id": 877, "novelty": true, "order": 0} 2 | {"body_text": "In the Avatar arc, why is Sting fat? Sting is my favorite character and I noticed in chapter 425 that he has become a \"little\" chunky. Do you think it may be for a new move or something? Somebody please tell me!\n\n", "post_id": "22814", "cluster_id": 877, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00577.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What is the estimated age of Naruto when he became Hokage? On the last chapter of the manga version, Naruto became the Hokage. How old is he when he became Hokage?\n", "post_id": "14910", "cluster_id": 577, "novelty": true, "order": 0} 2 | {"body_text": "How old were Naruto and Hinata when they had their children? How old were Naruto and Hinata when they had Bolt and later Himawari?\nI have just been puzzled by the question and couldn't come to an answer.\n", "post_id": "18494", "cluster_id": 577, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01002.json: -------------------------------------------------------------------------------- 1 | {"body_text": "When will Fairy Tail (2014) be dubbed? I really love the Fairy Tail anime, but cannot seem to find more dubbed episodes in English after episode 175. Does any one know when FUNimation will continue dubbing the Fairy Tail anime?\n", "post_id": "22012", "cluster_id": 1002, "novelty": true, "order": 0} 2 | {"body_text": "When will Fairy Tail episode 176 be available as an English dub? When will Fairy Tail episode 176 be released in an English-dubbed format?\n", "post_id": "23883", "cluster_id": 1002, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01473.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why is Sailor Moon (2014) not airing on TV? The new Sailor Moon seems to be showing on Niconico exclusively. Why would it not air on TV, or both?\n", "post_id": "9709", "cluster_id": 1473, "novelty": true, "order": 0} 2 | {"body_text": "Was Sailor Moon edited in the English version to censor the transformation scenes? Was Sailor Moon edited for the English version, to show less in the transformation when they are naked? Was it originally meant for children? \n", "post_id": "28297", "cluster_id": 1473, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00354.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Can I increase my lifespan by killing myself using the Death Note? Suppose I wrote that I will be killed by a UFO falling from space in the year 2315 while I am lifting.\nWill the Note increase my lifespan? In other words, will I still be alive by then? \n", "post_id": "907", "cluster_id": 354, "novelty": true, "order": 0} 2 | {"body_text": "Death Note: Old age as cause of death? If you would write something like: \"Bob Hyrule dies of old age\", would this work? \n", "post_id": "11515", "cluster_id": 354, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00485.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Does every ninja become a jonin? In Naruto, a number of ninjas have become jonin, such as Neji and Kakashi. Does every ninja who becomes a chunin by definition become a jonin if they live long enough, or do some remain a chunin forever?\n", "post_id": "3654", "cluster_id": 485, "novelty": true, "order": 0} 2 | {"body_text": "How does one become a Jounin? It is said in the wiki that:\nDoes anyone here know what are the stages/steps/missions in order to be a Jounin?\n", "post_id": "14990", "cluster_id": 485, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00540.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why did the Hunter x Hunter manga go on hiatus? I think the Hunter x Hunter manga has been on hiatus for months now; does anyone know the reason for the hiatus? Is the author planning to continue the series?\n", "post_id": "4751", "cluster_id": 540, "novelty": true, "order": 0} 2 | {"body_text": "Why did the Hunter x Hunter anime stop in episode 148? The Hunter X Hunter anime stopped in episode 148. I wonder why? \nIs it because Hunter x Hunter is already finished?\n", "post_id": "16915", "cluster_id": 540, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00023.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What does 'moe' mean? I've now watched quite a few anime and I'm still at a loss as to what the term moe represents. Is there an agreed upon definition for it? If a character is moe, what does that mean?\n", "post_id": "894", "cluster_id": 23, "novelty": true, "order": 0} 2 | {"body_text": "What are Type A and Type B viewers? I keep hearing the terms Type A viewers and Type B viewers in discussions and chat.\nWhat do they mean? What is a Type A viewer and what is a Type B?\n", "post_id": "2276", "cluster_id": 23, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00965.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Death Note 23 Day rule? Okay, first read this rule:\nSo, could the first example work? \n", "post_id": "12798", "cluster_id": 965, "novelty": true, "order": 0} 2 | {"body_text": "Is the death note 23 days rule inconsistent? We all know about the 23 day rule. Well. I've been rewatching the series, and I've found something strange in episode 8...\nAt 4:10 (youtube) Light asks Ryuk if you can use any date, as long it's before the victims lifespan, to which Ryuk replies; yes\n", "post_id": "23596", "cluster_id": 965, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01712.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Has Kaido eaten a devil fruit? If so, what is its power? Kaido is called the strongest creature in the One Piece world. Hence, he must be immensely powerful. \nMy question is: What is his power? Is he a devil fruit user?\n", "post_id": "30326", "cluster_id": 1712, "novelty": true, "order": 0} 2 | {"body_text": "If Kaido is DF eater, why doesn't he drown himself? Has Kaido eaten a devil fruit?\nIf Yes: Why doesn't he just jump into the sea if he wants to die that badly?\n", "post_id": "30735", "cluster_id": 1712, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /src/pipelines/predict.py: -------------------------------------------------------------------------------- 1 | import h5py 2 | from src.utils import performance_metrics 3 | 4 | def predicter(classifier, test_data, test_labels): 5 | # Handle HDF5 case 6 | if type(test_data) is str: 7 | assert test_data==test_labels 8 | with h5py.File(test_data) as f: 9 | test_data = f['data'][()] 10 | test_labels = f['labels'][()] 11 | 12 | pred_labels = classifier.predict(test_data) 13 | perform_results = performance_metrics.get_perform_metrics(test_labels, pred_labels) 14 | return pred_labels, perform_results 15 | 16 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01329.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What's the correct order in which to watch the Yu-Gi-Oh! seasons/episodes? I am wondering what the correct order in which to watch the Yu-Gi-Oh! seasons is.\n", "post_id": "11248", "cluster_id": 1329, "novelty": true, "order": 0} 2 | {"body_text": "I want to start getting into Yu-Gi-Oh! where should I start? If I was to start watching all the series of Yu-Gi-Oh! (the orginal one), what should I start with first? \nThe books or the movies? And can you please list them in order too?\n", "post_id": "27615", "cluster_id": 1329, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /envs/requirement_parse_patch.txt: -------------------------------------------------------------------------------- 1 | diff --git a/sacred/dependencies.py b/sacred/dependencies.py 2 | index b45f14c..6b7f71d 100644 3 | --- a/sacred/dependencies.py 4 | +++ b/sacred/dependencies.py 5 | @@ -96,7 +96,7 @@ class PackageDependency(object): 6 | return 7 | try: 8 | self.version = pkg_resources.get_distribution(self.name).version 9 | - except pkg_resources.DistributionNotFound: 10 | + except (pkg_resources.DistributionNotFound, pkg_resources.RequirementParseError): 11 | self.version = '' 12 | 13 | def to_tuple(self): 14 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01217.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Death note handwriting check Why didn't L check Yagami Light's handwriting and try to match that to the handwriting in the Death Note when he had the notebook?\n", "post_id": "20584", "cluster_id": 1217, "novelty": true, "order": 0} 2 | {"body_text": "Why didn't L check for fingerprints or hair? Related to this: Death note handwriting check\nA lot of DNA must have rubbed off on the Death Notes. Unless the Death Note has a rule about fingerprints or DNA, I don't see how this isn't a plothole.\n", "post_id": "26615", "cluster_id": 1217, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00082.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What is the formal term for energy in Dragon Ball Z? In Bleach, the term is \"reiatsu\". In Naruto, it is \"chakra\". However, all I ever really heard in DBZ is \"power level\". Is there a more formal descriptive term for the source of their powers or the energy they give off?\n", "post_id": "2782", "cluster_id": 82, "novelty": true, "order": 0} 2 | {"body_text": "Is Haki based on anything real? In One Piece series, there's this 'will' technique called Haki. Is this based on anything real, all three of them?\n", "post_id": "4035", "cluster_id": 82, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00233.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Which chapters do I need to read of The World God Only Knows (Manga)? I plan to read TWGOK manga, especially the chapters that weren't animated (between Season 2 and Season 3). Which chapters do I need to read?\n", "post_id": "4739", "cluster_id": 233, "novelty": true, "order": 0} 2 | {"body_text": "Where should I continue after the third anime season? I plan to read manga of The World God Only Knows.\nI've watched up to and including season 3 of the anime. Which chapters do I need to start at to continue?\n", "post_id": "7377", "cluster_id": 233, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01466.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What is the opposite of \"seme\" according to otakus? I don't understand the joke behind \"opposite of seme\" scene. Can you please explain it to me?\n\n\n\n\n", "post_id": "14364", "cluster_id": 1466, "novelty": true, "order": 0} 2 | {"body_text": "What is the equivalent of \"seme\" and \"uke\" in yuri culture? As mentioned in this answer, the terms seme and uke are used in yaoi to describe a duality:\nIf there is an equivalent to this kind of relationship in yuri manga and animation, what is it called?\n", "post_id": "28319", "cluster_id": 1466, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01470.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why does Kakashi Hatake always wear a mask? Since his childhood as depicted in manga/anime, Kakashi always wore a cloth mask covering his face, making only eye(s) and a portion of forehead visible.\nWhat was the reason for this?\n", "post_id": "2912", "cluster_id": 1470, "novelty": true, "order": 0} 2 | {"body_text": "Why is kakashi wearing a mask? Is kakashi trying to hide his identity or something else. What is the real reason behind it? Is his face has any scars like the one he has in one of his eye?\n", "post_id": "28341", "cluster_id": 1470, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01661.json: -------------------------------------------------------------------------------- 1 | {"body_text": "When and where does Attack on Titan take place? Is the setting of \"Attack on Titan\" (Shingeki no kyojin) supposed to be Earth in the distant future and Titans suddenly appeared out of nowhere and devolved society to medieval level of technology? Or is this just a completely fictional setting?\n", "post_id": "4615", "cluster_id": 1661, "novelty": true, "order": 0} 2 | {"body_text": "What happened to people with other skin colors In Attack on Titan, we know what happened to many people.\n\n They became the titans.\n", "post_id": "29954", "cluster_id": 1661, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01773.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What was L's real name? What was L's real name, or did he never have one (it was never said)? I watched through Death Note once, and I never remember hearing his name, even after he died. \n", "post_id": "19420", "cluster_id": 1773, "novelty": true, "order": 0} 2 | {"body_text": "In Death Note, is it ever revealed what \"L\" stands for? In Season 2, we meet L's successors, \"M\" (Mellow) and \"N\" (Near). Seeing how they are his successors and were all raised in the same institute, L must also stand for something.\n", "post_id": "32063", "cluster_id": 1773, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00827.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What are the 9 mountains and 8 seas? So we have all seen Zoro boast.\nNow it made me wonder, which mountains and what seas was he referring to?\n", "post_id": "20202", "cluster_id": 827, "novelty": true, "order": 0} 2 | {"body_text": "Why is All Blue not part of the 8 Seas? While exploring this site, I came across this particular question: What are the 9 mountains and 8 seas? \nIn the answers however, I did not see anyone mention All Blue. So my question is why is All Blue not a part of the 8 Seas that Zoro mentions?\n", "post_id": "22379", "cluster_id": 827, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00277.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What exactly is a guild mark? All guild members have a mark of their guild, what exactly are they? Is it just a regular tattoo or is there some kind of magic contract?\n\n", "post_id": "8308", "cluster_id": 277, "novelty": true, "order": 0} 2 | {"body_text": "Can a guild mark be forcefully applied? The What exactly is a guild mark? question made me wonder about this aswell. \nCan a guild mark be forcefully applied on somebody? Or is it a process of mutual acceptance. Or maybe even like with the celestial spirits, a contract?\n", "post_id": "8316", "cluster_id": 277, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00508.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why did the Hunter x Hunter manga go on hiatus? I think the Hunter x Hunter manga has been on hiatus for months now; does anyone know the reason for the hiatus? Is the author planning to continue the series?\n", "post_id": "4751", "cluster_id": 508, "novelty": true, "order": 0} 2 | {"body_text": "Why wasn't Hunter x Hunter chapter 350 released yet? Does anyone here know why Hunter x Hunter chapter 350 has not been released yet?\nWhen is it coming out? I would be grateful for any answers or comments you are able to provide.\n", "post_id": "15571", "cluster_id": 508, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00789.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Can Blackbeard consume more than one Devil Fruit? \nCan Blackbeard consume more than just one Devil Fruit? If yes, then what is the upper limit?\nWhen he reaches the maximum number of Devil Fruits, can he change them, i.e. can he lose one of the Devil Fruits to consume a new one?\n", "post_id": "9953", "cluster_id": 789, "novelty": true, "order": 0} 2 | {"body_text": "What will happen if one person eats two Devil Fruits? If a person has already eaten one Devil Fruit, what will happen to him if he eats another Devil Fruit?\n", "post_id": "22090", "cluster_id": 789, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01194.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why does Konata call Kagami Kagamin? Every now and then, Konata calls Kagami Kagamin. Why? Does this change the meaning of the name?\n", "post_id": "3515", "cluster_id": 1194, "novelty": true, "order": 0} 2 | {"body_text": "What does the word \"Akarin\" mean? The word Akarin seems related to the fact that Akari is considered as a transparent person. As an example, every time Akari becomes transparent, the word Akarin appears.\n\nWhat's more, Akari seems to dislike this word.\nWhat does Akarin means? What is its etymology?\n", "post_id": "26313", "cluster_id": 1194, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01251.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What's the name of the song that played in the last few minutes of episode 13, Charlotte? It's towards the end of the episode, something about Sinking Ships but I can't find the song.\n", "post_id": "26242", "cluster_id": 1251, "novelty": true, "order": 0} 2 | {"body_text": "What is the name of the ZHIEND song in the middle of episode 13? In episode 13 of Charlotte, there is a ZHIEND song playing about halfway in the episode, just before Yu in insane mode starts stealing other people's abilities, such as the bomb ability.\n", "post_id": "26841", "cluster_id": 1251, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /src/mem_net/nn_utils.py: -------------------------------------------------------------------------------- 1 | import theano 2 | import theano.tensor as T 3 | import lasagne 4 | 5 | def softmax(x): 6 | e_x = T.exp(x - x.max(axis=0, keepdims=True)) 7 | out = e_x / e_x.sum(axis=0, keepdims=True) 8 | return out 9 | 10 | def l2_reg(params): 11 | return T.sum([T.sum(x ** 2) for x in params]) 12 | 13 | 14 | def constant_param(value=0.0, shape=(0,)): 15 | return theano.shared(lasagne.init.Constant(value).sample(shape), borrow=True) 16 | 17 | 18 | def normal_param(std=0.1, mean=0.0, shape=(0,)): 19 | return theano.shared(lasagne.init.Normal(std, mean).sample(shape), borrow=True) 20 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00507.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Is Akira the only anime produced in 24fps? I read an article recently that states:\nBased on this article, it seems Akira was the first anime (or perhaps animation) to be filmed at 24fps. Is it the only anime to do so, or did others do this later on as well?\n", "post_id": "3814", "cluster_id": 507, "novelty": true, "order": 0} 2 | {"body_text": "What does it mean for animation to be done \"on ones\" or \"on twos\"? Animation is sometimes described as being done \"on ones\" or \"on twos\" or \"on threes\". What does that mean? \n", "post_id": "15567", "cluster_id": 507, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01780.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Is there a name for this manga-anime mouth expression? (`3`) Is there a name for this expression?\nThey do it a lot in YuruYuri, too.\n\n", "post_id": "23328", "cluster_id": 1780, "novelty": true, "order": 0} 2 | {"body_text": "Why in World Trigger do the characters have times when their face gets blank during dialog \nWhy is it that the characters faces do this at various points in the dialog and what is it meant to convey? I wonder if perhaps this is a Japanese culture or anime culture expression that I have not seen before?\n", "post_id": "21699", "cluster_id": 1780, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00790.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Can Brook have another Devil Fruit? As per One Piece logic, a person cannot have 2 Devil Fruit powers. \nThe Yomi Yomi no Mi fruit revives the one who eats it. The powers of this fruit are a one-time use, and has been used up after Brook was revived. Can Brook now have another Devil Fruit?\n", "post_id": "5261", "cluster_id": 790, "novelty": true, "order": 0} 2 | {"body_text": "What will happen if one person eats two Devil Fruits? If a person has already eaten one Devil Fruit, what will happen to him if he eats another Devil Fruit?\n", "post_id": "22090", "cluster_id": 790, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00879.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why do anime and manga use the same faces? \n\nMany shows use the same face template throughout. Why do they use this?\n", "post_id": "22624", "cluster_id": 879, "novelty": true, "order": 0} 2 | {"body_text": "Why did Yoshihiro Togashi recycle designs from yu yu hakusho for his characters in hunter x hunter? \nAlthough Gon's not similar by facial design he is similar by green schemes that yusuke has and hair color is similar\n\nKillua is similar from hiei's demeanor\n\nBoth have androgynous appearances\n\nPersonalities are similar\n", "post_id": "22813", "cluster_id": 879, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00928.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Is Highschool of the Dead on hiatus again? I was really happy when I heard that HoTD would be continued. And even happier when the first new chapter actually came. but now after several months of waiting there still has been no other chapter. So my question is, has HoTD gone on hiatus again ?\n", "post_id": "7292", "cluster_id": 928, "novelty": true, "order": 0} 2 | {"body_text": "Does anyone know what happened to H.O.T.D? I really like the storyline, and I kinda miss it since the series hasn't released a new chapter in a long time.\n", "post_id": "23138", "cluster_id": 928, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00275.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why are all members of the Kuja tribe born as women? On chapter 515 they mentioned all Kuja Tribe women always give birth to females.\nHow is this possible? Is there any explanation about this?\n\n", "post_id": "7668", "cluster_id": 275, "novelty": true, "order": 0} 2 | {"body_text": "How do the women of Amazon Lily reproduce? I just got to the part where Luffy arrived to Amazon Lily.\nI started wondering, how do the women multiply in Amazon Lily as there are no men?\nThere were kids, so they must've some method.\n\nMaybe you could explain?\n", "post_id": "8266", "cluster_id": 275, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00502.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What is Naruto's family tree? I've been trying to figure out how far Naruto's heritage can be traced back. We know his parents, but seeing as we've met other Uzumakis, I figured that there might be at least some other idea of his heritage past is parents. How far/out can his family tree be traced?\n", "post_id": "7720", "cluster_id": 502, "novelty": true, "order": 0} 2 | {"body_text": "Is Naruto related to Hashirama Senju? Hashirama Senju, the 1st Hokage, married Mito Uzumaki right? So does that make him Naruto's great, great, great grandfather?\n", "post_id": "15498", "cluster_id": 502, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2016 In-Q-Tel, Inc, All Rights Reserved. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00367.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What's the correct pronunciation for Luffy or Rufi? What's the correct pronunciation of his name? Luffy or Rufi?\nAt the One Piece wikia, it says \"Monkey D. Luffy (\u30e2\u30f3\u30ad\u30fc\uff65D\uff65\u30eb\u30d5\u30a3 Monk\u012b D. Rufi)\".\n", "post_id": "782", "cluster_id": 367, "novelty": true, "order": 0} 2 | {"body_text": "What's the name of One Piece's principal character In the brazilian subtitle him started called as Ruffy, but in the half of Enies Lobby/Water 7 Saga its became called as Luffy, so I'm interested in know what is him name.\n", "post_id": "11709", "cluster_id": 367, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00677.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What are the 9 mountains and 8 seas? So we have all seen Zoro boast.\nNow it made me wonder, which mountains and what seas was he referring to?\n", "post_id": "20202", "cluster_id": 677, "novelty": true, "order": 0} 2 | {"body_text": "Roronoa Zoro's boasts I'm quite interested in Zoro's personality, especially when he boasts to others about his powers. Can someone list out all or some of Zoro's lines so far in the manga?\nI can only remember two:\n\nIn Dressrosa arc:\n\n During his fight with Pica, he said \"Only if your Haki is stronger than mine\".\n\n\n", "post_id": "20376", "cluster_id": 677, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01463.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What are the anime censorship laws in Japan? I know that there are censorship laws in Japan (which is why you end up with things like tentacles instead of genitalia). What are the laws, and are they the same as the laws for live-action television programming? \n", "post_id": "4940", "cluster_id": 1463, "novelty": true, "order": 0} 2 | {"body_text": "Why are anime girls drawn without pubic hair? Why are there no hair drawn down there or anywhere apart from FEMALE character's heads in anime? \nI heard it was illegal from my friend. Were they making it up?\n", "post_id": "28259", "cluster_id": 1463, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00785.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why do anime/manga characters have big eyes? Going as far back as Astroboy, anime and manga characters have had big eyes.\nWhat is basis of this trend? How and where did this originate?\n\n", "post_id": "4748", "cluster_id": 785, "novelty": true, "order": 0} 2 | {"body_text": "Why are most people in anime white or European-looking (instead of Japanese)? Anatomically speaking Europeans don't look like that either. But most of the people look more European than Japanese, at least it seems to me ... Maybe it's the round eyes? And the non-black hair in some cases?\n", "post_id": "7539", "cluster_id": 785, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01681.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why are manga black and white? This question triggered my curiosity for this question. Why most of manga are black and white? Is this because of more cost if they add colors to it? \n", "post_id": "4284", "cluster_id": 1681, "novelty": true, "order": 0} 2 | {"body_text": "Why are Japanese manga not coloured unlike Korean Manhwa? In general, most Japanese manga are not colored, except for title page or centre color pages, rarely.\nHowever, most Korean manhwa manage to colour their works while maintaining a good standard of art, also in their weekly deadlines.\n", "post_id": "28337", "cluster_id": 1681, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00220.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How are the Tenchi timelines related? Between Muyo, Universe, GXP, and Ryo-ohki, I'm thoroughly confused. Sometimes Tenchi series seem to be related (Ryo-ohki and Universe) and sometimes not (GXP). What are all the Tenchi series, are they related, and if they are, how?\n", "post_id": "2089", "cluster_id": 220, "novelty": true, "order": 0} 2 | {"body_text": "What order do I watch the Tenchi anime in? I'm trying to watch the anime series Tenchi and don't know what order to watch the episodes in, including the OVAs and movies. What order are they intended to be watched in?\n", "post_id": "7117", "cluster_id": 220, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01180.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What is the significance of the name Bleach? The name \"Bleach\" seems to be having no relevance to the plot unlike most other series. Was it just chosen at Kubo-sensei's whim or does it have some significance? Maybe some cultural significance associated with shinigami, etc. that I am now aware of?\n", "post_id": "2226", "cluster_id": 1180, "novelty": true, "order": 0} 2 | {"body_text": "Why is Bleach called what it is? The anime Bleach has to do with soul reapers and stuff, but not actually Bleach. So, I'm not getting why it's called Bleach. Mind explaining, anyone?\n", "post_id": "26176", "cluster_id": 1180, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01247.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Steins;Gate, Chaos;Head and Robotics;Notes naming convention with semicolon? The anime Steins;Gate, Chaos;Head and Robotics;Notes all share the use of the semi-colon as part of their names. What is the reason for using the semi-colon within the titles of these anime?\n", "post_id": "13477", "cluster_id": 1247, "novelty": true, "order": 0} 2 | {"body_text": "Why are these animes called so? (something;something) There are manga/anime called \"something;something\", what for? does it server any purpose for identifying it as a series? example: steins;gate, robotic;notes. \n", "post_id": "26778", "cluster_id": 1247, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01686.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What is the first ever produced anime and manga? What is the first anime ever produced in Japan?\nAnd what is the first anime film and first anime series produced?\nI heard that it was Astro Boy, is that true? And what is the first ever manga produced in Japan?\n", "post_id": "3408", "cluster_id": 1686, "novelty": true, "order": 0} 2 | {"body_text": "How was the first anime made? Anime production nowadays is now pretty much complicated and technologically advanced.\nI'm curious as to how was anime production back then back in the old days when it was still obscure?\n", "post_id": "30342", "cluster_id": 1686, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01762.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What is a \"cour\"? I often hear shows talked about as being some number of \"cours\". For example, Evangelion is apparently \"two cours\", while Madoka is \"one cour\". \nBut what on earth does \"cour\" mean? I can't find it in any dictionary!\n", "post_id": "7977", "cluster_id": 1762, "novelty": true, "order": 0} 2 | {"body_text": "What are typical release cycles? What are typical release cycles that are used for manga chapters or anime episodes?\nI'm not asking for specific mangas/animes but simply how often on chapter/anime could be released, eg weekly or monthly.\n", "post_id": "31886", "cluster_id": 1762, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00276.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What exactly is a guild mark? All guild members have a mark of their guild, what exactly are they? Is it just a regular tattoo or is there some kind of magic contract?\n\n", "post_id": "8308", "cluster_id": 276, "novelty": true, "order": 0} 2 | {"body_text": "Is it possible to have 2 guild marks? The What exactly is a guild mark? question made me wonder about allot of things regarding the guild mark.\nOne of the things would be: Is it possible to have multiple guild marks from either the same, or even other guilds? Or has it been stated that this is not possible somewhere?\n", "post_id": "8315", "cluster_id": 276, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00532.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Which Akame ga KILL! manga should I read if I want to continue the storyline of the anime? I saw there are various manga with Akame ga KILL! in their names.\nThe ones I have found are:\n\nAkame ga KILL!\nAkame ga KILL! Zero\n\nWhich one should I read if I want to continue the storyline of the anime?\n", "post_id": "15124", "cluster_id": 532, "novelty": true, "order": 0} 2 | {"body_text": "Does the Akame Ga Kill! manga continue where the anime leaves off? The anime has ended at episode 24, \"Akame ga Kill!\".\nDoes the manga continue the story beyond the anime's conclusion?\n", "post_id": "16835", "cluster_id": 532, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01124.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why does Kyoko come to the city in Madoka Magica? Why does Kyoko come to the city in Madoka Magica? \nThere is probably a very simple answer for this, but I'm too lazy to go back and rewatch or to skim through a wiki. \n", "post_id": "25701", "cluster_id": 1124, "novelty": true, "order": 0} 2 | {"body_text": "Why were Sayaka and Kyoko fighting in the beginning, and what caused them to eventually end up as friends? Why were Sayaka and Kyoko fighting in the beginning, and what caused them to eventually end up as friends?\n(Related: Why exactly does Kyoko attempt to save Sayaka?)\n", "post_id": "25726", "cluster_id": 1124, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01127.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why were Sayaka and Kyoko fighting in the beginning, and what caused them to eventually end up as friends? Why were Sayaka and Kyoko fighting in the beginning, and what caused them to eventually end up as friends?\n(Related: Why exactly does Kyoko attempt to save Sayaka?)\n", "post_id": "25726", "cluster_id": 1127, "novelty": true, "order": 0} 2 | {"body_text": "Why does Kyoko come to the city in Madoka Magica? Why does Kyoko come to the city in Madoka Magica? \nThere is probably a very simple answer for this, but I'm too lazy to go back and rewatch or to skim through a wiki. \n", "post_id": "25701", "cluster_id": 1127, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00980.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Code Geass season 1 episode 7, there is a song playing at 16:56 In Code Geass season 1 episode 7, there is a song playing at 16:56. I can't find the song no matter where I look.\n", "post_id": "23017", "cluster_id": 980, "novelty": true, "order": 0} 2 | {"body_text": "What song is being played at around 10:23 in Episode 2, Code Geass R1? It usually plays around tense scenes.\nAnother instance of it playing is in the first episode of R1, at around 3:17, right after the opening. The scene shows a mountain with the (translated) caption, \"7 YEARS AFTER THE WAR (2017 a.t.b.)\" \nThanks!\n", "post_id": "23715", "cluster_id": 980, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01166.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How did Rock Lee pass the academy test? I stumbled over this question on Facebook. I was wondering how Rock Lee got out of the academy and why did they let him leave?\n", "post_id": "5312", "cluster_id": 1166, "novelty": true, "order": 0} 2 | {"body_text": "Why didn't Naruto pass the academy exam when Lee was able to? Lee could not use chakra and thus could not perform any of the 3 techniques. However, Lee managed to pass the academy exam, while Naruto couldn't.\nWhy did Naruto fail when he could easily perform the Henge and Kawarimi and clearly had too much chakra for the Bunshin?\n", "post_id": "25986", "cluster_id": 1166, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00093.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What was the first manga in color? I know that there are mangas printed in color as opposed to black and white. One example of this is Colorful by Torajir\u014d Kishi, which is the only one that I know of. What was the first manga that was printed entirely in color--as opposed to just cover pages on tankoban being in color?\n", "post_id": "4113", "cluster_id": 93, "novelty": true, "order": 0} 2 | {"body_text": "Why are manga black and white? This question triggered my curiosity for this question. Why most of manga are black and white? Is this because of more cost if they add colors to it? \n", "post_id": "4284", "cluster_id": 93, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00164.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why not simply \"Metal Alchemist\"? Why is Edward Elric known as the 'Fullmetal Alchemist' not simply as 'Metal Alchemist'? Is there any reason besides the names sounding better?\nI've only watched the 2nd episode of FMA brotherhood.\n", "post_id": "4416", "cluster_id": 164, "novelty": true, "order": 0} 2 | {"body_text": "What does \"Fullmetal\" mean? The title is obviously the State Alchemist name of Edward Elric, but what does the word \"Fullmetal\" mean? I watched both series with dub in my mother language, and in that, Ed was referred as \"Steel Alchemist\". (translated to English)\n", "post_id": "5886", "cluster_id": 164, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00349.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Can a Devil Fruit user drown in a bathtub? If a Devil Fruit user goes to a bathtub full of water or gets into a spa, will he drown?\n", "post_id": "11206", "cluster_id": 349, "novelty": true, "order": 0} 2 | {"body_text": "Luffy as a water balloon We discussed a lot about drowning devil fruit users in a bath - see this question: Can a devil fruit user drown in a bathtub?. \nSo now I remembered the fight between Luffy and Crocodile. To have a chance, Luffy drank a lot of water and was like a water ballon. But why didn't this affect his strength?\nDoes he have to be surrounded by water?\n\n", "post_id": "11331", "cluster_id": 349, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01673.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What does it mean for animation to be done \"on ones\" or \"on twos\"? Animation is sometimes described as being done \"on ones\" or \"on twos\" or \"on threes\". What does that mean? \n", "post_id": "15567", "cluster_id": 1673, "novelty": true, "order": 0} 2 | {"body_text": "How can I improve the frame rate of a low frame rate anime? After reading Senshin's question about why Sidonia no Kishi has such low framerate, I wondered: is there not a way to improve an anime's frame rate on our end, similar to the way HDTV's do?\nWhat are some ways to improve the frame rate of a low FPS anime?\n", "post_id": "30128", "cluster_id": 1673, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00089.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How can Haku perform hand seals with only one hand? In the Land of the Waves arc, it can be seen that Haku performs handseals with only one hand. That must be something special, because a.) even Kakashi was surprised to see that, and b.) that's never seen again somewhere (except I forgot it).\nHow is that possible? Is that a special technique? Was it ever explained in the manga/anime?\n", "post_id": "2589", "cluster_id": 89, "novelty": true, "order": 0} 2 | {"body_text": "Can a ninjutsu be executed without the use of hand seals? Is it possible to execute any ninjutsu without using handseals?\n", "post_id": "4261", "cluster_id": 89, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00196.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How did Homunculus come into being? In FMA, the being that became Father, the one known originally as Homunculus or the Dwarf in the Flask, seemed to have been created by Van Hohenheim's master using some of Van Hohenheim's blood. Is the creation ever explained in any greater detail?\n", "post_id": "5180", "cluster_id": 196, "novelty": true, "order": 0} 2 | {"body_text": "How did the characters learn alchemy? How did the characters gain their power to perform alchemy in FMA:Brotherhood? Is it genetic, or is it something that can be learned? After all, not everyone in the series can use alchemy.\n", "post_id": "6368", "cluster_id": 196, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00442.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How does Kirito come back to life when he's fighting Heathcliff? I was rewatching Sword Art Online and I notice that Heathcliff KILLS him and yet, he is able to come back and finish off Heathcliff, how is this so?\n", "post_id": "13007", "cluster_id": 442, "novelty": true, "order": 0} 2 | {"body_text": "How did Asuna and Kirito survive? In the last episode of Aincrad arc of Sword Art Online, how did Asuna survive even though her avatar disintegrated after being attacked by Kayaba? Also Kirito was stabbed by Kayaba as well. How did he survive?\nWas it in the novel on how they really survived?\n", "post_id": "14035", "cluster_id": 442, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00670.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What happened to Goku after he left the Earth at the end of Dragon Ball GT? What happened to Goku in those 100 years after he left the Earth (by which Pan was already an old woman)? Did Goku die or not?\n", "post_id": "19816", "cluster_id": 670, "novelty": true, "order": 0} 2 | {"body_text": "Why don't Saiyans age? I have seen many Dragon Ball series like Dragon Ball, Dragon Ball Z, Dragon Ball GT. One thing remains same is that Saiyans never look aged.\nThe last episode of Dragon Ball GT shows Pan as a grandma, but Goku was looking as young as he was in Dragon Ball Z. Why don't Saiyans age?\n", "post_id": "20303", "cluster_id": 670, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00743.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How long is the longest running anime series? I know that the Pokemon anime has over 800 episodes, and One Piece has 600+ episodes, but I've heard that they are not in the top 10 of anime with the most number of episodes.\nSo what anime is longest?\n", "post_id": "7678", "cluster_id": 743, "novelty": true, "order": 0} 2 | {"body_text": "Which anime has the most number of filler episodes and the longest filler arc? Many animes have filler episodes and arcs. So this question has two parts:\n\nWhich anime has the most number of filler episodes? \nWhat is the length of the longest filler arc?\n\n", "post_id": "19517", "cluster_id": 743, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01689.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How could Nunnaly see Lelouch's memories? \n In the end, when Lelouch is about to die, Nunally holds his hands and is able to see his memories. How? The theory that Lelouch is immortal explains this, but that isn't official.\n\nIs there any official explanation for this?\n", "post_id": "6250", "cluster_id": 1689, "novelty": true, "order": 0} 2 | {"body_text": "How did Nunnally know that Lelouch did what he did for good? In the last episode of Code Geass R2, after Lelouch died, Nunally touched his hand and she suddenly knew what he did and what the Zero Requiem was. Was this a power of Geass?\n", "post_id": "30398", "cluster_id": 1689, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00390.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Name of hair style with one strand sticking upwards I always forget what this special hairstyle is called, which is shared by some characters. I'll give some examples, I think it should be clear what I mean.\n\n\nEdward Elric also has this wisp(?), but I can't find a good image of it.\nWhat is it called? What does it stand for?\n", "post_id": "5650", "cluster_id": 390, "novelty": true, "order": 0} 2 | {"body_text": "What is that twiggy strand in hair of some anime characters called? I remember there's a Japanese word for it, but I forgot.\nHere's an image of Hachiman. That \"twig\" on his head.\n\n", "post_id": "13253", "cluster_id": 390, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01004.json: -------------------------------------------------------------------------------- 1 | {"body_text": "In Naruto Gaiden: The Seventh Hokage, who is this blue-haired guy sitting next to Boruto? In Naruto Gaiden: The Seventh Hokage manga, page 3\n\nWho is the guy with blue hair sitting next to Boruto?\nIs it a new character or did I miss something from Naruto?\n", "post_id": "21316", "cluster_id": 1004, "novelty": true, "order": 0} 2 | {"body_text": "Who are Mitsuki's parents? From Naruto Gaiden: The Seventh Hokage, Chapter 2, Page 14.\nI'm guessing one of them is Gaara. If so, who is he married to? Even when looking at the picture at the end of the chapter, I can't recall ever seeing that woman.\n\n", "post_id": "21377", "cluster_id": 1004, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01075.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Who are Mitsuki's parents? From Naruto Gaiden: The Seventh Hokage, Chapter 2, Page 14.\nI'm guessing one of them is Gaara. If so, who is he married to? Even when looking at the picture at the end of the chapter, I can't recall ever seeing that woman.\n\n", "post_id": "21377", "cluster_id": 1075, "novelty": true, "order": 0} 2 | {"body_text": "In Naruto Gaiden: The Seventh Hokage, who is this blue-haired guy sitting next to Boruto? In Naruto Gaiden: The Seventh Hokage manga, page 3\n\nWho is the guy with blue hair sitting next to Boruto?\nIs it a new character or did I miss something from Naruto?\n", "post_id": "21316", "cluster_id": 1075, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01806.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How many sets of armor does Erza have? I have been wondering this whole time since I recently started watching Fairy Tail.\nHow many sets of armor does Erza have and how can she make new ones?\n", "post_id": "14015", "cluster_id": 1806, "novelty": true, "order": 0} 2 | {"body_text": "How does erza get her armor and weapons ready for requip in fairy tail erza can use requip, but I wanna know how she gets her weapons and armor there in the first place, her ability in fairy tail is not to put and leave items there its only for switching, so how did she place all her armour there in the first place?.\n", "post_id": "32476", "cluster_id": 1806, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00656.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Which episodes of Fairy Tail are anime-exclusive? Up to episode 175, I know Fairy Tail has some episodes which are not in the manga.\nIf I want to watch the series again but not the episodes that are anime-exclusive, which ones should I skip?\nThis question is inspired by Which episodes of Bleach are fillers, I just decided to do the same for Fairy Tail\n", "post_id": "8055", "cluster_id": 656, "novelty": true, "order": 0} 2 | {"body_text": "Which episodes of Fairy Tail season 2 are anime-exclusive? Aside from the Eclipse Celestial Spirits arc, what other episodes of Fairy Tail season 2 are anime-exclusive?\n", "post_id": "20064", "cluster_id": 656, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00684.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What's the significance of revealing a character's blood type? A lot of Anime shows will reveal the blood type of one or more of the main characters:\n\n\nWhat's the significance of it? What purpose does it serve?\nWhere did it come from?\n\n", "post_id": "3275", "cluster_id": 684, "novelty": true, "order": 0} 2 | {"body_text": "What does it mean to be a poster child of type B blood? In the first episode of Ping Pong the Animation, around 9 minutes in, Peco called Smile a poster child for B type blood. What does this mean, exactly? What significance does this have? How does this relate to his personality?\n", "post_id": "20607", "cluster_id": 684, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01155.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What are the differences between Super Saiyan God and Super Saiyan God Super Saiyan? As stated in the title, what are the differences between the two?\nAre they supposed to be entirely different or is simply the next stage of the previous?\n", "post_id": "25879", "cluster_id": 1155, "novelty": true, "order": 0} 2 | {"body_text": "Is it possible that Goku is more powerful than Beerus in Super Saiyan God Super Saiyan form? In DBZ: Battle of Gods, Goku became Super Saiyan God and he makes Beerus use upto 70% of his energy. So, is it possible for Goku to defeat Beerus in his Super Saiyan God Super Saiyan form?\n", "post_id": "25869", "cluster_id": 1155, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00255.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Is Highschool of the Dead on hiatus again? I was really happy when I heard that HoTD would be continued. And even happier when the first new chapter actually came. but now after several months of waiting there still has been no other chapter. So my question is, has HoTD gone on hiatus again ?\n", "post_id": "7292", "cluster_id": 255, "novelty": true, "order": 0} 2 | {"body_text": "What is the cause of the zombie outbreak? In the first episode from the anime Zombie's already exist. And after finishing the anime there's still no explanation about their origins. Is the outbreak cause already revealed in the manga?\n", "post_id": "7956", "cluster_id": 255, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01129.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Would a water manipulating Devil Fruit user be able to swim? If all Devil Fruit users in One Piece anime are not capable of swimming, what about a Devil Fruit user whose ability is to control water? Can such a person able to swim or evade the Devil Fruit's curse?\n", "post_id": "5041", "cluster_id": 1129, "novelty": true, "order": 0} 2 | {"body_text": "Is there a Fish-Fish no mi? Is there any Zoan Akuma No Mi that gives the user the ability to transform in fish (Fish-Fish No Mi)? If so can the user swim in the sea?\n@Edit: I don't read the manga, so I don't know if anything like this has already happened or not\n", "post_id": "25754", "cluster_id": 1129, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01189.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What do the sheep dolls represent in Mayo Chiki? \nAre these sheep dolls mascots, or do they represent something in the series? From the look of it, the blood (?) drooling from their mouths is like Sakamachi Kinjirou's nose bleed.\n", "post_id": "14433", "cluster_id": 1189, "novelty": true, "order": 0} 2 | {"body_text": "How can Sebastian use \"I am a butler and a devil\" so casually?\" To my ears, the Japanese means:\nI guess it must have a pun meaning too. On one occasion, a bad guy cried out \"a-a-akuma?\", but that's the exception: everybody seems cool after hearing it. How can Sebastian say this so casually?\n", "post_id": "5122", "cluster_id": 1189, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00070.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Is Black Rock Shooter the only anime soundtrack that features vocaloid singers? Black Rock Shooter's opening theme is sung by Miku Hatsune.\nAre there any other anime soundtracks that incorporate a vocaloid singer (or a similar synthesized voice program) such as Miku?\n\n", "post_id": "3760", "cluster_id": 70, "novelty": true, "order": 0} 2 | {"body_text": "What is a vocaloid? I don't really understand what a vocaloid is so, what is a vocaloid? Is it an anime? If not, how is it related to anime? Is it a singer? If so, is it a real person (because someone told me that some are but mostly are just machine-created voices)?\n", "post_id": "3872", "cluster_id": 70, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00427.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How can Madara summon Kurama? According to the wiki trivia:\nBut how can this possible? Controlling a tailed beast doesn't mean that it can be subject to Summoning Technique. Did Madara sign a contract (form of a scroll) with Kurama?\n", "post_id": "10099", "cluster_id": 427, "novelty": true, "order": 0} 2 | {"body_text": "How did Uchiha Obito summon Kurama? If Uchiha Madara was the only one who could summon Kurama, how did Obito do it? Also, Naruto was 16 while Kakashi looked about 30, so if Kakashi and Obito were the same age, and Obito summoned Kurama while Naruto was born, he would be younger than Naruto is now.\n", "post_id": "13666", "cluster_id": 427, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01817.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why didn't Boa Hancock's attack affect Luffy? Why didn't Boa Hancocks attack convert Luffy to stone?\nIt didn't look like he used Haki or something which would nullify the effect!\nIs there any possible explanation for it?\n\n", "post_id": "5896", "cluster_id": 1817, "novelty": true, "order": 0} 2 | {"body_text": "Does water level determine the amount of power lost? In the left image, you can see that Luffy and Brook have their powers drained. However in the right image, both Hancock and Luffy are in standing water but seem to keep their powers.\n\n\nSo, does the amount of power they lose depend on the water level?\n", "post_id": "33551", "cluster_id": 1817, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00267.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How is it possible that Kanade has Otonashi's heart? I was just wondering this, since Kanade clearly entered the afterlife before even Yurippe did, yet Otonashi arrived later. Technically, Kanade must've died after Otonashi, so how is this possible? \n", "post_id": "206", "cluster_id": 267, "novelty": true, "order": 0} 2 | {"body_text": "What happened to Otonashi and Kanade in the last episode? In the last episode, Kanade graduated and disappeared. After that, there's a scene where Otonashi meets Kanade outside in the afterlife world. Did they reincarnate and meet again, or have they met before when they were still alive?\n", "post_id": "8096", "cluster_id": 267, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00358.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How did Ryuk trick the King of Death Gods? In chapter 27, Misa says\nDoes anybody know how Ryuk tricked the king of Gods and got his Death Note?\n\n", "post_id": "11541", "cluster_id": 358, "novelty": true, "order": 0} 2 | {"body_text": "Was Rem's warning fake? Rem warned Light not to hurt Misa or it would kill Light by writing his name in it's Deathnote, but Ryuk had mentioned in the last episode as well as before that either Ryuk would kill Light or that Light would die after living his natural lifespan. As Ryuk has to kill him, was Rem's warning a bluff?\nIf so, couldn't Light, being a genius, see through his bluff?? \n", "post_id": "6584", "cluster_id": 358, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00835.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why does Himura Kenshin say \uff5e\u3054\u3056\u308b (~gozaru) at end of every sentence? Why does Himura always end almost every sentence with gozaru in this show? Is this normal for people in that time period?\n", "post_id": "121", "cluster_id": 835, "novelty": true, "order": 0} 2 | {"body_text": "What is the significance of anime characters' catch phrases? Uzumaki Naruto (Naruto) has a catch phrase \"dattebayo\". Ika Musume (Squid Girl) has a catch phrase \"de geso\". Himura Kenshin (Rurouni Kenshin) has a catch phrase \"gozaru\". And a lot more examples here.\nWhat is the significance of anime characters' catch phrases? \n", "post_id": "3317", "cluster_id": 835, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01609.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How does a Pok\u00e9 Ball work? Is it ever explained how a Pok\u00e9 Ball works? I know that you throw it a Pok\u00e9mon, and if it is weak enough, you catch it. But is the process ever explained? Does it work on humans? Do most Pok\u00e9mon like being held in a Pok\u00e9 Ball?\n", "post_id": "4947", "cluster_id": 1609, "novelty": true, "order": 0} 2 | {"body_text": "What if a pokeball was lost and couldn't be opened? I was reading a question on what it is like inside of a pokeball. It made me wonder what will happen to a Pokemon if the pokeball is lost or damaged. If the pokeball was unable to open would they simple die?\n", "post_id": "29537", "cluster_id": 1609, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00195.json: -------------------------------------------------------------------------------- 1 | {"body_text": "In Fullmetal Alchemist, what does a State Alchemist's pocket watch do? In Fullmetal Alchemist, it is stated a number of times that a state alchemist's pocket watch increases their power, but there doesn't seem to be a clear mechanism for that. How does that work, and what does increasing the power of an alchemist mean?\n", "post_id": "196", "cluster_id": 195, "novelty": true, "order": 0} 2 | {"body_text": "How did the characters learn alchemy? How did the characters gain their power to perform alchemy in FMA:Brotherhood? Is it genetic, or is it something that can be learned? After all, not everyone in the series can use alchemy.\n", "post_id": "6368", "cluster_id": 195, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00336.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Which side is Yamato on? In Naruto Chapter 677, Yamato reappears again after posing as fighting against the Great Shinobi Alliance and the Kages.\nWhich side is he on now currently? If he is on Madara's side, why? Was he brainwashed?\n", "post_id": "9839", "cluster_id": 336, "novelty": true, "order": 0} 2 | {"body_text": "Since which chapter has Yamato changed sides? First I have been surprised to see another Tobi (Obito with a mask) fighting with Kages then after he revealed himself we just discover that it was\n\n Yamato\n\nSo my question is: in which chapter was he captured (or used) for Madara's purpose? I am a bit lost.\n", "post_id": "10078", "cluster_id": 336, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00810.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Is Sasuke's new dojutsu same as Kaguya's third eye? SPOILERS AHEAD\n\n After Hagoromo Otsutsuki gives his Yin chakra to Sasuke, Sasuke develops a new dojutsu in his left eye. \nIn both cases, the eyes have circles and tomoes in them. \n", "post_id": "21478", "cluster_id": 810, "novelty": true, "order": 0} 2 | {"body_text": "What happened to the tomoe in Sasuke's Rinnegan? Sasuke's Rinnegan (pre-chapter 700) had six tomoe.\n\nIn Naruto Gaiden: The Seventh Hokage chapter 6, when Sasuke's Rinnegan is shown, it doesn't have the tomoe:\n\n\nWhat happened to the tomoe in his Rinnegan? Is this an error or is there something else to it?\n", "post_id": "22142", "cluster_id": 810, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01073.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What chapter of the manga does the anime of Nanatsu no Taizai (Seven Deadly Sins) end on? I just finished watching 24 episodes of Nanatsu no Taizai (Seven Deadly Sins). I would like to continue by reading the manga but I am unsure which chapter to start from.\nAlso, I read online that there is a lot missing in the anime compared to the manga. Is that true?\n", "post_id": "21155", "cluster_id": 1073, "novelty": true, "order": 0} 2 | {"body_text": "What manga chapter does the Nanatsu no Taizai anime end on? Hoping to know what chapter it is. I want to continue it from there even if the anime skip some chapters more or less. :)\n", "post_id": "24323", "cluster_id": 1073, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01178.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why did the Uchihas never try to learn Sage Mode? Jiraiya, Naruto, Hashirama and Kabuto were able to enter into Sage Mode. One who enters Sage Mode possesses more abilities than a normal ninja. Why did the Uchihas never try to learn Sage Mode? Is it because of the Sage of Six Paths dividing his power among his sons?\n", "post_id": "20851", "cluster_id": 1178, "novelty": true, "order": 0} 2 | {"body_text": "Can an Uchiha master Sage Mode? If a child whose father is Uchiha and mother is Senju is born, will this child awaken the Rinnegan?\nWill they be able to use Sage Mode because Senju have strong chakra to harness Sage Mode?\n \n", "post_id": "26141", "cluster_id": 1178, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01275.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why did Erza challenge that many monsters at the Pandemonium? During the Pandemonium contest at the Grand Magic Games,\n\n Erza challenges all the 100 monsters at once, but she could have won the full 10 points by challenging and beating \"only\" 51. \n\nWhy did she do it?\n", "post_id": "2468", "cluster_id": 1275, "novelty": true, "order": 0} 2 | {"body_text": "Why did Mavis lend Fairy Glitter magic to Cana? Cana got Fairy Glitter from Mavis's tomb in Tenrou Island. Mavis also said in Daimatou Enbu that she lent this magic to Cana.\nBut I'm still not sure why Mavis lent Fairy Glitter to Cana? Is there any explanation for this?\n", "post_id": "27075", "cluster_id": 1275, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01747.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What does K.Y. mean? There's this scene in Nichijou episode one where a Grim Reaper is asking everyone:\nIs this supposed to be a joke? I don't really understand what happened.\n\n\n", "post_id": "23871", "cluster_id": 1747, "novelty": true, "order": 0} 2 | {"body_text": "What's Agepoyo and Doyagao? In the last episode of Danshi Koukousei no Nichijou, part \"High School Boys and Lies\", Motoharu asks Yoshitake about different things to which Yoshitake gives absurd replies (with the exception of the last one):\nI understand all of them except Doyagao and Agepoyo. Tried googling but didn't get it. Can someone explain them simply?\n", "post_id": "31514", "cluster_id": 1747, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00015.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Does Devil's Fruit power gained depend on how much of it is eaten? Luffy accidentally ate the Gomu-Gomu (Rubber-Rubber) fruit, but was interrupted by Shanks after a few bites. It was too late and Luffy got the Devil's Fruit powers anyway. If he had instead eaten the whole of it, would he have got even more power from the fruit? \n", "post_id": "906", "cluster_id": 15, "novelty": true, "order": 0} 2 | {"body_text": "Can multiple people/animal eat a single Devil Fruit? Provided, Chopper eats the Devil Fruit along with the other deers, will they all have the Devil Fruit ability, given that acquiring the ability only requires a single bite?\n", "post_id": "931", "cluster_id": 15, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00166.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What does 'moe' mean? I've now watched quite a few anime and I'm still at a loss as to what the term moe represents. Is there an agreed upon definition for it? If a character is moe, what does that mean?\n", "post_id": "894", "cluster_id": 166, "novelty": true, "order": 0} 2 | {"body_text": "What do the black and red scenes mean? In Bakemonogatari, it often happens that suddenly, a red screen with \"Red Scene (Aka)\" or a black screen with \"Black Scene (Kuro)\" appears for a short time. (At least these are written in my sub.)\nWhat do they mean? Is there any difference between \"Red Scene\" and \"Black Scene\" and why are they used?\n", "post_id": "5325", "cluster_id": 166, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01600.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What was Naruto's chakra nature before Shippuden? According to the Naruto Wikia,\n\n Naruto currently has all of the chakra natures. \n\nBefore Shippuden, what type of chakra does Naruto possess?\n", "post_id": "29476", "cluster_id": 1600, "novelty": true, "order": 0} 2 | {"body_text": "Will a person's first chakra nature always be the strongest? Answering this question and reading an answer by Ero Senin made me think some more about chakra natures. Will attacks that use the chakra type that the user has a natural affinity for always be stronger than attacks that use other types of chakra, even after mastering these other types?\n", "post_id": "29479", "cluster_id": 1600, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01670.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What are the original sculptures of the Sekko Boys? In the anime Sekko Boys, the members of the idol group at the center of the show are all sculpture busts:\n\nWhere exactly in the real world do those busts come from though?\n", "post_id": "28841", "cluster_id": 1670, "novelty": true, "order": 0} 2 | {"body_text": "What statues are Dandy2Men based off of? In episode 7: Civil War Brewing, we are introduced to Dandy 2 Men.\nThere is Man of Conviction: Brutus:\n\nand Unexpected King of Comedy: Moli\u00e8re:\n\nI'm familiar with the character of Brutus, but not Moli\u00e8re.\nAre these real life statues, like those of the Sekko boys?\n", "post_id": "30083", "cluster_id": 1670, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00138.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why can't Inuzuka clan's dogs use human language? Why can't Inuzuka clan's dogs use human language when Kakashi's dogs can? Also, how does Kiba and Akamaru understand each other?\n", "post_id": "4161", "cluster_id": 138, "novelty": true, "order": 0} 2 | {"body_text": "How come only certain animals can talk? In Naruto, some animals can talk, like the toads of Mount My\u014dboku, Kakashi's ninja dogs, Manda, and Katsuyu. Some of them have ever used hand signs. Yet Akamaru can't even talk. Is the ability to talk given to certain animals at random, or can they all talk when they have enough chakra or do they just simply have to learn how?\n", "post_id": "5403", "cluster_id": 138, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00779.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How do Luffy's Gear attacks work? Might just be me missing an explanation part in the manga, or just not properly understanding at the time. But how does Luffy's Gear 2nd and 3rd attacks work? \n\n", "post_id": "8177", "cluster_id": 779, "novelty": true, "order": 0} 2 | {"body_text": "Why does Luffy use Gear Second so much? As mentioned here, Gear Second decreases the user's life span. When he first used Gear Second, it was a really important decision to make since it's side effect is so brutal. But after Enies Lobby Arcs he started using it casually. What changed and made Gear Second from a very risky technique to a casual technique? \n", "post_id": "22011", "cluster_id": 779, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00967.json: -------------------------------------------------------------------------------- 1 | {"body_text": "When was the 23 day rule in Death Note revealed? In episode 34 Near asks Mogi how long you can manipulate a victim before their death. He replies 23 days because the Yotsuba incident proved this? When in the data from the Yotsuba incident was this proved?\n", "post_id": "15364", "cluster_id": 967, "novelty": true, "order": 0} 2 | {"body_text": "Is the death note 23 days rule inconsistent? We all know about the 23 day rule. Well. I've been rewatching the series, and I've found something strange in episode 8...\nAt 4:10 (youtube) Light asks Ryuk if you can use any date, as long it's before the victims lifespan, to which Ryuk replies; yes\n", "post_id": "23596", "cluster_id": 967, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01179.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Does the Uchiha:Senju DNA ratio matter in awakening the Rinnegan? Is it possible for a Senju to awaken a Rinnegan? Suppose that a Senju got an EMS from an Uchiha and implanted it, would he also awaken the Rinnegan just like an Uchiha did, given that the ratio of Uchiha and Senju DNA is different than if an Uchiha awakens it?\n", "post_id": "20464", "cluster_id": 1179, "novelty": true, "order": 0} 2 | {"body_text": "Can an Uchiha master Sage Mode? If a child whose father is Uchiha and mother is Senju is born, will this child awaken the Rinnegan?\nWill they be able to use Sage Mode because Senju have strong chakra to harness Sage Mode?\n \n", "post_id": "26141", "cluster_id": 1179, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01444.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Is Highschool of the Dead on hiatus again? I was really happy when I heard that HoTD would be continued. And even happier when the first new chapter actually came. but now after several months of waiting there still has been no other chapter. So my question is, has HoTD gone on hiatus again ?\n", "post_id": "7292", "cluster_id": 1444, "novelty": true, "order": 0} 2 | {"body_text": "where is chapter 31 of H.O.T.D? I have been waiting a long time so i checked the internet but all the answers are from a year or two ago.\nWhat happened to the manga writer?i have checked the internet but the information there isn't what i was hoping to see\n", "post_id": "28203", "cluster_id": 1444, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00174.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What are the differences between Ash and Red? In Pok\u00e9mon, we have two main characters:\n\nRed, who is the main protagonist on the manga and the first Pok\u00e9mon games (Red, Blue and Yellow)\nAsh, who is the main protagonist on the anime.\n\nWhat are the differences between the two?\n", "post_id": "412", "cluster_id": 174, "novelty": true, "order": 0} 2 | {"body_text": "Is Gary also Blue? So we have this question about the character Red vs Ash.\nIt made me start wondering if your rival in the game (red/blue), or if he appears in the manga, is different from Gary. So are Gary and Blue the same? If not, what are the major differences?\n", "post_id": "5956", "cluster_id": 174, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00335.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What did they use for their toast? In episode 17 of Kill la Kill, Kiry\u016bin Satsuki brings out a toast to their success with what looks like a cup of sake. But, considering it is a school and they are between the ages of 16 and 19, they shouldn't be allowed to drink this yet, right? So what did they toast with?\n \n", "post_id": "7424", "cluster_id": 335, "novelty": true, "order": 0} 2 | {"body_text": "Why did they break their cups after a toast? In episode 17 when they're about to welcome Satsuki's mother, they're having a toast and slam their cups to the ground. Why did they do it? Does this have anything to do with Japanese culture?\n\n", "post_id": "10050", "cluster_id": 335, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00596.json: -------------------------------------------------------------------------------- 1 | {"body_text": "In Neon Genesis Evangelion, why are Angels attacking? Why are Angels attacking the earth? What's with \"Adam\" in the basement? And why are the three computers named after the Three Wise Men?\nI love the story for the characters and the mecha-battles, but all the symbolism goes over my head. What's it all about?\n", "post_id": "2422", "cluster_id": 596, "novelty": true, "order": 0} 2 | {"body_text": "Where do the angels come from? The plot of NGE starts with the first angel \"Sachiel\". But where do the angels who are attacking the earth come from?\nAlso where were all angels before they came to Japan/Tokyo? And why do all angels go to Japan?\n", "post_id": "18841", "cluster_id": 596, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00711.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What name will Shinigami Eyes show above the head of a person who changed their name? So let's say, Bob Sch\u00f6sel changes his name to Derkie Duckface. Would a person with shinigami eyes see Duckface's original name, or the name that is currently used?\n", "post_id": "12977", "cluster_id": 711, "novelty": true, "order": 0} 2 | {"body_text": "Is a person who wasn't named by his/her parents immune to the Death Note? If a person's parents didn't name him/her, does this make him/her immune to Death Note? What would a Shinigami contractor see looking at this specific person?\nBy the way, nicknames don't count as real names according to this post.\n", "post_id": "21270", "cluster_id": 711, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00713.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Is a person who wasn't named by his/her parents immune to the Death Note? If a person's parents didn't name him/her, does this make him/her immune to Death Note? What would a Shinigami contractor see looking at this specific person?\nBy the way, nicknames don't count as real names according to this post.\n", "post_id": "21270", "cluster_id": 713, "novelty": true, "order": 0} 2 | {"body_text": "What name will Shinigami Eyes show above the head of a person who changed their name? So let's say, Bob Sch\u00f6sel changes his name to Derkie Duckface. Would a person with shinigami eyes see Duckface's original name, or the name that is currently used?\n", "post_id": "12977", "cluster_id": 713, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00799.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Is the story based on religion? I started reading the manga Magi recently and can't help but get the feeling that it is based on the Islam.\nI Couldn't find any thing online, and neither do I have enough knowledge about the religion to really confirm this either.\nSo is the story of Magi based on Islam? Or does it use certain key points from this religion?\n", "post_id": "8535", "cluster_id": 799, "novelty": true, "order": 0} 2 | {"body_text": "Is magi based on religion(s) I think I recall reading that magi was based on the Quran but to me I seems to be based of Hinduism can some one please clarify.\nIs magi based on a religion or religions?\n", "post_id": "22175", "cluster_id": 799, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00943.json: -------------------------------------------------------------------------------- 1 | {"body_text": "When characters take off their glasses, why do their eyes turn into a \"lip eyes\" icon? Often in anime which features a character who wears glasses, when they take off their glasses, their eyes turn into a sort of puckered lip emoticon that looks like the number 3.\n\nThe meaning is fairly obvious, that the character looks drastically different or worse without their glasses on. But why is this icon used, specifically?\n", "post_id": "21862", "cluster_id": 943, "novelty": true, "order": 0} 2 | {"body_text": "Is there a name for this manga-anime mouth expression? (`3`) Is there a name for this expression?\nThey do it a lot in YuruYuri, too.\n\n", "post_id": "23328", "cluster_id": 943, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01026.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Can an adult be killed using the Death Note, by remembering their childhood face while writing the name? To kill a person using the Death Note, you are required to think of their face while writing their name. \nIf the Death Note user last saw a person decades ago when he was a child, but has no idea what he looks like now, can he kill the person by remembering the childhood face? \n", "post_id": "21787", "cluster_id": 1026, "novelty": true, "order": 0} 2 | {"body_text": "Can someone become immune to the Death Note by using plastic surgery? If someone were to change his face through plastic surgery, would he become immune to the Death Note?\n", "post_id": "24168", "cluster_id": 1026, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01308.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Is shiki fuujin a summoning jutsu? As we know, shiki fuujin jutsu summons the death god which takes the soul of the summoner and target. But is it a summoning jutsu or just a kind of chakra attack (like rasengan, chidori etc)?\n", "post_id": "27424", "cluster_id": 1308, "novelty": true, "order": 0} 2 | {"body_text": "Which is the most powerful summoning (effective and efficient)? I have been a great fan of Naruto for a long time, And I have seen lot of animals being summoned. But its been very hard for me to think which one of the summoning is the most powerful?\nPlease provide manga episode number or anime. I would like to check it again.\n", "post_id": "27413", "cluster_id": 1308, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01805.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Is it a common practice to change the title into something different? Sometimes they change the title into something different, and by different I mean it's not an English translation. An example here is Rurouni Kenshin. Although it state that:\nI don't know if there's another anime that also does this, but I've never seen something like this recently.\n", "post_id": "7800", "cluster_id": 1805, "novelty": true, "order": 0} 2 | {"body_text": "Why is \"Meitantei Conan\" translated as Case Closed? I really like the \"Meitantei Conan\" anime, but I've always wanted to know, why is was the name translated to \"Case Closed\" when it was localized? \n", "post_id": "32464", "cluster_id": 1805, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00229.json: -------------------------------------------------------------------------------- 1 | {"body_text": "When is the Blu-ray release of Kaze Tachinu/The Wind Rises I have been searching for the (Japanese) release date of the Kaze Tachinu (The Wind Rises) blu-ray.\nA U.S. cinema release is in February 2014, so me being in the Netherlands means it might arrive in 2016.\nSo, when is the Japanese blu-ray release?\n", "post_id": "5549", "cluster_id": 229, "novelty": true, "order": 0} 2 | {"body_text": "The Wind Rises English release date? Actually I can not wait more to watch \"The Wind Rises\" Movie, which Miyazaki's final film, so please Is there any news about its English release date? or any useful link please? \nI am really can not wait !! \nthanks, \n", "post_id": "7301", "cluster_id": 229, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00740.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Are the clothes of Devil Fruit users made of a special material? We have Akainu, who is a Logia user with magma capabilities, and Luffy, who can stretch with the Gomu Gomu no Mi. Are their clothes made up of some special material that doesn't burn or tear apart? \n", "post_id": "6394", "cluster_id": 740, "novelty": true, "order": 0} 2 | {"body_text": "How do they imbue their weapons with Haki? In the One Piece world, you can give a devil fruit power to weapons (things) by destroying it with that weapon. It seems one can also give haki to weapon, how can they do that? Kuja tribe member Marguerite is the first to be seen doing that. (Chapter 516)\n\n", "post_id": "8123", "cluster_id": 740, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01791.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How are Natsu and Zeref related? How are they brothers, if Zeref is a human and Natsu is a demon. Was Natsu born a demon or did Zeref make him one?\nThis is so confusing to me. Please clear this up for me!\n", "post_id": "32253", "cluster_id": 1791, "novelty": true, "order": 0} 2 | {"body_text": "How is Zeref related to Natsu Dragneel if Zeref is a human and Natsu is a demon? If Zeref made END does that mean he made Natsu? Was Natsu born a human and then transformed into a demon by Zeref or was Natsu made a being as a demon by Zeref's magic?And if so how are they brothers if one is demon and one human? Any clarity would help, I'm so confused!\n", "post_id": "32257", "cluster_id": 1791, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00631.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What is Sabo's Power? Sabo has been shown to use Dragon type attacks in the latest episodes of One Piece. But does it have something to with Dragon Style of fighting(from Dragon Claw on Burgees), or has he eaten Ancient Zoan Type Dragon fruit (Dragon's breath on the Colosseum's fight ring) . \n", "post_id": "8450", "cluster_id": 631, "novelty": true, "order": 0} 2 | {"body_text": "What kind of power does the new \"Lucy\" have? Are the powers demonstrated by Luffy's replacement as Lucy based on a Devil Fruit or Haki?\nIt might be haki because the way he blocked Jesus Burgess' attack, but he didn't say armament haki, instead used some kind of technique.\n", "post_id": "8254", "cluster_id": 631, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00836.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Origins of the nose-bleed in anime/manga In a similar spirit to my previous question, I wonder who was the first artist to feature a nose-bleed when thinking, shall we say, \"provocative thoughts\"? Did it become popularized in anime/manga because of the popularity of the artist's work or because it is a common belief in japanese folklore?\n", "post_id": "5193", "cluster_id": 836, "novelty": true, "order": 0} 2 | {"body_text": "Why do men have nose-bleeds when they see a naked woman? In some animes that I have seen men are shown to have nose-bleeds when they see a naked woman.\nIs there a cultural reason behind this? Or is it just shown in animes?\n", "post_id": "22466", "cluster_id": 836, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00918.json: -------------------------------------------------------------------------------- 1 | {"body_text": "If the anime came first, what is considered \"canon\"? In the case of many anime where the manga came first, things that are included in the anime but not the manga (such as filler arcs) seem to be not considered totally canon to the series, indicating that manga is generally what is considered to set canon. One example of this is the Quincy arc in Bleach. For series where the anime came first, such as Code Geass, is the anime then considered to set canon?\n", "post_id": "5216", "cluster_id": 918, "novelty": true, "order": 0} 2 | {"body_text": "Is Dragon Ball Super considered canon? Is Dragon Ball Super considered an original works by Akira Toriyama?\n", "post_id": "23029", "cluster_id": 918, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00989.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How does Ymir turn back into her human form? Late in the manga, we know that titans are actually transformed humans, and that not all people who transform into titans can turn back into human form.\nI did a lot of research on Ymir and there are many theories regarding how she turns back to her human form for the first time. How does it work?\n", "post_id": "17210", "cluster_id": 989, "novelty": true, "order": 0} 2 | {"body_text": "How humans became titans? I'm currently only watching the anime. I hardly read the manga but I'm very curious as to how humans become titans. Is it by some kind of drug similar to the one Eren was injected with by his father?\n", "post_id": "23795", "cluster_id": 989, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00227.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How did the characters learn alchemy? How did the characters gain their power to perform alchemy in FMA:Brotherhood? Is it genetic, or is it something that can be learned? After all, not everyone in the series can use alchemy.\n", "post_id": "6368", "cluster_id": 227, "novelty": true, "order": 0} 2 | {"body_text": "Can someone learn more than one alchemy? In Fullmetal Alchemist: Brotherhood, the characters gain skill in alchemy through learning. So I'm wondering, is it possible to learn more than one alchemy? Because it seems like everyone is a specialized in particular alchemy. Also, if this possible, can they perform more than one alchemy at the same time?\n", "post_id": "7258", "cluster_id": 227, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00473.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What happened to the Resurrection Item? In the Sword Art Online anime, after getting the Resurrection Item Kirito gives it to Klein, as Kirito wanted it to bring Sachi back to life, but for it to work it had to be administered within 10 seconds.\nDo they ever explain what happened to the item after that; the anime doesn't show if Klein ever used it or not?\n", "post_id": "11431", "cluster_id": 473, "novelty": true, "order": 0} 2 | {"body_text": "How does Kirito come back to life when he's fighting Heathcliff? I was rewatching Sword Art Online and I notice that Heathcliff KILLS him and yet, he is able to come back and finish off Heathcliff, how is this so?\n", "post_id": "13007", "cluster_id": 473, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01630.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Where is this picture from? How do I use Reverse Image Search to find the source of an anime/manga image? So I see an image from what I believe is from either an anime or manga. What are some ways that I can go about finding what series it's from?\nTry these options:\n\nGoogle reverse image search (browser built-in support and plugins)\nOther reverse image search engines: TinEye, SauceNao, iqdb\nTechnique: Cropping the image\nAnimated GIF: Picking the right frame\n\n", "post_id": "21618", "cluster_id": 1630, "novelty": true, "order": 0} 2 | {"body_text": "Which anime is this woobie taken from? I saw this image on TV tropes:\n\nWhich anime is it taken from?\n", "post_id": "4236", "cluster_id": 1630, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01715.json: -------------------------------------------------------------------------------- 1 | {"body_text": "In the visual novel of Clannad, how many after stories are there? I've just finished reading Clannad. \nWhile I was browsing for another visual novel to read, I saw the Tomoyo After (after story of Tomoyo's route) visual novel.\nNow I'm wondering whether maybe the other heroines also have an after story but they have different titles.\n", "post_id": "27611", "cluster_id": 1715, "novelty": true, "order": 0} 2 | {"body_text": "What are the order of clannad visual novel? I found this in Clannad visual novel diagram website that there are a lot of side stories, partner stories and other things what are those I'm confused.So is there an order to play this games.\n", "post_id": "30844", "cluster_id": 1715, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01819.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why does Kasumigaoka call Tomoya \"Mr. Ethical\"? In Saekano: How to Raise a Boring Girlfriend, Kasumigaoka always calls Tomoya \"Mr. Ethical\" (\u502b\u7406{\u308a\u3093\u308a}\u541b{\u304f\u3093}).\nWhere did this come from? Is it explained at some point in the original source material?\nFeel free to spoil it for me.\n", "post_id": "19170", "cluster_id": 1819, "novelty": true, "order": 0} 2 | {"body_text": "Why does Kasumigaoka get attracted to Tomoya? In Saekano: How to Raise a Boring Girlfriend,\nI don't understand how she is attracted to him? well she loves to flirt with him and make the other girls jealous on purpose.\nFeel free to spoil it for me.\n", "post_id": "33625", "cluster_id": 1819, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00452.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why does Himura Kenshin say \uff5e\u3054\u3056\u308b (~gozaru) at end of every sentence? Why does Himura always end almost every sentence with gozaru in this show? Is this normal for people in that time period?\n", "post_id": "121", "cluster_id": 452, "novelty": true, "order": 0} 2 | {"body_text": "What is this guy with a cross scar on his left cheek reference of? In the first episode of Danna ga Nani wo Itteru ka Wakaranai Ken, there is a scene of the husband proclaiming his hate towards working. His face changed to that of some character with a scar on his left cheek. His speech pattern also changed to that of a samurai:\nWhat is the reference in this scene?\n\n", "post_id": "14291", "cluster_id": 452, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00610.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How do they imbue their weapons with Haki? In the One Piece world, you can give a devil fruit power to weapons (things) by destroying it with that weapon. It seems one can also give haki to weapon, how can they do that? Kuja tribe member Marguerite is the first to be seen doing that. (Chapter 516)\n\n", "post_id": "8123", "cluster_id": 610, "novelty": true, "order": 0} 2 | {"body_text": "How does Haki work? Haki seems to not only affect the Devil Fruit user, but also all the other weak enemies. What is the mystery behind it? It seems like willpower but there are so many different types. I have read through One Piece Wiki but I still haven't got a clear picture. \n", "post_id": "18976", "cluster_id": 610, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00632.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Can Gohan transform to Super Saiyan in Mystic form? In DBZ, we see that the Elder Kai fully awakens the dormant power of Gohan. In this state Gohan can match Buu in his unfused form. But after Buu absorbs Piccolo and Gotenks, why doesn't Gohan go Super?\nIs there any reason that Gohan couldn't transform to Super Saiyan form after the awakening? Because he is able to do so in DB GT later.\n", "post_id": "11560", "cluster_id": 632, "novelty": true, "order": 0} 2 | {"body_text": "Is it possible for Gohan to transform into a super saiyan while in his ultimate form at the same time? Please I would like to know if it is possible or stated in any official resource.\n", "post_id": "19531", "cluster_id": 632, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00662.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What are the anime censorship laws in Japan? I know that there are censorship laws in Japan (which is why you end up with things like tentacles instead of genitalia). What are the laws, and are they the same as the laws for live-action television programming? \n", "post_id": "4940", "cluster_id": 662, "novelty": true, "order": 0} 2 | {"body_text": "What are the anime censorship laws in the United States? I have a similar question to ask. What are the anime censorship laws in the United States? There appears to be major culture difference between United States and Japan and I am not sure if that implies a difference between their respective anime censorship laws.\n", "post_id": "20185", "cluster_id": 662, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00687.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Is it possible to get the Rinnegan by injecting Senju and Uchiha DNA into yourself? Is it possible to get the Rinnegan if you are not in the Senju or Uchiha clan (including branch clans such as Uzumaki) and inject Senju and Uchiha DNA into yourself?\n", "post_id": "18616", "cluster_id": 687, "novelty": true, "order": 0} 2 | {"body_text": "Does the Uchiha:Senju DNA ratio matter in awakening the Rinnegan? Is it possible for a Senju to awaken a Rinnegan? Suppose that a Senju got an EMS from an Uchiha and implanted it, would he also awaken the Rinnegan just like an Uchiha did, given that the ratio of Uchiha and Senju DNA is different than if an Uchiha awakens it?\n", "post_id": "20464", "cluster_id": 687, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00075.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What does 'moe' mean? I've now watched quite a few anime and I'm still at a loss as to what the term moe represents. Is there an agreed upon definition for it? If a character is moe, what does that mean?\n", "post_id": "894", "cluster_id": 75, "novelty": true, "order": 0} 2 | {"body_text": "Why are school swimsuits with name tags such a popular item in otaku subculture? How did it get so popular in otaku subculture?\nWhat is the name of the proper name for name tag that's commonly found on female school swimwear? Sometimes it just says the name, sometimes just the class number, and other times both. What significance does it play both in-universe and in real life? \n\n", "post_id": "3913", "cluster_id": 75, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00295.json: -------------------------------------------------------------------------------- 1 | {"body_text": "During the Substitute Shinigami arc, it is mentioned that Ichigo and Ginjo are Substitute Shinigami. What does this mean? During the Substitute Shinigami arc, it is covered that both Ichigo and Ginjo are Substitute Shinigami (Ginjo being and ex-Substitute Shinigami). How does one become a Substitute Shinigami, what does this title bring with it, and why is Ginjo no logger a holder of said title?\n", "post_id": "8667", "cluster_id": 295, "novelty": true, "order": 0} 2 | {"body_text": "Why was Kugo Ginjo kicked out of the Soul Society? I remember that Kugo Ginjo used to be a Substitute Shinigami, but he got kicked out and lost his shinigami status. Why did this happen?\n", "post_id": "8478", "cluster_id": 295, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00355.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Can a person shorten their own life by using the Death Note? I was reading about the rules of the Death Note on Death Note wiki and I came across this certain rule...\nWhat does this rule mean?\nDoes it mean that when Light uses the Death Note, he loses some of his life? I find it unlikely since he would have died quite a while ago.\n", "post_id": "7412", "cluster_id": 355, "novelty": true, "order": 0} 2 | {"body_text": "Could I kill myself with a Death Note? \nOn the bottom left paragraph, it reads:\nThis page is taken from the pilot chapter of Death Note. Would the manga pilot be considered canon? And thus, would I be able to kill myself with the Death Note or not?\n", "post_id": "11535", "cluster_id": 355, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00359.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why was Ryuk tied to Light's Death Note? In How to Use: XIII, in the second point it says\nSo is there an explanation as to how Ryuk was tied with Light's Death Note having stolen it from Sidoh?\n", "post_id": "11597", "cluster_id": 359, "novelty": true, "order": 0} 2 | {"body_text": "Was Rem's warning fake? Rem warned Light not to hurt Misa or it would kill Light by writing his name in it's Deathnote, but Ryuk had mentioned in the last episode as well as before that either Ryuk would kill Light or that Light would die after living his natural lifespan. As Ryuk has to kill him, was Rem's warning a bluff?\nIf so, couldn't Light, being a genius, see through his bluff?? \n", "post_id": "6584", "cluster_id": 359, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01260.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Are ex-CP-9 members present in CP-0? In the chapter 801 of One Piece, characters resembling Rob Lucci and Spandam were shown.\nAre the former CP-9 members really in CP-0?\n", "post_id": "26137", "cluster_id": 1260, "novelty": true, "order": 0} 2 | {"body_text": "Who and what are the members of CP 0? In One Piece during the dressrosa arc, it is shown that members of the world government's CP 0 were present on the island. \nWhat exactly is CP 0? \nDoes this mean there is a CP 1 - 8 as well? \nAnd if they were stronger than CP 9, how did some of them end up turning into toys? \nI am current on the anime and manga and don't mind spoilers. I'm just confused about this. \n", "post_id": "26944", "cluster_id": 1260, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01276.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Is Heaven's Lost Property season 3 canceled or on hold? In 2013, they announced there would be a 3rd season for Heaven's Lost Property. Not too long after, they also announced the production crew, and a bit after that an on-hold notice. After that, I haven't been able to find any information about it.\nIs it still on hold? Has it been canceled? Or something different altogether?\n", "post_id": "7936", "cluster_id": 1276, "novelty": true, "order": 0} 2 | {"body_text": "Is Heaven's lost property season 3 going to happen? I found this on a anime website\n[Source: ANN]\nSo i dont really know because some people say no even though they have the intro to it on the website\n", "post_id": "27110", "cluster_id": 1276, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01628.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Where is this picture from? How do I use Reverse Image Search to find the source of an anime/manga image? So I see an image from what I believe is from either an anime or manga. What are some ways that I can go about finding what series it's from?\nTry these options:\n\nGoogle reverse image search (browser built-in support and plugins)\nOther reverse image search engines: TinEye, SauceNao, iqdb\nTechnique: Cropping the image\nAnimated GIF: Picking the right frame\n\n", "post_id": "21618", "cluster_id": 1628, "novelty": true, "order": 0} 2 | {"body_text": "What is the name of this anime with nekomimi? \nI have been wondering for a long time which anime this is from. \n", "post_id": "5020", "cluster_id": 1628, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01190.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Can the skills shown in Kuroko no Basuke be achieved in real life? I recently started watching Kuroko no Basuke and have watched it up to episode 5. The skills shown up till now are ridiculous. Can those skills be achieved by people in real life? I'm taking about physical abilities like speed, jump, agility, etc., not stuff like the Phantom Pass.\n", "post_id": "13051", "cluster_id": 1190, "novelty": true, "order": 0} 2 | {"body_text": "Can a person copy basketball moves as fast as Kise Ryota in Kuroko no Basket? I was wondering how someone would be able to copy another person's basketball moves that quickly and if it would be possible to play like Kise in real life.\n", "post_id": "26262", "cluster_id": 1190, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01627.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Where is this picture from? How do I use Reverse Image Search to find the source of an anime/manga image? So I see an image from what I believe is from either an anime or manga. What are some ways that I can go about finding what series it's from?\nTry these options:\n\nGoogle reverse image search (browser built-in support and plugins)\nOther reverse image search engines: TinEye, SauceNao, iqdb\nTechnique: Cropping the image\nAnimated GIF: Picking the right frame\n\n", "post_id": "21618", "cluster_id": 1627, "novelty": true, "order": 0} 2 | {"body_text": "What anime is this winking girl from? \nI've been searching for quite a long time...I'm guessing it's from an Anime.\n", "post_id": "4282", "cluster_id": 1627, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00010.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What does the 'D' stand for in all the names? There are a lot of characters with the middle initial \"D\". Is this an indication of something, or do they really all just have middle initials of the letter D? If they are initials, do we know what they stand for?\nExamples of names:\n", "post_id": "724", "cluster_id": 10, "novelty": true, "order": 0} 2 | {"body_text": "Change from Gold Roger to Gol D. Roger Was there ever a reason given for the name change? I thought at first that it was possibly a mistranslation in the initial episodes. However, in LogueTown Luffy visits a bar named \"Gold Roger\" and considering the owner knew Gold Roger you'd think they'd get the name right.\n", "post_id": "721", "cluster_id": 10, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00071.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How to summon a different animal using Kuchiyose? As we know, every ninja needs to sign a contract to summon an animal. However, Sasuke suddenly summoned a hawk, after summoning snakes all the time.\nHow can someone change the animal he summons? \n\n I know that with Keiyaku F\u016bin, the contract can be broken, but I guess that works a little bit different, not?\n\n", "post_id": "756", "cluster_id": 71, "novelty": true, "order": 0} 2 | {"body_text": "How did Sasuke get his hawk summoning technique? When Sasuke fights Danzo, on chapter 477 page 9, he uses summoning technique and a hawk appears.\nHow and when did he sign a contract with hawks, and thanks to whom did he get it?\n", "post_id": "3887", "cluster_id": 71, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00121.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why are light-haired male love interests common? It is relatively common for series (especially shoujo) for the/a love interest to be blond. This appears in Ouran High School Host Club, Kaichou wa Maid-Sama, Tokyo Mew Mew, and a number of others. Why is this common in Japan, where the population is 98.5% ethnically Japanese--and as such naturally dark-haired--and most of the rest of the population is either Chinese or Korean?\n", "post_id": "3361", "cluster_id": 121, "novelty": true, "order": 0} 2 | {"body_text": "Why are many anime characters blond? There are a lot of blond-haired characters in anime, especially the old ones, like super saiyans, naruto, gundam series, fma, etc.\n", "post_id": "4962", "cluster_id": 121, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00777.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What if Hashirama had implanted Madara's cells into his body? During the Fourth Shinobi World War, it is revealed that after losing to Hashirama at the Valley of the End, Madara implanted Hashirama's cells into his wounds\n\n which led to him awakening the Rinnegan.\n", "post_id": "21537", "cluster_id": 777, "novelty": true, "order": 0} 2 | {"body_text": "Does the Uchiha:Senju DNA ratio matter in awakening the Rinnegan? Is it possible for a Senju to awaken a Rinnegan? Suppose that a Senju got an EMS from an Uchiha and implanted it, would he also awaken the Rinnegan just like an Uchiha did, given that the ratio of Uchiha and Senju DNA is different than if an Uchiha awakens it?\n", "post_id": "20464", "cluster_id": 777, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01516.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Who is the person in the Akatsuki cloak in Chapter 702? My theory is that the hooded man might be someone new who was also working behind the scenes, but didn't make himself known as Obito and Madara had done or could be someone already introduced as a part of the Uchiha, it could be Madara, or Danzo. So, perhaps even the masked guy isn't Uchiha.\nSo who do you think it could be?\n\n \n\n", "post_id": "21513", "cluster_id": 1516, "novelty": true, "order": 0} 2 | {"body_text": "What happen to Orochimaru and his team after the war ended? We all know Naruto has ended. But seriously, what happen to Orochimaru and his team, Suigetsu, Juugo, and Karin? What did Sasuke do to them?\n", "post_id": "15200", "cluster_id": 1516, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00065.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What is the first ever produced anime and manga? What is the first anime ever produced in Japan?\nAnd what is the first anime film and first anime series produced?\nI heard that it was Astro Boy, is that true? And what is the first ever manga produced in Japan?\n", "post_id": "3408", "cluster_id": 65, "novelty": true, "order": 0} 2 | {"body_text": "What were the first anime based on manga and light novels? I know that original animes weren't based on light novels or mangas (see: this). However, I think there are some early shows that are based on mangas (Astro Boy for example, I think). What was the first anime based on a manga? Also, what was the first anime based on a light novel?\n", "post_id": "3583", "cluster_id": 65, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00424.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Is Plue in Fairy Tail and in Rave the same? Plue exists on both Hiro Mashima's manga Rave Master and Fairy Tail. Is Plue the same in Fairy Tail & Rave?\nPlue in Rave:\n\nPlue in FT:\n\n", "post_id": "8074", "cluster_id": 424, "novelty": true, "order": 0} 2 | {"body_text": "Is it common for mangaka to maintain the same characters design between different titles? After reading rave-master and fairy-tail I noticed the high similarity in their characters. Some even being identical copies of the characters out of the other series.\nSo how common is it for a mangaka to maintain the same character design through out several of their manga's? Or is this just something Hiro Mashima does ? \n", "post_id": "8181", "cluster_id": 424, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00642.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How is it possible that Kanade has Otonashi's heart? I was just wondering this, since Kanade clearly entered the afterlife before even Yurippe did, yet Otonashi arrived later. Technically, Kanade must've died after Otonashi, so how is this possible? \n", "post_id": "206", "cluster_id": 642, "novelty": true, "order": 0} 2 | {"body_text": "What exactly happened when a person passed on? After watching the final episode of Angel Beats, I saw that, after the credits,\n\n both Otonashi and Angel found each other again after being \"reincarnated\". \n\nBut is that all that happened when everyone passed on? Did they just lose their memory and get reincarnated as a human with a similar look?\n", "post_id": "19800", "cluster_id": 642, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00043.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What is the formal term for energy in Dragon Ball Z? In Bleach, the term is \"reiatsu\". In Naruto, it is \"chakra\". However, all I ever really heard in DBZ is \"power level\". Is there a more formal descriptive term for the source of their powers or the energy they give off?\n", "post_id": "2782", "cluster_id": 43, "novelty": true, "order": 0} 2 | {"body_text": "Why do rocks start flying when high levels of chakra are being used? When people in Naruto begin using high levels of chakra--such as when Naruto's Kyuubi chakra comes out, rocks or other pieces of the terrain begin levitating, as shown in this picture:\n\nSome of the rocks are circled to make them clear.\nWhy does this happen?\n", "post_id": "2930", "cluster_id": 43, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00721.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Dragon Ball Super release date I'm sure you've heard the news about the new Dragon Ball series Dragon Ball Super, made by Akira Toriyama.\nI've read about it and the release date is in June or July (can't remember).\nWe're talking about manga, right or brand new episodes?\nIf it's just the manga, is it already known when we can expect brand new Dragon Ball episodes?\n", "post_id": "21373", "cluster_id": 721, "novelty": true, "order": 0} 2 | {"body_text": "Is there any anime series of Dragon Ball after Dragon Ball GT? I am a great fan of Dragon Ball, and I have watched almost every series and movies of Dragon Ball. However, I'm not sure if there is any other series after Dragon Ball GT.\n", "post_id": "20290", "cluster_id": 721, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00922.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Is Dragon Ball Super considered canon? Is Dragon Ball Super considered an original works by Akira Toriyama?\n", "post_id": "23029", "cluster_id": 922, "novelty": true, "order": 0} 2 | {"body_text": "Where in the Dragon Ball timeline is the Super series? At the end of the Dragon Ball series we can see Goku fly off with Uub towards his village to train. There had been years of peace so we see Goten and Trunks all grown to teenagers, yet in the Super series they are still young. So it seems that Uub does not exist yet and the Super series does not follow directly after the Dragon Ball series, the same way the GT series did. So where does it fit in? When does the Super series take place?\n", "post_id": "23063", "cluster_id": 922, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00994.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why is Super Sonico famous? The first thing that comes to mind when you think of Super Sonico is probably her large * ahem * assets.\n\n\nSuper sonico is all over the internet and has many fan-service wallpapers, figures, etc.\nWhat is Super Sonico actually famous for? \nI know she's a mascot for a gaming company, but is it purely the appeal of her chest that has gained her the massive fan following?\n", "post_id": "23711", "cluster_id": 994, "novelty": true, "order": 0} 2 | {"body_text": "Why does Super Sonico always wear headphones? Just as the title asks, why does Super Sonico always wear those headphones? Is there a reason behind it, or is this just the design Nitroplus came up with?\n", "post_id": "7064", "cluster_id": 994, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01656.json: -------------------------------------------------------------------------------- 1 | {"body_text": "At the end of the story, could Edward learn Alkahestry? Since Alkahestry is used via the dragon's pulse while alchemy used in Amestris was powered by the philosopher's stone, could Edward learn and use Alkahestry after he had given up his gate of truth and lost his ability to use Alchemy?\n", "post_id": "29877", "cluster_id": 1656, "novelty": true, "order": 0} 2 | {"body_text": "Do Alkahestry have same limitations like Alchemy? Or some different limitations? In FMA Brotherhood, Alchemy's limits were very well defined but the limits of Alkahestry are never mentioned. Is this ever described outside of the TV series, perhaps in other media or interviews? If so, what are these limitations?\n", "post_id": "29882", "cluster_id": 1656, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00052.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why does Gaara still have dark circles around his eyes? It is stated that Gaara has his dark circles around his eyes because Shukaku won't let him sleep because Gaara will lose control if he does. \nAfter the extraction of Shukaku, Gaara still has these circles around his eyes. Why? Is it only style or does he still suffer from insomnia?\n", "post_id": "1950", "cluster_id": 52, "novelty": true, "order": 0} 2 | {"body_text": "Why does Naruto have whisker marks? Why does Naruto have whisker marks on his face? \n\nDoes it have anything to do with the kyuubi inside him? Is it to signify that he is the host of the kyuubi or is it just a plain birthmark? Was it ever explained in the anime or manga?\n", "post_id": "3256", "cluster_id": 52, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00197.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why is katakana used for the onomatopoeia/sounds in the background? In Japanese, katakana is used for loan words/foreign words, but it shows up a lot in backgrounds of manga as what seems to be onomatopoeia. Is this manga-specific, and where did it originate?\n\nThe center white katakana on the bottom panel seem to be \"fuaaaaa\", for instance.\n", "post_id": "5245", "cluster_id": 197, "novelty": true, "order": 0} 2 | {"body_text": "Does the usage of katakana in manga have any specific meaning? I don't read japanese, but I can distinguish katakana/hiragana./kanji\nI've noticed that some mangas use a mixture of both. Does the usage of katakana in a primarily hiragana/kanji manga mean anything?\n", "post_id": "6404", "cluster_id": 197, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01582.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Cowboy Bebop Episode title - \"Waltz for Venus\" What does it mean? I think you can have two interpretations for this. One being, a dance or music. Two being, accomplish something with little to no effort(There could be more meanings). Are these two interpretations correct or is it just the former that's correct?\n", "post_id": "23838", "cluster_id": 1582, "novelty": true, "order": 0} 2 | {"body_text": "Are all Cowboy Bebop's episodes named after songs? I noticed that some episodes are named after existing songs.\nAs an example, the fourteenth episode name is \"Bohemian Rhapsody\", which is a famous song from the music band Queen\nAre all Cowboy Bebop's episodes named after existing songs?\n", "post_id": "29346", "cluster_id": 1582, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00131.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Who is Kenshin based on? I've been told that Kenshin, at least partially, is based on a real life assassin. Who was he based on, and what pieces of his story are inspired by this person?\n", "post_id": "541", "cluster_id": 131, "novelty": true, "order": 0} 2 | {"body_text": "How closely does Rurouni Kenshin resemble real life? Rurouni Kenshin is an anime based on several historical facts. How accurately are the events in the series portrayed?\nI don't mean just historical events used in the series, such as the Shinsengumi, but how accurate is their real life portrayal of the art of swordsmanship. Is it really possible to obtain such power with dedication to daily training portrayed in the series?\n", "post_id": "5237", "cluster_id": 131, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00180.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What does the 'belt' Orochimaru and the Sound Four wear signify? The Sound Four wear a purple-colored type of belt or wrap around their waists:\n\nOrochimaru, their master, also wore one:\n\nBeing some of the few ninja I have seen wearing one, does it have a formal name? What does it signify and does it relate or exist in real world fighting..? It feels almost sumo-ish, I think.\n", "post_id": "3000", "cluster_id": 180, "novelty": true, "order": 0} 2 | {"body_text": "What is the purpose of purple rope belt that Sasuke wears? All Orochimaru's people are wearing a purple color rope belt. What is the purpose of it? Why Sasuke is wearing it even after killing Orochimaru? Does it offer any power?\n\n", "post_id": "5977", "cluster_id": 180, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00291.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why are manga black and white? This question triggered my curiosity for this question. Why most of manga are black and white? Is this because of more cost if they add colors to it? \n", "post_id": "4284", "cluster_id": 291, "novelty": true, "order": 0} 2 | {"body_text": "Is it unusual for mangas to be in colour? I have been reading some mangas lately and they seem to be commonly done in black and white rather than colour. Also, according to the community at other websites such as comicvine.com, they are usually not in colour.\nI came across this when I was wondering if a comic book would be an equivalent to a manga and it made me wonder whether it would be unusual for a manga to be done in colour.\n", "post_id": "8577", "cluster_id": 291, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01012.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Where and how does the Bleach anime diverge from the manga? (Where should I start the manga if I've seen the anime?) I've seen almost all of the Bleach anime (at least what's been released dubbed), and I'm now interested in reading the manga. However, when the manga closely follows the anime I've already seen, I tend to get bored quickly. Thus, I'd want to pick up the manga at a point right before the anime began to diverge. At what point in the manga is this?\n", "post_id": "440", "cluster_id": 1012, "novelty": true, "order": 0} 2 | {"body_text": "What chapter does the end of the Bleach anime correspond to? Does anyone know which chapter of the manga corresponds to the end of the Bleach anime?\n", "post_id": "24037", "cluster_id": 1012, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01557.json: -------------------------------------------------------------------------------- 1 | {"body_text": "At what age did Kakashi Hatake become a Jounin? This answer on Yahoo! says he became a Jounin at the age of 13, which makes him the youngest Jounin.\nIs it true that he is the youngest Jounin? What is his real age when he became a Jounin?\nThe magic number starts from at the age of 5\n", "post_id": "19385", "cluster_id": 1557, "novelty": true, "order": 0} 2 | {"body_text": "How much older are Obito and Rin than Kakashi? I've been doing a lot of research on this topic, but I have found little clues. People say that Obito and Rin are about 4 years older than Kakashi, but I don't think that's true.\nPeople keep saying that it's proven in the manga and the show, but as far as I know that is not true.\n", "post_id": "29166", "cluster_id": 1557, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01633.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Where is this picture from? How do I use Reverse Image Search to find the source of an anime/manga image? So I see an image from what I believe is from either an anime or manga. What are some ways that I can go about finding what series it's from?\nTry these options:\n\nGoogle reverse image search (browser built-in support and plugins)\nOther reverse image search engines: TinEye, SauceNao, iqdb\nTechnique: Cropping the image\nAnimated GIF: Picking the right frame\n\n", "post_id": "21618", "cluster_id": 1633, "novelty": true, "order": 0} 2 | {"body_text": "What is the name of the anime this pink-haired girl is from? I saw this picture on facebook and I would like to know what anime she is from\n\n", "post_id": "9927", "cluster_id": 1633, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01668.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Was Urahara's Bankai ever revealed or hinted at? I used to watch and read Bleach before, but I stopped following the series after the defeat of Aizen.\nUrahara's Bankai is a mystery to me, and since I'm no longer updated, I don't know if there's more to tell on Urahara's abilities.\nHas there been an update on what we know about Urahara since Aizen's defeat?\n", "post_id": "21535", "cluster_id": 1668, "novelty": true, "order": 0} 2 | {"body_text": "What is the ability of kisuke urahara's benihime bankai? In chapter 664 of the bleach manga urahara's bankai was revealed,was curious to know what his bankai type is,because while training ichigo he told he couldn't use his bankai for testing purposes\n", "post_id": "30076", "cluster_id": 1668, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00378.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How can the man in the back see? In the back of this screenshot from Naruto episode 80 (during the Third Hokage's funeral), circled, is a man with his face entirely covered by bandages. Is it known how he can see?\n\n", "post_id": "3328", "cluster_id": 378, "novelty": true, "order": 0} 2 | {"body_text": "Chunin exam arc instructor with full head bandage I was re-watching all the Naruto episodes and in ep 24 of Chunin exam arc, there are several instructors who are watching over genins who are trying to cheat.\nOne of them hits a genin when he's caught and denies his act. This instructor has full bandage almost covering his eyes too.\nDoes anyone remember if he's ever shown again or can identify him?\n", "post_id": "13005", "cluster_id": 378, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00383.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Could I kill myself with a Death Note? \nOn the bottom left paragraph, it reads:\nThis page is taken from the pilot chapter of Death Note. Would the manga pilot be considered canon? And thus, would I be able to kill myself with the Death Note or not?\n", "post_id": "11535", "cluster_id": 383, "novelty": true, "order": 0} 2 | {"body_text": "Would the Shinigami eye deal have shortened Light's lifespan? We know, that if a human makes the Shinigami eye deal, he will lose half of his remaining lifespan. But, let's say Light made the shinigami deal. He might have killed L earlier, thus prolonging his life again. So here is my questions:\nWould Light have lived longer, if he would have had the Shinigami eyes?\n", "post_id": "13167", "cluster_id": 383, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00416.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Haki vs.Venom Venom Fruit Knowledge:\n\nBusoushoku Haki:\nThis Haki can be used as armor against strong attacks or devil powers.\nSo everything Magellan touches gets poisoned...\n\n\nSo if Luffy could have used haki, would that have prevent him from getting poisoned?\n", "post_id": "13315", "cluster_id": 416, "novelty": true, "order": 0} 2 | {"body_text": "How strong is Magellan? He was trusted to guard the World Government's maximum-security prison from the most dangerous criminals and pirates from all over the world, he must be extremely strong. The main reason for the mass breakout success was because he was tricked but not defeated.\nIs he at par with the Admiral? Or maybe somewhere lower than that?\n", "post_id": "7975", "cluster_id": 416, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00829.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What is the first ever produced anime and manga? What is the first anime ever produced in Japan?\nAnd what is the first anime film and first anime series produced?\nI heard that it was Astro Boy, is that true? And what is the first ever manga produced in Japan?\n", "post_id": "3408", "cluster_id": 829, "novelty": true, "order": 0} 2 | {"body_text": "What were the first official English-translated anime and manga? There is a previous question about the first anime and manga ever, but I was wondering when the English-speaking world got introduced to the world of anime and manga. \nThere were comics in the English-speaking world for ages, but at what point did we decide to try out the comics in the East? \n", "post_id": "22431", "cluster_id": 829, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00467.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How similar is Hohenheim (FMA) to the real Hohenheim? Hohenheim in FMA is based on a real person also named Hohenheim. How similar are the character from anime and the real person, and how do they diverge?\n", "post_id": "3722", "cluster_id": 467, "novelty": true, "order": 0} 2 | {"body_text": "How/when did Van Hohenheim change his name? In Brotherhood (canon), Hohenheim was originally just known as \"23\" or \"Slave No. 23\" but yet after Xerxes his name became Van Hohenheim.\nI'm wondering if there is an in-universe canon explanation of how/when Van Hohenheim changed his name from 23/Slave No. 23 and where he got the name from (I'm not talking about the origin of his name from the writers perspective)\n", "post_id": "14687", "cluster_id": 467, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00661.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why is everyone affected by Infinite Tsukuyomi? As we know, we can avoid Sharingan-based genjutsu just by avoiding eye contact. Can't we avoid Infinite Tsukuyomi just by not looking at the moon?\n", "post_id": "20151", "cluster_id": 661, "novelty": true, "order": 0} 2 | {"body_text": "What is \"Project Tsuki-no-Me\" exactly? I know that Project Tsuki-no-Me was supposed to be \"Madara's\" Sharingan's reflection on the Moon itself, as Tobi declared during the Five Kage Summit. However, when he got his hands on the Nine-Tails Chakra from Lords Kinkaku and Ginkaku, the moon turned into a red one \u2014 it looks just like a regular full moon, but in red colour. So, is that the first stage of Project Tsuki-no-me?\n", "post_id": "20020", "cluster_id": 661, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01774.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Do all the children in Wammy's House receive codenames? Everyone who watched Death Note knows that L was raised in a orphanage called Wammy's House. So, L's Name was L Lawliet. Near's is Nate River, and Mello's was Mihael Keehl.\nDoes every child of Wammy's House have a codename? If every child has a codename, is the first letter from the codename the first from the real name? \n", "post_id": "12904", "cluster_id": 1774, "novelty": true, "order": 0} 2 | {"body_text": "In Death Note, is it ever revealed what \"L\" stands for? In Season 2, we meet L's successors, \"M\" (Mellow) and \"N\" (Near). Seeing how they are his successors and were all raised in the same institute, L must also stand for something.\n", "post_id": "32063", "cluster_id": 1774, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00055.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Who the hell is Truth? In Full Metal Alchemist, who is the character (or the concept really) of Truth? What does he symbolize? What is his purpose?\nFrom what I guess, he's some sort of your inner God, because he seems to know you better than you do yourself. He knows the best way to punish you, the way that would hurt you the most. He must be tied with alchemy and alchemical knowledge, but what is he?\n", "post_id": "87", "cluster_id": 55, "novelty": true, "order": 0} 2 | {"body_text": "Why did Colonel Mustang lose his sense of sight and not his arm or body? In Fullmetal Alchemist, when an alchemist performs human transmutation, they lose a part of their body. What determines the body part an alchemist loses?\n", "post_id": "3324", "cluster_id": 55, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00764.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What name will Shinigami Eyes show above the head of a person who changed their name? So let's say, Bob Sch\u00f6sel changes his name to Derkie Duckface. Would a person with shinigami eyes see Duckface's original name, or the name that is currently used?\n", "post_id": "12977", "cluster_id": 764, "novelty": true, "order": 0} 2 | {"body_text": "Can Death Note misfire if a person changes their name and appearance to that of another person? Suppose that there is Mr. A, who received a plastic surgery to have the same face as Mr. B and changed his name to Mr. B. He uses this name for years and everyone knows him as Mr. B now. I then get to know his current face and name and write that in the Death Note. Who will die?\n", "post_id": "21873", "cluster_id": 764, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00986.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Is Dragon Ball Super considered canon? Is Dragon Ball Super considered an original works by Akira Toriyama?\n", "post_id": "23029", "cluster_id": 986, "novelty": true, "order": 0} 2 | {"body_text": "Are anime that air before a manga adaptation considered filler anime? In the question Has an anime ever come out before the manga was published? it became quite obvious that there are indeed several animes that air before their manga has been made.\nBut this also made me wonder about the following: Does this imply that all anime that air before a manga of it exist should be considered fillers?\nFillers are non-canonical material, which usually implies it did not happen in the manga. Or as Urban Dictionary stated it\n", "post_id": "9939", "cluster_id": 986, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00988.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Are anime that air before a manga adaptation considered filler anime? In the question Has an anime ever come out before the manga was published? it became quite obvious that there are indeed several animes that air before their manga has been made.\nBut this also made me wonder about the following: Does this imply that all anime that air before a manga of it exist should be considered fillers?\nFillers are non-canonical material, which usually implies it did not happen in the manga. Or as Urban Dictionary stated it\n", "post_id": "9939", "cluster_id": 988, "novelty": true, "order": 0} 2 | {"body_text": "Is Dragon Ball Super considered canon? Is Dragon Ball Super considered an original works by Akira Toriyama?\n", "post_id": "23029", "cluster_id": 988, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01294.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What is the significance of anime characters' catch phrases? Uzumaki Naruto (Naruto) has a catch phrase \"dattebayo\". Ika Musume (Squid Girl) has a catch phrase \"de geso\". Himura Kenshin (Rurouni Kenshin) has a catch phrase \"gozaru\". And a lot more examples here.\nWhat is the significance of anime characters' catch phrases? \n", "post_id": "3317", "cluster_id": 1294, "novelty": true, "order": 0} 2 | {"body_text": "What does it mean when Kenshin says 'oro'? Throughout the series Kenshin has added 'oro' somewhat comedically to his sentences. Is there any actual meaning to this or is this just a speech style/pattern that he has?\nIn episode 62 he says it several times in a row and Kaoru points this out.\n\n", "post_id": "27241", "cluster_id": 1294, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01525.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How does \"The Disappearance of Nagato Yuki-chan\" relate to the Haruhi Suzumiya series? MAL's page on The Disappearance of Nagato Yuki-chan lists it as a spin-off for both The Melancholy of Haruhi Suzumiya and The Melancholy of Haruhi Suzumiya (2009).\nHow exactly does the new series relate to the others?\nWhere does it fall into the timeline?\nOr is it completely independent aside from using the same characters - in which case, can it be watched without previously having watched any of the older series?\n", "post_id": "20981", "cluster_id": 1525, "novelty": true, "order": 0} 2 | {"body_text": "What is gap moe? I often hear the word gap moe, but I do not know what it means. So what does the word gap moe mean?\n", "post_id": "28922", "cluster_id": 1525, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01626.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Where is this picture from? How do I use Reverse Image Search to find the source of an anime/manga image? So I see an image from what I believe is from either an anime or manga. What are some ways that I can go about finding what series it's from?\nTry these options:\n\nGoogle reverse image search (browser built-in support and plugins)\nOther reverse image search engines: TinEye, SauceNao, iqdb\nTechnique: Cropping the image\nAnimated GIF: Picking the right frame\n\n", "post_id": "21618", "cluster_id": 1626, "novelty": true, "order": 0} 2 | {"body_text": "Can anyone tell me the name of this manga? \nThink it's a manhwa but don't know which one so I was wondering if anyone could please tell me where it's from\n", "post_id": "6511", "cluster_id": 1626, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01783.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How did Asuna and Kirito survive? In the last episode of Aincrad arc of Sword Art Online, how did Asuna survive even though her avatar disintegrated after being attacked by Kayaba? Also Kirito was stabbed by Kayaba as well. How did he survive?\nWas it in the novel on how they really survived?\n", "post_id": "14035", "cluster_id": 1783, "novelty": true, "order": 0} 2 | {"body_text": "how did Asuna move? I know that Kirito didn't die at the end if episode 14 because of his will to fight overthrowing the system. But during the fight with Heathcliff, episode 14, when all players were paralyzed, how did asuna manage to move in front of the sword? Was it the same concept above, or was it because of somthing else?\n", "post_id": "32183", "cluster_id": 1783, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01808.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Can a Devil Fruit user drown in a bathtub? If a Devil Fruit user goes to a bathtub full of water or gets into a spa, will he drown?\n", "post_id": "11206", "cluster_id": 1808, "novelty": true, "order": 0} 2 | {"body_text": "would devil fruit users be affected in fresh water the sea stone which is the weakness of devil fruit users was said to have the same power as the ocean, and it was said that the sea rejected the devil fruit users. i understand that devil fruit users can't swim but say if they were standing in a river or fresh water of any sort, would they still loose all their strength and won't be able to do anything?\ni tried to search for it, but they closed it and archived it so can anyone help please?\n", "post_id": "33544", "cluster_id": 1808, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00172.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How did Nagato gain his Rinnegan? How was it exactly that Nagato came upon his Rinnegan?\nWhat I mean is:\n\n How did Madara give it to him (he states that it was his, and that he gave it to him)?\n\n\n Did he transplant it into Nagato? or did he transfer it otherwise?\n\nNote: I do not recall whether this was explained in the manga or not.\n", "post_id": "237", "cluster_id": 172, "novelty": true, "order": 0} 2 | {"body_text": "Was Pain born with the rinnegan? After the death of Pain, the fake Madara fights Konan to know the location of Pain's body...During this he mentions that the Rinnegan is his and he wants it back...I couldn't understand this..\nWas Pain born with Rinnegan or was it implanted by fake Madara?\n", "post_id": "5948", "cluster_id": 172, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00342.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why do airing shows have times listed beyond a 24-hour clock? I know of the time notation for some anime\u2014between 22:00-27:00. I know that this indicates that the show airs at a particular time, and likely targets a particular audience.\nWhy would this notation be used, and be preferred over a more traditional 24-hour format?\n", "post_id": "4019", "cluster_id": 342, "novelty": true, "order": 0} 2 | {"body_text": "What is noitaminA? I only know that noitaminA is \"Animation\" written backwards. It sometimes appear at the beginning of episodes of anime. \n\nBut does it mean anything? At Anime-Planet, it is considered a tag/genre. At MyAnimeList it is treated as a broadcast block. I don't really get it either way.\n", "post_id": "6366", "cluster_id": 342, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00484.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Relationship between the Shin Sekai Yori manga and anime? I have seen the anime series and I just discovered that there is a manga.\nIt seems to be publishing at this moment, and I could not determine where the manga fits in.\nWIthout spoiling the actual manga story, can someone elaborate if this is a different story or not?\n", "post_id": "6361", "cluster_id": 484, "novelty": true, "order": 0} 2 | {"body_text": "Shisei's double irises The character Shisei Kaburagi in Shinsekai Yori has double irises. At the same time, he is (one of) the most powerful telekinesis users.\nAfter watching the anime, I haven't found any reason why he has double irises, nor why they help him (if they do).\nIs this explained in the manga?\n", "post_id": "14980", "cluster_id": 484, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00697.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What is the first transforming/morping mobile suit/robot in anime? I have watched all the mobile suit gundam series and many other transforming robot genre series but i want to know which is the first series that started the transforming/morphing mobile suit/robot genre in anime.\nHere transforming/morphing is changing from aircraft/armour to humanoid/creature form or any other forms\n", "post_id": "4357", "cluster_id": 697, "novelty": true, "order": 0} 2 | {"body_text": "What was the first magical girl transformation scene? Shoujo anime is famous for its big eyes and magical transforming heroines. \nSailor Moon is probably the most famous of these.\n\nWhen was the first time a magical girl magically transformed?\n", "post_id": "21054", "cluster_id": 697, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00724.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What would be considered canon in the Pokemon franchise? Usually we would treat the manga as canon for most works, but as most people usually only have watched the animation or played the video games, would in this case the manga still be considered canon over the anime? Or would it be the videogame and manga based on it?\n", "post_id": "13129", "cluster_id": 724, "novelty": true, "order": 0} 2 | {"body_text": "Were the other trainers from Pallet town ever revealed? We know four trainers started in Pallet town. Three with one of the three original starters and Ash with his Pikachu. Apart from Gary, were the other two trainers ever revealed in the anime? And was it ever revealed who got which specific starter Pokemon?\n", "post_id": "12992", "cluster_id": 724, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00729.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What if Hashirama had implanted Madara's cells into his body? During the Fourth Shinobi World War, it is revealed that after losing to Hashirama at the Valley of the End, Madara implanted Hashirama's cells into his wounds\n\n which led to him awakening the Rinnegan.\n", "post_id": "21537", "cluster_id": 729, "novelty": true, "order": 0} 2 | {"body_text": "Is there a way for Naruto to get the Rinnegan? Madara was able to get the Rinnegan by mixing Hashirama's meat with his own (i.e. mixing the Indra and Asura chakras) to get the Sage's power. If Naruto did the same by mixing Sasuke's meat with his own, would he get the Rinnegan? Or, if Sasuke mixed Naruto's meat with his own, would he get Rinnegan in both of his eyes?\n", "post_id": "18379", "cluster_id": 729, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00640.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What happened to Otonashi and Kanade in the last episode? In the last episode, Kanade graduated and disappeared. After that, there's a scene where Otonashi meets Kanade outside in the afterlife world. Did they reincarnate and meet again, or have they met before when they were still alive?\n", "post_id": "8096", "cluster_id": 640, "novelty": true, "order": 0} 2 | {"body_text": "What exactly happened when a person passed on? After watching the final episode of Angel Beats, I saw that, after the credits,\n\n both Otonashi and Angel found each other again after being \"reincarnated\". \n\nBut is that all that happened when everyone passed on? Did they just lose their memory and get reincarnated as a human with a similar look?\n", "post_id": "19800", "cluster_id": 640, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00795.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What does 'moe' mean? I've now watched quite a few anime and I'm still at a loss as to what the term moe represents. Is there an agreed upon definition for it? If a character is moe, what does that mean?\n", "post_id": "894", "cluster_id": 795, "novelty": true, "order": 0} 2 | {"body_text": "What's does sama and kun means? Previously I though that sama was for equal or higher rank shinobi's \nand kun was for junior rank Shinobi's.\nFor example -\nYamato called Kakashi as Kakashi-sama, whereas Naruto as Naruto-kun.\nBut I noticed that I might be wrong as Hinata too called Naruto as Naruto-kun. \nSo what's the actual meaning of Sama and Kun?\nI found some answers here. But can anyone explain this with respect to the anime?\n", "post_id": "22089", "cluster_id": 795, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01142.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How are the bijuu adapted from real mythology? I know that the nine-tails exists in many anime series (The notables are Naruto and Pokemon), as well as\n\n His name, Kurama, relating to fox demons across different animes, such as Yu Yu Hakusho.\n\nI also know that the two-tails is adapted from Japanese mythology (The Nekomata, a cat with a split tail).\nDoes this convention apply to all/most other Bijuu? \n", "post_id": "748", "cluster_id": 1142, "novelty": true, "order": 0} 2 | {"body_text": "Can the Tailed Beasts produce offsprings? Is it possible for the Tailed Beasts to produce offspring of their own? Both 'male' and 'female' type Tailed Beasts exist. \nThe offspring would be hybrid, but still, would it be possible?\n", "post_id": "25639", "cluster_id": 1142, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00069.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What is the OVA boom? I've heard this term used in a few places, notably on one of the Flavor Day nominations. A quick Google search shows me that it started in 1985 but there doesn't seem to be anything extensively documented (mostly because there's a lot of noise in the search results). What is it?\n", "post_id": "3811", "cluster_id": 69, "novelty": true, "order": 0} 2 | {"body_text": "What factors contributed to the \"golden age\" of anime? The anime boom of the 1980s is considered, by many, the beginning of the \"golden age\" of anime. \nWhat factors contributed to this boom? Where did it all start? Who were the major players?\nWhat led to the end of this boom? How did we get to the so-called \"moe-boom\" we have today?\n\n", "post_id": "3822", "cluster_id": 69, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00242.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Is \"Yatogami\" a name or a title? In Noragami, the main character refers to himself as \"yatogami\". I'm not sure if that's his name or his title. A quick google search shows that its a surname, but the way he said it makes me think its some kind of title.\n", "post_id": "6772", "cluster_id": 242, "novelty": true, "order": 0} 2 | {"body_text": "Which god of Japan is actually portrayed by Yato in Noragami? As far as I watched, Bishamon and Kofuku are portrayals of the Seven Lucky Gods (\u4e03\u798f\u795e shichi fukujin). But it wasn't clear about Yato. Bishamon mentioned him as a God of Calamity, but there is no such god among the Seven Lucky Gods. So, which god might Yato be a portrayal of? Is he a new character altogether?\n", "post_id": "7550", "cluster_id": 242, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00491.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Which Akame ga KILL! manga should I read if I want to continue the storyline of the anime? I saw there are various manga with Akame ga KILL! in their names.\nThe ones I have found are:\n\nAkame ga KILL!\nAkame ga KILL! Zero\n\nWhich one should I read if I want to continue the storyline of the anime?\n", "post_id": "15124", "cluster_id": 491, "novelty": true, "order": 0} 2 | {"body_text": "Why is the anime of Akame ga Kill so different from the manga? I haven't read the manga of Akame ga Kill, but I have read that it is really different from the anime. They even skipped 10 chapter of the manga completely. Why did they decide to do that? Was it because the show has to be done in a short amount of episodes or something else?\n", "post_id": "15136", "cluster_id": 491, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01601.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Kakashi's chakra nature I haven't read the manga, but I have been watching the anime. Kakashi seemed to use earth style before inclining to lightning style. \n\nSo can a shinobi learn to master a chakra nature other than his chakra nature easily ? Or does Kakashi have both the chakra natures ?\n", "post_id": "22999", "cluster_id": 1601, "novelty": true, "order": 0} 2 | {"body_text": "Will a person's first chakra nature always be the strongest? Answering this question and reading an answer by Ero Senin made me think some more about chakra natures. Will attacks that use the chakra type that the user has a natural affinity for always be stronger than attacks that use other types of chakra, even after mastering these other types?\n", "post_id": "29479", "cluster_id": 1601, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00080.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why can't Devil Fruit users swim? I've only seen bits and pieces of One Piece, but I know that Devil Fruit users (people who have eaten a Devil Fruit) can't swim. I never understood why, though. How does this work? It doesn't seem to give arm or leg disabilities, so what would keep them from being able to swim?\n", "post_id": "4026", "cluster_id": 80, "novelty": true, "order": 0} 2 | {"body_text": "Is Brook able to drown? It is known that the Yomi Yomi no Mi fruit will only revive its user once, and also that Devil Fruit users can't swim, so I was wondering... What would happen if Brook falls into the ocean? I mean, even if he's alive, as a skeleton he has no lungs, so he should just be unable to go back to the surface, shouldn't he?\n", "post_id": "4025", "cluster_id": 80, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00103.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What happened to the last two Bastard!! OVAs? Bastard!! (1992) is a series of 8 OVAs, but only 6 were produced.\nThe manga currently has 27 Volumes and is one of Weekly Sh\u014dnen Jump's best-selling manga series selling more than 30 million copies.\nRef.\nIf the manga was so popular, how come the final two OVAs never got animated!?\n\n", "post_id": "3806", "cluster_id": 103, "novelty": true, "order": 0} 2 | {"body_text": "Were there ever plans for a \"Bastard!\" TV series in Japan? Bastard! Is one of my favorite OVA series, and I've even read some of the manga. From what I can gather, an OVA series is either a precursor to or a result of a TV series of lower quality. Was there ever a plan to make such a series based on the manga? \n", "post_id": "4469", "cluster_id": 103, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00443.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why is Madara supposedly dead? According to Kurama, the Juubi's Jinchuuriki Wouldn't die when the Bijuu are extracted from him thanks to the Gedou Mazou. \n\nSo how could Madara have passed away?\n", "post_id": "14025", "cluster_id": 443, "novelty": true, "order": 0} 2 | {"body_text": "Why do Jinchuuriki die when their biju are extracted? When tail beasts (bij\u016b) are extracted from their Jinchuuriki, the Jinchuuriki dies. \nAll seven Jinchuuriki died after the Akatsuki extracted the bij\u016b from them. Gaara was resurrected by Chiyo using the \"One's own life reincarnation\" jutsu. \nSo why do Jinchuuriki die when bij\u016b are extracted?\nWhat are the reasons behind the death of Jinchuuriki after the extraction of bij\u016b?\n", "post_id": "13947", "cluster_id": 443, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01125.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why does Kyoko come to the city in Madoka Magica? Why does Kyoko come to the city in Madoka Magica? \nThere is probably a very simple answer for this, but I'm too lazy to go back and rewatch or to skim through a wiki. \n", "post_id": "25701", "cluster_id": 1125, "novelty": true, "order": 0} 2 | {"body_text": "When Kyoko overloaded her soul gem to kill Sayaka's witch form, did Kyoko then also become a witch? When Kyoko overloaded her soul gem to kill Sayaka's witch form, does Kyoko then also become a witch? Or since she overloaded her soul gem, does she just die \"normally?\" If the latter is true, then why don't all magical girls just overload their gems before they become completely tainted, that way they don't become witches?\n", "post_id": "25728", "cluster_id": 1125, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01126.json: -------------------------------------------------------------------------------- 1 | {"body_text": "When Kyoko overloaded her soul gem to kill Sayaka's witch form, did Kyoko then also become a witch? When Kyoko overloaded her soul gem to kill Sayaka's witch form, does Kyoko then also become a witch? Or since she overloaded her soul gem, does she just die \"normally?\" If the latter is true, then why don't all magical girls just overload their gems before they become completely tainted, that way they don't become witches?\n", "post_id": "25728", "cluster_id": 1126, "novelty": true, "order": 0} 2 | {"body_text": "Why does Kyoko come to the city in Madoka Magica? Why does Kyoko come to the city in Madoka Magica? \nThere is probably a very simple answer for this, but I'm too lazy to go back and rewatch or to skim through a wiki. \n", "post_id": "25701", "cluster_id": 1126, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00396.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What is the secret behind Tobi's GPS-like technique? Tobi has displayed the ability to be able to accurately locate and teleport to any other character (He displayed it with Naruto, Sasuke, the sealed Gold and Silver brothers, and more).\nHow does that work? I don't recall the Sharingan having such a wide range.\n", "post_id": "493", "cluster_id": 396, "novelty": true, "order": 0} 2 | {"body_text": "How does Obito use Kamui to move from one place to another How do Obito use kamui to move from one place to another? We have already seen that inside the kamui space, there are big square stepping stones and nothing else. So, how can he move absorbed himself into the kamui space, and materialize again in different place in the real world?\n", "post_id": "13299", "cluster_id": 396, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00669.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Will I miss anything by watching Dragon Ball Z Kai instead of the other series? I've read that Dragon Ball Z Kai is an HD remaster and recut of Dragon Ball and Dragon Ball Z. However, Kai has 98 episodes while Dragon Ball has 153 and Z has almost 300.\nIf I watch only Dragon Ball Z Kai, do I miss anything I would get by watching the other two series? And is anything censored in Kai that is not censored in the others?\n", "post_id": "3010", "cluster_id": 669, "novelty": true, "order": 0} 2 | {"body_text": "Is there any anime series of Dragon Ball after Dragon Ball GT? I am a great fan of Dragon Ball, and I have watched almost every series and movies of Dragon Ball. However, I'm not sure if there is any other series after Dragon Ball GT.\n", "post_id": "20290", "cluster_id": 669, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01396.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What does the pink note left by Taiga say? In Episode 25 near 11:23, Ryuji goes to Taiga's condo and finds a note. What is written on it?\n\n", "post_id": "15436", "cluster_id": 1396, "novelty": true, "order": 0} 2 | {"body_text": "Is there some source as to what Taiga did during the skipped year in the last episode of Toradora? Taiga goes elsewhere for more than a whole year, entirely skipped in the anime narrative. What the hell was she doing, achieved or solved?\nAs a clue, the ep. 25 aftercredits preview has her in the voiceover saying she will now Show Ryuji her way of doing things.\nProbably it is too pathetic to assume that her way is just running away for 300+ days just to blow steam.\nAnywhere to shed light on the matter? \n", "post_id": "15530", "cluster_id": 1396, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01617.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Where is this picture from? How do I use Reverse Image Search to find the source of an anime/manga image? So I see an image from what I believe is from either an anime or manga. What are some ways that I can go about finding what series it's from?\nTry these options:\n\nGoogle reverse image search (browser built-in support and plugins)\nOther reverse image search engines: TinEye, SauceNao, iqdb\nTechnique: Cropping the image\nAnimated GIF: Picking the right frame\n\n", "post_id": "21618", "cluster_id": 1617, "novelty": true, "order": 0} 2 | {"body_text": "What is this manga about a student who doesn't want his diploma? Does anyone know of this manga? I also tried to search with Google Image Search but nothing of relevance was found.\n \n", "post_id": "6323", "cluster_id": 1617, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01641.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Where is this picture from? How do I use Reverse Image Search to find the source of an anime/manga image? So I see an image from what I believe is from either an anime or manga. What are some ways that I can go about finding what series it's from?\nTry these options:\n\nGoogle reverse image search (browser built-in support and plugins)\nOther reverse image search engines: TinEye, SauceNao, iqdb\nTechnique: Cropping the image\nAnimated GIF: Picking the right frame\n\n", "post_id": "21618", "cluster_id": 1641, "novelty": true, "order": 0} 2 | {"body_text": "Can anyone tell me what anime this nekomimi girl is from? \nDoes anyone know who the girl with the cat ears is or what anime she is from?\nThe one between Shana and Naruto.\nThanks\n", "post_id": "6502", "cluster_id": 1641, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01161.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What is the total Naruto runtime up to this point? Naruto seems to be one of few longest-running series, and considering the number of episodes so far, this adds up to quite considerable time.\nWhat is the total runtime - the time I'd have to spend in front of the screen if I wanted to watch the whole series (including any 'paraphenalia' like OVA etc), from beginning up to current point?\n", "post_id": "10075", "cluster_id": 1161, "novelty": true, "order": 0} 2 | {"body_text": "What is the total runtime of One Piece up to this point? After reading this Question and the ingenious answer from Dimitri mx (kudos) and a related comment, I came to wonder how One Piece would compare.\nThe anime was launched in October 1999 and is still ongoing.\n", "post_id": "25968", "cluster_id": 1161, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01218.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why didn't the experimentation for the 13-day rule push through? In the episode where L dies, he mentions wanting to test the 13-day rule. If the 13-day rule is disproven, Light and Misa become suspects again. L dies and then apparently everyone seems to have forgotten about the test. What happened?\nI seem to recall most of the task force disagreed with L and then when he died, the majority opinion prevailed.\n", "post_id": "26613", "cluster_id": 1218, "novelty": true, "order": 0} 2 | {"body_text": "Why didn't L check for fingerprints or hair? Related to this: Death note handwriting check\nA lot of DNA must have rubbed off on the Death Notes. Unless the Death Note has a rule about fingerprints or DNA, I don't see how this isn't a plothole.\n", "post_id": "26615", "cluster_id": 1218, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01682.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why do manwha more oftenly have colored pages then manga? Lately, I been reading quite some more manwha cause of their good stories. But I can't help but notice that manwha use a lot more colored pages, sometimes even fully colored volumes. Or just all pages color, why are color pages more commonly used in manwha then manga? Is there a specific reason for this?\n", "post_id": "7414", "cluster_id": 1682, "novelty": true, "order": 0} 2 | {"body_text": "Why are Japanese manga not coloured unlike Korean Manhwa? In general, most Japanese manga are not colored, except for title page or centre color pages, rarely.\nHowever, most Korean manhwa manage to colour their works while maintaining a good standard of art, also in their weekly deadlines.\n", "post_id": "28337", "cluster_id": 1682, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01706.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Do people in the anime or manga actually eat Pokemon? In the anime, certain species of Pokemon are mentioned or depicted to be edible (by people or other Pokemon), like Magikarp and Farfetch'd.\n\nDo people actually eat Pokemon? If so, what other species have been mentioned or depicted as edible, in either the anime or the manga?\n", "post_id": "836", "cluster_id": 1706, "novelty": true, "order": 0} 2 | {"body_text": "Are Pokemon vegetarians? It is shown that Pokemon eat fruit, PokeBlocks or some random eatables. However, I have never seen a Pokemon being eaten by another Pokemon. Also, their trainers don't seem to eat meat. As there are only Pokemon in that world, eating fish would be equivalent to eating a Magikarp or other fish Pokemon.\n", "post_id": "30641", "cluster_id": 1706, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01736.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why can't Natsu and Gajeel go through Freed's runes? On Fighting Festival arc (Laxus arc) in chapter 108, Natsu and Gajeel can't get out from the guild because of Freed's runes.\n\nBut the rule says that statues or people above 80 are not allowed to get out from the guild. So why can't Natsu and Gajeel get out?\n", "post_id": "7620", "cluster_id": 1736, "novelty": true, "order": 0} 2 | {"body_text": "How old are Gajeel and Nastu from Fairy Tail? During the battle against The Thunder Leegon, Gajeel and Nastu were unable to pass one of Freed's barriers, that prevent those over the age of eighty from passing through it. So why weren't Gajeel and Nastu unable to pass through it? Are they older than they look? Or is it for some other reason?\n", "post_id": "31362", "cluster_id": 1736, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00300.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Nagato's Eye in Edo tensei Mode After seeing this discussion here, I think how come Edo-tensei nagato had rinnegan. Nagato's original eyes were normal. He received rinnegan from madara. So his edo tensei form should have had normal eyes not rinnegan, if edo tensei brings the original soul; because his eyes were normal until madara gave him his rinnegan.\n", "post_id": "7147", "cluster_id": 300, "novelty": true, "order": 0} 2 | {"body_text": "Why does Edo Tensei Nagato possesses Rinnegan? I was thinking about something strange. How come Nagato has the rinnengan again when he is revived by Kabuto. I mean in the end those eyes weren't his, they were Madara's so it dosen't seem logical for him to have them when he was brought back. What do you think?\n", "post_id": "8808", "cluster_id": 300, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00373.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why doesn't Marika wear same uniform as the others? Despite being a transfer student, Marika should have been given a uniform. But why didn't they give her one? Chitoge wpre the same uniform since her first day.\n\nIn manga chapter 129 (Now it has 131 chapters)\n\n", "post_id": "12935", "cluster_id": 373, "novelty": true, "order": 0} 2 | {"body_text": "Why does Eimu wear a different uniform? When Eimu joins the class, she has a different uniform from everyone else, which I figured was acceptable because she was coming from a different school.\nHowever, she stays in the school for quite a bit of time (and we see that she even owns the uniform in episode 5 or so). Why then does she continue to wear the blue uniform the entire way through the show?\n\n", "post_id": "4849", "cluster_id": 373, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00404.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What are the instances where a Weekly Shounen Jump serialized manga would not be released in a given week? What are the instances that there is no manga (like Naruto, Bleach and One Peace) release? Are there certain events that prevent them from releasing? Then what are these events (aside from taking a break)? Is there some sort of calendar of events for this?.\n", "post_id": "9462", "cluster_id": 404, "novelty": true, "order": 0} 2 | {"body_text": "When are the annual breaks for Weekly Shonen Jump? After looking for the new chapter of One Piece, I came across this site. Here they said\nRemembering the golden week from begin May, it made me wonder what other annual breaks mangakas have and when we shouldn't expect a new release to come out.\n", "post_id": "13403", "cluster_id": 404, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00405.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What are the instances where a Weekly Shounen Jump serialized manga would not be released in a given week? What are the instances that there is no manga (like Naruto, Bleach and One Peace) release? Are there certain events that prevent them from releasing? Then what are these events (aside from taking a break)? Is there some sort of calendar of events for this?.\n", "post_id": "9462", "cluster_id": 405, "novelty": true, "order": 0} 2 | {"body_text": "When are the annual breaks for Weekly Shonen Jump? After looking for the new chapter of One Piece, I came across this site. Here they said\nRemembering the golden week from begin May, it made me wonder what other annual breaks mangakas have and when we shouldn't expect a new release to come out.\n", "post_id": "13403", "cluster_id": 405, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01714.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Is there a re-encounter with the sea monster that ate Shanks's arm? Just of out curiosity, do we ever get to see the same sea monster that ate Shanks's arm way back in the beginning of One Piece?\nI have only kept up with the series until Impel Down, so please no spoilers beyond a \"yes/no they did/did not re-encounter the sea monster\"\n", "post_id": "30750", "cluster_id": 1714, "novelty": true, "order": 0} 2 | {"body_text": "Why was the Lord of the Coast allowed to live? When Luffy was young, Shanks saved him from the Lord of the Coast, who nearly ate Luffy. This cost Shanks his arm. Then we see the Lord of the Coast still inhabits the area 10 years later. \nWhy was this dangerous sea king not dealt with by Shanks or Garp during this time? \n", "post_id": "30787", "cluster_id": 1714, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01734.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Would a water manipulating Devil Fruit user be able to swim? If all Devil Fruit users in One Piece anime are not capable of swimming, what about a Devil Fruit user whose ability is to control water? Can such a person able to swim or evade the Devil Fruit's curse?\n", "post_id": "5041", "cluster_id": 1734, "novelty": true, "order": 0} 2 | {"body_text": "Do artificial devil fruits also prevent the user from swimming? If someone eats a devil fruit, they can get some power depending on the fruit that they eat.\nThe side effect for eating this fruit is that the user cannot swim.\nHow about the artificial devil fruits that are made by Dr. Vegapunk? Is it the case that people that eat artificial devil fruits also can't swim and are weakened by the sea?\n", "post_id": "31338", "cluster_id": 1734, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00008.json: -------------------------------------------------------------------------------- 1 | {"body_text": "At which age are ninjas revived with Edo-Tensei? The question is easy: At which age are people, when they are revived using Edo-Tensei? Are they exactly of that age they died? Or can the user of Edo-Tensei decide, how old the ninjas are?\n", "post_id": "612", "cluster_id": 8, "novelty": true, "order": 0} 2 | {"body_text": "How was it possible to summon Sasori with Edo Tensei? As we know, Sasori has \n\n turned his body into a puppet, with a small \"core of living flesh\" being the only living part of it: \nSo how was Kabuto able to summon Sasori? If the reincarnation retains body damage, wouldn't he only be able to reincarnate Sasori's \"Living Core\"? I doubt that the process of \"enchanting\", which Kabuto can perform, involves re-making the whole body.\n", "post_id": "712", "cluster_id": 8, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01304.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What does Tanaka do? What exactly is Tanaka's function in the Phantomhive family? To my understanding from watching the anime season 1 and 2 the manga(up to the phantomhive murders arc) and the ovas. It seems like he was Vincent's head butler back when he was the head of the house.\nBut since Ciel has come into power along with Sebastian his functions seems small. In the anime and manga when Sebastian assigns tasks he always tells Tanaka \"The usual will be fine\". What does this mean? Can anyone explain? \n", "post_id": "27382", "cluster_id": 1304, "novelty": true, "order": 0} 2 | {"body_text": "How did Tanaka survive the phantomhive manor being destroyed? Tanaka lived even though Vincent and his wife were murdered and Ciel was kidnapped. How? \n", "post_id": "27399", "cluster_id": 1304, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00054.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why does Naruto have a catch phrase? In both the anime and manga Naruto often ends his sentences with either \"dattebayo\" or \"believe it\" in the English translations. \nWhy is this a thing?\nIs it meant to further his character or provide a bit of remembrance of his character to the reader or viewer, or even other characters of the series?\n", "post_id": "124", "cluster_id": 54, "novelty": true, "order": 0} 2 | {"body_text": "What is the significance of anime characters' catch phrases? Uzumaki Naruto (Naruto) has a catch phrase \"dattebayo\". Ika Musume (Squid Girl) has a catch phrase \"de geso\". Himura Kenshin (Rurouni Kenshin) has a catch phrase \"gozaru\". And a lot more examples here.\nWhat is the significance of anime characters' catch phrases? \n", "post_id": "3317", "cluster_id": 54, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00139.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How does the automail work? An automail must be a masterpiece, as the user seems to be able to use it as a fully working arm/leg/... It seems however, that it's no regular artificial limb.\nWhat's so special about an automail? How does it work? Are there any drawbacks?\n", "post_id": "3839", "cluster_id": 139, "novelty": true, "order": 0} 2 | {"body_text": "Why does connecting an automail hurt? We could see plenty of times in both Fullmetal Alchemist anime series (at least twice in the 2003 series and at least once in the 2009 series, according to my memories) that connecting the automails seriously hurts for Ed. What's the reason?\nMy theory is that during connecting, it \"turns on\" and sends an electric wave to the brain to provide right functionality.\n", "post_id": "5404", "cluster_id": 139, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00142.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why does connecting an automail hurt? We could see plenty of times in both Fullmetal Alchemist anime series (at least twice in the 2003 series and at least once in the 2009 series, according to my memories) that connecting the automails seriously hurts for Ed. What's the reason?\nMy theory is that during connecting, it \"turns on\" and sends an electric wave to the brain to provide right functionality.\n", "post_id": "5404", "cluster_id": 142, "novelty": true, "order": 0} 2 | {"body_text": "How does the automail work? An automail must be a masterpiece, as the user seems to be able to use it as a fully working arm/leg/... It seems however, that it's no regular artificial limb.\nWhat's so special about an automail? How does it work? Are there any drawbacks?\n", "post_id": "3839", "cluster_id": 142, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00323.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Is there a special meaning to the class name \"2-H\" (2-\u3075)? Sayonara Zetsubou Sensei is focused on the students of the class 2-H. Is there a hidden meaning to that class name or is it just a common class name in Japan?\nI recently saw some other, possibly related anime, also with students in class 2-H, but I can't remember which one.\n", "post_id": "4273", "cluster_id": 323, "novelty": true, "order": 0} 2 | {"body_text": "Is there a Naming Scheme for the Abyssal Ships? In Kantai Collection, the Ship Girls like Fusou and Bismark are named from real life ships. \nI am wondering if the Abyssal Ships like Wo and Ta are named with a particular scheme aswell or if it's just random? (I'm not Referring to Bosses like Southern War Demon or Anchorage Princess)\n", "post_id": "9603", "cluster_id": 323, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00326.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What will happen to the tailed beast if the jinchuruki is killed? It is shown in the anime that the jinchuruki is caught and the tailed beast is extracted and sealed into the Demonic statue by the Akatsuki. What will happen if the jinchuruki is killed somewhere else? In search for Tsunade arc, during the fight between Jiraiya-Tsunade and Orochimaru, Orochimaru tries to kill Naruto as he is the jinchuruki of the nine tails. What would have happened to the nine tails if he had killed Naruto?\n", "post_id": "4550", "cluster_id": 326, "novelty": true, "order": 0} 2 | {"body_text": "What happens to a tailed beast if it's Jinkiurichi is killed? What happens to a tailed beast if it's Jinkiurichi is killed while he still has the tailed beast inside of him/her?\n", "post_id": "9788", "cluster_id": 326, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01524.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What are the characteristics of a \"tsundere\"? Although this question might be a naive thing to ask, I believe that I would get an much detailed answer to this question keeping in mind all my simple questions answered wonderfully by people in the past. I read the wiki page on Tsundere but there's not much, I understand the broad definition where a person has a combative attitude towards a particular protagonist in any anime. What I am looking for, is an all-encompassing criteria/concept of a 'tsundere' and the highlights of their social behavior.\n", "post_id": "26528", "cluster_id": 1524, "novelty": true, "order": 0} 2 | {"body_text": "What is gap moe? I often hear the word gap moe, but I do not know what it means. So what does the word gap moe mean?\n", "post_id": "28922", "cluster_id": 1524, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01624.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why did Tokyo Ghoul \u221aA completely deviate from the manga? The first episode of Tokyo Ghoul \u221aA aired today, and at the end (obvious spoiler), Kaneki went with Aogiri (we don't know why yet). However, I read that in the manga, he did the exact opposite. Instead, he tried to create a group to fight Aogiri. Why did the second season completely deviate from the manga? Was it by the choice of the mangaka or the anime producers?\n", "post_id": "18391", "cluster_id": 1624, "novelty": true, "order": 0} 2 | {"body_text": "What are the differences between the Tokyo Ghoul anime and manga? After seeing the first episode of Tokyo Ghoul \u221aA, I noticed a major difference in the anime. Are there any more differences between manga and anime (both seasons)?\n", "post_id": "21249", "cluster_id": 1624, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01720.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What are the differences between the manga and the anime adaptation of Erased and where does the anime diverge? As stated in the title, I want to know what the major differences between the manga and the anime adaptation are. From what I've read online, the anime adaptation diverged from the manga. So where does this diversion occur? Does it start from a particular chapter of the manga or has it been taking its own course gradually from the very beginning? \n", "post_id": "30817", "cluster_id": 1720, "novelty": true, "order": 0} 2 | {"body_text": "Is the ending of the anime and manga the same (ERASED) I was wondering, is the anime ending and the manga ending the same for Boku dake ga Inai Machi?\nOr is there going to be a sequel for the anime version?\n", "post_id": "30879", "cluster_id": 1720, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00097.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What was the first mecha anime/manga to feature combining to form a super robot? Shows like Getter Robo or Zambot feature vehicles that (slightly transform) combine to form a giant super robot. What was the first anime or manga to use the combining tactic and was there an inspiration for this?\n", "post_id": "3828", "cluster_id": 97, "novelty": true, "order": 0} 2 | {"body_text": "What is the first transforming/morping mobile suit/robot in anime? I have watched all the mobile suit gundam series and many other transforming robot genre series but i want to know which is the first series that started the transforming/morphing mobile suit/robot genre in anime.\nHere transforming/morphing is changing from aircraft/armour to humanoid/creature form or any other forms\n", "post_id": "4357", "cluster_id": 97, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01102.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How did Jiraiya find out Tsunade's breast size? Jiraiya stated that Tsunade's oppai size was 106cm.\nFrom Tsunade article:\nConsidering the amount of fear and respect Jiraiya then developed towards her, how did he know the measurement of the adult Tsunade?\nSource: https://www.youtube.com/watch?v=ny7Fni193Jk\n(I'm really sorry about the quality of the video)\nBelow is the image from the corresponding scene in the manga (chapter 406, page 9):\n\n", "post_id": "18999", "cluster_id": 1102, "novelty": true, "order": 0} 2 | {"body_text": "Who has the biggest breasts in the Naruto series? Right now, I think it is Tsunade, but is there anyone else who has bigger breasts than Tsunade?\nIt seems in Leaf village, Hinata is 2nd. From Road to Naruto, Chapter 1, page 11:\n\n", "post_id": "25636", "cluster_id": 1102, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01230.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What will happen if one person eats two Devil Fruits? If a person has already eaten one Devil Fruit, what will happen to him if he eats another Devil Fruit?\n", "post_id": "22090", "cluster_id": 1230, "novelty": true, "order": 0} 2 | {"body_text": "What would have happened if Brook Died from eating a Second Devil Fruit? I saw a post about \"Creating your own Devil Fruit Powers\".. Most OP would be having two abilities. Then I remember that eating Two Devil Fruits = your body to explode. \nSo.. I was thinking, What would have been the Result if Brook (Alive) would have died by eating a second Devil Fruit? Would his Yomi Yomi no Mi powers activate and revive him and if so, he is a person that was able to eat two devil fruit and live which means, two abilities? \n", "post_id": "26687", "cluster_id": 1230, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01238.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why does Kakashi Hatake always wear a mask? Since his childhood as depicted in manga/anime, Kakashi always wore a cloth mask covering his face, making only eye(s) and a portion of forehead visible.\nWhat was the reason for this?\n", "post_id": "2912", "cluster_id": 1238, "novelty": true, "order": 0} 2 | {"body_text": "Has Naruto's less-than-stealthy costume been explained in-universe? Out-of-universe, Naruto's day-glo orange costume was chosen to make him \"pop.\" In-universe, it's hard to imagine a less efficient color for a ninja, especially in a wooded area.\nHas there been any in-universe explanation for why Naruto wears that color, and was allowed to continue doing so even during missions? Failing that, has the absurdity of it at least been lampshaded?\n", "post_id": "26545", "cluster_id": 1238, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01351.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Where is this picture from? How do I use Reverse Image Search to find the source of an anime/manga image? So I see an image from what I believe is from either an anime or manga. What are some ways that I can go about finding what series it's from?\nTry these options:\n\nGoogle reverse image search (browser built-in support and plugins)\nOther reverse image search engines: TinEye, SauceNao, iqdb\nTechnique: Cropping the image\nAnimated GIF: Picking the right frame\n\n", "post_id": "21618", "cluster_id": 1351, "novelty": true, "order": 0} 2 | {"body_text": "What is this manga where a girl is told that she's never been seen only as a friend? \nThis picture is really cute so I want to know what manga this is so please help me thank you for your consideration.\n", "post_id": "21599", "cluster_id": 1351, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00759.json: -------------------------------------------------------------------------------- 1 | {"body_text": "In One Piece, does a Devil Fruit reappear after the user dies? In chapter 702, we see Ace's Devil Fruit 'Mera Mera no Mi' being showcased as the prize of the event held in the Colosseum. The announcer of the event mentions that the \"fruit is reborn.\"\nDoes it mean every Devil Fruit has that ability to be reborn once the user dies, or is it an artificial Devil Fruit made by Doflamingo's factory?\n", "post_id": "2979", "cluster_id": 759, "novelty": true, "order": 0} 2 | {"body_text": "If there's only one of each fruit, how could Blackbeard recognize the \"Dark Dark\" fruit? If someone had seen it before you'd think it would have been eaten. \nAnd I also thought I remember a segment about no one knowing their fruit before they ate it. (I think it was with the CP9 arc)\n", "post_id": "464", "cluster_id": 759, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00760.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How is the ability of a Devil Fruit discovered? Since there is just one Devil Fruit for a specific ability, how does one know about what ability it holds?\nFor example, Buggy and Teach knew about the powers their Devil Fruits would have provided them.\nIt is mentioned that they had read about it.\nBut if the fruit occurs only once till the user dies, how did they find out about the fruits' powers?\n", "post_id": "5919", "cluster_id": 760, "novelty": true, "order": 0} 2 | {"body_text": "If there's only one of each fruit, how could Blackbeard recognize the \"Dark Dark\" fruit? If someone had seen it before you'd think it would have been eaten. \nAnd I also thought I remember a segment about no one knowing their fruit before they ate it. (I think it was with the CP9 arc)\n", "post_id": "464", "cluster_id": 760, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00831.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What is the first ever produced anime and manga? What is the first anime ever produced in Japan?\nAnd what is the first anime film and first anime series produced?\nI heard that it was Astro Boy, is that true? And what is the first ever manga produced in Japan?\n", "post_id": "3408", "cluster_id": 831, "novelty": true, "order": 0} 2 | {"body_text": "Which was the first anime to receive a English dub? With this question and this question both receiving some attention recently, it made me think - which anime was the first to receive a dub?\nSome of the first anime available in western countries such as Astro Boy had dubs produced in the 1960's as stated in the linked wikipedia article, but which show was the original one to have an officially produced English dub?\n", "post_id": "22433", "cluster_id": 831, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00962.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Where is this picture from? How do I use Reverse Image Search to find the source of an anime/manga image? So I see an image from what I believe is from either an anime or manga. What are some ways that I can go about finding what series it's from?\nTry these options:\n\nGoogle reverse image search (browser built-in support and plugins)\nOther reverse image search engines: TinEye, SauceNao, iqdb\nTechnique: Cropping the image\nAnimated GIF: Picking the right frame\n\n", "post_id": "21618", "cluster_id": 962, "novelty": true, "order": 0} 2 | {"body_text": "Which series is this girl getting robbed and tied up from? I have seen this picture online quite a lot lately, and I have been wondering which series it comes from. I tried searching but did not find any results.\n\n", "post_id": "23580", "cluster_id": 962, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01420.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Where is this picture from? How do I use Reverse Image Search to find the source of an anime/manga image? So I see an image from what I believe is from either an anime or manga. What are some ways that I can go about finding what series it's from?\nTry these options:\n\nGoogle reverse image search (browser built-in support and plugins)\nOther reverse image search engines: TinEye, SauceNao, iqdb\nTechnique: Cropping the image\nAnimated GIF: Picking the right frame\n\n", "post_id": "21618", "cluster_id": 1420, "novelty": true, "order": 0} 2 | {"body_text": "Where does the character from this poster come from? My fiance picked this poster up today because it looked cute, we aren't sure were this is from and wanted to know if anyone could tell us where this is from.\n\n", "post_id": "28074", "cluster_id": 1420, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01725.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why is the title Punchline? Why is the title Punchline? How does it relate to the series itself?\nAccording to dictionary.com, punchline means\nSo do we have to wait until the end of the series to understand the meaning of the title?\n", "post_id": "20909", "cluster_id": 1725, "novelty": true, "order": 0} 2 | {"body_text": "Why is Cross Game named so? What is the significance of the title? I'm curious as to why Cross Game is named so. The \"cross\" appears in the anime in various forms:\n\nBefore the beginning of each episode, when the Tsukishima family advises the viewer to watch the anime in a well-lit room and from a distance, in the form of a cross between clover leaves:\n\n\nHowever, does it have special significance in relation to the plot/story of the anime?\n", "post_id": "31142", "cluster_id": 1725, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00182.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why do Kurama and Gyuki appear as chakra while other bijuu don't? In Naruto, Kurama (the Nine-tailed bijuu) appears as chakra, as does Killer B's bijuu, Gyuki.\n\n\nOther bijuu, however, don't appear that way. What is different between them?\n\n\n", "post_id": "3314", "cluster_id": 182, "novelty": true, "order": 0} 2 | {"body_text": "Why is naruto's Jinchuriki transformation so different? Why is Naruto's Jinchuriki transformation so different from the true form of Kuarama??\n\n\n\nIn the first image, Kurama is in its true form and in the second one naruto is in biju transformed mode. Why is it so different?\nI mean all the lines and stuff drawn on it and it even looks different that the transformations undergone by other Jinchuriki's!!\nIs there an explanation for that?\n", "post_id": "6050", "cluster_id": 182, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00183.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why is naruto's Jinchuriki transformation so different? Why is Naruto's Jinchuriki transformation so different from the true form of Kuarama??\n\n\n\nIn the first image, Kurama is in its true form and in the second one naruto is in biju transformed mode. Why is it so different?\nI mean all the lines and stuff drawn on it and it even looks different that the transformations undergone by other Jinchuriki's!!\nIs there an explanation for that?\n", "post_id": "6050", "cluster_id": 183, "novelty": true, "order": 0} 2 | {"body_text": "Why do Kurama and Gyuki appear as chakra while other bijuu don't? In Naruto, Kurama (the Nine-tailed bijuu) appears as chakra, as does Killer B's bijuu, Gyuki.\n\n\nOther bijuu, however, don't appear that way. What is different between them?\n\n\n", "post_id": "3314", "cluster_id": 183, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00667.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Can I increase my lifespan by killing myself using the Death Note? Suppose I wrote that I will be killed by a UFO falling from space in the year 2315 while I am lifting.\nWill the Note increase my lifespan? In other words, will I still be alive by then? \n", "post_id": "907", "cluster_id": 667, "novelty": true, "order": 0} 2 | {"body_text": "Can a person do the shinigami eye deal without losing half of his lifespan? Let's say, Bob has a death note. He gives up ownership, so that another one with shinigami eyes can tell him his lifespan. Bob is a genius, so he can calculate his death date. He writes his own name in it. \nBob Hyrule, Bradykardie, 2.3.2034. \nHe set his death date, by killing himself with a disease. Now he makes the shinigami eye deal. Will he die earlier? \n", "post_id": "20221", "cluster_id": 667, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01130.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Is the Ship Spirit (klabautermann) based on any real legend? In One Piece Chapter 254, Usopp saw someone that fix Going Merry, later in chapter 351, Franky told him that it actually a manifestation of a ship's soul.\n\nIs this based on any real legend?\n", "post_id": "12902", "cluster_id": 1130, "novelty": true, "order": 0} 2 | {"body_text": "Who is fixing the Going Merry? Recently got done watching the Skypiea Arc and it has just been bugging me constantly but in Episode 167 Usopp goes to the bathroom and sees someone fixing the Going Merry. No where else is this addressed in the Arc(at least anime wise) was Usopp really just seeing things because he was tired or was there really someone fixing their ship for them. Here is a picture of the scene I am talking about. \n\n", "post_id": "25718", "cluster_id": 1130, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01696.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What is the production order of the Monogatari series? It's rather confusing how the story is serialized not in the order of its events. I'd like to know the order in which the animated versions were produced.\n\nTurns out the creators of the series are very considerate towards the viewers and include several recap episodes in each season. So although the story is out of order, everything still makes perfect sense and you don't have to bother yourself by figuring out the exact timeline of the original.\n", "post_id": "4727", "cluster_id": 1696, "novelty": true, "order": 0} 2 | {"body_text": "Monogatari Series Order? I want to start watching the Monogatari Series but I don\u00b4t know the chronological order of the series. Can anyone tell me please!\nThanks in advance!\n", "post_id": "30527", "cluster_id": 1696, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00259.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What defines one \"season\" of anime? From what I've been able to follow, the seasons of anime shows have been tied to thirteen week blocks, directly correlating with the actual season in Japan (for instance, this is the Winter 2013 season).\nHowever, there are instances in which shows with more than 13 episodes are considered to have only run for one season.\nWhich is the correct definition - are seasons 23-26 episodes, or are they 11-13 episodes?\n", "post_id": "1971", "cluster_id": 259, "novelty": true, "order": 0} 2 | {"body_text": "What is a \"cour\"? I often hear shows talked about as being some number of \"cours\". For example, Evangelion is apparently \"two cours\", while Madoka is \"one cour\". \nBut what on earth does \"cour\" mean? I can't find it in any dictionary!\n", "post_id": "7977", "cluster_id": 259, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00947.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why did Bleach anime stop airing? And did Bleach manga also end its serialization? After I watched episode 366 of Bleach, I waited for a couple of months. As I expected, no new episode of Bleach anime has been released since then. And yet, I don't believe that the anime has reached the ending.\nWhy did Bleach anime stop airing? And did Bleach manga also end its serialization? Though for the case of the manga, I am not sure if it has actually finished.\n", "post_id": "18801", "cluster_id": 947, "novelty": true, "order": 0} 2 | {"body_text": "Does the Bleach anime stick to the manga's plot? Does the anime series of Bleach stick to the manga's plot? Or is it like the original Fullmetal Alchemist series where the anime is its own thing and doesn't follow the story of the manga?\n", "post_id": "23350", "cluster_id": 947, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01411.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Where is this picture from? How do I use Reverse Image Search to find the source of an anime/manga image? So I see an image from what I believe is from either an anime or manga. What are some ways that I can go about finding what series it's from?\nTry these options:\n\nGoogle reverse image search (browser built-in support and plugins)\nOther reverse image search engines: TinEye, SauceNao, iqdb\nTechnique: Cropping the image\nAnimated GIF: Picking the right frame\n\n", "post_id": "21618", "cluster_id": 1411, "novelty": true, "order": 0} 2 | {"body_text": "What anime is this image of a girl caressing a skeleton from? I found this picture on a fansub website, and it did not have any reference to the name of the anime to which it belongs.\n \nDoes anyone know where it is from?\n", "post_id": "4321", "cluster_id": 1411, "novelty": false, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01763.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What defines one \"season\" of anime? From what I've been able to follow, the seasons of anime shows have been tied to thirteen week blocks, directly correlating with the actual season in Japan (for instance, this is the Winter 2013 season).\nHowever, there are instances in which shows with more than 13 episodes are considered to have only run for one season.\nWhich is the correct definition - are seasons 23-26 episodes, or are they 11-13 episodes?\n", "post_id": "1971", "cluster_id": 1763, "novelty": true, "order": 0} 2 | {"body_text": "What are typical release cycles? What are typical release cycles that are used for manga chapters or anime episodes?\nI'm not asking for specific mangas/animes but simply how often on chapter/anime could be released, eg weekly or monthly.\n", "post_id": "31886", "cluster_id": 1763, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00053.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Where did the Dog-people come from? In Dragon-ball there are numerous dog-people, one of which is the king of the world\n\nThere were other dog-people in the anime episode Plight of the children. One of the orphans was a dog person, and one of the police was a dog person.\nWhere did they all come from? Did someone, one day, breed with a dog, thus spawning this race of Dog-people?\n", "post_id": "2799", "cluster_id": 53, "novelty": true, "order": 0} 2 | {"body_text": "What happened to all the talking animals in Dragon Ball? I remember Dragon Ball used to have lots of talking, humanoid foxes and the like. Then suddenly, in Dragon Ball Z, the only talking animals I remember are Oolong and Puar. \nIs there any explanation for this or is it just a case of author discontinuing an idea?\n", "post_id": "3299", "cluster_id": 53, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00228.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Where can one learn about viewership ratings for anime? In the U.S., companies like Nielsen track viewership of television programs. What is the equivalent of this for Japanese television programs (and, in particular, anime), if any?\n", "post_id": "5095", "cluster_id": 228, "novelty": true, "order": 0} 2 | {"body_text": "Is there an official site for anime and manga ranking? Is there any official site for anime and manga ranking? I know some site for anime and manga, and they have some kind of rating and ranking, but their rating and ranking are different. I'm wondering if there are any official site for anime, maybe something like IMDB? Honestly, I don't really know if IMDB is official or not, but if someone is to ask for the rating of a movie, they always say to look it in IMDB.\n", "post_id": "7240", "cluster_id": 228, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00515.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What's the difference between the FMA and FMA Brotherhood series? I haven't watched Anime in many years, but recently I've had time to get back into it. I've seen that one of my favorite series, Fullmetal Alchemist, has done a series reboot. What I'm wondering is:\nDoes it present a lot of deep variations (plot-wise, character-wise or otherwise), or is it just the same series with updated art?\n", "post_id": "55", "cluster_id": 515, "novelty": true, "order": 0} 2 | {"body_text": "What episode and what chapter do Fullmetal Alchemist 2003 series and Fullmetal Alchemist Manga start to differ? I just finished watching Fullmetal Alchemist 2003 series. I would like to read the manga now. Does anyone know at what chapter the story of FMA2003 and the story of the manga go different ways?\n", "post_id": "16689", "cluster_id": 515, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00741.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Difference between a code and geass? Code seems to be obtained after your geass upgrades to full power and you kill a code bearer. What happens to your geass after you obtain the code? Do you lose your geass? Is code an extra power? What is the difference between these two?\n", "post_id": "19070", "cluster_id": 741, "novelty": true, "order": 0} 2 | {"body_text": "What exactly is the Code Geass? I have watched the series once and I believe there are quite a few things left unexplained. The powers for instance can be transferred to others by only the people who have the \"Code\" like C.C. or V.V. \nSo what exactly is this code? And was Charles after immortality when he tried to acquire C.C.'s code? He even acquired V.V's code didn't he? So he was immortal. Why was he after C.C.? \n", "post_id": "21725", "cluster_id": 741, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01201.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Is the circle-script used in Rokka no Yuusha decipherable? In Rokka no Yuusha, we see a number of instances of a fictional script consisting of glyphs inside circles. For example, from the introductory narration:\n\n\n\nThese are probably too low-resolution to be readable. However, in episode 3, we get a suitably-high-resolution shot of Adlet's letter to the princess:\n\nFictional scripts in anime are often ciphers (a la Space Dandy, Suisei no Gargantia, etc.). Is this one also a cipher of some sort? \n", "post_id": "23509", "cluster_id": 1201, "novelty": true, "order": 0} 2 | {"body_text": "Is the fictional script in Comet Lucifer decipherable? Comet Lucifer features a fictional script that is used whenever text is shown. For example:\n\n\nIs the script decipherable? If so, how?\n", "post_id": "26407", "cluster_id": 1201, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01562.json: -------------------------------------------------------------------------------- 1 | {"body_text": "How did Goten and Trunks become Super Saiyan so easily? Most Saiyan (Goku, Vegeta, Gohan, etc.) who evolved into Super Saiyan had trouble fulfilling one of the requirements to evolve: Their rage or other emotions had to be extreme.\nHowever, there are two exceptions: Goten and Trunks (not the Trunks from the future). How did they achieve it? They hadn't seen or done anything that could drive them to such a level of rage/intense emotion to allow them to turn into Super Saiyan.\n", "post_id": "422", "cluster_id": 1562, "novelty": true, "order": 0} 2 | {"body_text": "Are half-blooded Saiyans stronger than pure-blooded Saiyans? I'm wondering if half-blooded Saiyans are stronger than pure-blooded Super Saiyans? Like how half-blooded vampires are stronger than pure-blooded vampires.\n", "post_id": "29205", "cluster_id": 1562, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00009.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What's the difference between the FMA and FMA Brotherhood series? I haven't watched Anime in many years, but recently I've had time to get back into it. I've seen that one of my favorite series, Fullmetal Alchemist, has done a series reboot. What I'm wondering is:\nDoes it present a lot of deep variations (plot-wise, character-wise or otherwise), or is it just the same series with updated art?\n", "post_id": "55", "cluster_id": 9, "novelty": true, "order": 0} 2 | {"body_text": "How do the Homunculi differ between the FMA manga and anime? I know that the actual characters who are the homunculi differ between the FMA manga and original anime. For instance, Sloth is a different person between the manga and the anime. However, do they differ in how they are created? If so, how do they differ?\n", "post_id": "726", "cluster_id": 9, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00209.json: -------------------------------------------------------------------------------- 1 | {"body_text": "Why do the MISAKA Sisters narrate everything they say? The MISAKA sisters from Toaru Majutsu no Index have this habit of constantly narrating everything they say in the third person, including the way they say it and actions during their speech. Moreover, the Last Order does it twice for every sentence.\nWhy do they do that? (And why doesn't anyone seem to notice?)\n", "post_id": "4136", "cluster_id": 209, "novelty": true, "order": 0} 2 | {"body_text": "Why does Last Order state her name twice? I understand that the regular clones speak in third person from the answer here. But Last Order actually has emotions, so there is no reason to speak in third person or repeating her name over twice. What is the true reasoning behind Misaka wa Misaka wa ...?\nIs there a canonical answer for this?\n", "post_id": "6798", "cluster_id": 209, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/00618.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What was the intent for making Rem sacrifice herself for Misa? We know Light is clever and smart and almost devilish? But I don't understand why Light wanted Rem out of the way?\nWhat was his motive and what would have happened if it went wrong?\n", "post_id": "7524", "cluster_id": 618, "novelty": true, "order": 0} 2 | {"body_text": "Why did Rem kill L? I know that it was Light's plan to make Misa look suspicious again so that Rem would kill L. But why did she think that Misa was going to be executed?\nWas it because her lifespan was shortened again?\nI thought that only a Death Note can shorten the lifespan of a person, and even though she did the Shinigami eye deal again, was her lifespan too shortened? \nOr can your lifespan get shortened by other people, because of their actions?\n", "post_id": "19123", "cluster_id": 618, "novelty": true, "order": 1} 3 | -------------------------------------------------------------------------------- /data/stackexchange/anime/01401.json: -------------------------------------------------------------------------------- 1 | {"body_text": "What's the correct pronunciation for Luffy or Rufi? What's the correct pronunciation of his name? Luffy or Rufi?\nAt the One Piece wikia, it says \"Monkey D. Luffy (\u30e2\u30f3\u30ad\u30fc\uff65D\uff65\u30eb\u30d5\u30a3 Monk\u012b D. Rufi)\".\n", "post_id": "782", "cluster_id": 1401, "novelty": true, "order": 0} 2 | {"body_text": "Where did it become known that Rin's and Len's names have different first letters? According to the answers here and this chat post\n\nLuffy/Ruffy (One Piece)\nLio/Rio (Kara no Kyoukai)\n\n2 of the Vocaloids are the twins Rin and Len, but given the above, their names could be Rin and Ren, Lin and Len, or even Lin and Ren.\nSo where did it become known that Rin's and Len's names have different first letters, as opposed to the alternatives that I mentioned?\n", "post_id": "27910", "cluster_id": 1401, "novelty": true, "order": 1} 3 | --------------------------------------------------------------------------------