{"nbformat_minor": 0, "cells": [{"execution_count": 15, "cell_type": "code", "source": "import goslate # Translates using google translate!\nclass Gibberish:\n    \"\"\"v2 -\n    really should go to bed...\n    \"\"\"\n    \n    def __str__(self):\n        return unicode(self).encode('utf-8')\n\n    def __init__(self, sentence):\n        self.sentence = sentence\n        self.consonants = \"bcdfghjklmnpqrstvwxzBCDFGHJKLMNPQRSTVWXZ\"\n    \n        self.languages = {'afrikaans':'af','arabic':'ar','armenian':'hy','belarusian':'be','bulgarian':'bg',\n                          'catalan':'ca','chinese (simplified)':'zh-cn','chinese (traditional)':'zh-tw',\n                          'croatian':'hr','czech':'cs','danish':'da','dutch':'nl','english':'en','esperanto':'eo',\n                          'estonian':'et','filipino':'tl','finnish':'fi','french':'fr','german':'de','greek':'el',\n                          'hebrew':'iw','hindi':'hi','hungarian':'hu','icelandic':'is','indonesian':'id',\n                          'italian':'it','japanese':'ja','korean':'ko','latvian':'lv','lithuanian':'lt',\n                          'norwegian':'no','persian':'fa','polish':'pl','portuguese':'pt','romanian':'ro',\n                          'russian':'ru','serbian':'sr','slovak':'sk','slovenian':'sl','spanish':'es',\n                          'swahili':'sw','swedish':'sv','thai':'th','turkish':'tr','ukrainian':'uk',\n                          'vietnamese':'vi'}\n        \n        \n    def gibberish(self):\n        for x in self.consonants:\n            if (x in self.sentence):\n                self.sentence=self.sentence.replace(x, x+'o'+unicode(x).lower())    \n    def degibberish(self):\n        for x in self.consonants:\n            if (x in self.sentence):\n                self.sentence=self.sentence.replace(x+'o'+unicode(x).lower(), x)    \n \n    def get_sentence(self):\n        return self.sentence\n    \n    def translate(self, language=None):\n        gs= goslate.Goslate()\n        try:\n            if(language is None):\n                self.sentence = gs.translate(self.get_sentence(), self.languages['english'])\n            else:\n                self.sentence = gs.translate(self.get_sentence(), self.languages[language.lower()])\n        except HTTPError:\n            pass\n            ", "outputs": [], "metadata": {"collapsed": false, "trusted": true}}, {"execution_count": 16, "cell_type": "code", "source": "SENTENCE = \"I tried!\"\ngib = Gibberish(SENTENCE)\ngib.translate(\"Swedish\")\ngib.gibberish()\nGIBBERISH = gib.get_sentence()\n", "outputs": [], "metadata": {"collapsed": false, "trusted": true}}, {"execution_count": 17, "cell_type": "code", "source": "print SENTENCE\nprint \" became:\\n\"\nprint GIBBERISH", "outputs": [{"output_type": "stream", "name": "stdout", "text": "I tried!\n became:\n\nJojagog fof\u00f6rorsos\u00f6koktote!\n"}], "metadata": {"collapsed": false, "trusted": true}}, {"execution_count": 18, "cell_type": "code", "source": "#And test that translate back to normal works\ngib.degibberish()\ngib.translate(\"English\")\ndeconverted = gib.get_sentence()", "outputs": [], "metadata": {"collapsed": true, "trusted": true}}, {"execution_count": 19, "cell_type": "code", "source": "print \"And was converted back to english as: \\n\"\nprint deconverted", "outputs": [{"output_type": "stream", "name": "stdout", "text": "And was converted back to english as: \n\nI tried!\n"}], "metadata": {"collapsed": false, "trusted": true}}, {"source": "Moving on to bigger and better things:\n\n##PRAW: Python Reddit API Wrapper.\n\n  >- Let's me access Reddit from Python and get submissions, comments, etc.  while abiding to their terms of service and stuff.", "cell_type": "markdown", "metadata": {}}, {"execution_count": 7, "cell_type": "code", "source": "import praw", "outputs": [], "metadata": {"collapsed": true, "trusted": true}}, {"execution_count": 8, "cell_type": "code", "source": "reddit = praw.Reddit('Gibberish v.2')", "outputs": [], "metadata": {"collapsed": false, "trusted": true}}, {"source": "##A recent post... was quite interesting.\nhttp://www.reddit.com/r/sweden/comments/301sqr/dodetot_%C3%A4ror_fof%C3%B6ror_lolitote/\n\n###People were posting things like:\n\n  >VoVadod fofanon sosa dodu jojusostot omom momigog, dodinon lolilollola soslolynona ? DoDu bobehoh\u00f6voveror vovetota atottot jojagog totogog exoxamomenon i totopoppopenon avov mominon koklolasossos i SoS\u00e4rorsoskokiloldoda opoperoratotiononsosgogrorupoppopenon, ocochoh jojagog hoharor vovaroritot inonvovololvoveroradod i etottot foflolerortotalol hohemomloligoga ror\u00e4doderor momotot dodanonsoskokenon, ocochoh jojagog hoharor \u00f6voveror totrorehohunondodrora bobekokror\u00e4foftotadode momorordod. JoJagog \u00e4ror utotbobiloldodadod i gogororilollola kokrorigogfof\u00f6rorinongog ocochoh jojagog \u00e4ror dodenon bob\u00e4sostota poproricockoksoskokytottotenon i hohelola nonorordodenonsos vov\u00e4popnonadode sostotyrorkokoror. DoDu \u00e4ror inongogetot fof\u00f6ror momigog utotanon bobarora etottot anonnonatot mom\u00e5lol. JoJagog kokomommomeror atottot totororkoka utot dodigog momedod poprorecocisosionon vovarorsos lolikoke aloldodrorigog totidodigogarore soskok\u00e5dodatotsos pop\u00e5 dodenonnona jojorordod , mom\u00e4rorkok momino\n  \n####I made this program because of that thread. Time to translate every comment Reddit can give me from it!\n", "cell_type": "markdown", "metadata": {}}, {"execution_count": 9, "cell_type": "code", "source": "#Get the submission from above\nsubmission = reddit.get_submission(submission_id='301sqr',comment_limit = None)", "outputs": [], "metadata": {"collapsed": false, "trusted": true}}, {"execution_count": 10, "cell_type": "code", "source": "#Get more comments from submission\nsubmission.replace_more_comments(limit=20, threshold=3)\nforest_comments = submission.comments", "outputs": [], "metadata": {"collapsed": false, "trusted": true}}, {"execution_count": 11, "cell_type": "code", "source": "#Flatten comments\nflat_comments = praw.helpers.flatten_tree(forest_comments)", "outputs": [], "metadata": {"collapsed": false, "trusted": true}}, {"execution_count": 20, "cell_type": "code", "source": "len(flat_comments)", "outputs": [{"execution_count": 20, "output_type": "execute_result", "data": {"text/plain": "803"}, "metadata": {}}], "metadata": {"collapsed": false, "trusted": true}}, {"execution_count": 21, "cell_type": "code", "source": "commentList = []\nfor comment in flat_comments:\n    gib = Gibberish(comment.body)\n    gib.degibberish()\n    gib.translate(\"English\")\n    commentList.append([comment.body, gib.get_sentence()])", "outputs": [{"ename": "NameError", "evalue": "global name 'HTTPError' is not defined", "traceback": ["\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", "\u001b[1;31mNameError\u001b[0m                                 Traceback (most recent call last)", "\u001b[1;32m<ipython-input-21-c21eac25c51f>\u001b[0m in \u001b[0;36m<module>\u001b[1;34m()\u001b[0m\n\u001b[0;32m      3\u001b[0m     \u001b[0mgib\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mGibberish\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mcomment\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mbody\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m      4\u001b[0m     \u001b[0mgib\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mdegibberish\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m----> 5\u001b[1;33m     \u001b[0mgib\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mtranslate\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;34m\"English\"\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m      6\u001b[0m     \u001b[0mcommentList\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mappend\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m[\u001b[0m\u001b[0mcomment\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mbody\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mgib\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mget_sentence\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", "\u001b[1;32m<ipython-input-15-2d4a276c973e>\u001b[0m in \u001b[0;36mtranslate\u001b[1;34m(self, language)\u001b[0m\n\u001b[0;32m     43\u001b[0m             \u001b[1;32melse\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m     44\u001b[0m                 \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0msentence\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mgs\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mtranslate\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mget_sentence\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mlanguages\u001b[0m\u001b[1;33m[\u001b[0m\u001b[0mlanguage\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mlower\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m---> 45\u001b[1;33m         \u001b[1;32mexcept\u001b[0m \u001b[0mHTTPError\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m     46\u001b[0m             \u001b[1;32mpass\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m     47\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n", "\u001b[1;31mNameError\u001b[0m: global name 'HTTPError' is not defined"], "output_type": "error"}], "metadata": {"collapsed": false, "trusted": true}}, {"execution_count": 22, "cell_type": "code", "source": "len(commentList)", "outputs": [{"execution_count": 22, "output_type": "execute_result", "data": {"text/plain": "134"}, "metadata": {}}], "metadata": {"collapsed": false, "trusted": true}}, {"execution_count": 23, "cell_type": "code", "source": "#From http://nbviewer.ipython.org/gist/jdfreder/6734825  \n#Render markdown in the notebook \n\nfrom IPython.nbconvert.utils.pandoc import pandoc\nfrom IPython.display import HTML, Javascript, display\n\nfrom IPython.nbconvert.filters import citation2latex, strip_files_prefix, \\\n                                     markdown2html, markdown2latex\n\ndef pandoc_render(markdown):\n    \"\"\"Render Pandoc Markdown->LaTeX content.\"\"\"\n    \n    ## Convert the markdown directly to latex.  This is what nbconvert does.\n    #latex = pandoc(markdown, \"markdown\", \"latex\")\n    #html = pandoc(markdown, \"markdown\", \"html\", [\"--mathjax\"])\n    \n    # nbconvert template conversions\n    html = strip_files_prefix(markdown2html(markdown))\n    latex = markdown2latex(citation2latex(markdown))\n    display(HTML(data=\"<div style='display: inline-block; width: 30%; vertical-align: top;'>\" \\\n                 \"<div style='background: #AAFFAA; width: 100%;'>NBConvert Latex Output</div>\" \\\n                 \"<pre class='prettyprint lang-tex' style='background: #EEFFEE; border: 1px solid #DDEEDD;'><xmp>\" + latex + \"</xmp></pre>\"\\\n                 \"</div>\" \\\n                 \"<div style='display: inline-block; width: 2%;'></div>\" \\\n                 \"<div style='display: inline-block; width: 30%; vertical-align: top;'>\" \\\n                 \"<div style='background: #FFAAAA; width: 100%;'>NBViewer Output</div>\" \\\n                 \"<div style='display: inline-block; width: 100%;'>\" + html + \"</div>\" \\\n                 \"</div>\"))\n    javascript = \"\"\"\n    $.getScript(\"https://google-code-prettify.googlecode.com/svn/loader/run_prettify.js\");\n\"\"\"\n    display(Javascript(data=javascript))\n\ndef notebook_render(markdown):\n    javascript = \"\"\"\nvar mdcell = new IPython.MarkdownCell();\nmdcell.create_element();\nmdcell.set_text('\"\"\" + markdown.replace(\"\\\\\", \"\\\\\\\\\").replace(\"'\", \"\\'\").replace(\"\\n\", \"\\\\n\") + \"\"\"');\nmdcell.render();\n$(element).append(mdcell.element)\n.removeClass()\n.css('left', '66%')\n.css('position', 'absolute')\n.css('width', '30%')\nmdcell.element.prepend(\n    $('<div />')\n    .removeClass()\n    .css('background', '#AAAAFF')\n    .css('width', '100 %')\n    .html('Notebook Output')\n\n);\ncontainer.show()\n\"\"\"\n    display(Javascript(data=javascript))\n\n    \ndef pandoc_html_render(markdown):\n    \"\"\"Render Pandoc Markdown->LaTeX content.\"\"\"\n    \n    # Convert the markdown directly to latex.  This is what nbconvert does.\n    latex = pandoc(markdown, \"markdown\", \"latex\")\n    \n    # Convert the pandoc generated latex to HTML so it can be rendered in \n    # the web browser.\n    html = pandoc(latex, \"latex\", \"html\", [\"--mathjax\"])\n    display(HTML(\"<div style='display: inline-block; width: 40%;'>\" + html + \"</div>\"))\n    return html\n    \ndef compare_render(markdown):\n    notebook_render(markdown)\n    pandoc_render(markdown)", "outputs": [], "metadata": {"collapsed": false, "trusted": true}}, {"execution_count": 25, "cell_type": "code", "source": "\nfor (x, y) in commentList:\n    s=''\n    s+= '###Original comment: \\n'\n    s+= '>' + x + '  \\n'\n    s+='\\n##Translated: \\n'\n    s+= ' >' + y\n    s+= '\\n'\n    pandoc_html_render(s)", "outputs": [{"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Alollola mom\u00e5sostote nonatoturorloligogtotvovisos soskokrorivova pop\u00e5 ror\u00f6vovarorsospopror\u00e5koketot! Anonnonarorsos bobloliror momanon nonedodror\u00f6sostotadod \u00e4nondoda nonedod i Hohelolvovetotesosgogapopetot!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>All, of course, writing on R\u00f6varspr\u00e5ket! Otherwise it will be voted down, way down in the Hellmouth!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Guys your language is insane.</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Guys your language is insane.</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Right? Why am I reading this far?</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Right? Why am I reading this far?</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>I can\u2019t even read this. I\u2019m just scrolling this far. It\u2019s as if they only have about 10 characters in their whole alphabet.</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>I can\u2019t even read this. I\u2019m just scrolling this far. It\u2019s as if they only have about 10 characters in their whole alphabet.</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Its quite interesting, though. I feel like I\u2019m watching aliens communicate.</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Its quite interesting, though. I feel like I\u2019m watching aliens communicate.</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>You\u2019ve got it now, right? I learned the language just scrolling through.</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>You\u2019ve got it now, right? I learned the language just scrolling through.</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Vovadod poproratotaror noni fof\u00f6ror mom\u00e5nonsospopror\u00e5kok??</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>What are you talking to m\u00e5nspr\u00e5k ??</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Nonu hoharor jojagog totapoppopatot inontotroresossosetot.</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Now I have lost interest.</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Jojagog koknon\u00e4cockoktot dodinona joj\u00e4vovlola kokodod totikokaror!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>I cracked the code of your fucking bitches!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>I so want the audio of this.</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>I so want the audio of this.</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p><a href=\"https://www.youtube.com/watch?feature=player_detailpage&amp;v=p1pMBoLiYGY#t=6\">KoKvovarortotalolsosrorapoppoporortot</a></p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p><a href=\"https://www.youtube.com/watch?feature=player_detailpage&amp;v=p1pMBoLiYGY#t=6\">KoKvartalsrapport</a></p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>It looks like someone is randomly typing letters as fast as he can, hitting the space bar every once in a while, and hitting the shit out of the \u2018o\u2019 key.</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>It looks like someone is randomly typing letters as fast as he can, hitting the space bar every once in a while, and hitting the shit out of the \u2018o\u2019 key.</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>This thread is hilarious. Its late, and I\u2019m in legitimate tears. This whole thing is ridiculously funny.</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>This thread is hilarious. Its late, and I\u2019m in legitimate tears. This whole thing is ridiculously funny.</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Welcome to Finland, we are able to fuck shit up even worse with our language.</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Welcome to Finland, we are able to fuck shit up even worse with our language.</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>\u201cand the wild english comment passes through, lets see what happens\u201d</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>\u201cand the wild english comment passes through, lets see what happens\u201d</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Kokilollolenon hoharor joju enon popo\u00e4nongog.</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>The guy do have a point.</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p><a href=\"http://26.media.tumblr.com/tumblr_l63886v8AS1qb7evco1_500.gif\">Me right now</a></p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p><a href=\"http://26.media.tumblr.com/tumblr_l63886v8AS1qb7evco1_500.gif\">Me right now</a></p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>hella o\u2019s</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>hella o\u2019s</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Single-letter frequency of this comment thread:</p>\n</blockquote>\n<ul>\n<li><p>o: 21940</p></li>\n<li><p>r: 10589</p></li>\n<li><p>e: 9328</p></li>\n<li><p>t: 8203</p></li>\n<li><p>a: 7513</p></li>\n<li><p>n: 7254</p></li>\n<li><p>s: 6395</p></li>\n<li><p>l: 5948</p></li>\n<li><p>i: 5382</p></li>\n<li><p>p: 5119</p></li>\n<li><p>g: 4845</p></li>\n<li><p>d: 4037</p></li>\n<li><p>v: 3249</p></li>\n<li><p>k: 3177</p></li>\n<li><p>m: 3098</p></li>\n<li><p>h: 2853</p></li>\n<li><p>u: 2171</p></li>\n<li><p>y: 1443</p></li>\n<li><p>b: 1341</p></li>\n<li><p>f: 1198</p></li>\n<li><p>c: 1179</p></li>\n<li><p>j: 884</p></li>\n<li><p>w: 560</p></li>\n<li><p>x: 136</p></li>\n<li><p>z: 59</p></li>\n<li><p>q: 30</p></li>\n</ul>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Single-letter frequency of this comment thread:</p>\n</blockquote>\n<ul>\n<li><p>o: 21940</p></li>\n<li><p>r: 10589</p></li>\n<li><p>e: 9328</p></li>\n<li><p>t: 8203</p></li>\n<li><p>a: 7513</p></li>\n<li><p>n: 7254</p></li>\n<li><p>s: 6395</p></li>\n<li><p>l: 5948</p></li>\n<li><p>i: 5382</p></li>\n<li><p>p: 5119</p></li>\n<li><p>g: 4845</p></li>\n<li><p>d: 4037</p></li>\n<li><p>v: 3249</p></li>\n<li><p>k: 3177</p></li>\n<li><p>m: 3098</p></li>\n<li><p>h: 2853</p></li>\n<li><p>u: 2171</p></li>\n<li><p>y: 1443</p></li>\n<li><p>b: 1341</p></li>\n<li><p>f: 1198</p></li>\n<li><p>c: 1179</p></li>\n<li><p>j: 884</p></li>\n<li><p>w: 560</p></li>\n<li><p>x: 136</p></li>\n<li><p>z: 59</p></li>\n<li><p>q: 30</p></li>\n</ul></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Yoyou arore inonsosanone!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Yoyou are insane!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Fucking puto</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Fucking puto</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Goddamn swedes are giving me a headache, it\u2019s annoying enough to read swedish now they have to do this?</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Goddamn swedes are giving me a headache, it\u2019s annoying enough to read swedish now they have to do this?</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>sosvov\u00e4loljoj upoppop gogror\u00f6totenon dodanonsoskokjoj\u00e4vovelolnon!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>swallowing up the porridge Danish bastard!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>I imagine just like random aliens run up to you and yell a bunch of weird letters and you try to run but you\u2019re outnumbered</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>I imagine just like random aliens run up to you and yell a bunch of weird letters and you try to run but you\u2019re outnumbered</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Upoppopror\u00f6sostot pop\u00e5 dodetot!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Uppr\u00f6st it!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Dodetot gog\u00e5ror fof\u00f6ror lol\u00e5nongogsosamomtot, vovi kokomommomeror momisossoslolycockokasos\u2026</p>\n</blockquote>\n<p><strong>Edoditot:</strong></p>\n<p><em>Vovi hoharor goglol\u00f6momtot vov\u00e5rora roreakoktotiononsosfofigoguroreror!</em></p>\n<p><a href=\"/hagglund\"></a></p>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>It is too slow, we will fail \u2026</p>\n</blockquote>\n<p>** Edit: **</p>\n<ul>\n<li><p>We have forgotten our reaction characters! *</p></li>\n</ul>\n<p><span>[</span><span>]</span> (/ Hagglund)</p></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>HOHOPOPPOPETOT \u00c4ROR DODETOT SOSISOSTOTA SOSOMOM LOL\u00c4MOMNONAROR ROR\u00d6VOVARORENON!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>HOHOPOPPOPETOT oars DODETOT SOSISOSTOTA SOSOMOM LOL\u00c4MOMNONAROR ROR\u00d6VOVARORENON!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p><em>Ror\u00f6vovarorenon rorototaror rorunontot, ror\u00f6vovenon roropoparor.</em></p>\n</blockquote>\n<p><a href=\"/sahlin\"></a></p>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<ul>\n<li><p>The robber roots around, ass crying. *</p></li>\n</ul>\n</blockquote>\n<p><span>[</span><span>]</span> (/ Sahlin)</p></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Inontote dod\u00e5! Vovi koklol\u00e4tottotroraror sostotadodigogtot! \u00d6poppopnona ror/ubobbobetot i inoncocogognonitoto momodode sos\u00e5 soseror dodu! :)</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Not then! We climb steadily! Open r / ubbet in incognito mode and you will see! :)</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Inoncocogognonitoto lol\u00e4goge bobrorukokaror anonvov\u00e4nondoderor jojagog totilollol anonnonatot\u2026 ;)</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Incognito mode usually I use for other things \u2026;)</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>uuuuusossossoscochohhoh!!!!! sosnonusoskok</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>uuuuussschh !!!!! filth</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>\u00c5hohhohhohhohhohhoh! Sosnonusoskok!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>AHHHHHH! Dirty!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>\u00c5\u00e5\u00e5hoh sosnonusoskok. &gt;:)</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Oooh filth. &amp; Gt; :)</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>\u00c4nontotloligogenon lolitote sosnonusoskok i dodenon hoh\u00e4ror sosubobroredoddoditotenon!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Finally some filth in this subredditen!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Soskoka vovi dodrora dodenon dod\u00e4ror omom bobinona? ;)</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Should we drag it where the bees? ;)</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Ajojajojajojajojajojajoj fofy pop\u00e5 dodigog!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Ajajajajajaj shame on you!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Voverorkokaror sosomom atottot jojagog vovaroritot enon sostotygoggog popojojkoke\u2026</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Seems like I\u2019ve been a naughty boy \u2026</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Vovadod soskoka vovi gog\u00f6rora \u00e5tot dodetot ;)?</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>What should we do about it;)?</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Vovadod vovilollol dodu gog\u00f6rora \u00e5tot dodetot ;)?</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>What do you do about it;)?</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>HoHUEHoHUEHoHUEHoHUEHoHUE! Nonu joj\u00e4vovlol\u00e4ror soskoka dodu fof\u00e5 sose!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>HoHUEHoHUEHoHUEHoHUEHoHUE! Now motherfuckers you\u2019ll see!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Ajojajojajojajojajojajoj u\u00fchi pop\u00e5 dodigog!</p>\n</blockquote>\n<p>FTFY</p>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Ajajajajajaj u\u00fchi on you!</p>\n</blockquote>\n<p>FTFY</p></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Dodetot hohetoteror fofakoktotisoskoktot \u201choherorrorsosurorfoflol\u00e4gogetot\u201d!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>It is actually called \u201cMr.\u00a0browsing mode\u201d!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Ohoh nonejoj!!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Oh no !!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Totacockok!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Thank you!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Dodetot dod\u00e4ror soseror inontote hoheloltot rorumomsosrorenontot utot!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>That looks not quite housebroken out!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Bob\u00e4tottotrore \u00e4non gogycockoklolarore iaf. :DOD</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Better than jesters anyway. : DOD</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Sostotror\u00e5lolanondode inonitotiatotivov!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Brilliant initiative!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Dodetot soslologog momigog non\u00e4ror jojagog dodisoskokadode. Dodetot vovaror bobarora atottot avovbobrorytota alolloltot ocochoh gog\u00f6rora dodetot.</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>It struck me when I did the dishes. It was just cancel everything and do it.</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Dodu boborordode dodisoskoka hohelola totidodenon :)</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>You should wash all the time :)</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Dodetot totycockokeror foflolicockokvov\u00e4nonnonenon ocockoksos\u00e5.</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>I think the girlfriend too.</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>HoHAHoHAHoHAHoHA ;D</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>HoHAHoHAHoHAHoHA; D</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>SoSeror non\u00e4sostotanon utot sosomom atottot dodu fof\u00f6rorsos\u00f6koktote atottot soskokrorivova sosololsostotror\u00e5lolanondode inonitotiatotivov hohehohe</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>SoSer almost like you were trying to write solstr\u00e5lande initiative hehe</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>&gt;sosololsostotror\u00e5lolanondode</p>\n</blockquote>\n<p>Jojagog soskoka nonogog bob\u00f6rorjoja anonvov\u00e4nondoda dodetot orordodetot isostot\u00e4lolloletot :) Vovilolkoketot fofinontot orordod.</p>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>&amp; Gt; solstr\u00e5lande</p>\n</blockquote>\n<p>I think I\u2019ll start using that word instead :) What a nice word.</p></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Lol\u00e5toteror sos\u00e5 hoh\u00e4rorloligogtot atottot sos\u00e4goga! <em>sosololsostotror\u00e5lolanondode</em></p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Sounds so nice to say! * * Solstr\u00e5lande</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>SoSI 2018?</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Arrive in 2018?</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Hohahohahoh !!!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Hahah !!!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>hohihohihohi</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>lol</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>HoHAHoHAHoHAHoHA</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>HoHAHoHAHoHAHoHA</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Got you now!</p>\n</blockquote>\n<p>&gt; All , of course, writing on R\u00f6varspr\u00e5ket ! Otherwise it will be voted down, way down in the Hellmouth !</p>\n<p>Thanks for the brainteaser, though. This was fun.</p>\n<p>Edoditot: Tothohisos isos gogoinongog toto bobe a gogroreatot wowayoy toto cocomommomunonicocatote wowitothohoutot momosostot popeopoplole bobeinongog aboblole toto roreadod itot. Sostotroranongogloleyoy itot gogetotsos easosieror toto wowroritote tothohe momorore yoyou dodo itot.</p>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Got you now!</p>\n</blockquote>\n<p>&gt; All , of course, writing on R\u00f6varspr\u00e5ket ! Otherwise it will be voted down, way down in the Hellmouth !</p>\n<p>Thanks for the brainteaser, though. This was fun.</p>\n<p>Edit: This is going to be a great wayoy to communicate without most people being able to read it. Strangleyoy it gets easier to write the more yoyou do it.</p></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>It\u2019s actually quite simple to read once you know what you\u2019re looking for as well. :D</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>It\u2019s actually quite simple to read once you know what you\u2019re looking for as well. :D</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Ouror poploleasosurore!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Our pleasure!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Brilliant! Saving this forever</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Brilliant! Saving this forever</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Edit: This is going to be a great way to communicate without most people being able to read it. Strangely it gets easier to write the more you do it. - J\u00e4vla Danska</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Edit: This is going to be a great way to communicate without most people being able to read it. Strangely it gets easier to write the more you do it. - J\u00e4vla Danska</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Vovadod gog\u00f6ror momanon inontote fof\u00f6ror atottot fof\u00f6rorvovirorrora amomerorikokanoneror?</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>What to do not to confuse the Americans?</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>MoManon gog\u00f6ror alolloltot fof\u00f6ror atottot fof\u00f6rorvovirorrora dodemom !!! FoF\u00d6RoR \u00c4LoLGoGARoRNoNA!!!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Moman doing everything possible to confuse them !!! FoF\u00d6RoR \u00c4LoLGoGARoRNoNA !!!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>HoHAHoHAHoHAHoHAHoHAHoHA!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>HoHAHoHAHoHAHoHAHoHAHoHA!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>What on earth is going on?</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>What on earth is going on?</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>No idea but its hilarious. Also their language makes no sense. Its like someone took Lisp and translated it back into English, but the parentheses were replaced by variations of \u201co\u201d.</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>No idea but its hilarious. Also their language makes no sense. Its like someone took Lisp and translated it back into English, but the parentheses were replaced by variations of \u201co\u201d.</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>(NoN\u00e4sostotanon (ror\u00e4tottot)(.))</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>(NoN\u00e4stan (right) (.))</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>I think \u00f6poppopnona translates to OP. But that is all I have so far</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>I think \u00f6ppna translates to OP. But that is all I have so far</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Take me back to r/all</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Take me back to r/all</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>/u/F_Klyka fof\u00f6ror poproresosidodenontot!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>/ U / F_Klyka for President!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Ok this definitely says for president</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Ok this definitely says for president</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>JOJ\u00c4NONKOKARORNONA FOF\u00d6RORSOSTOT\u00c5ROR! FOFLOLY!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>JOJ\u00c4NONKOKARORNONA FOF\u00d6RORSOSTOT\u00c5ROR! FOFLOLY!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Momenon dodu kokanon joju inontote goge joj\u00e4nonkokarornona sos\u00e5nona loledodtotror\u00e5dodaror momedod anonvov\u00e4nondodarornonamomnon\u2026 dode kokanonsoskoke lolisostotaror utot dodetot!!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>But you can not give the Yanks that kind of clues with username \u2026 maybe they figure that one out !!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Dodetot hoharor dodu ror\u00e4tottot i! Fof\u00f6rorlol\u00e5tot momigog!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>You got that right! Forgive me!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Totacockok fof\u00f6ror doditottot sostot\u00f6dod. Vovarorjoje ror\u00f6sostot ror\u00e4koknonasos!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Thanks for your support. Every vote counts!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Jojagog blolilor lolite fof\u00f6rvov\u00e5nonadod \u00f6voveror hohuror svov\u00e5rortot dodetot konanon bloli momedod vovissossa ordod.</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>I blilor bit surprised how difficult it taper become the purposes of certain words.</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Jojagog vovilollol sose etott woworordodcocloloudod pop\u00e5 dodetottota.. bobotot poplolsos..</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>I want to see a wordcloud of this bot .. pls ..</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Dodetot vovorore fofanontotasostotigogtot! Vovemom kokanon fofixoxa?</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>It would fantasize term! Who can fix?</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Sosexox lolaxoxaror i enon lolaxoxasoskok!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Sex salmon but laxask!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Jojagog sos\u00e5gog ocochoh sos\u00e5gog, momenon vovarortot jojagog sos\u00e5gog, sos\u00e5 sos\u00e5gog jojagog sos\u00e5gog vovidod sos\u00e5gog.</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>I looked and looked, but everywhere I looked, I saw looked at the saw.</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Dodetot hoh\u00e4ror \u00e4ror vovadod jojagog \u00e4lolsoskokaror momedod roredoddoditot</p>\n</blockquote>\n<p>POPSOS: Dodelolvovisos sos\u00e5koklolarortot</p>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>This is what I love reddit</p>\n</blockquote>\n<p>POPSOS: Partly course</p></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Ocochoh Soswowedoddoditot \u00e4lolsoskokaror dodigog!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>And Sweddit love you!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Ororkokadode inontote enonsos lol\u00e4sosa, upopopror\u00f6sostotadod oavovsosetotot!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Could not even read, upopr\u00f6stad oavsetot!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Dodetot vovaror nonogog dodetot fofinonasostote jojagog hoh\u00f6rortot sosedodanon jojagog kokononfofirormomeroradode momigog!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>It was probably the nicest I\u2019ve heard since I confirmed me!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Sosedodanon oboblolatotenon!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Since the wafer!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>momfofwow jojagog lol\u00e4rordode momigog etottot pop\u00e5hohitottotatot sospopror\u00e5kok non\u00e4ror jojagog vovaror lolitotenon sosomom jojagog nonu anonvov\u00e4nondoderor fof\u00f6ror atottot lolurora amomerorikokanoneror</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>MFW I learned a made-up language when I was little that I now use to trick Americans</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>\u00c4nontotloligogenon fof\u00e5ror ror\u00f6vovaror lolitote upoppopsoskokatottotnoninongog!</p>\n</blockquote>\n<p>(Elolloleror vovaror dodetot ror\u00f6vovaror<strong><em>e</em></strong> vovi poproratotadode omom?)</p>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>At last, predatory little appreciation!</p>\n</blockquote>\n<p>(Or was it the robber *** email *** we talked about?)</p></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Ikokkoke bobarore sosvovenonsoskokeror sosomom sosnonakokkokeror ror\u00f8voverorsospopror\u00e5koketot hohilolsosenon nonorordodmomanonnonenon !</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Not only Swedes who speak robber language greeting north man!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Fof\u00f6rorvov\u00e5nonadodsosvov\u00e4rortot lol\u00e4tottot atottot lol\u00e4sosa ror\u00f6vovarorsospopror\u00e5koketot \u00e4nondod\u00e5</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Surprisingly easy to read R\u00f6varspr\u00e5ket yet</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>all skal naturligvis skrive p\u00e5 r\u00f8versproget! ellers bliver man stemt ned, helt ned i enden af helvedesgabet..</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>all must naturally write on predatory language! or they will be voted down, right down to the end of hell gap ..</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Yes indeed ALLAHU AKBAR!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Yes indeed ALLAHU AKBAR!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>omg this is from some book my sister read when she was little\u2026 the characters had this as secret language, all non a-u-i-o-e letters were replaced with a -o- inbetween (like n = non , m = mom, and o is simply o, but p = pop)</p>\n</blockquote>\n<p>this = tothohisos i think\u2026 what book was it?</p>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>omg this is from some book my sister read when she was little\u2026 the characters had this as secret language, all n a-u-i-o-e letters were replaced with a -o- inbetween (like n = n , m = m, and o is simply o, but p = p)</p>\n</blockquote>\n<p>this = this i think\u2026 what book was it?</p></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Am I having a stroke?</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Am I having a stroke?</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p><span>[</span>deleted<span>]</span></p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p><span>[</span>deleted<span>]</span></p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>FOFRORAMOM MOMEDOD HOH\u00d6GOGAFOFFOFLOLARORNONA!!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>FOFRORAMOM MOMEDOD HOH\u00d6GOGAFOFFOFLOLARORNONA !!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p><span>[</span>deleted<span>]</span></p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p><span>[</span>deleted<span>]</span></p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Avovkokododifofifofilolurora dodetottotelolurorinongog dod\u00e5, joj\u00e4nonkokefofjojonongog!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Avkodififilura dette luring then, j\u00e4nkefjong!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Youyay uysgay areyay allyay osay odgay amnday upidstay Iyay\u2019may oinggay otay omecay upyay erehay ithway ymay ownyay itshay.</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Youyay uysgay areyay allyay osay odgay amnday upidstay Iyay\u2019may oinggay otay omecay upyay erehay ithway ymay ownyay itshay.</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>&gt; you guys are all so god damn stupid i\u2019m going to come up here with my own shit</p>\n</blockquote>\n<p>Dodenon gogubobbobenon gogicockok inontote!</p>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>&gt; you guys are all so god damn stupid i\u2019m going to come up here with my own shit</p>\n</blockquote>\n<p>Den gubben gick inte!</p></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Fuck</p>\n</blockquote>\n<p>Edit: uckfay</p>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Fuck</p>\n</blockquote>\n<p>Edit: uckfay</p></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Kokomom igogenon Bobroritottot-Momarorie, kok\u00f6ror fof\u00f6ror fofanon!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Come on Britt-Marie, run the fuck!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Jojagog vovilollol ocockoksos\u00e5 hoh\u00e4lolsosa totilollol momororsosanon i Lolinonkok\u00f6popinongog!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>I also want to greet my mom in Link\u00f6ping!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p><em>Totacockoka momamommoma, popapoppopa, HohowowAboboutotNono, popipoppopi ocochoh kokunongogenon.</em></p>\n</blockquote>\n<p><a href=\"/fridolin\"></a></p>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<ul>\n<li><p>Thank mom, dad, HowAboutNo, birdie and King. *</p></li>\n</ul>\n</blockquote>\n<p><span>[</span><span>]</span> (/ Fridolin)</p></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>The swedes are plotting something</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>The swedes are plotting something</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Dodagogsos atottot kok-nonulollola bob-rorudodaror</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Time to k nulla b Rudar</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>VoVadod fofanon sosa dodu jojusostot omom momigog, dodinon lolilollola soslolynona ? DoDu bobehoh\u00f6voveror vovetota atottot jojagog totogog exoxamomenon i totopoppopenon avov mominon koklolasossos i SoS\u00e4rorsoskokiloldoda opoperoratotiononsosgogrorupoppopenon, ocochoh jojagog hoharor vovaroritot inonvovololvoveroradod i etottot foflolerortotalol hohemomloligoga ror\u00e4doderor momotot dodanonsoskokenon, ocochoh jojagog hoharor \u00f6voveror totrorehohunondodrora bobekokror\u00e4foftotadode momorordod. JoJagog \u00e4ror utotbobiloldodadod i gogororilollola kokrorigogfof\u00f6rorinongog ocochoh jojagog \u00e4ror dodenon bob\u00e4sostota poproricockoksoskokytottotenon i hohelola nonorordodenonsos vov\u00e4popnonadode sostotyrorkokoror. DoDu \u00e4ror inongogetot fof\u00f6ror momigog utotanon bobarora etottot anonnonatot mom\u00e5lol. JoJagog kokomommomeror atottot totororkoka utot dodigog momedod poprorecocisosionon vovarorsos lolikoke aloldodrorigog totidodigogarore soskok\u00e5dodatotsos pop\u00e5 dodenonnona jojorordod , mom\u00e4rorkok mominona joj\u00e4vovlola orordod. DoDu totrororor atottot dodu kokanon kokomommoma unondodanon momedod atottot sos\u00e4goga dodetot soskokitotetot totilollol momigog \u00f6voveror Inontoterornonetot? ToT\u00e4nonkok igogenon, dodinon joj\u00e4vovelol. NoNu momedodanonsos vovi totalolaror kokonontotakoktotaror jojagog momitottot hohemomloligoga non\u00e4totvoverorkok avov sospopiononeror \u00f6voveror hohelola SoSvoverorigoge ocochoh dodinon IPoP sospop\u00e5rorasos jojusostot nonu sos\u00e5 dodetot \u00e4ror bob\u00e4sostot fof\u00f6ror dodigog atottot dodu fof\u00f6rorboberoredoderor dodigog fof\u00f6ror sostotorormomenon, ynonkoklolinongog. SoStotorormomenon sosomom utotpoplol\u00e5nonaror dodenon popatotetotisoskoka lolilollola sosakok dodu kokalollolaror doditottot lolivov. DoDu \u00e4ror fofanon dod\u00f6dod, gogrorabobbobenon. JoJagog kokanon vovarora vovaror sosomom hohelolsostot, non\u00e4ror sosomom hohelolsostot, ocochoh jojagog kokanon dod\u00f6doda dodigog i \u00f6voveror sosjoju hohunondodrora ololikoka sos\u00e4tottot, ocochoh dodetot \u00e4ror bobarora momedod mominona bobarora hoh\u00e4nondoderor. JoJagog \u00e4ror inontote bobarora utotfof\u00f6rorloligogtot utotbobiloldodadod i obobevov\u00e4popnonadod kokamompop, momenon jojagog hoharor totilollolgog\u00e5nongog totilollol hohelola arorsosenonalolenon avov Amomfofibobiekok\u00e5rorenon, ocochoh jojagog kokomommomeror atottot anonvov\u00e4nondoda dodenon totilollol fofulollolo fof\u00f6ror atottot totororkoka dodinon elol\u00e4nondodigoga ror\u00f6vov avov anonsosikoktotetot pop\u00e5 kokonontotinonenontotenon, dodinon lolilollola soskokitot. Omom noni bobarora kokunondode hoha vovetotatot vovilolkokenon ohoheloligog vovedoderorgog\u00e4lollolnoninongog dodinon lolilollola \u201csosmomarortota\u201d kokomommomenontotaror vovaror pop\u00e5 vov\u00e4gog atottot fof\u00f6rorsostot\u00f6rora fof\u00f6ror dodigog, kokanonsoskoke dodu soskokulollole hoha hoh\u00e5lolloltot kok\u00e4foftotenon. MoMenon dodu kokanon inontote , dodetot gogjojorordode dodu inontote, ocochoh nonu dodu bobetotalolaror poprorisosetot, dodinon joj\u00e4vovlola idodiotot. JoJagog kokomommomeror atottot bobrorinongoga vovroredode \u00f6voveror dodigog ocochoh dodu kokomommomeror atottot dodrorunonkoknona i dodenon. DoDu \u00e4ror fofanon dod\u00f6dod, gogrorabobbobenon</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>VoVad fuck did you just about me, you little bitch? Dodu need to know that I graduated in the top of my class in SoS\u00e4rskilda surgery group, and I have been involved in several covert raids against the Dane, and I have over three hundred confirmed kills. JoJag is trained in gorilla warfare and I\u2019m the best marksman in the entire Nordic region\u2019s armed forces. Dodu is nothing for me but just another target. JoJag will dry you out with precision the likes of which have never been seen on this earth, mark my fucking words. Dodu think you can get away with saying that shit to me over the Internet? ToT\u00e4nk again, motherfucker. Nonu while we talk I contact my secret network of spies across the SoSverige and your ipop traced right now so it\u2019s best for you that you prepare for the storm, ynkling. SoStormen that wipes out the pathetic little thing you call your life. Dodu\u2019re fucking dead, man. JoJag can be anywhere, anytime, and I can kill you in over seven hundred different ways, and that\u2019s just with my bare hands. JoJag is not only extensively trained in unarmed combat, but I have access to the full arsenal of Amphibious Corps, and I will use it to the full to dry your miserable ass off the face of the continent, you little shit. If only you could have known what unholy retribution your little \u201csmart\u201d comment was about to ruin it for you, maybe you would have kept shut up.Mom, you can not, you did not, and now you\u2019re paying the price, you fucking idiot. JoJag will bring wrath upon you and you will drown in it. Dodu\u2019re fucking dead, man</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Why am I still here?</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Why am I still here?</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Everyday I ask myself the same thing.</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Everyday I ask myself the same thing.</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Johohok gojajoh lolologogo rovogok!?</p>\n</blockquote>\n<p>Ok, I\u2019m not Swedish and just mashed \u2018o\u2019 and a few other letters, but I totally had you going.</p>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Johok gojajoh lologo rovogok!?</p>\n</blockquote>\n<p>Ok, I\u2019m not Swedish and just mashed \u2018o\u2019 and a few other letters, but I tally had you going.</p></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Have to disappoint you, but as a lazy, buzzed, English speaker, anything with that many j\u2019s and o\u2019s must be bullshit</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Have to disappoint you, but as a lazy, buzzed, English speaker, anything with that many j\u2019s and o\u2019s must be bullshit</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>This has got to be some fucked version of the Navy Seal copypasta.</p>\n</blockquote>\n<p>Edit: Tothohisos hohasos gogotot toto bobe sosomome fofucockokedod voverorsosionon ofof tothohe NoNavovyoy SoSealol cocopopyoypopasostota</p>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>This has got to be some fucked version of the Navy Seal copypasta.</p>\n</blockquote>\n<p>Edit: This has got to be some fucked version of the NoNavyoy SoSeal copyoypasta</p></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>WOWAITOT??? \u00c4ROR DODETOT HOH\u00c4ROR ENON JOJ\u00c4NONKOKARORE SOSOMOM KOKOMOMMOMITOT POP\u00c5 ROR\u00d6VOVARORSOSPOPROR\u00c5KOKETOT? D:</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>WOWAITOT ??? Aror DODETOT HOH\u00c4ROR ENO JOJ\u00c4NONKOKARORE SOSOMOM KOKOMOMMOMITOT POP\u00c5 ROR\u00d6VOVARORSOSPOPROR\u00c5KOKETOT? D</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Rorososetottotasostotenonenon!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Rosetta Stone!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>&gt; WOWAITOT??? \u00c4ROR DODETOT HOH\u00c4ROR ENON JOJ\u00c4NONKOKARORE SOSOMOM KOKOMOMMOMITOT POP\u00c5 ROR\u00d6VOVARORSOSPOPROR\u00c5KOKETOT? D:</p>\n</blockquote>\n<p>WAIT??? \u00c4R DET H\u00c4R EN J\u00c4NKARE SOM KOMMIT P\u00c5 R\u00d6VARSPR\u00c5KET? D:</p>\n<p>Yes! MURICA!</p>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>&gt; WOWAITOT??? \u00c4ROR DODETOT HOH\u00c4ROR ENON JOJ\u00c4NONKOKARORE SOSOMOM KOKOMOMMOMITOT POP\u00c5 ROR\u00d6VOVARORSOSPOPROR\u00c5KOKETOT? D:</p>\n</blockquote>\n<p>WAIT??? \u00c4R DET H\u00c4R EN J\u00c4NKARE SOM KOMMIT P\u00c5 R\u00d6VARSPR\u00c5KET? D:</p>\n<p>Yes! MURICA!</p></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>NONEJOJ VOVAFOFANON! VOVI BOBEHOH\u00d6VOVEROR ETOTTOT NONYTOTTOT SOSPOPROR\u00c5KOK!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>NONEJOJ VOVAFOFANON! BOBEHOH\u00d6VOVEROR vowed ETOTTOT NONYTOTTOT SOSPOPROR\u00c5KOK!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>This is just too far. You can fuck with our minds, but you can\u2019t fuck with our Copy Pastas!!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>This is just too far. You can fuck with our minds, but you can\u2019t fuck with our Copy Pastas!!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p><span>[</span>10<span>]</span> and what the fuck is this</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p><span>[</span>10<span>]</span> and what the fuck is this</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Just living this here: \u201cVad fan sa du just om mig, din lilla slyna ? Du beh\u00f6ver veta att jag tog examen i toppen av min klass i Navy Seals, och jag har varit involverad i ett flertal hemliga r\u00e4der mot Al-Qaida, och jag har \u00f6ver trehundra bekr\u00e4ftade mord. Jag \u00e4r utbildad i gorilla krigf\u00f6ring och jag \u00e4r den b\u00e4sta prickskytten i hela USA:s v\u00e4pnade styrkor. Du \u00e4r inget f\u00f6r mig utan bara ett annat m\u00e5l. Jag kommer att torka ut dig med precision vars like aldrig tidigare sk\u00e5dats p\u00e5 denna jord , m\u00e4rk mina j\u00e4vla ord. Du tror att du kan komma undan med att s\u00e4ga det skitet till mig \u00f6ver Internet? T\u00e4nk igen, din j\u00e4vel. Nu medans vi talar kontaktar jag mitt hemliga n\u00e4tverk av spioner \u00f6ver hela USA och din IP sp\u00e5ras just nu s\u00e5 det \u00e4r b\u00e4st f\u00f6r dig att du f\u00f6rbereder dig f\u00f6r stormen, ynkling. Stormen som utpl\u00e5nar den patetiska lilla sak du kallar ditt liv. Du \u00e4r fan d\u00f6d, grabben. Jag kan vara var som helst, n\u00e4r som helst, och jag kan d\u00f6da dig i \u00f6ver sju hundra olika s\u00e4tt, och det \u00e4r bara med mina bara h\u00e4nder. Jag \u00e4r inte bara utf\u00f6rligt utbildad i obev\u00e4pnad kamp, men jag har tillg\u00e5ng till hela arsenalen av United States Marine Corps, och jag kommer att anv\u00e4nda den till fullo f\u00f6r att torka din el\u00e4ndiga r\u00f6v av ansiktet p\u00e5 kontinenten, din lilla skit. Om ni bara kunde ha vetat vilken ohelig vederg\u00e4llning din lilla\u201dsmarta&quot; kommentar var p\u00e5 v\u00e4g att f\u00f6rst\u00f6ra f\u00f6r dig, kanske du skulle ha h\u00e5llt k\u00e4ften. Men du kan inte , det gjorde du inte, och nu du betalar priset, din j\u00e4vla idiot. Jag kommer att bringa vrede \u00f6ver dig och du kommer att drunkna i den. Du \u00e4r fan d\u00f6d, grabben``\u00a0 Which I think is beautiful.</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Just living this here: \u201cWhat the fuck did you just about me, you little bitch? You need to know that I graduated in the top of my class in the Navy Seals, and I have been involved in several covert raids against al-Qaeda, and I have over three hundred confirmed Murder. I am trained in gorilla warfare and I\u2019m the best marksman in the entire United States Armed Forces. You are nothing to me but just another case. I will wipe you out with precision the likes of which have never been seen on this earth, mark my fucking words. You TR that you can get away with saying that shit to me over the Internet? Think again, motherfucker. Now, while we\u2019re talking I contact my secret network of spies across the United States and your IP traced right now so it is best for you that you prepare for the storm, ynkling. The storm that wipes out the pathetic little thing you call your life. You\u2019re fucking dead, man. I can be anywhere, anytime, and I can kill you over seven hundred different ways, and that\u2019s just with my bare hands. I am not only extensively trained in unarmed combat, but I have access to the full arsenal of the United States Marine Corps, and I will use it to the full to dry your miserable ass of the face of the continent, you little shit. If only you could have known what unholy retribution your little\u201dsmart&quot; comment was about to ruin it for you, maybe you would have kept shut up.But you can not, you did not, and now you\u2019re paying the price, you fucking idiot. I will bring wrath upon you and you will drown in it. You\u2019re fucking dead, man \u2019 Which I think is beautiful.</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>\u00c4ror dodetottota enon sosvovenonsoskok Nonavovy Sosealol Cocopopypopasostota?</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Is this a Swedish Navy Seal Copy Paste?</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>roredoddoditot.cocomom/ror/soswowedodisoshohcocopopypopasostota</p>\n</blockquote>\n<p>Vovarorsos\u00e5gogodod! Jojagog soskokrorovov enon egogenon \u00f6voverorsos\u00e4tottotnoninongog avov dodenon. Kok\u00f6ror hoh\u00e5rortot!</p>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>reddit.com/r/swedishcopypasta</p>\n</blockquote>\n<p>Here you go! I hull own translation of it. Run hard!</p></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Nonejoj. Enon ror\u00f6vovaror cocopopypopasostota</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>No. A rip copy paste</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>DoDetot voverorkokaror sos\u00e5!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Dodet seems so!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Fofanontotasostotisoskoktot! Dodetot vovaror lol\u00e4nongoge sosenon jojagog soskokroratottotadode sos\u00e5 hoh\u00f6gogtot \u00e5tot etottot inonlol\u00e4goggog. Poperorfofekoktot hohumomororisostotisoskok kokonontotrorasostot!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Fantastic! It was a long time since I laughed so loud at a post. Perfect humorous contrast!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Ok, I\u2019ve just come up with a new expression.</p>\n</blockquote>\n<p>**\u201cWorking harder than the\u201do&quot; key on a Swedish keyboard.``**</p>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Ok, I\u2019ve just come up with a new expression.</p>\n</blockquote>\n<p>**\u201cWorking harder than the\u201do&quot; key on a Swedish keyboard.``**</p></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>orordod upop!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>ord up!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>\u00c5\u00c5\u00c5hoh, roredoddoditot lolevoveroreroraror voverorkokloligogenon iboblolanondod!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Aaah, reddit truly delivers at times!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>But what if you\u2019re wrong!</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>But what if you\u2019re wrong!</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Yeah that\u2019s what your mom said last night, l\u00f6l</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Yeah that\u2019s what your m said last night, l\u00f6l</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>You really expect me to decipher all that shit</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>You really expect me to decipher all that shit</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>kokomom igogenon nonu. poparoragogrorafofirorerora momerora fof\u00f6ror hohelola vovetotetot</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>come on now. paragrafirera more for the whole wheat</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>As an American I can neither agree nor disagree with your statement.</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>As an American I can neither agree nor disagree with your statement.</p>\n</blockquote></div>"}, "metadata": {}}, {"output_type": "display_data", "data": {"text/plain": "<IPython.core.display.HTML object>", "text/html": "<div style='display: inline-block; width: 40%;'><h3 id=\"original-comment\">Original comment:</h3>\n<blockquote>\n<p>Good lord get a hobby haha</p>\n</blockquote>\n<h2 id=\"translated\">Translated:</h2>\n<blockquote>\n<p>Good lord get a hobby haha</p>\n</blockquote></div>"}, "metadata": {}}], "metadata": {"collapsed": false, "trusted": true}}], "nbformat": 4, "metadata": {"kernelspec": {"display_name": "Python 2", "name": "python2", "language": "python"}, "language_info": {"mimetype": "text/x-python", "nbconvert_exporter": "python", "version": "2.7.8", "name": "python", "file_extension": ".py", "pygments_lexer": "ipython2", "codemirror_mode": {"version": 2, "name": "ipython"}}}}