Created
April 3, 2013 11:21
-
-
Save vals/5300376 to your computer and use it in GitHub Desktop.
Escape from /dev/null IPython Notebook
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"metadata": { | |
"name": "dev null" | |
}, | |
"nbformat": 3, | |
"worksheets": [ | |
{ | |
"cells": [ | |
{ | |
"cell_type": "markdown", | |
"source": [ | |
"Python version of sorting challange" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": true, | |
"input": [ | |
"l = [ ", | |
"\t{\"foo\":4711},", | |
"\t{\"foo\":17},", | |
"\t{\"foo\":42},", | |
"\t{\"foo\":9},", | |
"\t{\"foo\":512}", | |
"]" | |
], | |
"language": "python", | |
"outputs": [], | |
"prompt_number": 6 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"def sorted_list(l):", | |
" foopicker = lambda x: x[\"foo\"]", | |
" return sorted(l, key=foopicker, reverse=True)" | |
], | |
"language": "python", | |
"outputs": [], | |
"prompt_number": 9 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"sorted_list(l)" | |
], | |
"language": "python", | |
"outputs": [ | |
{ | |
"output_type": "pyout", | |
"prompt_number": 10, | |
"text": [ | |
"[{'foo': 4711}, {'foo': 512}, {'foo': 42}, {'foo': 17}, {'foo': 9}]" | |
] | |
} | |
], | |
"prompt_number": 10 | |
}, | |
{ | |
"cell_type": "markdown", | |
"source": [ | |
"Dynamically calling functions" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": true, | |
"input": [ | |
"def output_xml(data):", | |
" print \"xml: \" + data" | |
], | |
"language": "python", | |
"outputs": [], | |
"prompt_number": 21 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": true, | |
"input": [ | |
"def output(data, fmt=\"xml\"):", | |
" try:", | |
" globals()[\"output_\" + fmt](data)", | |
" except NameError:", | |
" print(\"Undefined format: \" + fmt)" | |
], | |
"language": "python", | |
"outputs": [], | |
"prompt_number": 24 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"output(\"2\", \"xml\")" | |
], | |
"language": "python", | |
"outputs": [ | |
{ | |
"output_type": "stream", | |
"stream": "stdout", | |
"text": [ | |
"xml: 2" | |
] | |
} | |
], | |
"prompt_number": 25 | |
}, | |
{ | |
"cell_type": "markdown", | |
"source": [ | |
"Input power of two" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": true, | |
"input": [ | |
"power_of_two = lambda n: (len(bin(n).split(\"1\")) == 2)" | |
], | |
"language": "python", | |
"outputs": [], | |
"prompt_number": 51 | |
}, | |
{ | |
"cell_type": "markdown", | |
"source": [ | |
"Next largest" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"def find_largest" | |
], | |
"language": "python", | |
"outputs": [ | |
{ | |
"output_type": "pyout", | |
"prompt_number": 35, | |
"text": [ | |
"['', '0', 'b0']" | |
] | |
} | |
], | |
"prompt_number": 35 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"bin(0)" | |
], | |
"language": "python", | |
"outputs": [ | |
{ | |
"output_type": "pyout", | |
"prompt_number": 50, | |
"text": [ | |
"'0b0'" | |
] | |
} | |
], | |
"prompt_number": 50 | |
}, | |
{ | |
"cell_type": "markdown", | |
"source": [ | |
"Factoring" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": true, | |
"input": [ | |
"import sys", | |
"A = sys.maxint // 1000" | |
], | |
"language": "python", | |
"outputs": [], | |
"prompt_number": 112 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": true, | |
"input": [ | |
"def isprime(n):", | |
" for x in xrange(2, int(n ** 0.5 + 1)):", | |
" if not n % x:", | |
" return False", | |
" return True" | |
], | |
"language": "python", | |
"outputs": [], | |
"prompt_number": 119 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"def highest_prime_factor(n):", | |
" if isprime(n):", | |
" return n", | |
" for x in xrange(2, int(n ** 0.5 + 1)):", | |
" if not n % x:", | |
" return highest_prime_factor(n/x)" | |
], | |
"language": "python", | |
"outputs": [], | |
"prompt_number": 120 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"highest_prime_factor(A)" | |
], | |
"language": "python", | |
"outputs": [ | |
{ | |
"output_type": "pyout", | |
"prompt_number": 121, | |
"text": [ | |
"41024672687" | |
] | |
} | |
], | |
"prompt_number": 121 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"highest_prime_factor(26)" | |
], | |
"language": "python", | |
"outputs": [ | |
{ | |
"output_type": "pyout", | |
"prompt_number": 124, | |
"text": [ | |
"13" | |
] | |
} | |
], | |
"prompt_number": 124 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"A / 41024672687" | |
], | |
"language": "python", | |
"outputs": [ | |
{ | |
"output_type": "pyout", | |
"prompt_number": 122, | |
"text": [ | |
"224825" | |
] | |
} | |
], | |
"prompt_number": 122 | |
}, | |
{ | |
"cell_type": "markdown", | |
"source": [ | |
"Flatten a list of lists" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": true, | |
"input": [ | |
"L = [1, 2, \"a\", \"b\", (\"c\", 3, \"d\"), [\"e\", \"f\", \"g\", 3.14], ([\"y\", 4], (\"z\", 5))]" | |
], | |
"language": "python", | |
"outputs": [], | |
"prompt_number": 125 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"L" | |
], | |
"language": "python", | |
"outputs": [ | |
{ | |
"output_type": "pyout", | |
"prompt_number": 126, | |
"text": [ | |
"[1, 2, 'a', 'b', ('c', 3, 'd'), ['e', 'f', 'g', 3.14], (['y', 4], ('z', 5))]" | |
] | |
} | |
], | |
"prompt_number": 126 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": true, | |
"input": [ | |
"from itertools import chain" | |
], | |
"language": "python", | |
"outputs": [], | |
"prompt_number": 127 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"for i in chain(L):", | |
" print i" | |
], | |
"language": "python", | |
"outputs": [ | |
{ | |
"output_type": "stream", | |
"stream": "stdout", | |
"text": [ | |
"1", | |
"2", | |
"a", | |
"b", | |
"('c', 3, 'd')", | |
"['e', 'f', 'g', 3.14]", | |
"(['y', 4], ('z', 5))" | |
] | |
} | |
], | |
"prompt_number": 132 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": true, | |
"input": [ | |
"chain?" | |
], | |
"language": "python", | |
"outputs": [], | |
"prompt_number": 133 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": true, | |
"input": [ | |
"from collections import Iterable" | |
], | |
"language": "python", | |
"outputs": [], | |
"prompt_number": 134 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"for item in L:", | |
" if isinstance(item, Iterable): and not isinstance(item, basestring):", | |
" yield nested" | |
], | |
"language": "python", | |
"outputs": [ | |
{ | |
"ename": "SyntaxError", | |
"evalue": "invalid syntax (<ipython-input-137-1c879ca97fc5>, line 2)", | |
"output_type": "pyerr", | |
"traceback": [ | |
"\u001b[0;36m File \u001b[0;32m\"<ipython-input-137-1c879ca97fc5>\"\u001b[0;36m, line \u001b[0;32m2\u001b[0m\n\u001b[0;31m if isinstance(item, Iterable): and not isinstance(item, basestring):\u001b[0m\n\u001b[0m ^\u001b[0m\n\u001b[0;31mSyntaxError\u001b[0m\u001b[0;31m:\u001b[0m invalid syntax\n" | |
] | |
} | |
], | |
"prompt_number": 137 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": true, | |
"input": [ | |
"basestring?" | |
], | |
"language": "python", | |
"outputs": [], | |
"prompt_number": 136 | |
}, | |
{ | |
"cell_type": "markdown", | |
"source": [ | |
"Thread safe text file" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": true, | |
"input": [ | |
"class ts_file(file):", | |
" def __init__(filename):", | |
" self.f = open(filename)", | |
" ", | |
" def close():", | |
" self.f.close()" | |
], | |
"language": "python", | |
"outputs": [], | |
"prompt_number": 138 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"import threading" | |
], | |
"language": "python", | |
"outputs": [], | |
"prompt_number": 140 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": true, | |
"input": [ | |
"threading.Lock?" | |
], | |
"language": "python", | |
"outputs": [], | |
"prompt_number": 141 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"dir(file)" | |
], | |
"language": "python", | |
"outputs": [ | |
{ | |
"output_type": "pyout", | |
"prompt_number": 142, | |
"text": [ | |
"['__class__',", | |
" '__delattr__',", | |
" '__doc__',", | |
" '__enter__',", | |
" '__exit__',", | |
" '__format__',", | |
" '__getattribute__',", | |
" '__hash__',", | |
" '__init__',", | |
" '__iter__',", | |
" '__new__',", | |
" '__reduce__',", | |
" '__reduce_ex__',", | |
" '__repr__',", | |
" '__setattr__',", | |
" '__sizeof__',", | |
" '__str__',", | |
" '__subclasshook__',", | |
" 'close',", | |
" 'closed',", | |
" 'encoding',", | |
" 'errors',", | |
" 'fileno',", | |
" 'flush',", | |
" 'isatty',", | |
" 'mode',", | |
" 'name',", | |
" 'newlines',", | |
" 'next',", | |
" 'read',", | |
" 'readinto',", | |
" 'readline',", | |
" 'readlines',", | |
" 'seek',", | |
" 'softspace',", | |
" 'tell',", | |
" 'truncate',", | |
" 'write',", | |
" 'writelines',", | |
" 'xreadlines']" | |
] | |
} | |
], | |
"prompt_number": 142 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": true, | |
"input": [ | |
"file.readlines?" | |
], | |
"language": "python", | |
"outputs": [], | |
"prompt_number": 144 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": true, | |
"input": [ | |
"import urllib" | |
], | |
"language": "python", | |
"outputs": [], | |
"prompt_number": 145 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": true, | |
"input": [ | |
"f = urllib.urlopen(\"http://query.nytimes.com/search/sitesearch?query=\" + \"paul\" + \"&srchst=cse\")" | |
], | |
"language": "python", | |
"outputs": [], | |
"prompt_number": 148 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": true, | |
"input": [ | |
"f?" | |
], | |
"language": "python", | |
"outputs": [], | |
"prompt_number": 149 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": true, | |
"input": [ | |
"s = f.read()" | |
], | |
"language": "python", | |
"outputs": [], | |
"prompt_number": 150 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"s" | |
], | |
"language": "python", | |
"outputs": [ | |
{ | |
"output_type": "pyout", | |
"prompt_number": 151, | |
"text": [ | |
"'<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\\n<html>\\n<head>\\n<title>paul - \\n\\tNYTimes.com Search\\n</title>\\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\\n<meta name=\"robots\" content=\"noindex,nofollow\">\\n<meta name=\"CG\" content=\"Search\">\\n<meta name=\"SCG\" content=\"cse\">\\n<meta name=\"PT\" content=\"Search\">\\n<meta name=\"PST\" content=\"Search Results\">\\n<meta name=\"PSSST\" content=\"last30days\">\\n <!--Begin common script tags--><script type=\"text/javascript\" src=\"http://graphics8.nytimes.com/js/common.js\"></script><script type=\"text/javascript\" src=\"http://graphics8.nytimes.com/js/browserSize.js\"></script><script type=\"text/javascript\" src=\"http://graphics8.nytimes.com/js/Tacoda_AMS_DDC_Header.js\"></script><script type=\"text/javascript\" src=\"http://graphics8.nytimes.com/js/common/screen/DropDown.js\"></script><script type=\"text/javascript\" src=\"http://graphics8.nytimes.com/js/common/screen/modifyNavigationDisplay.js\"></script><script type=\"text/javascript\" language=\"JavaScript\" src=\"http://graphics8.nytimes.com/js/fileit.js\"></script><script type=\"text/javascript\" language=\"JavaScript\" src=\"http://graphics8.nytimes.com/js/todays_date.js\"></script><script type=\"text/javascript\" language=\"JavaScript\">\\n function linkbox(url, winName) {\\n window.open(url, winName,\\n \"location=yes,directories=yes,menubar=yes,toolbar=yes,status=yes,resizable=yes,scrollbars=yes\");\\n }\\n </script><!--End common script tags--><!--Begin common css--><!--[if IE 7]>\\n\\t\\t<style type=\"text/css\">\\n\\t\\t\\t@import url(http://graphics8.nytimes.com/css/common/screen/ie7.css);\\n\\t\\t</style>\\n\\t\\t<![endif]--><!--End common css-->\\n <script type=\"text/javascript\" src=\"http://graphics8.nytimes.com/js/app/lib/prototype/1.6.0.2/prototype.js\"></script><script type=\"text/javascript\" src=\"http://graphics8.nytimes.com/js/app/lib/NYTD/twocolumndropdown/twocolumndropdown.js\"></script><link rel=\"stylesheet\" type=\"text/css\" href=\"http://graphics8.nytimes.com/css/common/global.css\">\\n<style type=\"text/css\">\\n\\t@import url(http://graphics8.nytimes.com/css/search/200804/search.css?v=20090717);\\n</style>\\n</head>\\n<body><div id=\"shell\"><div id=\"page\">\\n<div id=\"masthead\">\\n<a href=\"http://www.nytimes.com\"><img id=\"NYTLogo\" alt=\"New York Times\" title=\"New York Times\" src=\"http://graphics8.nytimes.com/images/misc/nytlogo153x23.gif\"></a><h1><a href=\"http://query.nytimes.com/search/sitesearch\">Search</a></h1>\\n<div id=\"mostPopSearchesDropdown\" class=\"dropdownCollapsed\"><a class=\"button\" href=\"http://query.nytimes.com/search/sitesearch?query=paul\">Most Popular Searches</a></div>\\n<script type=\"text/javascript\">\\n\\t\\t\\t\\t\\t\\tNYTD.MostPopularSearches = [{\"url\":\"http:\\\\/\\\\/query.nytimes.com\\\\/search\\\\/sitesearch?query=april+8%2C+2012\",\"title\":\"april 8, 2012\"},{\"url\":\"http:\\\\/\\\\/query.nytimes.com\\\\/search\\\\/sitesearch?query=china\",\"title\":\"china\"},{\"url\":\"http:\\\\/\\\\/query.nytimes.com\\\\/search\\\\/sitesearch?query=books\",\"title\":\"books\"},{\"url\":\"http:\\\\/\\\\/query.nytimes.com\\\\/search\\\\/sitesearch?query=36+hours\",\"title\":\"36 hours\"},{\"url\":\"http:\\\\/\\\\/query.nytimes.com\\\\/search\\\\/sitesearch?query=education\",\"title\":\"education\"},{\"url\":\"http:\\\\/\\\\/query.nytimes.com\\\\/search\\\\/sitesearch?query=north+korea\",\"title\":\"north korea\"},{\"url\":\"http:\\\\/\\\\/query.nytimes.com\\\\/search\\\\/sitesearch?query=titanic\",\"title\":\"titanic\"},{\"url\":\"http:\\\\/\\\\/query.nytimes.com\\\\/search\\\\/sitesearch?query=social+q%27s\",\"title\":\"social q\\'s\"},{\"url\":\"http:\\\\/\\\\/query.nytimes.com\\\\/search\\\\/sitesearch?query=school\",\"title\":\"school\"},{\"url\":\"http:\\\\/\\\\/query.nytimes.com\\\\/search\\\\/sitesearch?query=bo+xilai\",\"title\":\"bo xilai\"}];\\n\\t\\t\\t\\t\\t\\tNYTD.initTwoColumnDropdown(\\'mostPopSearchesDropdown\\', NYTD.MostPopularSearches);\\n\\t\\t\\t\\t\\t</script>\\n</div>\\n<div id=\"srchTop\"><form action=\"http://query.nytimes.com/search/sitesearch\" method=\"get\" name=\"mainFormTop\" enctype=\"application/x-www-form-urlencoded\"><div id=\"yourSearch\">\\n<label for=\"yourSearch_query\">Your Search</label><input type=\"text\" size=\"40\" class=\"searchTextbox\" name=\"query\" id=\"yourSearch_query\" value=\"paul\"><input type=\"image\" name=\"submit\" src=\"http://graphics8.nytimes.com/images/global/global_search/search_button40x19.gif\" border=\"0\" value=\"sub\" align=\"absmiddle\" class=\"searchSubmit\"><a href=\"http://query.nytimes.com/search/alternate/query?query=paul&st=fromcse\" class=\"advSrch\">Advanced Search \\xc2\\xbb</a>\\n</div></form></div>\\n<div id=\"main\" class=\"filterLayout_sitesearch\">\\n<div id=\"abColumns\">\\n<div class=\"clearfix\">\\n<ul id=\"srchDates\">\\n<li class=\"first\"><a href=\"http://query.nytimes.com/search/sitesearch?query=paul&more=past_1\">Today</a></li>\\n<li><a href=\"http://query.nytimes.com/search/sitesearch?query=paul&more=past_7\">Past 7 Days</a></li>\\n<li class=\" selected\">Past 30 Days</li>\\n<li><a href=\"http://query.nytimes.com/search/sitesearch?query=paul&more=past_365\">Past 12 Months</a></li>\\n<li class=\"last\"><a href=\"http://query.nytimes.com/search/sitesearch?query=paul&more=date_all\">All Results Since 1851</a></li>\\n</ul>\\n<ul id=\"srchCategories\">\\n<li class=\"first selected\">All Result Types</li>\\n<li><a href=\"http://query.nytimes.com/search/sitesearch?query=paul&more=past_30&less=multimedia\" title=\"Articles and blog posts\">Articles</a></li>\\n<li><a href=\"http://query.nytimes.com/search/sitesearch?query=paul&more=multimedia,past_30\" title=\"Videos, Slide Shows, Interactive Graphics, and more\">Multimedia</a></li>\\n<li class=\"last\"><a href=\"http://beta620.nytimes.com/app/image-search/\" title=\"\">Images (BETA)</a></li>\\n</ul>\\n<div class=\"result_summary\">1-10 of 10,000+ Results\\n\\t\\t\\t\\t</div>\\n</div>\\n<div id=\"search_results\"><ul class=\"results\">\\n<li class=\"clearfix noThumb summary\">\\n<h3>\\n<span class=\"multimedia topics\">Times Topics:\\n\\t\\t\\t\\t</span><a href=\"http://topics.nytimes.com/top/opinion/editorialsandoped/oped/columnists/paulkrugman/index.html?scp=1&sq=paul&st=cse\"><strong>Paul</strong> Krugman</a>\\n</h3>Recent columns and multimedia by <strong>Paul</strong> Krugman of The New York Times.<span class=\"byline\"></span>\\n</li>\\n<li class=\"clearfix noThumb summary\">\\n<h3><a href=\"http://www.nytimes.com/2012/04/13/opinion/krugman-cannibalize-the-future.html?scp=2&sq=paul&st=cse\">Cannibalize the Future</a></h3>By <strong>PAUL</strong> KRUGMAN. Published: April 12, 2012. comments. E-Mail; Print. Reprints. One general rule of modern politics is that the people who talk most about <strong>...</strong><span class=\"byline\">April 13, 2012 - By PAUL KRUGMAN</span>\\n</li>\\n<li class=\"clearfix noThumb summary\">\\n<h3><a href=\"http://tmagazine.blogs.nytimes.com/2012/04/13/chic-in-review-jean-paul-gaultier-for-diet-coke/?scp=3&sq=paul&st=cse\">Chic in Review | Jean <strong>Paul</strong> Gaultier for Diet Coke</a></h3>19 hours ago <strong>...</strong> All the fashion news of the week that's fit to reprint. Bikini Wax Is becoming popular among men. Prepare for a world of pain, gentlemen.<span class=\"byline\">April 13, 2012 - T Magazine</span>\\n</li>\\n<li class=\"clearfix noThumb summary\">\\n<h3><a href=\"http://fivethirtyeight.blogs.nytimes.com/2012/04/09/a-living-autopsy-of-the-ron-paul-campaign/?scp=4&sq=paul&st=cse\">A Living Autopsy of the Ron <strong>Paul</strong> Campaign</a></h3>5 days ago <strong>...</strong> By at least one metric - his chance of occupying the Oval Office - Ron <strong>Paul</strong> is doing no better than he did in 2008. But by most other yardsticks, <strong>...</strong><span class=\"byline\">April 9, 2012 - Fivethirtyeight Blog</span>\\n</li>\\n<li class=\"clearfix noThumb summary\">\\n<h3><a href=\"http://thecaucus.blogs.nytimes.com/2012/04/10/meanwhile-paul-keeps-campaigning/?scp=5&sq=paul&st=cse\">Meanwhile, <strong>Paul</strong> Keeps Campaigning</a></h3>3 days ago <strong>...</strong> MItt Romney still faces a well-financed challenger in Representative Ron <strong>Paul</strong>, who is counting on his home state of Texas.<span class=\"byline\">April 10, 2012 - The Caucus</span>\\n</li>\\n<li class=\"clearfix noThumb summary\">\\n<h3><a href=\"http://www.nytimes.com/2012/04/08/opinion/sunday/talking-with-paul-clement.html?scp=6&sq=paul&st=cse\">Talking With <strong>Paul</strong> Clement</a></h3>6 days ago <strong>...</strong> A high-profile lawyer who likes soccer and Nirvana.<span class=\"byline\">April 8, 2012 - By KATE MURPHY</span>\\n</li>\\n<li class=\"clearfix noThumb summary\">\\n<h3><a href=\"http://www.nytimes.com/2012/04/09/opinion/krugman-the-gullible-center.html?scp=7&sq=paul&st=cse\">The Gullible Center</a></h3>5 days ago <strong>...</strong> E-Mail; Print. Reprints. So, can we talk about the <strong>Paul</strong> Ryan phenomenon? <strong>...</strong> <strong>Paul</strong> Krugman Blog: Ryan in Two Numbers (April 6, 2012) <strong>...</strong><span class=\"byline\">April 9, 2012 - By PAUL KRUGMAN</span>\\n</li>\\n<li class=\"clearfix noThumb summary\">\\n<h3><a href=\"http://krugman.blogs.nytimes.com/2012/04/10/another-bogus-attack-on-health-reform/?scp=8&sq=paul&st=cse\">Another Bogus Attack on Health Reform</a></h3>3 days ago <strong>...</strong> <strong>Paul</strong> Krugman - New York Times Blog <strong>...</strong> About <strong>Paul</strong> Krugman. <strong>Paul</strong> Krugman is an Op-Ed columnist for The New York Times. Biography <strong>...</strong><span class=\"byline\">April 10, 2012 - Paul Krugman: The Conscience of a Liberal</span>\\n</li>\\n<li class=\"clearfix noThumb summary\">\\n<h3><a href=\"http://krugman.blogs.nytimes.com/2012/04/09/socialsecuritymedicareandmedicaid-strikes-again/?scp=9&sq=paul&st=cse\">Socialsecuritymedicareandmedicaid Strikes Again</a></h3>4 days ago <strong>...</strong> <strong>Paul</strong> Krugman - New York Times Blog <strong>...</strong> About <strong>Paul</strong> Krugman. <strong>Paul</strong> Krugman is an Op-Ed columnist for The New York Times. Biography <strong>...</strong><span class=\"byline\">April 9, 2012 - Paul Krugman: The Conscience of a Liberal</span>\\n</li>\\n<li class=\"clearfix noThumb summary\">\\n<h3><a href=\"http://krugman.blogs.nytimes.com/2012/04/12/the-mendacity-is-the-message/?scp=10&sq=paul&st=cse\">The Mendacity Is The Message</a></h3>2 days ago <strong>...</strong> <strong>Paul</strong> Krugman - New York Times Blog <strong>...</strong> About <strong>Paul</strong> Krugman. <strong>Paul</strong> Krugman is an Op-Ed columnist for The New York Times. Biography <strong>...</strong><span class=\"byline\">April 12, 2012 - Paul Krugman: The Conscience of a Liberal</span>\\n</li>\\n</ul></div>\\n<div id=\"srchCantFind\">\\n\\t\\t\\t\\t\\tCan\\'t find what you\\'re looking for? Try <a href=\"http://query.nytimes.com/search/alternate/query?query=paul&st=fromcse\">Advanced Search</a> with enhanced date filtering.\\n\\t\\t\\t\\t</div>\\n<div id=\"googleFooter\">\\n\\t\\tSearch results powered by Google Custom Search\\n\\t</div>\\n<div id=\"srchPagination\">\\n<span>Page 1</span><a href=\"http://query.nytimes.com/search/sitesearch?query=paul&n=10&prev=0&frow=10&page=2\" class=\"next\">Next \\xc2\\xbb</a>\\n</div>\\n<form action=\"http://query.nytimes.com/search/sitesearch\" method=\"get\" name=\"mainFormTop\" enctype=\"application/x-www-form-urlencoded\"><div id=\"searchAgain\">\\n<label for=\"searchAgain_query\">Search Again</label><input type=\"text\" size=\"40\" class=\"searchTextbox\" name=\"query\" id=\"searchAgain_query\" value=\"paul\"><input type=\"image\" name=\"submit\" src=\"http://graphics8.nytimes.com/images/global/global_search/search_button40x19.gif\" border=\"0\" value=\"sub\" align=\"absmiddle\" class=\"searchSubmit\"><a href=\"http://query.nytimes.com/search/alternate/query?query=paul&st=fromcse\" class=\"advSrch\">Advanced Search \\xc2\\xbb</a>\\n</div></form>\\n</div>\\n<div class=\"cColumn\"></div>\\n</div>\\n<div class=\"hideContent\">\\n<script type=\"text/javascript\">\\nvar dcsvid = \"\";\\nvar regstatus = \"non-registered\";\\nvar s_pageName = \"Search CSE\";\\nvar s_account = \",nytsearch\";\\nvar s_channel = \"search\";\\nvar s_prop1 = \"search results\";\\nvar s_prop6 = \"sitesearch1\";\\nvar s_prop7 = \"test\";\\n</script>\\n\\n<script src=\"/js/app/analytics/trackingTags_v1.1.js\" type=\"text/javascript\"></script><noscript><div><img alt=\"DCSIMG\" id=\"DCSIMG\" width=\"1\" height=\"1\" src=\"http://wt.o.nytimes.com/dcsym57yw10000s1s8g0boozt_9t1x/njs.gif?dcsuri=/nojavascript&WT.js=No&WT.tv=1.0.7\"/></div></noscript>\\n\\n<!-- Start UPT call --><img height=\"1\" width=\"3\" border=\"0\" src=\"http://up.nytimes.com/?d=0/13/&t=5&s=0&ui=&r=&u=http%3A%2F%2Fquery.nytimes.com%2Fsearch%2Fsitesearch\"><!-- End UPT call -->\\n</div>\\n<div id=\"footer\">\\n<div class=\"footerRow\">\\n<a href=\"http://www.nytimes.com\">Home</a><ul>\\n<li><a href=\"http://www.nytimes.com/membercenter/index.html\">Member Center</a></li>\\n<li><a href=\"http://www.nytimes.com/auth/login?URI=http://\">Log In</a></li>\\n<li><a href=\"mailto:[email protected]?subject=NYTimes.com+Search+Feedback\" class=\"feedback\">Send Search Feedback</a></li>\\n</ul>\\n</div>\\n<a href=\"http://www.nytimes.com/ref/membercenter/help/copyright.html\">Copyright 2012</a> <a href=\"http://www.nytco.com/\">The New York Times Company</a><ul>\\n<li><a href=\"http://www.nytimes.com/privacy\">Privacy Policy</a></li>\\n<li><a href=\"http://www.nytimes.com/membercenter/sitehelp.html\">Help</a></li>\\n<li><a href=\"http://www.nytimes.com/ref/membercenter/help/infoservdirectory.html\">Contact Us</a></li>\\n<li><a href=\"http://www.nytco.com/career.html\">Work for Us</a></li>\\n<li><a href=\"http://spiderbites.nytimes.com/\">Site Map</a></li>\\n</ul>\\n</div>\\n</div></div></body>\\n</html>\\n'" | |
] | |
} | |
], | |
"prompt_number": 151 | |
}, | |
{ | |
"cell_type": "markdown", | |
"source": [ | |
"Ranking tweets" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": true, | |
"input": [ | |
"keyws = [\"stockholm\", \"sweden\", \"vet\", \"devnull\", \"spotify\"]" | |
], | |
"language": "python", | |
"outputs": [], | |
"prompt_number": 194 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"def rank_tweets(tweets, keyws):", | |
" ranklist = []", | |
" for tweet in tweets:", | |
" rank = 0", | |
" for k in keyws:", | |
" if k in tweet:", | |
" rank += 1", | |
"", | |
" ranklist.append( (tweet, rank) )", | |
" ", | |
" return ranklist" | |
], | |
"language": "python", | |
"outputs": [], | |
"prompt_number": 205 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": true, | |
"input": [], | |
"language": "python", | |
"outputs": [] | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": true, | |
"input": [ | |
"file.writelines?" | |
], | |
"language": "python", | |
"outputs": [], | |
"prompt_number": 161 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": true, | |
"input": [ | |
"f = open(\"/Users/valentinesvensson/tweets.txt\")" | |
], | |
"language": "python", | |
"outputs": [], | |
"prompt_number": 162 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": true, | |
"input": [ | |
"tweets = f.read()" | |
], | |
"language": "python", | |
"outputs": [], | |
"prompt_number": 163 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"all_tweets = tweets.split(\"\\n\")" | |
], | |
"language": "python", | |
"outputs": [], | |
"prompt_number": 201 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"print keyws, all_tweets[:3]", | |
"ranked = rank_tweets(all_tweets, keyws)" | |
], | |
"language": "python", | |
"outputs": [ | |
{ | |
"output_type": "stream", | |
"stream": "stdout", | |
"text": [ | |
"['stockholm', 'sweden', 'vet', 'devnull', 'spotify'] ['Just looking for a reason to come back here .', 'Vet inte om man ska skratta eller gr\\xc3\\xa5ta. ', 'http://t.co/I1tEYbZm']" | |
] | |
} | |
], | |
"prompt_number": 202 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"for a in all_tweets:", | |
" if \"Vet\" in a:", | |
" print a" | |
], | |
"language": "python", | |
"outputs": [ | |
{ | |
"output_type": "stream", | |
"stream": "stdout", | |
"text": [ | |
"Vet inte om man ska skratta eller gr\u00e5ta. ", | |
"Vet inte om man ska skratta eller gr\u00e5ta. " | |
] | |
} | |
], | |
"prompt_number": 203 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"ranked" | |
], | |
"language": "python", | |
"outputs": [ | |
{ | |
"output_type": "pyout", | |
"prompt_number": 204, | |
"text": [ | |
"[('Just looking for a reason to come back here .', 0.0),", | |
" ('Vet inte om man ska skratta eller gr\\xc3\\xa5ta. ', 0.0),", | |
" ('http://t.co/I1tEYbZm', 0.0),", | |
" ('\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84 \\xd9\\x81\\xd8\\xa7\\xd8\\xb5\\xd9\\x84 \\xd9\\x81\\xd9\\x83\\xd8\\xa7\\xd9\\x87\\xd9\\x8a \\xd8\\x8c\\xd8\\x8c\\xd8\\x8c \\xd9\\x85\\xd8\\xa7\\xd9\\x84\\xd9\\x87 \\xd8\\xad\\xd9\\x84 http://t.co/0Bq0jUp9',", | |
" 0.0),", | |
" ('Ch\\xc3\\xa1vez n\\xc3\\xa3o vai participar de C\\xc3\\xbapula das Am\\xc3\\xa9ricas http://t.co/dzeLIzVx',", | |
" 0.0),", | |
" (\"I'm at Garden Ridge (Richmond, VA) http://t.co/QDt31iCn\", 0.0),", | |
" ('1992 Kawasaki VN 1500 A Vulcan 88 Ignition Coil Set: 1992 Kawasaki VN 1500 A Vulcan 88 Ignition Coil SetThe Igni... http://t.co/xG0ToYc5',", | |
" 0.0),", | |
" ('Rowing club launches new sea gig: The Swanage Sea Rowing Club launches a new traditionally designed racing boat. http://t.co/q0QR2ZVu',", | |
" 0.0),", | |
" (\"Aram\\xc4\\xb1zda FAKE'ler var! 2222260: \\xc3\\xbcstte http://t.co/N4F5xax1\",", | |
" 0.0),", | |
" ('Boooooooooooa tarde! Gastrite atacou, mas nada que estrague meu final de semana.',", | |
" 0.0),", | |
" ('Bilici: Orta Do\\xc4\\x9fuyu T\\xc3\\xbcrkiye i\\xc3\\xa7in daha \\xc3\\xb6nemli k\\xc4\\xb1lan ba\\xc4\\x9flar var: Gazeteci yazar Abd\\xc3\\xbclhamit Bilici, Arap d\\xc3\\xbcnyas\\xc4\\xb1 ve... http://t.co/cIyMguRF',", | |
" 0.0),", | |
" ('I really hope you wake up one day & realise what you put yourself & everyone around you through. Your my mom & I love you but please change.',", | |
" 0.0),", | |
" ('can I get a REFILL', 0.0),", | |
" ('My Babez coming over today', 0.0),", | |
" ('Ai, que merda.', 0.0),", | |
" (\"Pomme de terre, viande des grisons, cancoillotte, tomates, c\\xc5\\x93ur d'artichaut, cornichons... #faitmaison @Food_Reporter http://t.co/lfn1f1mZ\",", | |
" 0.0),", | |
" ('hola.', 0.0),", | |
" ('Work hard Play hard Get inspired', 0.0),", | |
" ('Towies back tomorrow! iya @JoeyEssex_ ;-)', 0.0),", | |
" ('FELIZ CUMPLEA\\xc3\\x91OS!! (live at http://t.co/IKodI8wG)', 0.0),", | |
" ('i vote for @Real_Liam_Payne to do his twitcam today.', 0.0),", | |
" ('I yold u its real out here RT @kierabiera11: I walked pass @macolegacy and this was blasting in his beats wow http://t.co/TQTso1Ne',", | |
" 0.0),", | |
" ('\\xe3\\x82\\x84\\xe3\\x81\\xb9\\xe3\\x80\\x81\\xe7\\xb2\\x98\\xe8\\x86\\x9c\\xe3\\x82\\x92\\xe9\\xbc\\x93\\xe8\\x86\\x9c\\xe3\\x81\\xa8\\xe8\\xa6\\x8b\\xe9\\x96\\x93\\xe9\\x81\\x95\\xe3\\x81\\x88\\xe3\\x82\\x8b\\xe3\\x81\\xa8\\xe3\\x81\\x8bwww\\xe3\\x81\\x84\\xe3\\x82\\x88\\xe3\\x81\\x84\\xe3\\x82\\x88\\xe4\\xbf\\xba\\xe3\\x82\\x82\\xe8\\xa6\\x96\\xe5\\x8a\\x9b\\xe3\\x82\\x84\\xe3\\x81\\xb0\\xe3\\x81\\x8f\\xe3\\x81\\xaa\\xe3\\x81\\xa3\\xe3\\x81\\xa6\\xe3\\x81\\x8d\\xe3\\x81\\x9f\\xe3\\x81\\xaa',", | |
" 0.0),", | |
" (\"\\xeb\\x8b\\x8c\\xed\\x85\\x90\\xeb\\x8f\\x84\\xec\\x9d\\x98 RPG \\xea\\xb2\\x8c\\xec\\x9e\\x84 MOTHER\\xec\\x97\\x90\\xeb\\x8a\\x94 '\\xeb\\x94\\xb8\\xea\\xb8\\xb0 \\xeb\\x91\\x90\\xeb\\xb6\\x80'\\xeb\\x9d\\xbc\\xeb\\x8a\\x94 \\xec\\x95\\x84\\xec\\x9d\\xb4\\xed\\x85\\x9c\\xec\\x9d\\xb4 \\xec\\x9e\\x88\\xec\\x8a\\xb5\\xeb\\x8b\\x88\\xeb\\x8b\\xa4. \\xeb\\x8b\\xa4\\xec\\x9d\\x8c \\xec\\x82\\xac\\xec\\xa7\\x84\\xec\\x9d\\x80 \\xea\\xb2\\x8c\\xec\\x9e\\x84 \\xec\\xa0\\x9c\\xec\\x9e\\x91\\xec\\x9e\\x90 '\\xec\\x8b\\x9c\\xea\\xb2\\x8c\\xec\\x82\\xac\\xed\\x86\\xa0 \\xec\\x9d\\xb4\\xed\\x86\\xa0\\xec\\x9d\\xb4'\\xec\\x94\\xa8\\xea\\xb0\\x80 \\xec\\xa7\\x81\\xec\\xa0\\x91 \\xeb\\xa8\\xb9\\xec\\x97\\x88\\xeb\\x8b\\xa4\\xea\\xb3\\xa0 \\xed\\x95\\x98\\xeb\\x8a\\x94 \\xea\\xb8\\xb0\\xec\\x82\\xac\\xec\\x9e\\x85\\xeb\\x8b\\x88\\xeb\\x8b\\xa4. http://t.co/5ghkXU0f\",", | |
" 0.0),", | |
" ('que palo de agua', 0.0),", | |
" ('The @AAMUSigmas About To #MaxOut Tonight at #Statewide, While The Rest Are Stuck In The Past e.i. They Gone Be Turnt Up. O_o',", | |
" 0.0),", | |
" ('The Truth About Dealing With Dementia \\xe2\\x80\\x93 A Vital Guide For Carers!: The Truth About Dealing With Dementia \\xe2\\x80\\x93 A Vit... http://t.co/42ePk3re',", | |
" 0.0),", | |
" ('Luli ta sempre azedando', 0.0),", | |
" ('vou sair com mamis ja volto ;*', 0.0),", | |
" ('\\xe7\\x9c\\xa0\\xe3\\x81\\x84\\xe3\\x81\\xae\\xe3\\x81\\x8b\\xe7\\x9c\\xa0\\xe3\\x81\\x8f\\xe3\\x81\\xaa\\xe3\\x81\\x84\\xe3\\x81\\xae\\xe3\\x81\\x8b\\xe3\\x82\\x88\\xe3\\x81\\x8f\\xe3\\x82\\x8f\\xe3\\x81\\x8b\\xe3\\x82\\x93\\xe3\\x81\\xaa\\xe3\\x81\\x8f\\xe3\\x81\\xaa\\xe3\\x81\\xa3\\xe3\\x81\\xa6\\xe3\\x81\\x8d\\xe3\\x81\\x9f',", | |
" 0.0),", | |
" ('Vanavond gaat iemand gepakt worden, noem geen namen..', 0.0),", | |
" ('\\xd8\\xa7\\xd9\\x84\\xd9\\x84\\xd9\\x87\\xd9\\x85 \\xd8\\xa5\\xd9\\x86\\xd9\\x8a \\xd8\\xa3\\xd8\\xb3\\xd8\\xa3\\xd9\\x84\\xd9\\x83 \\xd9\\x85\\xd9\\x86 \\xd8\\xae\\xd9\\x8a\\xd8\\xb1 \\xd9\\x85\\xd8\\xa7 \\xd8\\xaa\\xd8\\xb9\\xd9\\x84\\xd9\\x85\\xd8\\x8c \\xd9\\x88\\xd8\\xa3\\xd8\\xb9\\xd9\\x88\\xd8\\xb0 \\xd8\\xa8\\xd9\\x83 \\xd9\\x85\\xd9\\x86 \\xd8\\xb4\\xd8\\xb1 \\xd9\\x85\\xd8\\xa7 \\xd8\\xaa\\xd8\\xb9\\xd9\\x84\\xd9\\x85\\xd8\\x8c \\xd9\\x88\\xd8\\xa3\\xd8\\xb3\\xd8\\xaa\\xd8\\xba\\xd9\\x81\\xd8\\xb1\\xd9\\x83 \\xd9\\x84\\xd9\\x85\\xd8\\xa7 \\xd8\\xaa\\xd8\\xb9\\xd9\\x84\\xd9\\x85 \\xd8\\xa5\\xd9\\x86\\xd9\\x83 \\xd8\\xa3\\xd9\\x86\\xd8\\xaa \\xd8\\xb9\\xd9\\x84\\xd8\\xa7\\xd9\\x85 \\xd8\\xa7\\xd9\\x84\\xd8\\xba\\xd9\\x8a\\xd9\\x88\\xd8\\xa8',", | |
" 0.0),", | |
" ('Just looking for a reason to come back here .', 0.0),", | |
" ('Sayfaya Girip Benim Profilimi Be\\xc4\\x9fen Duvar\\xc4\\xb1na Gelicem S\\xc3\\xb6z. http://t.co/FtL3lREe',", | |
" 0.0),", | |
" ('4r', 0.0),", | |
" ('Vet inte om man ska skratta eller gr\\xc3\\xa5ta. ', 0.0),", | |
" ('http://t.co/I1tEYbZm', 0.0),", | |
" ('\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84 \\xd9\\x81\\xd8\\xa7\\xd8\\xb5\\xd9\\x84 \\xd9\\x81\\xd9\\x83\\xd8\\xa7\\xd9\\x87\\xd9\\x8a \\xd8\\x8c\\xd8\\x8c\\xd8\\x8c \\xd9\\x85\\xd8\\xa7\\xd9\\x84\\xd9\\x87 \\xd8\\xad\\xd9\\x84 http://t.co/0Bq0jUp9',", | |
" 0.0),", | |
" ('\\xe3\\x81\\x82\\xe3\\x82\\x8b\\xe7\\xa8\\x8b\\xe5\\xba\\xa6\\xe3\\x80\\x81\\xe6\\xbc\\x94\\xe6\\x8a\\x80\\xe5\\x8a\\x9b\\xe3\\x81\\xa8\\xe7\\x9b\\xb8\\xe6\\x89\\x8b\\xe3\\x82\\x92\\xe6\\x80\\x9d\\xe3\\x81\\x84\\xe3\\x82\\x84\\xe3\\x82\\x8b\\xe6\\xb0\\x97\\xe6\\x8c\\x81\\xe3\\x81\\xa1\\xe3\\x81\\x8c\\xe5\\xa4\\xa7\\xe4\\xba\\x8b\\xe3\\x81\\xaa\\xe4\\xbb\\x95\\xe4\\xba\\x8b\\xe3\\x81\\xa7\\xe3\\x81\\x99\\xe3\\x80\\x82\\xe3\\x82\\x93\\xef\\xbd\\x9e\\xe3\\x80\\x81\\xe4\\xbb\\x95\\xe4\\xba\\x8b\\xe3\\x81\\x98\\xe3\\x82\\x83\\xe3\\x81\\xaa\\xe3\\x81\\x84\\xe3\\x81\\x8b\\xe3\\x80\\x82 #\\xe3\\x83\\x8b\\xe3\\x83\\xbc\\xe3\\x83\\x88',", | |
" 0.0),", | |
" ('Viva para agradar os outros, e todos ficar\\xc3\\xa3o contentes, exceto voc\\xc3\\xaa.',", | |
" 0.0),", | |
" ('Ch\\xc3\\xa1vez n\\xc3\\xa3o vai participar de C\\xc3\\xbapula das Am\\xc3\\xa9ricas http://t.co/dzeLIzVx',", | |
" 0.0),", | |
" (\"I'm at Garden Ridge (Richmond, VA) http://t.co/QDt31iCn\", 0.0),", | |
" ('PLAYSTATION PLAYSTATION PLAYSTATION PLAYSTATION PLAYSTATION PLAYSTATION PLAYSTATION parab\\xc3\\xa9ns, vc ganhou um crocs verde lim\\xc3\\xa3o',", | |
" 0.0),", | |
" (\"I am tempted to see The Three Stooges because the humor I've seen is faithful, then I remember that I can just watch the originals.\",", | |
" 0.0),", | |
" ('Wish ihad da Yellow Foams!', 0.0),", | |
" ('#NP Songs For Women', 0.0),", | |
" ('Unieke cadeaus voor diverse gelegenheden en in alle prijsklassen. http://t.co/r1Z2ZUwk',", | |
" 0.0),", | |
" ('\\xe3\\x83\\x90\\xe3\\x82\\xbf\\xe3\\x83\\xbc\\xe3\\x82\\xaf\\xe3\\x83\\xaa\\xe3\\x83\\xbc\\xe3\\x83\\xa0\\xe3\\x83\\xad\\xe3\\x83\\xbc\\xe3\\x83\\xab\\xe5\\x86\\x8d\\xe8\\xb2\\xa9\\xe8\\xa8\\x98\\xe5\\xbf\\xb5\\xef\\xbc\\x881,260\\xe5\\x86\\x86\\xe7\\x9b\\xb8\\xe5\\xbd\\x93\\xef\\xbc\\x8910\\xe5\\x90\\x8d\\xe6\\xa7\\x98\\xe3\\x83\\x97\\xe3\\x83\\xac\\xe3\\x82\\xbc\\xe3\\x83\\xb3\\xe3\\x83\\x88 | \\xe5\\x8e\\x9f\\xe5\\xae\\xbf\\xe3\\x82\\xb9\\xe3\\x82\\xa4\\xe3\\x83\\xbc\\xe3\\x83\\x84\\xe3\\x82\\x84\\xe4\\xbc\\x9d\\xe7\\xb5\\xb1\\xe3\\x83\\x95\\xe3\\x83\\xa9\\xe3\\x83\\xb3\\xe3\\x82\\xb9\\xe8\\x8f\\x93\\xe5\\xad\\x90\\xe3\\x81\\xae\\xe3\\x82\\xb3\\xe3\\x83\\xad\\xe3\\x83\\xb3\\xe3\\x83\\x90\\xe3\\x83\\xb3 http://t.co/aHOUfKHX',", | |
" 0.0),", | |
" ('\"Well...looks like Dark and Gruesome is back\"', 0.0),", | |
" ('Little muddy & wet for our first practice :) http://t.co/cWGIJgON', 0.0),", | |
" ('Respond\\xc3\\xad algo desde tu fb en perfil! Sorry :/ @NatiAguirre', 0.0),", | |
" ('crl, ELE CONSEGUE COOISA BEM MELHOR DO QUE ELA u.u', 0.0),", | |
" ('http://t.co/Hx0MLrHT \\xe0\\xb9\\x80\\xe0\\xb8\\xae\\xe0\\xb9\\x89\\xe0\\xb8\\xa2\\xe0\\xb8\\xa2\\xe0\\xb8\\xa2\\xe0\\xb8\\xa2\\xe0\\xb8\\xa2\\xe0\\xb8\\xa2\\xe0\\xb8\\xa2\\xe0\\xb8\\xa2 \\xe0\\xb8\\xa3\\xe0\\xb8\\xb9\\xe0\\xb8\\x9b\\xe0\\xb8\\x99\\xe0\\xb8\\xb5\\xe0\\xb9\\x89\\xe0\\xb8\\x99\\xe0\\xb9\\x88\\xe0\\xb8\\xb2\\xe0\\xb8\\xa3\\xe0\\xb8\\xb1\\xe0\\xb8\\x81 \\xe0\\xb8\\xad\\xe0\\xb8\\xb1\\xe0\\xb8\\x9e\\xe0\\xb9\\x80\\xe0\\xb8\\xa1\\xe0\\xb8\\xb7\\xe0\\xb9\\x88\\xe0\\xb8\\xad\\xe0\\xb9\\x84\\xe0\\xb8\\xab\\xe0\\xb8\\xa3\\xe0\\xb9\\x88',", | |
" 0.0),", | |
" ('Tak satupun terucap dari bibir mu', 0.0),", | |
" ('Net even boxen geregeld voor zaterdag', 0.0),", | |
" ('me siento preso y entrs\\xc3\\xb1os tus besos y las cositas que haciamos cuando teniamos sexo',", | |
" 0.0),", | |
" ('Paramore>', 0.0),", | |
" ('Lloyds TSB offers a stress-free switching service with a dedicated team. Find out More. Click here!',", | |
" 0.0),", | |
" ('Direct Link: http://t.co/VrkRUchW', 0.0),", | |
" ('T\\xc3\\xa1 chovendo em SP? Aqui vai cair o mundo eu acho em.', 0.0),", | |
" (\"bentar lg ultah tp blom preaper.. bzz--''\", 0.0),", | |
" ('Ontem foi simplismente MARAVILHOSO,muito obrigada por tudo meu amor,manteremos nossa promessa at\\xc3\\xa9 o fim.@Evanpiro_',", | |
" 0.0),", | |
" ('\"Never before in the history of the universe have you existed and when you are gone YOU will never repeat. That\\'s how important you are.\"',", | |
" 0.0),", | |
" ('\\xd8\\xa5\\xd8\\xad\\xd8\\xaa\\xd8\\xb1\\xd8\\xa7\\xd9\\x82 \\xd8\\xa7\\xd9\\x84\\xd8\\xb3\\xd9\\x8a\\xd8\\xa7\\xd8\\xb1\\xd8\\xa7\\xd8\\xaa \\xd9\\x81\\xd9\\x8a \\xd8\\xad\\xd9\\x8a \\xd8\\xac\\xd9\\x88\\xd8\\xb1\\xd8\\xa9 \\xd8\\xa7\\xd9\\x84\\xd8\\xb4\\xd9\\x8a\\xd8\\xa7\\xd8\\xad http://t.co/GSttPiP4',", | |
" 0.0),", | |
" ('Hickory/Pecan 2 x 8 Veneer Sheet: Whether youre a hobbyist or a furniture maker, real wood veneers are ideal for... http://t.co/fMZp6ICi',", | |
" 0.0),", | |
" ('Cantaaaaaaaa (live at http://t.co/K7pC9rqH)', 0.0),", | |
" ('ameii o ex bbb wesley super simpatico e lindo!Principe ( @gomezzoficial live em http://t.co/OCoSYeak )',", | |
" 0.0),", | |
" ('Dave Grohl - pissed because of a \"fan\" fight http://t.co/bLHANE6b via @rockspaceone',", | |
" 0.0),", | |
" (\"I'm Ready From Them Playoffs Next Saturday Im Out There 4am lol\", 0.0),", | |
" ('Rick Ross Releases Statement Regarding Cancelled Shows In Australia http://t.co/KrJ7IYbl',", | |
" 0.0),", | |
" ('54- 7/10 :)', 0.0),", | |
" ('He escrito una canci\\xc3\\xb3n porque ten\\xc3\\xada la inspiraci\\xc3\\xb3n modo on.',", | |
" 0.0),", | |
" ('Descobri que to perdida \\xc3\\xa9 em itaunense. To pocessa', 0.0),", | |
" ('O amoor \\xc3\\xa9 um precip\\xc3\\xadcio: agente se joga nele e torce para o ch\\xc3\\xa3o nunca chegar !!',", | |
" 0.0),", | |
" ('RT\"@la_Reinaaaa: I\\'m down to earth like gravity but man we up\"', 0.0),", | |
" ('Always at home euiis \\xc6\\xa0\\xcd\\xa1\\xcc\\xb4\\xcc\\xb4\\xcc\\xb4\\xcc\\xb4\\xcc\\xb4\\xcc\\xb4.\\xcc\\xae\\xc6\\xa0\\xcd\\xa1\\xcc\\xb4\\xcc\\xb4 seriiusaan ga sih, aah ntar boong nih RT @nonnaeuiist: Bsk drmh?',", | |
" 0.0),", | |
" ('Ribot uda malam .RT @Maulana_mubin: apaya.. Kasi tau gag ya eum RT @PutriKotoDY: Apalagi kau .RT Maulana_mubin: ... http://t.co/ONdPE99d',", | |
" 0.0),", | |
" ('Please dont think Im mean, a bitch or have a tude... Im just picky thats all dont kill me for it dang.. Now pow pow \\xe2\\x80\\xa6 http://t.co/va0PnJ1r',", | |
" 0.0),", | |
" ('#VivemosDeCorinthians sempreeee', 0.0),", | |
" ('Look at how @JdotMurray treat ha dog!! Lol shame on u! http://t.co/OL33xbMC',", | |
" 0.0),", | |
" ('Happy anniv woy @Nadaaalys @Fadhlan8Ven_LFC! Jgn diem2an lagi.....langgeng ya! http://t.co/uVRGH2Lx',", | |
" 0.0),", | |
" ('\\xe3\\x83\\x9e\\xe3\\x83\\x8d\\xe3\\x83\\xbc\\xe3\\x82\\xb8\\xe3\\x83\\xa3\\xe3\\x83\\xbc\\xe3\\x82\\x82\\xe3\\x81\\xa3\\xe3\\x81\\xa8\\xe7\\x9c\\x9f\\xe9\\x9d\\xa2\\xe7\\x9b\\xae\\xe3\\x81\\xab\\xe3\\x82\\x84\\xe3\\x82\\x8c\\xe3\\x81\\xb0\\xe3\\x82\\x88\\xe3\\x81\\x8b\\xe3\\x81\\xa3\\xe3\\x81\\x9f',", | |
" 0.0),", | |
" ('Kok twiteran emange ga bbman sama ito tah ? \"@AliviaahAnjanii: Hhahaha yaaa jugaaa siik :D @dhenistwn\"',", | |
" 0.0),", | |
" ('#VuelvenLasPlumasRosas', 0.0),", | |
" (' @eeemiliano Liderar\\xc3\\xada la campa\\xc3\\xb1a.', 0.0),", | |
" ('Act Done!!', 0.0),", | |
" ('i love Wall-E!', 0.0),", | |
" ('#surprise #surprise #surprise!!', 0.0),", | |
" ('\\xe3\\x80\\x90\\xe5\\xae\\x9a\\xe6\\x9c\\x9f\\xe3\\x80\\x91\\xe4\\xbd\\x8e\\xe3\\x82\\xaf\\xe3\\x82\\xaa\\xe3\\x81\\xa7\\xe3\\x81\\x99\\xe3\\x81\\x8c\\xe3\\x80\\x81\\xe8\\xa8\\x98\\xe5\\xbf\\xb5\\xe6\\x9e\\xa0\\xe3\\x81\\xaa\\xe3\\x81\\xa9\\xe3\\x81\\xae\\xe7\\x94\\xbb\\xe5\\x83\\x8f\\xe5\\x8a\\xa0\\xe5\\xb7\\xa5\\xe3\\x81\\xaa\\xe3\\x81\\xa9\\xe3\\x81\\x97\\xe3\\x81\\xa6\\xe3\\x81\\xbe\\xe3\\x81\\x99\\xef\\xbc\\x88\\xef\\xbd\\x80\\xe3\\x83\\xbb\\xcf\\x89\\xe3\\x83\\xbb\\xc2\\xb4\\xef\\xbc\\x89\\xe3\\x82\\xad\\xe3\\x83\\xaa\\xe3\\x83\\x83',", | |
" 0.0),", | |
" ('RT @LiccMyCharliie Tashie gon wake up in the morning like she stole my name lol buh soo whaat ;P',", | |
" 0.0),", | |
" ('\\xd9\\x84\\xd8\\xa7 \\xd8\\xa3\\xd8\\xb1\\xd9\\x90\\xd9\\x8a\\xd8\\xaf \\xd8\\xb4\\xd9\\x8a\\xd8\\xa6\\xd9\\x80\\xd9\\x80\\xd9\\x80\\xd8\\xa7\\xd9\\x8b ... \\xd8\\xb3\\xd9\\x88\\xd9\\x89 ... \\xd8\\xb1\\xd9\\x88\\xd8\\xad \\xd8\\xaa\\xd8\\xb4\\xd8\\xa8\\xd9\\x87\\xd9\\x86\\xd9\\x80\\xd9\\x80\\xd9\\x8a',", | |
" 0.0),", | |
" ('\\xd8\\xa3\\xd9\\x81\\xd9\\x87\\xd9\\x85\\xd9\\x87\\xd9\\x80\\xd9\\x80\\xd8\\xa7 ... \\xd8\\xaa\\xd9\\x81\\xd9\\x87\\xd9\\x85\\xd9\\x86\\xd9\\x80\\xd9\\x80\\xd9\\x80\\xd9\\x8a',", | |
" 0.0),", | |
" ('\\xe2\\x99\\xa5 \\xd9\\x88 \\xd9\\x83\\xd9\\x80 \\xd9\\x80\\xd9\\x81\\xd9\\x80 \\xd9\\x80\\xd9\\x80\\xd9\\x89 \\xe2\\x99\\xa5 http://t.co/yqTYDusU',", | |
" 0.0),", | |
" ('Cluttered bookstores are the best bookstores. http://t.co/snmRtIVZ', 0.0),", | |
" (\"maybe i'll just go for a run since there is nothing better to do ....\",", | |
" 0.0),", | |
" ('Hahaha ngempet iki\"@ndo_ndonando: mlh ngakak dhus RT @natashaFND Hahaha\"@ndo_ndonando: Kampret!! RT @natashaFND: Ndak popo haha\"',", | |
" 0.0),", | |
" ('#np Battlefield - Jordan Sparks', 0.0),", | |
" ('Zag @jessewortelboer vanmiddag lopen!', 0.0),", | |
" ('tem muita gente carente, porque n\\xc3\\xa9...', 0.0),", | |
" ('\\xe3\\x85\\x9c\\xe3\\x85\\x9c\\xeb\\xaf\\xb8\\xec\\x9b\\x8c', 0.0),", | |
" ('\\xe3\\x81\\x82\\xe3\\x81\\xa3\\xef\\xbc\\xa2\\xef\\xbc\\xa2\\xef\\xbc\\xaa\\xe6\\x84\\x8f\\xe5\\xa4\\x96\\xe3\\x81\\xa8\\xe6\\xbc\\x94\\xe6\\xad\\x8c\\xe4\\xb8\\x8a\\xe6\\x89\\x8b\\xe3\\x81\\x84\\xef\\xbc\\x81\\xef\\xbc\\x9f\\xe3\\x82\\xa8\\xe3\\x83\\xb3\\xe3\\x83\\x87\\xe3\\x82\\xa3\\xe3\\x83\\xb3\\xe3\\x82\\xb0\\xe6\\xbc\\x94\\xe6\\xad\\x8c\\xe3\\x81\\x8b\\xef\\xbd\\x97\\xe6\\x96\\xac\\xe6\\x96\\xb0\\xe3\\x81\\xa0\\xe3\\x81\\xaa@air_tb \\xe8\\x8a\\xb1\\xe8\\xa6\\x8b\\xe4\\xbc\\x9a\\xe5\\xa0\\xb4\\xe3\\x81\\xab\\xe3\\x82\\x88\\xe3\\x81\\x8f\\xe8\\x81\\x9e\\xe3\\x81\\x8d\\xe3\\x81\\xa8\\xe3\\x82\\x8c\\xe3\\x81\\xaa\\xe3\\x81\\x84\\xe8\\x8b\\xb1\\xe8\\xaa\\x9e\\xe3\\x81\\xa7\\xe6\\xad\\x8c\\xe3\\x81\\x84\\xe7\\xb6\\x9a\\xe3\\x81\\x91\\xe3\\x82\\x8bNEXT\\xe3\\x81\\x8c\\xe5\\xb1\\x85\\xe3\\x82\\x8b\\xe3\\x81\\xa3\\xe3\\x81\\xa6\\xe8\\x8b\\xa6\\xe6\\x83\\x85\\xe3\\x81\\x8c\\xe5\\x85\\xa5\\xe3\\x81\\xa3\\xe3\\x81\\x9f\\xe3\\x81\\xbf\\xe3\\x81\\x9f\\xe3\\x81\\x84\\xe3\\x81\\xa0\\xe3\\x81\\x91\\xe3\\x81\\xa9\\xe3\\x81\\x9d\\xe3\\x82\\x8c\\xe3\\x81\\xa3\\xe3\\x81\\xa6\\xe3\\x82\\x82\\xe3\\x81\\x97\\xe3\\x81\\x8b\\xe3\\x81\\x97\\xe3\\x81\\xa6\\xe2\\x80\\xa6 #\\xe3\\x82\\xa8\\xe3\\x82\\xa2\\xe3\\x82\\xbf\\xe3\\x82\\xa4\\xe3\\x83\\x90\\xe3\\x83\\x8b53\\xe8\\xa9\\xb1',", | |
" 0.0),", | |
" ('bikin nyesekkkkkkk', 0.0),", | |
" ('PLAYSTATION PLAYSTATION PLAYSTATION PLAYSTATION PLAYSTATION PLAYSTATION PLAYSTATION parab\\xc3\\xa9ns, vc ganhou um crocs verde lim\\xc3\\xa3o',", | |
" 0.0),", | |
" ('\\xe3\\x80\\x90\\xe5\\xae\\x9a\\xe6\\x9c\\x9f\\xe3\\x80\\x91\\xe5\\xae\\x9f\\xe6\\xb3\\x81TL\\xe3\\x80\\x81\\xe9\\x9d\\x9e\\xe5\\x85\\xac\\xe5\\xbc\\x8fRT\\xe4\\xbc\\x9a\\xe8\\xa9\\xb1\\xe3\\x81\\xa7TL\\xe8\\x8d\\x92\\xe3\\x82\\x89\\xe3\\x81\\x97\\xe3\\x81\\xa6\\xe3\\x81\\x99\\xe3\\x81\\xbe\\xe3\\x82\\x93\\xe3\\x81\\xaa\\xef\\xbc\\x88\\xe3\\x83\\xbb\\xe3\\x83\\xbb`\\xef\\xbc\\x89',", | |
" 0.0),", | |
" (\"I am tempted to see The Three Stooges because the humor I've seen is faithful, then I remember that I can just watch the originals.\",", | |
" 0.0),", | |
" ('Tenho um casamento pra ir hoje e nem sabia e_e vai eu procurar o que colocar',", | |
" 0.0),", | |
" (\"\\xe3\\x80\\x90\\xe7\\x94\\x9f\\xe6\\x94\\xbe\\xe9\\x80\\x81\\xe3\\x80\\x91\\xe3\\x80\\x90\\xe5\\x88\\x9d\\xe8\\xa6\\x8b*\\xe5\\xb8\\xb8\\xe9\\x80\\xa3\\xe5\\xa4\\xa7\\xe6\\xad\\x93\\xe8\\xbf\\x8e\\xe3\\x80\\x91892\\xe2\\x98\\x85\\xe3\\x81\\x8a\\xe7\\x9f\\xa5\\xe3\\x82\\x89\\xe3\\x81\\x9b\\xe3\\x82\\x82\\xe3\\x81\\x82\\xe3\\x82\\x8b\\xe3\\x82\\x88!!\\xe3\\x81\\xbf\\xe3\\x82\\x93\\xe3\\x81\\xaa\\xe3\\x81\\xa8\\xe3\\x81\\x8a\\xe5\\x96\\x8b\\xe3\\x82\\x8a\\xe3\\x81\\x97\\xe3\\x81\\x9f\\xe3\\x81\\x8f\\xe3\\x81\\xaa\\xe3\\x81\\xa3\\xe3\\x81\\xa1\\xe3\\x82\\x83\\xe3\\x81\\xa3\\xe3\\x81\\x9f\\xe3\\x81\\x8b\\xe3\\x82\\x89\\xe9\\x9b\\x91\\xe8\\xab\\x87\\xe3\\x81\\x97\\xe3\\x81\\xa6\\xe3\\x81\\xbf\\xe3\\x82\\x88\\xe3\\x81\\x86\\xe3\\x81\\x8b>('\\xe2\\x97\\x89\\xe2\\x97\\x9e\\xe2\\x8a\\x96\\xe2\\x97\\x9f\\xe2\\x97\\x89\\xef\\xbd\\x80)\\xe3\\x80\\x90\\xe3\\x81\\x8a\\xe7\\xb5\\xb5\\xe3\\x81\\x8b\\xe3\\x81\\x8d\\xe3\\x80\\x91 \\xe3\\x82\\x92\\xe9\\x96\\x8b\\xe5\\xa7\\x8b\\xe3\\x81\\x97\\xe3\\x81\\xbe\\xe3\\x81\\x97\\xe3\\x81\\x9f\\xe3\\x80\\x82 http://t.co/kTLPLOJ0 #lv89335207\",", | |
" 0.0),", | |
" ('#HD http://t.co/5uoquHox - Chiri -\"2012\"- Parkour Freerunning', 0.0),", | |
" ('Christmas come back ;/', 0.0),", | |
" ('Back to more hard labor work', 0.0),", | |
" ('RT @da7omsad7an: \\xd9\\x86\\xd8\\xb5 \\xd8\\xad\\xd9\\x8a\\xd8\\xa7\\xd8\\xaa\\xd9\\x8a \\xd8\\xb1\\xd8\\xa7\\xd8\\xad\\xd8\\xaa \\xd9\\x81\\xd9\\x8a \\xd9\\x85\\xd9\\x82\\xd8\\xa7\\xd9\\x88\\xd9\\x85\\xd8\\xa9 \\xd8\\xa7\\xd9\\x84\\xd9\\x86\\xd9\\x88\\xd9\\x85 \\xd9\\x88 \\xd8\\xa7\\xd9\\x84\\xd9\\x86\\xd8\\xb5 \\xd8\\xa7\\xd9\\x84\\xd8\\xab\\xd8\\xa7\\xd9\\x86\\xd9\\x8a \\xd9\\x81\\xd9\\x8a \\xd8\\xaa\\xd8\\xb9\\xd8\\xaf\\xd9\\x8a\\xd9\\x84 \\xd9\\x86\\xd9\\x88\\xd9\\x85\\xd9\\x8a ~',", | |
" 0.0),", | |
" ('8,200 Plays & Rising!!! \\xe2\\x98\\x85@2sidesglobal & DJ Raiden\\xe2\\x98\\x85 \"If You Could\"---http://retwedia.com/bri89x #2$G\\xe2\\x84\\xa2',", | |
" 0.0),", | |
" ('Yo tan en s\\xc3\\xa1bado y tan sin cruda #noesdedios.', 0.0),", | |
" ('good afternoon', 0.0),", | |
" ('RT @xCaHx: @bethmass amiga vi uma boliviano q parece q consegue votar.. tenho q achar ela aki vou peguntar como vota Q bom ,',", | |
" 0.0),", | |
" ('Acordei agora e j\\xc3\\xa1 almocei. UHSADGHASDGHAUSDGHUAS', 0.0),", | |
" ('Ibarat puncak gunung dan dasar laut. Ilmu adalah sesuatu yang tersimpan, dan amal itu sesuatu yang terlihat..#weloveIslam',", | |
" 0.0),", | |
" ('ameii o ex bbb wesley super simpatico e lindo!Principe ( @gomezzoficial live em http://t.co/OCoSYeak )',", | |
" 0.0),", | |
" ('Dave Grohl - pissed because of a \"fan\" fight http://t.co/bLHANE6b via @rockspaceone',", | |
" 0.0),", | |
" (\"I'm Ready From Them Playoffs Next Saturday Im Out There 4am lol\", 0.0),", | |
" ('Rick Ross Releases Statement Regarding Cancelled Shows In Australia http://t.co/KrJ7IYbl',", | |
" 0.0),", | |
" ('54- 7/10 :)', 0.0),", | |
" ('He escrito una canci\\xc3\\xb3n porque ten\\xc3\\xada la inspiraci\\xc3\\xb3n modo on.',", | |
" 0.0),", | |
" ('', 0.0)]" | |
] | |
} | |
], | |
"prompt_number": 204 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"rank_getter = lambda x: x[1]", | |
"newlist = sorted(ranked, key=rank_getter, reverse=True)" | |
], | |
"language": "python", | |
"outputs": [], | |
"prompt_number": 189 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"newlist" | |
], | |
"language": "python", | |
"outputs": [ | |
{ | |
"output_type": "pyout", | |
"prompt_number": 190, | |
"text": [ | |
"[('Just looking for a reason to come back here .', 0.0),", | |
" ('Vet inte om man ska skratta eller gr\\xc3\\xa5ta. ', 0.0),", | |
" ('http://t.co/I1tEYbZm', 0.0),", | |
" ('\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84 \\xd9\\x81\\xd8\\xa7\\xd8\\xb5\\xd9\\x84 \\xd9\\x81\\xd9\\x83\\xd8\\xa7\\xd9\\x87\\xd9\\x8a \\xd8\\x8c\\xd8\\x8c\\xd8\\x8c \\xd9\\x85\\xd8\\xa7\\xd9\\x84\\xd9\\x87 \\xd8\\xad\\xd9\\x84 http://t.co/0Bq0jUp9',", | |
" 0.0),", | |
" ('Ch\\xc3\\xa1vez n\\xc3\\xa3o vai participar de C\\xc3\\xbapula das Am\\xc3\\xa9ricas http://t.co/dzeLIzVx',", | |
" 0.0),", | |
" (\"I'm at Garden Ridge (Richmond, VA) http://t.co/QDt31iCn\", 0.0),", | |
" ('1992 Kawasaki VN 1500 A Vulcan 88 Ignition Coil Set: 1992 Kawasaki VN 1500 A Vulcan 88 Ignition Coil SetThe Igni... http://t.co/xG0ToYc5',", | |
" 0.0),", | |
" ('Rowing club launches new sea gig: The Swanage Sea Rowing Club launches a new traditionally designed racing boat. http://t.co/q0QR2ZVu',", | |
" 0.0),", | |
" (\"Aram\\xc4\\xb1zda FAKE'ler var! 2222260: \\xc3\\xbcstte http://t.co/N4F5xax1\",", | |
" 0.0),", | |
" ('Boooooooooooa tarde! Gastrite atacou, mas nada que estrague meu final de semana.',", | |
" 0.0),", | |
" ('Bilici: Orta Do\\xc4\\x9fuyu T\\xc3\\xbcrkiye i\\xc3\\xa7in daha \\xc3\\xb6nemli k\\xc4\\xb1lan ba\\xc4\\x9flar var: Gazeteci yazar Abd\\xc3\\xbclhamit Bilici, Arap d\\xc3\\xbcnyas\\xc4\\xb1 ve... http://t.co/cIyMguRF',", | |
" 0.0),", | |
" ('I really hope you wake up one day & realise what you put yourself & everyone around you through. Your my mom & I love you but please change.',", | |
" 0.0),", | |
" ('can I get a REFILL', 0.0),", | |
" ('My Babez coming over today', 0.0),", | |
" ('Ai, que merda.', 0.0),", | |
" (\"Pomme de terre, viande des grisons, cancoillotte, tomates, c\\xc5\\x93ur d'artichaut, cornichons... #faitmaison @Food_Reporter http://t.co/lfn1f1mZ\",", | |
" 0.0),", | |
" ('hola.', 0.0),", | |
" ('Work hard Play hard Get inspired', 0.0),", | |
" ('Towies back tomorrow! iya @JoeyEssex_ ;-)', 0.0),", | |
" ('FELIZ CUMPLEA\\xc3\\x91OS!! (live at http://t.co/IKodI8wG)', 0.0),", | |
" ('i vote for @Real_Liam_Payne to do his twitcam today.', 0.0),", | |
" ('I yold u its real out here RT @kierabiera11: I walked pass @macolegacy and this was blasting in his beats wow http://t.co/TQTso1Ne',", | |
" 0.0),", | |
" ('\\xe3\\x82\\x84\\xe3\\x81\\xb9\\xe3\\x80\\x81\\xe7\\xb2\\x98\\xe8\\x86\\x9c\\xe3\\x82\\x92\\xe9\\xbc\\x93\\xe8\\x86\\x9c\\xe3\\x81\\xa8\\xe8\\xa6\\x8b\\xe9\\x96\\x93\\xe9\\x81\\x95\\xe3\\x81\\x88\\xe3\\x82\\x8b\\xe3\\x81\\xa8\\xe3\\x81\\x8bwww\\xe3\\x81\\x84\\xe3\\x82\\x88\\xe3\\x81\\x84\\xe3\\x82\\x88\\xe4\\xbf\\xba\\xe3\\x82\\x82\\xe8\\xa6\\x96\\xe5\\x8a\\x9b\\xe3\\x82\\x84\\xe3\\x81\\xb0\\xe3\\x81\\x8f\\xe3\\x81\\xaa\\xe3\\x81\\xa3\\xe3\\x81\\xa6\\xe3\\x81\\x8d\\xe3\\x81\\x9f\\xe3\\x81\\xaa',", | |
" 0.0),", | |
" (\"\\xeb\\x8b\\x8c\\xed\\x85\\x90\\xeb\\x8f\\x84\\xec\\x9d\\x98 RPG \\xea\\xb2\\x8c\\xec\\x9e\\x84 MOTHER\\xec\\x97\\x90\\xeb\\x8a\\x94 '\\xeb\\x94\\xb8\\xea\\xb8\\xb0 \\xeb\\x91\\x90\\xeb\\xb6\\x80'\\xeb\\x9d\\xbc\\xeb\\x8a\\x94 \\xec\\x95\\x84\\xec\\x9d\\xb4\\xed\\x85\\x9c\\xec\\x9d\\xb4 \\xec\\x9e\\x88\\xec\\x8a\\xb5\\xeb\\x8b\\x88\\xeb\\x8b\\xa4. \\xeb\\x8b\\xa4\\xec\\x9d\\x8c \\xec\\x82\\xac\\xec\\xa7\\x84\\xec\\x9d\\x80 \\xea\\xb2\\x8c\\xec\\x9e\\x84 \\xec\\xa0\\x9c\\xec\\x9e\\x91\\xec\\x9e\\x90 '\\xec\\x8b\\x9c\\xea\\xb2\\x8c\\xec\\x82\\xac\\xed\\x86\\xa0 \\xec\\x9d\\xb4\\xed\\x86\\xa0\\xec\\x9d\\xb4'\\xec\\x94\\xa8\\xea\\xb0\\x80 \\xec\\xa7\\x81\\xec\\xa0\\x91 \\xeb\\xa8\\xb9\\xec\\x97\\x88\\xeb\\x8b\\xa4\\xea\\xb3\\xa0 \\xed\\x95\\x98\\xeb\\x8a\\x94 \\xea\\xb8\\xb0\\xec\\x82\\xac\\xec\\x9e\\x85\\xeb\\x8b\\x88\\xeb\\x8b\\xa4. http://t.co/5ghkXU0f\",", | |
" 0.0),", | |
" ('que palo de agua', 0.0),", | |
" ('The @AAMUSigmas About To #MaxOut Tonight at #Statewide, While The Rest Are Stuck In The Past e.i. They Gone Be Turnt Up. O_o',", | |
" 0.0),", | |
" ('The Truth About Dealing With Dementia \\xe2\\x80\\x93 A Vital Guide For Carers!: The Truth About Dealing With Dementia \\xe2\\x80\\x93 A Vit... http://t.co/42ePk3re',", | |
" 0.0),", | |
" ('Luli ta sempre azedando', 0.0),", | |
" ('vou sair com mamis ja volto ;*', 0.0),", | |
" ('\\xe7\\x9c\\xa0\\xe3\\x81\\x84\\xe3\\x81\\xae\\xe3\\x81\\x8b\\xe7\\x9c\\xa0\\xe3\\x81\\x8f\\xe3\\x81\\xaa\\xe3\\x81\\x84\\xe3\\x81\\xae\\xe3\\x81\\x8b\\xe3\\x82\\x88\\xe3\\x81\\x8f\\xe3\\x82\\x8f\\xe3\\x81\\x8b\\xe3\\x82\\x93\\xe3\\x81\\xaa\\xe3\\x81\\x8f\\xe3\\x81\\xaa\\xe3\\x81\\xa3\\xe3\\x81\\xa6\\xe3\\x81\\x8d\\xe3\\x81\\x9f',", | |
" 0.0),", | |
" ('Vanavond gaat iemand gepakt worden, noem geen namen..', 0.0),", | |
" ('\\xd8\\xa7\\xd9\\x84\\xd9\\x84\\xd9\\x87\\xd9\\x85 \\xd8\\xa5\\xd9\\x86\\xd9\\x8a \\xd8\\xa3\\xd8\\xb3\\xd8\\xa3\\xd9\\x84\\xd9\\x83 \\xd9\\x85\\xd9\\x86 \\xd8\\xae\\xd9\\x8a\\xd8\\xb1 \\xd9\\x85\\xd8\\xa7 \\xd8\\xaa\\xd8\\xb9\\xd9\\x84\\xd9\\x85\\xd8\\x8c \\xd9\\x88\\xd8\\xa3\\xd8\\xb9\\xd9\\x88\\xd8\\xb0 \\xd8\\xa8\\xd9\\x83 \\xd9\\x85\\xd9\\x86 \\xd8\\xb4\\xd8\\xb1 \\xd9\\x85\\xd8\\xa7 \\xd8\\xaa\\xd8\\xb9\\xd9\\x84\\xd9\\x85\\xd8\\x8c \\xd9\\x88\\xd8\\xa3\\xd8\\xb3\\xd8\\xaa\\xd8\\xba\\xd9\\x81\\xd8\\xb1\\xd9\\x83 \\xd9\\x84\\xd9\\x85\\xd8\\xa7 \\xd8\\xaa\\xd8\\xb9\\xd9\\x84\\xd9\\x85 \\xd8\\xa5\\xd9\\x86\\xd9\\x83 \\xd8\\xa3\\xd9\\x86\\xd8\\xaa \\xd8\\xb9\\xd9\\x84\\xd8\\xa7\\xd9\\x85 \\xd8\\xa7\\xd9\\x84\\xd8\\xba\\xd9\\x8a\\xd9\\x88\\xd8\\xa8',", | |
" 0.0),", | |
" ('Just looking for a reason to come back here .', 0.0),", | |
" ('Sayfaya Girip Benim Profilimi Be\\xc4\\x9fen Duvar\\xc4\\xb1na Gelicem S\\xc3\\xb6z. http://t.co/FtL3lREe',", | |
" 0.0),", | |
" ('4r', 0.0),", | |
" ('Vet inte om man ska skratta eller gr\\xc3\\xa5ta. ', 0.0),", | |
" ('http://t.co/I1tEYbZm', 0.0),", | |
" ('\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84 \\xd9\\x81\\xd8\\xa7\\xd8\\xb5\\xd9\\x84 \\xd9\\x81\\xd9\\x83\\xd8\\xa7\\xd9\\x87\\xd9\\x8a \\xd8\\x8c\\xd8\\x8c\\xd8\\x8c \\xd9\\x85\\xd8\\xa7\\xd9\\x84\\xd9\\x87 \\xd8\\xad\\xd9\\x84 http://t.co/0Bq0jUp9',", | |
" 0.0),", | |
" ('\\xe3\\x81\\x82\\xe3\\x82\\x8b\\xe7\\xa8\\x8b\\xe5\\xba\\xa6\\xe3\\x80\\x81\\xe6\\xbc\\x94\\xe6\\x8a\\x80\\xe5\\x8a\\x9b\\xe3\\x81\\xa8\\xe7\\x9b\\xb8\\xe6\\x89\\x8b\\xe3\\x82\\x92\\xe6\\x80\\x9d\\xe3\\x81\\x84\\xe3\\x82\\x84\\xe3\\x82\\x8b\\xe6\\xb0\\x97\\xe6\\x8c\\x81\\xe3\\x81\\xa1\\xe3\\x81\\x8c\\xe5\\xa4\\xa7\\xe4\\xba\\x8b\\xe3\\x81\\xaa\\xe4\\xbb\\x95\\xe4\\xba\\x8b\\xe3\\x81\\xa7\\xe3\\x81\\x99\\xe3\\x80\\x82\\xe3\\x82\\x93\\xef\\xbd\\x9e\\xe3\\x80\\x81\\xe4\\xbb\\x95\\xe4\\xba\\x8b\\xe3\\x81\\x98\\xe3\\x82\\x83\\xe3\\x81\\xaa\\xe3\\x81\\x84\\xe3\\x81\\x8b\\xe3\\x80\\x82 #\\xe3\\x83\\x8b\\xe3\\x83\\xbc\\xe3\\x83\\x88',", | |
" 0.0),", | |
" ('Viva para agradar os outros, e todos ficar\\xc3\\xa3o contentes, exceto voc\\xc3\\xaa.',", | |
" 0.0),", | |
" ('Ch\\xc3\\xa1vez n\\xc3\\xa3o vai participar de C\\xc3\\xbapula das Am\\xc3\\xa9ricas http://t.co/dzeLIzVx',", | |
" 0.0),", | |
" (\"I'm at Garden Ridge (Richmond, VA) http://t.co/QDt31iCn\", 0.0),", | |
" ('PLAYSTATION PLAYSTATION PLAYSTATION PLAYSTATION PLAYSTATION PLAYSTATION PLAYSTATION parab\\xc3\\xa9ns, vc ganhou um crocs verde lim\\xc3\\xa3o',", | |
" 0.0),", | |
" (\"I am tempted to see The Three Stooges because the humor I've seen is faithful, then I remember that I can just watch the originals.\",", | |
" 0.0),", | |
" ('Wish ihad da Yellow Foams!', 0.0),", | |
" ('#NP Songs For Women', 0.0),", | |
" ('Unieke cadeaus voor diverse gelegenheden en in alle prijsklassen. http://t.co/r1Z2ZUwk',", | |
" 0.0),", | |
" ('\\xe3\\x83\\x90\\xe3\\x82\\xbf\\xe3\\x83\\xbc\\xe3\\x82\\xaf\\xe3\\x83\\xaa\\xe3\\x83\\xbc\\xe3\\x83\\xa0\\xe3\\x83\\xad\\xe3\\x83\\xbc\\xe3\\x83\\xab\\xe5\\x86\\x8d\\xe8\\xb2\\xa9\\xe8\\xa8\\x98\\xe5\\xbf\\xb5\\xef\\xbc\\x881,260\\xe5\\x86\\x86\\xe7\\x9b\\xb8\\xe5\\xbd\\x93\\xef\\xbc\\x8910\\xe5\\x90\\x8d\\xe6\\xa7\\x98\\xe3\\x83\\x97\\xe3\\x83\\xac\\xe3\\x82\\xbc\\xe3\\x83\\xb3\\xe3\\x83\\x88 | \\xe5\\x8e\\x9f\\xe5\\xae\\xbf\\xe3\\x82\\xb9\\xe3\\x82\\xa4\\xe3\\x83\\xbc\\xe3\\x83\\x84\\xe3\\x82\\x84\\xe4\\xbc\\x9d\\xe7\\xb5\\xb1\\xe3\\x83\\x95\\xe3\\x83\\xa9\\xe3\\x83\\xb3\\xe3\\x82\\xb9\\xe8\\x8f\\x93\\xe5\\xad\\x90\\xe3\\x81\\xae\\xe3\\x82\\xb3\\xe3\\x83\\xad\\xe3\\x83\\xb3\\xe3\\x83\\x90\\xe3\\x83\\xb3 http://t.co/aHOUfKHX',", | |
" 0.0),", | |
" ('\"Well...looks like Dark and Gruesome is back\"', 0.0),", | |
" ('Little muddy & wet for our first practice :) http://t.co/cWGIJgON', 0.0),", | |
" ('Respond\\xc3\\xad algo desde tu fb en perfil! Sorry :/ @NatiAguirre', 0.0),", | |
" ('crl, ELE CONSEGUE COOISA BEM MELHOR DO QUE ELA u.u', 0.0),", | |
" ('http://t.co/Hx0MLrHT \\xe0\\xb9\\x80\\xe0\\xb8\\xae\\xe0\\xb9\\x89\\xe0\\xb8\\xa2\\xe0\\xb8\\xa2\\xe0\\xb8\\xa2\\xe0\\xb8\\xa2\\xe0\\xb8\\xa2\\xe0\\xb8\\xa2\\xe0\\xb8\\xa2\\xe0\\xb8\\xa2 \\xe0\\xb8\\xa3\\xe0\\xb8\\xb9\\xe0\\xb8\\x9b\\xe0\\xb8\\x99\\xe0\\xb8\\xb5\\xe0\\xb9\\x89\\xe0\\xb8\\x99\\xe0\\xb9\\x88\\xe0\\xb8\\xb2\\xe0\\xb8\\xa3\\xe0\\xb8\\xb1\\xe0\\xb8\\x81 \\xe0\\xb8\\xad\\xe0\\xb8\\xb1\\xe0\\xb8\\x9e\\xe0\\xb9\\x80\\xe0\\xb8\\xa1\\xe0\\xb8\\xb7\\xe0\\xb9\\x88\\xe0\\xb8\\xad\\xe0\\xb9\\x84\\xe0\\xb8\\xab\\xe0\\xb8\\xa3\\xe0\\xb9\\x88',", | |
" 0.0),", | |
" ('Tak satupun terucap dari bibir mu', 0.0),", | |
" ('Net even boxen geregeld voor zaterdag', 0.0),", | |
" ('me siento preso y entrs\\xc3\\xb1os tus besos y las cositas que haciamos cuando teniamos sexo',", | |
" 0.0),", | |
" ('Paramore>', 0.0),", | |
" ('Lloyds TSB offers a stress-free switching service with a dedicated team. Find out More. Click here!',", | |
" 0.0),", | |
" ('Direct Link: http://t.co/VrkRUchW', 0.0),", | |
" ('T\\xc3\\xa1 chovendo em SP? Aqui vai cair o mundo eu acho em.', 0.0),", | |
" (\"bentar lg ultah tp blom preaper.. bzz--''\", 0.0),", | |
" ('Ontem foi simplismente MARAVILHOSO,muito obrigada por tudo meu amor,manteremos nossa promessa at\\xc3\\xa9 o fim.@Evanpiro_',", | |
" 0.0),", | |
" ('\"Never before in the history of the universe have you existed and when you are gone YOU will never repeat. That\\'s how important you are.\"',", | |
" 0.0),", | |
" ('\\xd8\\xa5\\xd8\\xad\\xd8\\xaa\\xd8\\xb1\\xd8\\xa7\\xd9\\x82 \\xd8\\xa7\\xd9\\x84\\xd8\\xb3\\xd9\\x8a\\xd8\\xa7\\xd8\\xb1\\xd8\\xa7\\xd8\\xaa \\xd9\\x81\\xd9\\x8a \\xd8\\xad\\xd9\\x8a \\xd8\\xac\\xd9\\x88\\xd8\\xb1\\xd8\\xa9 \\xd8\\xa7\\xd9\\x84\\xd8\\xb4\\xd9\\x8a\\xd8\\xa7\\xd8\\xad http://t.co/GSttPiP4',", | |
" 0.0),", | |
" ('Hickory/Pecan 2 x 8 Veneer Sheet: Whether youre a hobbyist or a furniture maker, real wood veneers are ideal for... http://t.co/fMZp6ICi',", | |
" 0.0),", | |
" ('Cantaaaaaaaa (live at http://t.co/K7pC9rqH)', 0.0),", | |
" ('ameii o ex bbb wesley super simpatico e lindo!Principe ( @gomezzoficial live em http://t.co/OCoSYeak )',", | |
" 0.0),", | |
" ('Dave Grohl - pissed because of a \"fan\" fight http://t.co/bLHANE6b via @rockspaceone',", | |
" 0.0),", | |
" (\"I'm Ready From Them Playoffs Next Saturday Im Out There 4am lol\", 0.0),", | |
" ('Rick Ross Releases Statement Regarding Cancelled Shows In Australia http://t.co/KrJ7IYbl',", | |
" 0.0),", | |
" ('54- 7/10 :)', 0.0),", | |
" ('He escrito una canci\\xc3\\xb3n porque ten\\xc3\\xada la inspiraci\\xc3\\xb3n modo on.',", | |
" 0.0),", | |
" ('Descobri que to perdida \\xc3\\xa9 em itaunense. To pocessa', 0.0),", | |
" ('O amoor \\xc3\\xa9 um precip\\xc3\\xadcio: agente se joga nele e torce para o ch\\xc3\\xa3o nunca chegar !!',", | |
" 0.0),", | |
" ('RT\"@la_Reinaaaa: I\\'m down to earth like gravity but man we up\"', 0.0),", | |
" ('Always at home euiis \\xc6\\xa0\\xcd\\xa1\\xcc\\xb4\\xcc\\xb4\\xcc\\xb4\\xcc\\xb4\\xcc\\xb4\\xcc\\xb4.\\xcc\\xae\\xc6\\xa0\\xcd\\xa1\\xcc\\xb4\\xcc\\xb4 seriiusaan ga sih, aah ntar boong nih RT @nonnaeuiist: Bsk drmh?',", | |
" 0.0),", | |
" ('Ribot uda malam .RT @Maulana_mubin: apaya.. Kasi tau gag ya eum RT @PutriKotoDY: Apalagi kau .RT Maulana_mubin: ... http://t.co/ONdPE99d',", | |
" 0.0),", | |
" ('Please dont think Im mean, a bitch or have a tude... Im just picky thats all dont kill me for it dang.. Now pow pow \\xe2\\x80\\xa6 http://t.co/va0PnJ1r',", | |
" 0.0),", | |
" ('#VivemosDeCorinthians sempreeee', 0.0),", | |
" ('Look at how @JdotMurray treat ha dog!! Lol shame on u! http://t.co/OL33xbMC',", | |
" 0.0),", | |
" ('Happy anniv woy @Nadaaalys @Fadhlan8Ven_LFC! Jgn diem2an lagi.....langgeng ya! http://t.co/uVRGH2Lx',", | |
" 0.0),", | |
" ('\\xe3\\x83\\x9e\\xe3\\x83\\x8d\\xe3\\x83\\xbc\\xe3\\x82\\xb8\\xe3\\x83\\xa3\\xe3\\x83\\xbc\\xe3\\x82\\x82\\xe3\\x81\\xa3\\xe3\\x81\\xa8\\xe7\\x9c\\x9f\\xe9\\x9d\\xa2\\xe7\\x9b\\xae\\xe3\\x81\\xab\\xe3\\x82\\x84\\xe3\\x82\\x8c\\xe3\\x81\\xb0\\xe3\\x82\\x88\\xe3\\x81\\x8b\\xe3\\x81\\xa3\\xe3\\x81\\x9f',", | |
" 0.0),", | |
" ('Kok twiteran emange ga bbman sama ito tah ? \"@AliviaahAnjanii: Hhahaha yaaa jugaaa siik :D @dhenistwn\"',", | |
" 0.0),", | |
" ('#VuelvenLasPlumasRosas', 0.0),", | |
" (' @eeemiliano Liderar\\xc3\\xada la campa\\xc3\\xb1a.', 0.0),", | |
" ('Act Done!!', 0.0),", | |
" ('i love Wall-E!', 0.0),", | |
" ('#surprise #surprise #surprise!!', 0.0),", | |
" ('\\xe3\\x80\\x90\\xe5\\xae\\x9a\\xe6\\x9c\\x9f\\xe3\\x80\\x91\\xe4\\xbd\\x8e\\xe3\\x82\\xaf\\xe3\\x82\\xaa\\xe3\\x81\\xa7\\xe3\\x81\\x99\\xe3\\x81\\x8c\\xe3\\x80\\x81\\xe8\\xa8\\x98\\xe5\\xbf\\xb5\\xe6\\x9e\\xa0\\xe3\\x81\\xaa\\xe3\\x81\\xa9\\xe3\\x81\\xae\\xe7\\x94\\xbb\\xe5\\x83\\x8f\\xe5\\x8a\\xa0\\xe5\\xb7\\xa5\\xe3\\x81\\xaa\\xe3\\x81\\xa9\\xe3\\x81\\x97\\xe3\\x81\\xa6\\xe3\\x81\\xbe\\xe3\\x81\\x99\\xef\\xbc\\x88\\xef\\xbd\\x80\\xe3\\x83\\xbb\\xcf\\x89\\xe3\\x83\\xbb\\xc2\\xb4\\xef\\xbc\\x89\\xe3\\x82\\xad\\xe3\\x83\\xaa\\xe3\\x83\\x83',", | |
" 0.0),", | |
" ('RT @LiccMyCharliie Tashie gon wake up in the morning like she stole my name lol buh soo whaat ;P',", | |
" 0.0),", | |
" ('\\xd9\\x84\\xd8\\xa7 \\xd8\\xa3\\xd8\\xb1\\xd9\\x90\\xd9\\x8a\\xd8\\xaf \\xd8\\xb4\\xd9\\x8a\\xd8\\xa6\\xd9\\x80\\xd9\\x80\\xd9\\x80\\xd8\\xa7\\xd9\\x8b ... \\xd8\\xb3\\xd9\\x88\\xd9\\x89 ... \\xd8\\xb1\\xd9\\x88\\xd8\\xad \\xd8\\xaa\\xd8\\xb4\\xd8\\xa8\\xd9\\x87\\xd9\\x86\\xd9\\x80\\xd9\\x80\\xd9\\x8a',", | |
" 0.0),", | |
" ('\\xd8\\xa3\\xd9\\x81\\xd9\\x87\\xd9\\x85\\xd9\\x87\\xd9\\x80\\xd9\\x80\\xd8\\xa7 ... \\xd8\\xaa\\xd9\\x81\\xd9\\x87\\xd9\\x85\\xd9\\x86\\xd9\\x80\\xd9\\x80\\xd9\\x80\\xd9\\x8a',", | |
" 0.0),", | |
" ('\\xe2\\x99\\xa5 \\xd9\\x88 \\xd9\\x83\\xd9\\x80 \\xd9\\x80\\xd9\\x81\\xd9\\x80 \\xd9\\x80\\xd9\\x80\\xd9\\x89 \\xe2\\x99\\xa5 http://t.co/yqTYDusU',", | |
" 0.0),", | |
" ('Cluttered bookstores are the best bookstores. http://t.co/snmRtIVZ', 0.0),", | |
" (\"maybe i'll just go for a run since there is nothing better to do ....\",", | |
" 0.0),", | |
" ('Hahaha ngempet iki\"@ndo_ndonando: mlh ngakak dhus RT @natashaFND Hahaha\"@ndo_ndonando: Kampret!! RT @natashaFND: Ndak popo haha\"',", | |
" 0.0),", | |
" ('#np Battlefield - Jordan Sparks', 0.0),", | |
" ('Zag @jessewortelboer vanmiddag lopen!', 0.0),", | |
" ('tem muita gente carente, porque n\\xc3\\xa9...', 0.0),", | |
" ('\\xe3\\x85\\x9c\\xe3\\x85\\x9c\\xeb\\xaf\\xb8\\xec\\x9b\\x8c', 0.0),", | |
" ('\\xe3\\x81\\x82\\xe3\\x81\\xa3\\xef\\xbc\\xa2\\xef\\xbc\\xa2\\xef\\xbc\\xaa\\xe6\\x84\\x8f\\xe5\\xa4\\x96\\xe3\\x81\\xa8\\xe6\\xbc\\x94\\xe6\\xad\\x8c\\xe4\\xb8\\x8a\\xe6\\x89\\x8b\\xe3\\x81\\x84\\xef\\xbc\\x81\\xef\\xbc\\x9f\\xe3\\x82\\xa8\\xe3\\x83\\xb3\\xe3\\x83\\x87\\xe3\\x82\\xa3\\xe3\\x83\\xb3\\xe3\\x82\\xb0\\xe6\\xbc\\x94\\xe6\\xad\\x8c\\xe3\\x81\\x8b\\xef\\xbd\\x97\\xe6\\x96\\xac\\xe6\\x96\\xb0\\xe3\\x81\\xa0\\xe3\\x81\\xaa@air_tb \\xe8\\x8a\\xb1\\xe8\\xa6\\x8b\\xe4\\xbc\\x9a\\xe5\\xa0\\xb4\\xe3\\x81\\xab\\xe3\\x82\\x88\\xe3\\x81\\x8f\\xe8\\x81\\x9e\\xe3\\x81\\x8d\\xe3\\x81\\xa8\\xe3\\x82\\x8c\\xe3\\x81\\xaa\\xe3\\x81\\x84\\xe8\\x8b\\xb1\\xe8\\xaa\\x9e\\xe3\\x81\\xa7\\xe6\\xad\\x8c\\xe3\\x81\\x84\\xe7\\xb6\\x9a\\xe3\\x81\\x91\\xe3\\x82\\x8bNEXT\\xe3\\x81\\x8c\\xe5\\xb1\\x85\\xe3\\x82\\x8b\\xe3\\x81\\xa3\\xe3\\x81\\xa6\\xe8\\x8b\\xa6\\xe6\\x83\\x85\\xe3\\x81\\x8c\\xe5\\x85\\xa5\\xe3\\x81\\xa3\\xe3\\x81\\x9f\\xe3\\x81\\xbf\\xe3\\x81\\x9f\\xe3\\x81\\x84\\xe3\\x81\\xa0\\xe3\\x81\\x91\\xe3\\x81\\xa9\\xe3\\x81\\x9d\\xe3\\x82\\x8c\\xe3\\x81\\xa3\\xe3\\x81\\xa6\\xe3\\x82\\x82\\xe3\\x81\\x97\\xe3\\x81\\x8b\\xe3\\x81\\x97\\xe3\\x81\\xa6\\xe2\\x80\\xa6 #\\xe3\\x82\\xa8\\xe3\\x82\\xa2\\xe3\\x82\\xbf\\xe3\\x82\\xa4\\xe3\\x83\\x90\\xe3\\x83\\x8b53\\xe8\\xa9\\xb1',", | |
" 0.0),", | |
" ('bikin nyesekkkkkkk', 0.0),", | |
" ('PLAYSTATION PLAYSTATION PLAYSTATION PLAYSTATION PLAYSTATION PLAYSTATION PLAYSTATION parab\\xc3\\xa9ns, vc ganhou um crocs verde lim\\xc3\\xa3o',", | |
" 0.0),", | |
" ('\\xe3\\x80\\x90\\xe5\\xae\\x9a\\xe6\\x9c\\x9f\\xe3\\x80\\x91\\xe5\\xae\\x9f\\xe6\\xb3\\x81TL\\xe3\\x80\\x81\\xe9\\x9d\\x9e\\xe5\\x85\\xac\\xe5\\xbc\\x8fRT\\xe4\\xbc\\x9a\\xe8\\xa9\\xb1\\xe3\\x81\\xa7TL\\xe8\\x8d\\x92\\xe3\\x82\\x89\\xe3\\x81\\x97\\xe3\\x81\\xa6\\xe3\\x81\\x99\\xe3\\x81\\xbe\\xe3\\x82\\x93\\xe3\\x81\\xaa\\xef\\xbc\\x88\\xe3\\x83\\xbb\\xe3\\x83\\xbb`\\xef\\xbc\\x89',", | |
" 0.0),", | |
" (\"I am tempted to see The Three Stooges because the humor I've seen is faithful, then I remember that I can just watch the originals.\",", | |
" 0.0),", | |
" ('Tenho um casamento pra ir hoje e nem sabia e_e vai eu procurar o que colocar',", | |
" 0.0),", | |
" (\"\\xe3\\x80\\x90\\xe7\\x94\\x9f\\xe6\\x94\\xbe\\xe9\\x80\\x81\\xe3\\x80\\x91\\xe3\\x80\\x90\\xe5\\x88\\x9d\\xe8\\xa6\\x8b*\\xe5\\xb8\\xb8\\xe9\\x80\\xa3\\xe5\\xa4\\xa7\\xe6\\xad\\x93\\xe8\\xbf\\x8e\\xe3\\x80\\x91892\\xe2\\x98\\x85\\xe3\\x81\\x8a\\xe7\\x9f\\xa5\\xe3\\x82\\x89\\xe3\\x81\\x9b\\xe3\\x82\\x82\\xe3\\x81\\x82\\xe3\\x82\\x8b\\xe3\\x82\\x88!!\\xe3\\x81\\xbf\\xe3\\x82\\x93\\xe3\\x81\\xaa\\xe3\\x81\\xa8\\xe3\\x81\\x8a\\xe5\\x96\\x8b\\xe3\\x82\\x8a\\xe3\\x81\\x97\\xe3\\x81\\x9f\\xe3\\x81\\x8f\\xe3\\x81\\xaa\\xe3\\x81\\xa3\\xe3\\x81\\xa1\\xe3\\x82\\x83\\xe3\\x81\\xa3\\xe3\\x81\\x9f\\xe3\\x81\\x8b\\xe3\\x82\\x89\\xe9\\x9b\\x91\\xe8\\xab\\x87\\xe3\\x81\\x97\\xe3\\x81\\xa6\\xe3\\x81\\xbf\\xe3\\x82\\x88\\xe3\\x81\\x86\\xe3\\x81\\x8b>('\\xe2\\x97\\x89\\xe2\\x97\\x9e\\xe2\\x8a\\x96\\xe2\\x97\\x9f\\xe2\\x97\\x89\\xef\\xbd\\x80)\\xe3\\x80\\x90\\xe3\\x81\\x8a\\xe7\\xb5\\xb5\\xe3\\x81\\x8b\\xe3\\x81\\x8d\\xe3\\x80\\x91 \\xe3\\x82\\x92\\xe9\\x96\\x8b\\xe5\\xa7\\x8b\\xe3\\x81\\x97\\xe3\\x81\\xbe\\xe3\\x81\\x97\\xe3\\x81\\x9f\\xe3\\x80\\x82 http://t.co/kTLPLOJ0 #lv89335207\",", | |
" 0.0),", | |
" ('#HD http://t.co/5uoquHox - Chiri -\"2012\"- Parkour Freerunning', 0.0),", | |
" ('Christmas come back ;/', 0.0),", | |
" ('Back to more hard labor work', 0.0),", | |
" ('RT @da7omsad7an: \\xd9\\x86\\xd8\\xb5 \\xd8\\xad\\xd9\\x8a\\xd8\\xa7\\xd8\\xaa\\xd9\\x8a \\xd8\\xb1\\xd8\\xa7\\xd8\\xad\\xd8\\xaa \\xd9\\x81\\xd9\\x8a \\xd9\\x85\\xd9\\x82\\xd8\\xa7\\xd9\\x88\\xd9\\x85\\xd8\\xa9 \\xd8\\xa7\\xd9\\x84\\xd9\\x86\\xd9\\x88\\xd9\\x85 \\xd9\\x88 \\xd8\\xa7\\xd9\\x84\\xd9\\x86\\xd8\\xb5 \\xd8\\xa7\\xd9\\x84\\xd8\\xab\\xd8\\xa7\\xd9\\x86\\xd9\\x8a \\xd9\\x81\\xd9\\x8a \\xd8\\xaa\\xd8\\xb9\\xd8\\xaf\\xd9\\x8a\\xd9\\x84 \\xd9\\x86\\xd9\\x88\\xd9\\x85\\xd9\\x8a ~',", | |
" 0.0),", | |
" ('8,200 Plays & Rising!!! \\xe2\\x98\\x85@2sidesglobal & DJ Raiden\\xe2\\x98\\x85 \"If You Could\"---http://retwedia.com/bri89x #2$G\\xe2\\x84\\xa2',", | |
" 0.0),", | |
" ('Yo tan en s\\xc3\\xa1bado y tan sin cruda #noesdedios.', 0.0),", | |
" ('good afternoon', 0.0),", | |
" ('RT @xCaHx: @bethmass amiga vi uma boliviano q parece q consegue votar.. tenho q achar ela aki vou peguntar como vota Q bom ,',", | |
" 0.0),", | |
" ('Acordei agora e j\\xc3\\xa1 almocei. UHSADGHASDGHAUSDGHUAS', 0.0),", | |
" ('Ibarat puncak gunung dan dasar laut. Ilmu adalah sesuatu yang tersimpan, dan amal itu sesuatu yang terlihat..#weloveIslam',", | |
" 0.0),", | |
" ('ameii o ex bbb wesley super simpatico e lindo!Principe ( @gomezzoficial live em http://t.co/OCoSYeak )',", | |
" 0.0),", | |
" ('Dave Grohl - pissed because of a \"fan\" fight http://t.co/bLHANE6b via @rockspaceone',", | |
" 0.0),", | |
" (\"I'm Ready From Them Playoffs Next Saturday Im Out There 4am lol\", 0.0),", | |
" ('Rick Ross Releases Statement Regarding Cancelled Shows In Australia http://t.co/KrJ7IYbl',", | |
" 0.0),", | |
" ('54- 7/10 :)', 0.0),", | |
" ('He escrito una canci\\xc3\\xb3n porque ten\\xc3\\xada la inspiraci\\xc3\\xb3n modo on.',", | |
" 0.0),", | |
" ('', 0.0)]" | |
] | |
} | |
], | |
"prompt_number": 190 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"ranked = []", | |
"for tweet in all_tweets:", | |
" k = 0", | |
" for ke in keyws:", | |
" if ke in tweet:", | |
" k += 1", | |
" print tweet, k", | |
"", | |
" ranked.append((tweet, k))" | |
], | |
"language": "python", | |
"outputs": [ | |
{ | |
"output_type": "stream", | |
"stream": "stdout", | |
"text": [ | |
"Just looking for a reason to come back here . 1", | |
"Just looking for a reason to come back here . 2", | |
"My Babez coming over today 1", | |
"Pomme de terre, viande des grisons, cancoillotte, tomates, c\u0153ur d'artichaut, cornichons... #faitmaison @Food_Reporter http://t.co/lfn1f1mZ 1", | |
"Towies back tomorrow! iya @JoeyEssex_ ;-) 1", | |
"i vote for @Real_Liam_Payne to do his twitcam today. 1", | |
"vou sair com mamis ja volto ;* 1", | |
"Just looking for a reason to come back here . 1", | |
"Just looking for a reason to come back here . 2", | |
"Viva para agradar os outros, e todos ficar\u00e3o contentes, exceto voc\u00ea. 1", | |
"I am tempted to see The Three Stooges because the humor I've seen is faithful, then I remember that I can just watch the originals. 1", | |
"me siento preso y entrs\u00f1os tus besos y las cositas que haciamos cuando teniamos sexo 1", | |
"Ontem foi simplismente MARAVILHOSO,muito obrigada por tudo meu amor,manteremos nossa promessa at\u00e9 o fim.@Evanpiro_ 1", | |
"\"Never before in the history of the universe have you existed and when you are gone YOU will never repeat. That's how important you are.\" 1", | |
"He escrito una canci\u00f3n porque ten\u00eda la inspiraci\u00f3n modo on. 1", | |
"Descobri que to perdida \u00e9 em itaunense. To pocessa 1", | |
"O amoor \u00e9 um precip\u00edcio: agente se joga nele e torce para o ch\u00e3o nunca chegar !! 1", | |
"RT\"@la_Reinaaaa: I'm down to earth like gravity but man we up\" 1", | |
"Ribot uda malam .RT @Maulana_mubin: apaya.. Kasi tau gag ya eum RT @PutriKotoDY: Apalagi kau .RT Maulana_mubin: ... http://t.co/ONdPE99d 1", | |
"Kok twiteran emange ga bbman sama ito tah ? \"@AliviaahAnjanii: Hhahaha yaaa jugaaa siik :D @dhenistwn\" 1", | |
"RT @LiccMyCharliie Tashie gon wake up in the morning like she stole my name lol buh soo whaat ;P 1", | |
"Cluttered bookstores are the best bookstores. http://t.co/snmRtIVZ 1", | |
"maybe i'll just go for a run since there is nothing better to do .... 1", | |
"I am tempted to see The Three Stooges because the humor I've seen is faithful, then I remember that I can just watch the originals. 1", | |
"Tenho um casamento pra ir hoje e nem sabia e_e vai eu procurar o que colocar 1", | |
"Back to more hard labor work 1", | |
"He escrito una canci\u00f3n porque ten\u00eda la inspiraci\u00f3n modo on. 1" | |
] | |
} | |
], | |
"prompt_number": 233 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"keyws = [\"Just\", \"sweden\", \"vet\", \"to\", \"vet\"]" | |
], | |
"language": "python", | |
"outputs": [], | |
"prompt_number": 224 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"sorted(ranked, key=lambda x: x[1], reverse=True)" | |
], | |
"language": "python", | |
"outputs": [ | |
{ | |
"output_type": "pyout", | |
"prompt_number": 234, | |
"text": [ | |
"[('Just looking for a reason to come back here .', 2),", | |
" ('Just looking for a reason to come back here .', 2),", | |
" ('My Babez coming over today', 1),", | |
" (\"Pomme de terre, viande des grisons, cancoillotte, tomates, c\\xc5\\x93ur d'artichaut, cornichons... #faitmaison @Food_Reporter http://t.co/lfn1f1mZ\",", | |
" 1),", | |
" ('Towies back tomorrow! iya @JoeyEssex_ ;-)', 1),", | |
" ('i vote for @Real_Liam_Payne to do his twitcam today.', 1),", | |
" ('vou sair com mamis ja volto ;*', 1),", | |
" ('Viva para agradar os outros, e todos ficar\\xc3\\xa3o contentes, exceto voc\\xc3\\xaa.',", | |
" 1),", | |
" (\"I am tempted to see The Three Stooges because the humor I've seen is faithful, then I remember that I can just watch the originals.\",", | |
" 1),", | |
" ('me siento preso y entrs\\xc3\\xb1os tus besos y las cositas que haciamos cuando teniamos sexo',", | |
" 1),", | |
" ('Ontem foi simplismente MARAVILHOSO,muito obrigada por tudo meu amor,manteremos nossa promessa at\\xc3\\xa9 o fim.@Evanpiro_',", | |
" 1),", | |
" ('\"Never before in the history of the universe have you existed and when you are gone YOU will never repeat. That\\'s how important you are.\"',", | |
" 1),", | |
" ('He escrito una canci\\xc3\\xb3n porque ten\\xc3\\xada la inspiraci\\xc3\\xb3n modo on.',", | |
" 1),", | |
" ('Descobri que to perdida \\xc3\\xa9 em itaunense. To pocessa', 1),", | |
" ('O amoor \\xc3\\xa9 um precip\\xc3\\xadcio: agente se joga nele e torce para o ch\\xc3\\xa3o nunca chegar !!',", | |
" 1),", | |
" ('RT\"@la_Reinaaaa: I\\'m down to earth like gravity but man we up\"', 1),", | |
" ('Ribot uda malam .RT @Maulana_mubin: apaya.. Kasi tau gag ya eum RT @PutriKotoDY: Apalagi kau .RT Maulana_mubin: ... http://t.co/ONdPE99d',", | |
" 1),", | |
" ('Kok twiteran emange ga bbman sama ito tah ? \"@AliviaahAnjanii: Hhahaha yaaa jugaaa siik :D @dhenistwn\"',", | |
" 1),", | |
" ('RT @LiccMyCharliie Tashie gon wake up in the morning like she stole my name lol buh soo whaat ;P',", | |
" 1),", | |
" ('Cluttered bookstores are the best bookstores. http://t.co/snmRtIVZ', 1),", | |
" (\"maybe i'll just go for a run since there is nothing better to do ....\", 1),", | |
" (\"I am tempted to see The Three Stooges because the humor I've seen is faithful, then I remember that I can just watch the originals.\",", | |
" 1),", | |
" ('Tenho um casamento pra ir hoje e nem sabia e_e vai eu procurar o que colocar',", | |
" 1),", | |
" ('Back to more hard labor work', 1),", | |
" ('He escrito una canci\\xc3\\xb3n porque ten\\xc3\\xada la inspiraci\\xc3\\xb3n modo on.',", | |
" 1),", | |
" ('Vet inte om man ska skratta eller gr\\xc3\\xa5ta. ', 0),", | |
" ('http://t.co/I1tEYbZm', 0),", | |
" ('\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84 \\xd9\\x81\\xd8\\xa7\\xd8\\xb5\\xd9\\x84 \\xd9\\x81\\xd9\\x83\\xd8\\xa7\\xd9\\x87\\xd9\\x8a \\xd8\\x8c\\xd8\\x8c\\xd8\\x8c \\xd9\\x85\\xd8\\xa7\\xd9\\x84\\xd9\\x87 \\xd8\\xad\\xd9\\x84 http://t.co/0Bq0jUp9',", | |
" 0),", | |
" ('Ch\\xc3\\xa1vez n\\xc3\\xa3o vai participar de C\\xc3\\xbapula das Am\\xc3\\xa9ricas http://t.co/dzeLIzVx',", | |
" 0),", | |
" (\"I'm at Garden Ridge (Richmond, VA) http://t.co/QDt31iCn\", 0),", | |
" ('1992 Kawasaki VN 1500 A Vulcan 88 Ignition Coil Set: 1992 Kawasaki VN 1500 A Vulcan 88 Ignition Coil SetThe Igni... http://t.co/xG0ToYc5',", | |
" 0),", | |
" ('Rowing club launches new sea gig: The Swanage Sea Rowing Club launches a new traditionally designed racing boat. http://t.co/q0QR2ZVu',", | |
" 0),", | |
" (\"Aram\\xc4\\xb1zda FAKE'ler var! 2222260: \\xc3\\xbcstte http://t.co/N4F5xax1\",", | |
" 0),", | |
" ('Boooooooooooa tarde! Gastrite atacou, mas nada que estrague meu final de semana.',", | |
" 0),", | |
" ('Bilici: Orta Do\\xc4\\x9fuyu T\\xc3\\xbcrkiye i\\xc3\\xa7in daha \\xc3\\xb6nemli k\\xc4\\xb1lan ba\\xc4\\x9flar var: Gazeteci yazar Abd\\xc3\\xbclhamit Bilici, Arap d\\xc3\\xbcnyas\\xc4\\xb1 ve... http://t.co/cIyMguRF',", | |
" 0),", | |
" ('I really hope you wake up one day & realise what you put yourself & everyone around you through. Your my mom & I love you but please change.',", | |
" 0),", | |
" ('can I get a REFILL', 0),", | |
" ('Ai, que merda.', 0),", | |
" ('hola.', 0),", | |
" ('Work hard Play hard Get inspired', 0),", | |
" ('FELIZ CUMPLEA\\xc3\\x91OS!! (live at http://t.co/IKodI8wG)', 0),", | |
" ('I yold u its real out here RT @kierabiera11: I walked pass @macolegacy and this was blasting in his beats wow http://t.co/TQTso1Ne',", | |
" 0),", | |
" ('\\xe3\\x82\\x84\\xe3\\x81\\xb9\\xe3\\x80\\x81\\xe7\\xb2\\x98\\xe8\\x86\\x9c\\xe3\\x82\\x92\\xe9\\xbc\\x93\\xe8\\x86\\x9c\\xe3\\x81\\xa8\\xe8\\xa6\\x8b\\xe9\\x96\\x93\\xe9\\x81\\x95\\xe3\\x81\\x88\\xe3\\x82\\x8b\\xe3\\x81\\xa8\\xe3\\x81\\x8bwww\\xe3\\x81\\x84\\xe3\\x82\\x88\\xe3\\x81\\x84\\xe3\\x82\\x88\\xe4\\xbf\\xba\\xe3\\x82\\x82\\xe8\\xa6\\x96\\xe5\\x8a\\x9b\\xe3\\x82\\x84\\xe3\\x81\\xb0\\xe3\\x81\\x8f\\xe3\\x81\\xaa\\xe3\\x81\\xa3\\xe3\\x81\\xa6\\xe3\\x81\\x8d\\xe3\\x81\\x9f\\xe3\\x81\\xaa',", | |
" 0),", | |
" (\"\\xeb\\x8b\\x8c\\xed\\x85\\x90\\xeb\\x8f\\x84\\xec\\x9d\\x98 RPG \\xea\\xb2\\x8c\\xec\\x9e\\x84 MOTHER\\xec\\x97\\x90\\xeb\\x8a\\x94 '\\xeb\\x94\\xb8\\xea\\xb8\\xb0 \\xeb\\x91\\x90\\xeb\\xb6\\x80'\\xeb\\x9d\\xbc\\xeb\\x8a\\x94 \\xec\\x95\\x84\\xec\\x9d\\xb4\\xed\\x85\\x9c\\xec\\x9d\\xb4 \\xec\\x9e\\x88\\xec\\x8a\\xb5\\xeb\\x8b\\x88\\xeb\\x8b\\xa4. \\xeb\\x8b\\xa4\\xec\\x9d\\x8c \\xec\\x82\\xac\\xec\\xa7\\x84\\xec\\x9d\\x80 \\xea\\xb2\\x8c\\xec\\x9e\\x84 \\xec\\xa0\\x9c\\xec\\x9e\\x91\\xec\\x9e\\x90 '\\xec\\x8b\\x9c\\xea\\xb2\\x8c\\xec\\x82\\xac\\xed\\x86\\xa0 \\xec\\x9d\\xb4\\xed\\x86\\xa0\\xec\\x9d\\xb4'\\xec\\x94\\xa8\\xea\\xb0\\x80 \\xec\\xa7\\x81\\xec\\xa0\\x91 \\xeb\\xa8\\xb9\\xec\\x97\\x88\\xeb\\x8b\\xa4\\xea\\xb3\\xa0 \\xed\\x95\\x98\\xeb\\x8a\\x94 \\xea\\xb8\\xb0\\xec\\x82\\xac\\xec\\x9e\\x85\\xeb\\x8b\\x88\\xeb\\x8b\\xa4. http://t.co/5ghkXU0f\",", | |
" 0),", | |
" ('que palo de agua', 0),", | |
" ('The @AAMUSigmas About To #MaxOut Tonight at #Statewide, While The Rest Are Stuck In The Past e.i. They Gone Be Turnt Up. O_o',", | |
" 0),", | |
" ('The Truth About Dealing With Dementia \\xe2\\x80\\x93 A Vital Guide For Carers!: The Truth About Dealing With Dementia \\xe2\\x80\\x93 A Vit... http://t.co/42ePk3re',", | |
" 0),", | |
" ('Luli ta sempre azedando', 0),", | |
" ('\\xe7\\x9c\\xa0\\xe3\\x81\\x84\\xe3\\x81\\xae\\xe3\\x81\\x8b\\xe7\\x9c\\xa0\\xe3\\x81\\x8f\\xe3\\x81\\xaa\\xe3\\x81\\x84\\xe3\\x81\\xae\\xe3\\x81\\x8b\\xe3\\x82\\x88\\xe3\\x81\\x8f\\xe3\\x82\\x8f\\xe3\\x81\\x8b\\xe3\\x82\\x93\\xe3\\x81\\xaa\\xe3\\x81\\x8f\\xe3\\x81\\xaa\\xe3\\x81\\xa3\\xe3\\x81\\xa6\\xe3\\x81\\x8d\\xe3\\x81\\x9f',", | |
" 0),", | |
" ('Vanavond gaat iemand gepakt worden, noem geen namen..', 0),", | |
" ('\\xd8\\xa7\\xd9\\x84\\xd9\\x84\\xd9\\x87\\xd9\\x85 \\xd8\\xa5\\xd9\\x86\\xd9\\x8a \\xd8\\xa3\\xd8\\xb3\\xd8\\xa3\\xd9\\x84\\xd9\\x83 \\xd9\\x85\\xd9\\x86 \\xd8\\xae\\xd9\\x8a\\xd8\\xb1 \\xd9\\x85\\xd8\\xa7 \\xd8\\xaa\\xd8\\xb9\\xd9\\x84\\xd9\\x85\\xd8\\x8c \\xd9\\x88\\xd8\\xa3\\xd8\\xb9\\xd9\\x88\\xd8\\xb0 \\xd8\\xa8\\xd9\\x83 \\xd9\\x85\\xd9\\x86 \\xd8\\xb4\\xd8\\xb1 \\xd9\\x85\\xd8\\xa7 \\xd8\\xaa\\xd8\\xb9\\xd9\\x84\\xd9\\x85\\xd8\\x8c \\xd9\\x88\\xd8\\xa3\\xd8\\xb3\\xd8\\xaa\\xd8\\xba\\xd9\\x81\\xd8\\xb1\\xd9\\x83 \\xd9\\x84\\xd9\\x85\\xd8\\xa7 \\xd8\\xaa\\xd8\\xb9\\xd9\\x84\\xd9\\x85 \\xd8\\xa5\\xd9\\x86\\xd9\\x83 \\xd8\\xa3\\xd9\\x86\\xd8\\xaa \\xd8\\xb9\\xd9\\x84\\xd8\\xa7\\xd9\\x85 \\xd8\\xa7\\xd9\\x84\\xd8\\xba\\xd9\\x8a\\xd9\\x88\\xd8\\xa8',", | |
" 0),", | |
" ('Sayfaya Girip Benim Profilimi Be\\xc4\\x9fen Duvar\\xc4\\xb1na Gelicem S\\xc3\\xb6z. http://t.co/FtL3lREe',", | |
" 0),", | |
" ('4r', 0),", | |
" ('Vet inte om man ska skratta eller gr\\xc3\\xa5ta. ', 0),", | |
" ('http://t.co/I1tEYbZm', 0),", | |
" ('\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84\\xf0\\x9f\\x98\\x84 \\xd9\\x81\\xd8\\xa7\\xd8\\xb5\\xd9\\x84 \\xd9\\x81\\xd9\\x83\\xd8\\xa7\\xd9\\x87\\xd9\\x8a \\xd8\\x8c\\xd8\\x8c\\xd8\\x8c \\xd9\\x85\\xd8\\xa7\\xd9\\x84\\xd9\\x87 \\xd8\\xad\\xd9\\x84 http://t.co/0Bq0jUp9',", | |
" 0),", | |
" ('\\xe3\\x81\\x82\\xe3\\x82\\x8b\\xe7\\xa8\\x8b\\xe5\\xba\\xa6\\xe3\\x80\\x81\\xe6\\xbc\\x94\\xe6\\x8a\\x80\\xe5\\x8a\\x9b\\xe3\\x81\\xa8\\xe7\\x9b\\xb8\\xe6\\x89\\x8b\\xe3\\x82\\x92\\xe6\\x80\\x9d\\xe3\\x81\\x84\\xe3\\x82\\x84\\xe3\\x82\\x8b\\xe6\\xb0\\x97\\xe6\\x8c\\x81\\xe3\\x81\\xa1\\xe3\\x81\\x8c\\xe5\\xa4\\xa7\\xe4\\xba\\x8b\\xe3\\x81\\xaa\\xe4\\xbb\\x95\\xe4\\xba\\x8b\\xe3\\x81\\xa7\\xe3\\x81\\x99\\xe3\\x80\\x82\\xe3\\x82\\x93\\xef\\xbd\\x9e\\xe3\\x80\\x81\\xe4\\xbb\\x95\\xe4\\xba\\x8b\\xe3\\x81\\x98\\xe3\\x82\\x83\\xe3\\x81\\xaa\\xe3\\x81\\x84\\xe3\\x81\\x8b\\xe3\\x80\\x82 #\\xe3\\x83\\x8b\\xe3\\x83\\xbc\\xe3\\x83\\x88',", | |
" 0),", | |
" ('Ch\\xc3\\xa1vez n\\xc3\\xa3o vai participar de C\\xc3\\xbapula das Am\\xc3\\xa9ricas http://t.co/dzeLIzVx',", | |
" 0),", | |
" (\"I'm at Garden Ridge (Richmond, VA) http://t.co/QDt31iCn\", 0),", | |
" ('PLAYSTATION PLAYSTATION PLAYSTATION PLAYSTATION PLAYSTATION PLAYSTATION PLAYSTATION parab\\xc3\\xa9ns, vc ganhou um crocs verde lim\\xc3\\xa3o',", | |
" 0),", | |
" ('Wish ihad da Yellow Foams!', 0),", | |
" ('#NP Songs For Women', 0),", | |
" ('Unieke cadeaus voor diverse gelegenheden en in alle prijsklassen. http://t.co/r1Z2ZUwk',", | |
" 0),", | |
" ('\\xe3\\x83\\x90\\xe3\\x82\\xbf\\xe3\\x83\\xbc\\xe3\\x82\\xaf\\xe3\\x83\\xaa\\xe3\\x83\\xbc\\xe3\\x83\\xa0\\xe3\\x83\\xad\\xe3\\x83\\xbc\\xe3\\x83\\xab\\xe5\\x86\\x8d\\xe8\\xb2\\xa9\\xe8\\xa8\\x98\\xe5\\xbf\\xb5\\xef\\xbc\\x881,260\\xe5\\x86\\x86\\xe7\\x9b\\xb8\\xe5\\xbd\\x93\\xef\\xbc\\x8910\\xe5\\x90\\x8d\\xe6\\xa7\\x98\\xe3\\x83\\x97\\xe3\\x83\\xac\\xe3\\x82\\xbc\\xe3\\x83\\xb3\\xe3\\x83\\x88 | \\xe5\\x8e\\x9f\\xe5\\xae\\xbf\\xe3\\x82\\xb9\\xe3\\x82\\xa4\\xe3\\x83\\xbc\\xe3\\x83\\x84\\xe3\\x82\\x84\\xe4\\xbc\\x9d\\xe7\\xb5\\xb1\\xe3\\x83\\x95\\xe3\\x83\\xa9\\xe3\\x83\\xb3\\xe3\\x82\\xb9\\xe8\\x8f\\x93\\xe5\\xad\\x90\\xe3\\x81\\xae\\xe3\\x82\\xb3\\xe3\\x83\\xad\\xe3\\x83\\xb3\\xe3\\x83\\x90\\xe3\\x83\\xb3 http://t.co/aHOUfKHX',", | |
" 0),", | |
" ('\"Well...looks like Dark and Gruesome is back\"', 0),", | |
" ('Little muddy & wet for our first practice :) http://t.co/cWGIJgON', 0),", | |
" ('Respond\\xc3\\xad algo desde tu fb en perfil! Sorry :/ @NatiAguirre', 0),", | |
" ('crl, ELE CONSEGUE COOISA BEM MELHOR DO QUE ELA u.u', 0),", | |
" ('http://t.co/Hx0MLrHT \\xe0\\xb9\\x80\\xe0\\xb8\\xae\\xe0\\xb9\\x89\\xe0\\xb8\\xa2\\xe0\\xb8\\xa2\\xe0\\xb8\\xa2\\xe0\\xb8\\xa2\\xe0\\xb8\\xa2\\xe0\\xb8\\xa2\\xe0\\xb8\\xa2\\xe0\\xb8\\xa2 \\xe0\\xb8\\xa3\\xe0\\xb8\\xb9\\xe0\\xb8\\x9b\\xe0\\xb8\\x99\\xe0\\xb8\\xb5\\xe0\\xb9\\x89\\xe0\\xb8\\x99\\xe0\\xb9\\x88\\xe0\\xb8\\xb2\\xe0\\xb8\\xa3\\xe0\\xb8\\xb1\\xe0\\xb8\\x81 \\xe0\\xb8\\xad\\xe0\\xb8\\xb1\\xe0\\xb8\\x9e\\xe0\\xb9\\x80\\xe0\\xb8\\xa1\\xe0\\xb8\\xb7\\xe0\\xb9\\x88\\xe0\\xb8\\xad\\xe0\\xb9\\x84\\xe0\\xb8\\xab\\xe0\\xb8\\xa3\\xe0\\xb9\\x88',", | |
" 0),", | |
" ('Tak satupun terucap dari bibir mu', 0),", | |
" ('Net even boxen geregeld voor zaterdag', 0),", | |
" ('Paramore>', 0),", | |
" ('Lloyds TSB offers a stress-free switching service with a dedicated team. Find out More. Click here!',", | |
" 0),", | |
" ('Direct Link: http://t.co/VrkRUchW', 0),", | |
" ('T\\xc3\\xa1 chovendo em SP? Aqui vai cair o mundo eu acho em.', 0),", | |
" (\"bentar lg ultah tp blom preaper.. bzz--''\", 0),", | |
" ('\\xd8\\xa5\\xd8\\xad\\xd8\\xaa\\xd8\\xb1\\xd8\\xa7\\xd9\\x82 \\xd8\\xa7\\xd9\\x84\\xd8\\xb3\\xd9\\x8a\\xd8\\xa7\\xd8\\xb1\\xd8\\xa7\\xd8\\xaa \\xd9\\x81\\xd9\\x8a \\xd8\\xad\\xd9\\x8a \\xd8\\xac\\xd9\\x88\\xd8\\xb1\\xd8\\xa9 \\xd8\\xa7\\xd9\\x84\\xd8\\xb4\\xd9\\x8a\\xd8\\xa7\\xd8\\xad http://t.co/GSttPiP4',", | |
" 0),", | |
" ('Hickory/Pecan 2 x 8 Veneer Sheet: Whether youre a hobbyist or a furniture maker, real wood veneers are ideal for... http://t.co/fMZp6ICi',", | |
" 0),", | |
" ('Cantaaaaaaaa (live at http://t.co/K7pC9rqH)', 0),", | |
" ('ameii o ex bbb wesley super simpatico e lindo!Principe ( @gomezzoficial live em http://t.co/OCoSYeak )',", | |
" 0),", | |
" ('Dave Grohl - pissed because of a \"fan\" fight http://t.co/bLHANE6b via @rockspaceone',", | |
" 0),", | |
" (\"I'm Ready From Them Playoffs Next Saturday Im Out There 4am lol\", 0),", | |
" ('Rick Ross Releases Statement Regarding Cancelled Shows In Australia http://t.co/KrJ7IYbl',", | |
" 0),", | |
" ('54- 7/10 :)', 0),", | |
" ('Always at home euiis \\xc6\\xa0\\xcd\\xa1\\xcc\\xb4\\xcc\\xb4\\xcc\\xb4\\xcc\\xb4\\xcc\\xb4\\xcc\\xb4.\\xcc\\xae\\xc6\\xa0\\xcd\\xa1\\xcc\\xb4\\xcc\\xb4 seriiusaan ga sih, aah ntar boong nih RT @nonnaeuiist: Bsk drmh?',", | |
" 0),", | |
" ('Please dont think Im mean, a bitch or have a tude... Im just picky thats all dont kill me for it dang.. Now pow pow \\xe2\\x80\\xa6 http://t.co/va0PnJ1r',", | |
" 0),", | |
" ('#VivemosDeCorinthians sempreeee', 0),", | |
" ('Look at how @JdotMurray treat ha dog!! Lol shame on u! http://t.co/OL33xbMC',", | |
" 0),", | |
" ('Happy anniv woy @Nadaaalys @Fadhlan8Ven_LFC! Jgn diem2an lagi.....langgeng ya! http://t.co/uVRGH2Lx',", | |
" 0),", | |
" ('\\xe3\\x83\\x9e\\xe3\\x83\\x8d\\xe3\\x83\\xbc\\xe3\\x82\\xb8\\xe3\\x83\\xa3\\xe3\\x83\\xbc\\xe3\\x82\\x82\\xe3\\x81\\xa3\\xe3\\x81\\xa8\\xe7\\x9c\\x9f\\xe9\\x9d\\xa2\\xe7\\x9b\\xae\\xe3\\x81\\xab\\xe3\\x82\\x84\\xe3\\x82\\x8c\\xe3\\x81\\xb0\\xe3\\x82\\x88\\xe3\\x81\\x8b\\xe3\\x81\\xa3\\xe3\\x81\\x9f',", | |
" 0),", | |
" ('#VuelvenLasPlumasRosas', 0),", | |
" (' @eeemiliano Liderar\\xc3\\xada la campa\\xc3\\xb1a.', 0),", | |
" ('Act Done!!', 0),", | |
" ('i love Wall-E!', 0),", | |
" ('#surprise #surprise #surprise!!', 0),", | |
" ('\\xe3\\x80\\x90\\xe5\\xae\\x9a\\xe6\\x9c\\x9f\\xe3\\x80\\x91\\xe4\\xbd\\x8e\\xe3\\x82\\xaf\\xe3\\x82\\xaa\\xe3\\x81\\xa7\\xe3\\x81\\x99\\xe3\\x81\\x8c\\xe3\\x80\\x81\\xe8\\xa8\\x98\\xe5\\xbf\\xb5\\xe6\\x9e\\xa0\\xe3\\x81\\xaa\\xe3\\x81\\xa9\\xe3\\x81\\xae\\xe7\\x94\\xbb\\xe5\\x83\\x8f\\xe5\\x8a\\xa0\\xe5\\xb7\\xa5\\xe3\\x81\\xaa\\xe3\\x81\\xa9\\xe3\\x81\\x97\\xe3\\x81\\xa6\\xe3\\x81\\xbe\\xe3\\x81\\x99\\xef\\xbc\\x88\\xef\\xbd\\x80\\xe3\\x83\\xbb\\xcf\\x89\\xe3\\x83\\xbb\\xc2\\xb4\\xef\\xbc\\x89\\xe3\\x82\\xad\\xe3\\x83\\xaa\\xe3\\x83\\x83',", | |
" 0),", | |
" ('\\xd9\\x84\\xd8\\xa7 \\xd8\\xa3\\xd8\\xb1\\xd9\\x90\\xd9\\x8a\\xd8\\xaf \\xd8\\xb4\\xd9\\x8a\\xd8\\xa6\\xd9\\x80\\xd9\\x80\\xd9\\x80\\xd8\\xa7\\xd9\\x8b ... \\xd8\\xb3\\xd9\\x88\\xd9\\x89 ... \\xd8\\xb1\\xd9\\x88\\xd8\\xad \\xd8\\xaa\\xd8\\xb4\\xd8\\xa8\\xd9\\x87\\xd9\\x86\\xd9\\x80\\xd9\\x80\\xd9\\x8a',", | |
" 0),", | |
" ('\\xd8\\xa3\\xd9\\x81\\xd9\\x87\\xd9\\x85\\xd9\\x87\\xd9\\x80\\xd9\\x80\\xd8\\xa7 ... \\xd8\\xaa\\xd9\\x81\\xd9\\x87\\xd9\\x85\\xd9\\x86\\xd9\\x80\\xd9\\x80\\xd9\\x80\\xd9\\x8a',", | |
" 0),", | |
" ('\\xe2\\x99\\xa5 \\xd9\\x88 \\xd9\\x83\\xd9\\x80 \\xd9\\x80\\xd9\\x81\\xd9\\x80 \\xd9\\x80\\xd9\\x80\\xd9\\x89 \\xe2\\x99\\xa5 http://t.co/yqTYDusU',", | |
" 0),", | |
" ('Hahaha ngempet iki\"@ndo_ndonando: mlh ngakak dhus RT @natashaFND Hahaha\"@ndo_ndonando: Kampret!! RT @natashaFND: Ndak popo haha\"',", | |
" 0),", | |
" ('#np Battlefield - Jordan Sparks', 0),", | |
" ('Zag @jessewortelboer vanmiddag lopen!', 0),", | |
" ('tem muita gente carente, porque n\\xc3\\xa9...', 0),", | |
" ('\\xe3\\x85\\x9c\\xe3\\x85\\x9c\\xeb\\xaf\\xb8\\xec\\x9b\\x8c', 0),", | |
" ('\\xe3\\x81\\x82\\xe3\\x81\\xa3\\xef\\xbc\\xa2\\xef\\xbc\\xa2\\xef\\xbc\\xaa\\xe6\\x84\\x8f\\xe5\\xa4\\x96\\xe3\\x81\\xa8\\xe6\\xbc\\x94\\xe6\\xad\\x8c\\xe4\\xb8\\x8a\\xe6\\x89\\x8b\\xe3\\x81\\x84\\xef\\xbc\\x81\\xef\\xbc\\x9f\\xe3\\x82\\xa8\\xe3\\x83\\xb3\\xe3\\x83\\x87\\xe3\\x82\\xa3\\xe3\\x83\\xb3\\xe3\\x82\\xb0\\xe6\\xbc\\x94\\xe6\\xad\\x8c\\xe3\\x81\\x8b\\xef\\xbd\\x97\\xe6\\x96\\xac\\xe6\\x96\\xb0\\xe3\\x81\\xa0\\xe3\\x81\\xaa@air_tb \\xe8\\x8a\\xb1\\xe8\\xa6\\x8b\\xe4\\xbc\\x9a\\xe5\\xa0\\xb4\\xe3\\x81\\xab\\xe3\\x82\\x88\\xe3\\x81\\x8f\\xe8\\x81\\x9e\\xe3\\x81\\x8d\\xe3\\x81\\xa8\\xe3\\x82\\x8c\\xe3\\x81\\xaa\\xe3\\x81\\x84\\xe8\\x8b\\xb1\\xe8\\xaa\\x9e\\xe3\\x81\\xa7\\xe6\\xad\\x8c\\xe3\\x81\\x84\\xe7\\xb6\\x9a\\xe3\\x81\\x91\\xe3\\x82\\x8bNEXT\\xe3\\x81\\x8c\\xe5\\xb1\\x85\\xe3\\x82\\x8b\\xe3\\x81\\xa3\\xe3\\x81\\xa6\\xe8\\x8b\\xa6\\xe6\\x83\\x85\\xe3\\x81\\x8c\\xe5\\x85\\xa5\\xe3\\x81\\xa3\\xe3\\x81\\x9f\\xe3\\x81\\xbf\\xe3\\x81\\x9f\\xe3\\x81\\x84\\xe3\\x81\\xa0\\xe3\\x81\\x91\\xe3\\x81\\xa9\\xe3\\x81\\x9d\\xe3\\x82\\x8c\\xe3\\x81\\xa3\\xe3\\x81\\xa6\\xe3\\x82\\x82\\xe3\\x81\\x97\\xe3\\x81\\x8b\\xe3\\x81\\x97\\xe3\\x81\\xa6\\xe2\\x80\\xa6 #\\xe3\\x82\\xa8\\xe3\\x82\\xa2\\xe3\\x82\\xbf\\xe3\\x82\\xa4\\xe3\\x83\\x90\\xe3\\x83\\x8b53\\xe8\\xa9\\xb1',", | |
" 0),", | |
" ('bikin nyesekkkkkkk', 0),", | |
" ('PLAYSTATION PLAYSTATION PLAYSTATION PLAYSTATION PLAYSTATION PLAYSTATION PLAYSTATION parab\\xc3\\xa9ns, vc ganhou um crocs verde lim\\xc3\\xa3o',", | |
" 0),", | |
" ('\\xe3\\x80\\x90\\xe5\\xae\\x9a\\xe6\\x9c\\x9f\\xe3\\x80\\x91\\xe5\\xae\\x9f\\xe6\\xb3\\x81TL\\xe3\\x80\\x81\\xe9\\x9d\\x9e\\xe5\\x85\\xac\\xe5\\xbc\\x8fRT\\xe4\\xbc\\x9a\\xe8\\xa9\\xb1\\xe3\\x81\\xa7TL\\xe8\\x8d\\x92\\xe3\\x82\\x89\\xe3\\x81\\x97\\xe3\\x81\\xa6\\xe3\\x81\\x99\\xe3\\x81\\xbe\\xe3\\x82\\x93\\xe3\\x81\\xaa\\xef\\xbc\\x88\\xe3\\x83\\xbb\\xe3\\x83\\xbb`\\xef\\xbc\\x89',", | |
" 0),", | |
" (\"\\xe3\\x80\\x90\\xe7\\x94\\x9f\\xe6\\x94\\xbe\\xe9\\x80\\x81\\xe3\\x80\\x91\\xe3\\x80\\x90\\xe5\\x88\\x9d\\xe8\\xa6\\x8b*\\xe5\\xb8\\xb8\\xe9\\x80\\xa3\\xe5\\xa4\\xa7\\xe6\\xad\\x93\\xe8\\xbf\\x8e\\xe3\\x80\\x91892\\xe2\\x98\\x85\\xe3\\x81\\x8a\\xe7\\x9f\\xa5\\xe3\\x82\\x89\\xe3\\x81\\x9b\\xe3\\x82\\x82\\xe3\\x81\\x82\\xe3\\x82\\x8b\\xe3\\x82\\x88!!\\xe3\\x81\\xbf\\xe3\\x82\\x93\\xe3\\x81\\xaa\\xe3\\x81\\xa8\\xe3\\x81\\x8a\\xe5\\x96\\x8b\\xe3\\x82\\x8a\\xe3\\x81\\x97\\xe3\\x81\\x9f\\xe3\\x81\\x8f\\xe3\\x81\\xaa\\xe3\\x81\\xa3\\xe3\\x81\\xa1\\xe3\\x82\\x83\\xe3\\x81\\xa3\\xe3\\x81\\x9f\\xe3\\x81\\x8b\\xe3\\x82\\x89\\xe9\\x9b\\x91\\xe8\\xab\\x87\\xe3\\x81\\x97\\xe3\\x81\\xa6\\xe3\\x81\\xbf\\xe3\\x82\\x88\\xe3\\x81\\x86\\xe3\\x81\\x8b>('\\xe2\\x97\\x89\\xe2\\x97\\x9e\\xe2\\x8a\\x96\\xe2\\x97\\x9f\\xe2\\x97\\x89\\xef\\xbd\\x80)\\xe3\\x80\\x90\\xe3\\x81\\x8a\\xe7\\xb5\\xb5\\xe3\\x81\\x8b\\xe3\\x81\\x8d\\xe3\\x80\\x91 \\xe3\\x82\\x92\\xe9\\x96\\x8b\\xe5\\xa7\\x8b\\xe3\\x81\\x97\\xe3\\x81\\xbe\\xe3\\x81\\x97\\xe3\\x81\\x9f\\xe3\\x80\\x82 http://t.co/kTLPLOJ0 #lv89335207\",", | |
" 0),", | |
" ('#HD http://t.co/5uoquHox - Chiri -\"2012\"- Parkour Freerunning', 0),", | |
" ('Christmas come back ;/', 0),", | |
" ('RT @da7omsad7an: \\xd9\\x86\\xd8\\xb5 \\xd8\\xad\\xd9\\x8a\\xd8\\xa7\\xd8\\xaa\\xd9\\x8a \\xd8\\xb1\\xd8\\xa7\\xd8\\xad\\xd8\\xaa \\xd9\\x81\\xd9\\x8a \\xd9\\x85\\xd9\\x82\\xd8\\xa7\\xd9\\x88\\xd9\\x85\\xd8\\xa9 \\xd8\\xa7\\xd9\\x84\\xd9\\x86\\xd9\\x88\\xd9\\x85 \\xd9\\x88 \\xd8\\xa7\\xd9\\x84\\xd9\\x86\\xd8\\xb5 \\xd8\\xa7\\xd9\\x84\\xd8\\xab\\xd8\\xa7\\xd9\\x86\\xd9\\x8a \\xd9\\x81\\xd9\\x8a \\xd8\\xaa\\xd8\\xb9\\xd8\\xaf\\xd9\\x8a\\xd9\\x84 \\xd9\\x86\\xd9\\x88\\xd9\\x85\\xd9\\x8a ~',", | |
" 0),", | |
" ('8,200 Plays & Rising!!! \\xe2\\x98\\x85@2sidesglobal & DJ Raiden\\xe2\\x98\\x85 \"If You Could\"---http://retwedia.com/bri89x #2$G\\xe2\\x84\\xa2',", | |
" 0),", | |
" ('Yo tan en s\\xc3\\xa1bado y tan sin cruda #noesdedios.', 0),", | |
" ('good afternoon', 0),", | |
" ('RT @xCaHx: @bethmass amiga vi uma boliviano q parece q consegue votar.. tenho q achar ela aki vou peguntar como vota Q bom ,',", | |
" 0),", | |
" ('Acordei agora e j\\xc3\\xa1 almocei. UHSADGHASDGHAUSDGHUAS', 0),", | |
" ('Ibarat puncak gunung dan dasar laut. Ilmu adalah sesuatu yang tersimpan, dan amal itu sesuatu yang terlihat..#weloveIslam',", | |
" 0),", | |
" ('ameii o ex bbb wesley super simpatico e lindo!Principe ( @gomezzoficial live em http://t.co/OCoSYeak )',", | |
" 0),", | |
" ('Dave Grohl - pissed because of a \"fan\" fight http://t.co/bLHANE6b via @rockspaceone',", | |
" 0),", | |
" (\"I'm Ready From Them Playoffs Next Saturday Im Out There 4am lol\", 0),", | |
" ('Rick Ross Releases Statement Regarding Cancelled Shows In Australia http://t.co/KrJ7IYbl',", | |
" 0),", | |
" ('54- 7/10 :)', 0),", | |
" ('', 0)]" | |
] | |
} | |
], | |
"prompt_number": 234 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"ranked" | |
], | |
"language": "python", | |
"outputs": [ | |
{ | |
"output_type": "pyout", | |
"prompt_number": 232, | |
"text": [ | |
"[('', 0)]" | |
] | |
} | |
], | |
"prompt_number": 232 | |
}, | |
{ | |
"cell_type": "markdown", | |
"source": [ | |
"Disease thing" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": true, | |
"input": [], | |
"language": "python", | |
"outputs": [] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment